    /* ─── RESET & BASE ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: auto; }
    body {
      font-family: 'Inter', sans-serif;
      background: #fdf9f8;
      color: #1a1412;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; }
    ul { list-style: none; }

    /* ─── DESIGN TOKENS ─── */
    :root {
      --primary: #a03033;
      --primary-hover: #7d2528;
      --primary-light: #f8edee;
      --off-black: #1a1412;
      --body-text: #6b5f5b;
      --canvas: #fdf9f8;
      --canvas-soft: #f5efed;
      --border: #e8e0de;
      --white: #ffffff;
      --wa-green: #25D366;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --shadow-sm: 0 4px 24px rgba(160,48,51,0.04);
      --shadow-md: 0 4px 16px rgba(26,20,18,0.10);
      --shadow-lg: 0 12px 48px rgba(160,48,51,0.08);
      --transition: 400ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ─── TYPOGRAPHY ─── */
    .font-display { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
    h1, h2, h3 { line-height: 1.2; }

    /* ─── LAYOUT ─── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 80px 0; }
    .section-sm { padding: 60px 0; }

    /* ─── EYEBROW ─── */
    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary);
      background: var(--primary-light);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
    }
    .eyebrow--white {
      color: var(--white);
      background: rgba(255,255,255,0.15);
    }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      min-height: 44px;
      font-size: 15px;
      font-weight: 600;
      border-radius: var(--radius-sm);
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
      line-height: 1;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn:active { transform: translateY(1px); }
    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(160,48,51,0.30);
    }
    .btn-primary:hover { background: var(--primary-hover); box-shadow: 0 4px 16px rgba(160,48,51,0.35); }
    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    .btn-secondary:hover { background: var(--primary-light); }

    @keyframes wobble {
      0% { transform: rotate(0deg); }
      15% { transform: rotate(-15deg); }
      30% { transform: rotate(10deg); }
      45% { transform: rotate(-10deg); }
      60% { transform: rotate(5deg); }
      75% { transform: rotate(-5deg); }
      100% { transform: rotate(0deg); }
    }
    .wa-hover-animate { transition: transform 0.3s ease; }
    .btn-secondary:hover .wa-hover-animate { animation: wobble 1s ease infinite; }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.6);
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
    .btn-wa {
      background: var(--wa-green);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(37,211,102,0.30);
    }
    .btn-wa:hover { background: #1faa52; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
    .btn-sm { padding: 9px 18px; font-size: 13px; min-height: 36px; }
    .btn-lg { padding: 16px 36px; font-size: 16px; }

    /* ─── BADGE ─── */
    .badge {
      display: inline-flex;
      align-items: center;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: 0.04em;
    }
    .badge-available { background: #dcfce7; color: #166534; }
    .badge-sold { background: #fee2e2; color: #991b1b; }
    .badge-sold-out { background: rgba(26,20,18,0.7); color: var(--white); font-size: 13px; padding: 6px 16px; }
    .badge-soon { background: #ffedd5; color: #9a3412; }
    .badge-subsidi { background: var(--primary-light); color: var(--primary); }
    .badge-komersial { background: #eff6ff; color: #1e40af; }

    /* ─── CARDS ─── */
    .card {
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(255, 255, 255, 0.6);
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .card:hover { background: rgba(255, 255, 255, 0.85); }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    /* ─── PROPERTY CARD ─── */
    .property-card { position: relative; }
    .property-card__img-wrap {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }
    .property-card__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 400ms ease;
    }
    .property-card:hover .property-card__img-wrap img { transform: scale(1.04); }
    .property-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(26,20,18,0.55) 100%);
    }
    .property-card__sold-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,20,18,0.65);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .property-card__badges {
      position: absolute;
      top: 12px;
      left: 12px;
      display: flex;
      gap: 6px;
    }
    .property-card__body { padding: 18px; }
    .property-card__name {
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--off-black);
      margin-bottom: 4px;
    }
    .property-card__location {
      font-size: 13px;
      color: var(--body-text);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 14px;
    }
    .property-card__specs {
      display: flex;
      gap: 14px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }
    .property-card__spec {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
      color: var(--body-text);
    }
    .property-card__spec svg { color: var(--primary); flex-shrink: 0; }
    .property-card__actions { display: flex; gap: 8px; }
    .property-card__actions .btn { flex: 1; justify-content: center; font-size: 13px; padding: 9px 12px; }

    /* ─── GRIDS ─── */
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

    /* ─── PAGE HERO (dark) ─── */
    .page-hero {
      background: var(--off-black);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(160,48,51,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero__eyebrow { margin-bottom: 16px; }
    .page-hero__title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(32px, 5vw, 56px);
      color: var(--white);
      margin-bottom: 16px;
      max-width: 700px;
    }
    .page-hero__subtitle {
      font-size: 17px;
      color: rgba(255,255,255,0.7);
      max-width: 560px;
      line-height: 1.7;
    }

    /* ─── BREADCRUMB ─── */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 24px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb span { color: rgba(255,255,255,0.35); }

    /* ─── DARK CTA SECTION ─── */
    .cta-dark {
      background: var(--off-black);
      padding: 80px 0;
      text-align: center;
    }
    .cta-dark h2 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      color: var(--white);
      margin-bottom: 16px;
    }
    .cta-dark p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 32px; }
    .cta-dark__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ─── FAQ ACCORDION ─── */
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 12px;
      background: var(--white);
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      background: none;
      font-size: 15px;
      font-weight: 600;
      color: var(--off-black);
      text-align: left;
      gap: 12px;
      transition: background var(--transition);
    }
    .faq-question:hover { background: rgba(253, 249, 248, 0.3); }
    .faq-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform var(--transition);
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 350ms ease;
    }
    .faq-answer-inner {
      padding: 0 22px 18px;
      font-size: 14px;
      color: var(--body-text);
      line-height: 1.75;
    }

    /* ─── ARTICLE CARD ─── */
    .article-card { display: flex; flex-direction: column; }
    .article-card__img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    .article-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .article-card__tag {
      display: inline-flex;
      font-size: 11px;
      font-weight: 600;
      color: var(--primary);
      background: var(--primary-light);
      padding: 2px 10px;
      border-radius: 100px;
      margin-bottom: 10px;
    }
    .article-card__title {
      font-family: 'Inter', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--off-black);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .article-card__excerpt { font-size: 13px; color: var(--body-text); line-height: 1.65; flex: 1; margin-bottom: 14px; }
    .article-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
    .article-card__date { font-size: 12px; color: var(--body-text); }
    .article-card__link { font-size: 13px; font-weight: 600; color: var(--primary); transition: gap var(--transition); }
    .article-card__link:hover { gap: 6px; }

    /* ─── TEAM CARD ─── */
    .team-card .team-avatar {
      aspect-ratio: 4/5;
      background: linear-gradient(145deg, var(--primary-light), var(--canvas-soft));
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .team-initials {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 28px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(160,48,51,0.30);
    }
    .team-card__body { padding: 16px; text-align: center; }
    .team-card__name { font-size: 15px; font-weight: 600; color: var(--off-black); margin-bottom: 4px; }
    .team-card__role { font-size: 12px; color: var(--body-text); margin-bottom: 12px; }

    /* ─── STAT CARD ─── */
    .stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px;
      text-align: center;
    }
    .stat-number {
      font-family: 'Inter', sans-serif;
      font-size: 40px;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label { font-size: 13px; color: var(--body-text); font-weight: 500; }

    /* ─── SPEC CARD ─── */
    .spec-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px 16px;
      text-align: center;
    }
    .spec-card svg { color: var(--primary); margin: 0 auto 10px; }
    .spec-number { font-family: 'Inter', sans-serif; font-size: 32px; color: var(--off-black); line-height: 1; margin-bottom: 4px; }
    .spec-label { font-size: 12px; color: var(--body-text); font-weight: 500; }

    /* ─── FACILITY PILL ─── */
    .facility-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 100px;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 13px;
      font-weight: 500;
    }

    /* ─── DISTANCE CHIP ─── */
    .distance-chip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 13px;
    }
    .distance-chip__to { color: var(--off-black); font-weight: 500; }
    .distance-chip__time { color: var(--primary); font-weight: 600; }

    /* ─── FILTER TABS ─── */
    .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
    .filter-tab {
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      background: var(--white);
      color: var(--body-text);
      border: 2px solid var(--border);
      cursor: pointer;
      transition: all var(--transition);
      min-height: 44px;
    }
    .filter-tab.active, .filter-tab:hover {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    /* ─── FORM ─── */
    .form-group { margin-bottom: 18px; }
    .form-label { display: block; font-size: 13px; font-weight: 600; color: var(--off-black); margin-bottom: 6px; }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: inherit;
      font-size: 14px;
      color: var(--off-black);
      background: var(--white);
      transition: border-color var(--transition);
      outline: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); }
    .form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

    /* ─── CONTACT INFO ─── */
    .contact-info-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-info-item:last-child { border-bottom: none; }
    .contact-icon {
      width: 40px; height: 40px;
      border-radius: var(--radius-sm);
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-info-label { font-size: 12px; color: var(--body-text); margin-bottom: 3px; }
    .contact-info-value { font-size: 14px; font-weight: 600; color: var(--off-black); line-height: 1.5; }

    /* ─── ADVANTAGE CARD ─── */
    .advantage-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .advantage-icon {
      width: 56px; height: 56px;
      border-radius: var(--radius-md);
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .advantage-title { font-size: 17px; font-weight: 700; color: var(--off-black); margin-bottom: 8px; }
    .advantage-desc { font-size: 14px; color: var(--body-text); line-height: 1.7; }

    /* ─── SPIRIT CARD ─── */
    .spirit-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .spirit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .spirit-letter {
      font-family: 'Inter', sans-serif;
      font-size: 48px;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 4px;
    }
    .spirit-name { font-size: 16px; font-weight: 700; color: var(--off-black); margin-bottom: 8px; }
    .spirit-desc { font-size: 13px; color: var(--body-text); line-height: 1.65; }

    /* ─── ARTICLE BODY ─── */
    .article-body h2 {
      font-family: 'Inter', sans-serif;
      font-size: 24px;
      color: var(--off-black);
      margin: 32px 0 12px;
    }
    .article-body p { font-size: 16px; color: var(--body-text); line-height: 1.8; margin-bottom: 16px; }
    .article-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
    .article-body li { font-size: 15px; color: var(--body-text); line-height: 1.7; margin-bottom: 6px; }

    /* ─── HEADER ─── */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      height: 72px;
      background: rgba(253, 249, 248, 0.70);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    #site-header.scrolled {
      border-bottom-color: var(--border);
      box-shadow: 0 2px 12px rgba(26,20,18,0.06);
    }
    
    .header-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      width: 100%;
      gap: 48px;
    }
    .header-logo img { height: 40px; width: auto; }
    .header-logo { display: flex; align-items: center; }
    .header-logo span { /* fallback text */
      font-family: 'Inter', sans-serif;
      font-size: 22px;
      color: var(--primary);
      font-weight: 700;
    }
    .header-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 0 auto; }
    
    .nav-link {
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 700;
      color: var(--off-black);
      border-radius: var(--radius-sm);
      transition: background var(--transition), color var(--transition);
      position: relative;
    }
    .nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
    .nav-link--dropdown { cursor: pointer; user-select: none; }
    .dropdown-wrapper { position: relative; }
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      width: 280px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity var(--transition), transform var(--transition);
      z-index: 200;
      overflow: hidden;
    }
    .dropdown-wrapper:hover .dropdown-menu,
    .dropdown-wrapper.open .dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .dropdown-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--off-black);
      cursor: pointer;
      transition: background var(--transition);
    }
    .dropdown-item:hover { background: rgba(253, 249, 248, 0.3); color: var(--primary); }
    .dropdown-item .badge { font-size: 10px; padding: 2px 7px; }
    .header-right { display: flex; align-items: center; gap: 12px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--off-black);
      border-radius: 2px;
      transition: all var(--transition);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav overlay */
    #mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99;
      background: var(--off-black);
      padding: 88px 24px 32px;
      flex-direction: column;
      overflow-y: auto;
    }
    #mobile-nav.open { display: flex; }
    .mobile-nav-link {
      display: block;
      padding: 16px 0;
      font-size: 22px;
      font-weight: 600;
      color: var(--white);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: color var(--transition);
    }
    .mobile-nav-link:hover, .mobile-nav-link.active { color: var(--primary); }
    .mobile-nav-dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      font-size: 22px;
      font-weight: 600;
      color: var(--white);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      cursor: pointer;
    }
    .mobile-nav-dropdown-toggle svg { transition: transform var(--transition); }
    .mobile-nav-dropdown-toggle.open svg { transform: rotate(180deg); }
    .mobile-nav-sub {
      display: none;
      padding: 8px 0 8px 16px;
    }
    .mobile-nav-sub.open { display: block; }
    .mobile-nav-sub a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      font-size: 15px;
      color: rgba(255,255,255,0.7);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .mobile-nav-sub a:hover { color: var(--white); }

    /* ─── FOOTER ─── */
    #site-footer {
      background: var(--off-black);
      color: rgba(255,255,255,0.65);
      padding: 64px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
      gap: 48px;
      padding-bottom: 48px;
    }
    .footer-brand-desc { font-size: 14px; line-height: 1.75; margin: 16px 0 24px; color: rgba(255,255,255,0.55); }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social {
      width: 38px; height: 38px;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.65);
      transition: background var(--transition), color var(--transition);
    }
    .footer-social:hover { background: var(--primary); color: var(--white); }
    .footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
    .footer-link {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 10px;
      transition: color var(--transition);
      cursor: pointer;
    }
    .footer-link:hover { color: var(--white); }
    .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
    .footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
    .footer-contact-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,0.35);
    }

    /* ─── SCROLL TO TOP ─── */
    #scroll-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity var(--transition), transform var(--transition);
      z-index: 90;
      border: none;
    }
    #scroll-top.visible { opacity: 1; transform: translateY(0); }
    #scroll-top:hover { background: var(--primary-hover); }

    /* ─── KPR MODAL ─── */
    #kpr-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 500;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    #kpr-modal.open { display: flex; }
    #kpr-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(26,20,18,0.65);
      backdrop-filter: blur(4px);
    }
    .kpr-box {
      position: relative;
      background: var(--white);
      border-radius: var(--radius-lg);
      width: 100%;
      max-width: 520px;
      padding: 40px;
      box-shadow: var(--shadow-lg);
      z-index: 1;
      max-height: 90vh;
      overflow-y: auto;
    }
    .kpr-box__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(253, 249, 248, 0.3);
      color: var(--off-black);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      font-size: 18px;
      line-height: 1;
      transition: background var(--transition);
    }
    .kpr-box__close:hover { background: var(--border); }
    .kpr-title {
      font-family: 'Inter', sans-serif;
      font-size: 26px;
      color: var(--off-black);
      margin-bottom: 6px;
    }
    .kpr-subtitle { font-size: 14px; color: var(--body-text); margin-bottom: 28px; }
    .kpr-result {
      background: var(--primary-light);
      border: 1px solid rgba(160,48,51,0.2);
      border-radius: var(--radius-md);
      padding: 24px;
      text-align: center;
      margin-top: 24px;
      display: none;
    }
    .kpr-result.show { display: block; }
    .kpr-result-label { font-size: 13px; color: var(--body-text); margin-bottom: 8px; }
    .kpr-result-value {
      font-family: 'Inter', sans-serif;
      font-size: 36px;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .kpr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    /* ─── HERO HOME ─── */
    .hero-home {
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      position: relative;
    }
    .hero-text { 
      width: 50%;
      padding: 60px 48px 60px 0; 
      position: relative;
      z-index: 2;
    }
    .hero-image-wrap {
      position: absolute;
      top: 0;
      left: 40%;
      width: 60vw;
      height: 100%;
      z-index: 1;
    }
    .hero-text { padding: 60px 48px 60px 0; }
    .hero-h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(36px, 5vw, 60px);
      color: var(--off-black);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .hero-h1 span { color: var(--primary); }
    .hero-subtitle { font-size: 17px; color: var(--body-text); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
    .hero-stats { display: flex; gap: 32px; }
    .hero-stat { text-align: center; }
    .hero-stat-num { font-family: 'Inter', sans-serif; font-size: 32px; color: var(--primary); font-weight: 800; font-size: 40px; line-height: 1; }
    .hero-stat-label { font-size: 12px; color: var(--body-text); font-weight: 500; margin-top: 4px; }
    .hero-image-wrap {
      height: calc(100vh - 72px);
      position: relative;
      overflow: hidden;
    }
    .hero-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-image-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(253, 249, 248, 1) 0%, rgba(253, 249, 248, 0.8) 15%, transparent 40%);
      z-index: 1;
      display: block;
    }

    /* ─── SECTION HEADERS ─── */
    .section-header { margin-bottom: 48px; }
    .section-header--center { text-align: center; }
    .section-title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      color: var(--off-black);
      margin-bottom: 12px;
    }
    .section-subtitle { font-size: 16px; color: var(--body-text); line-height: 1.7; max-width: 600px; }
    .section-header--center .section-subtitle { margin: 0 auto; }

    /* ─── TENTANG SECTION ─── */
    .about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .about-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; transition: gap var(--transition); }
    .about-link:hover { gap: 10px; }

    /* ─── FLOOR PLAN SVG ─── */
    .floor-plan-wrap {
      background: rgba(253, 249, 248, 0.3);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
    }
    .floor-plan-title { font-size: 14px; font-weight: 600; color: var(--off-black); margin-bottom: 16px; text-align: center; }

    /* ─── VISI MISI ─── */
    .visi-card {
      background: var(--primary);
      color: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
    }
    .visi-card h3 { font-family: 'Inter', sans-serif; font-size: 24px; margin-bottom: 14px; }
    .visi-card p { font-size: 15px; line-height: 1.75; opacity: 0.9; }
    .misi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
    }
    .misi-card h3 { font-family: 'Inter', sans-serif; font-size: 24px; color: var(--off-black); margin-bottom: 14px; }
    .misi-list { list-style: none; }
    .misi-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--body-text);
      line-height: 1.65;
      margin-bottom: 12px;
    }
    .misi-num {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ─── COMMITMENT ─── */
    .commitment-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .commitment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .commitment-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .commitment-title { font-size: 17px; font-weight: 700; color: var(--off-black); margin-bottom: 10px; }
    .commitment-desc { font-size: 14px; color: var(--body-text); line-height: 1.7; }

    /* ─── PROMO BANNER ─── */
    .promo-banner {
      background: var(--primary-light);
      border: 1px solid rgba(160,48,51,0.2);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .promo-banner-text h3 { font-size: 18px; font-weight: 700; color: var(--off-black); margin-bottom: 6px; }
    .promo-banner-text p { font-size: 14px; color: var(--body-text); }

    /* ─── MAPS ─── */
    .maps-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .maps-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

    /* ─── HOURS TABLE ─── */
    .hours-table { width: 100%; }
    .hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
    .hours-row:last-child { border-bottom: none; }
    .hours-day { color: var(--off-black); font-weight: 500; }
    .hours-time { color: var(--body-text); }

    /* ─── GALLERY GRID ─── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      grid-auto-rows: 180px;
      gap: 12px;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .gallery-grid img { 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
      display: block; 
      border-radius: var(--radius-lg);
      transition: transform 0.3s ease;
    }
    .gallery-grid img:hover {
      transform: scale(1.03);
    }

    /* ─── ARABIC TEXT ─── */
    .arabic-text {
      font-size: 24px;
      text-align: right;
      direction: rtl;
      font-style: italic;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .arabic-translation {
      font-style: italic;
      font-size: 14px;
      color: var(--body-text);
      margin-bottom: 20px;
    }

    /* ─── HERO PROJECT ─── */
    .project-hero {
      min-height: 560px;
      position: relative;
      display: flex;
      align-items: flex-end;
    }
    .project-hero__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .project-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,20,18,0.85) 0%, rgba(26,20,18,0.3) 60%, rgba(26,20,18,0.1) 100%);
    }
    .project-hero__content {
      position: relative;
      z-index: 2;
      padding: 40px 0 60px;
      width: 100%;
    }
    .project-hero__title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(32px, 5vw, 56px);
      color: var(--white);
      margin-bottom: 10px;
    }
    .project-hero__tagline { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
    .project-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

    /* ─── ARTICLE HERO ─── */
    .article-hero {
      min-height: 420px;
      position: relative;
      display: flex;
      align-items: flex-end;
    }
    .article-hero__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,20,18,0.8) 0%, rgba(26,20,18,0.2) 100%);
    }
    .article-hero__content {
      position: relative;
      z-index: 2;
      padding: 40px 0;
      width: 100%;
    }
    .article-hero__tag {
      display: inline-flex;
      font-size: 12px;
      font-weight: 600;
      color: var(--white);
      background: var(--primary);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 14px;
    }
    .article-hero__title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      color: var(--white);
      margin-bottom: 12px;
      max-width: 800px;
    }
    .article-hero__date { font-size: 14px; color: rgba(255,255,255,0.6); }

    /* ─── DIVIDER ─── */
    .divider { height: 1px; background: var(--border); margin: 40px 0; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .project-grid { grid-template-columns: repeat(3, 1fr); }
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .hero-home { min-height: auto; }
      .hero-image-wrap { height: 400px; }
    }
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .header-nav { display: none; }
      .header-right .btn { display: none; }
      .project-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .grid-2 { grid-template-columns: 1fr; }
      .grid-3 { grid-template-columns: 1fr; }
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .about-split { grid-template-columns: 1fr; gap: 32px; }
      .hero-home { flex-direction: column; }
      .hero-text { width: 100%; padding: 40px 0 0; order: 2; }
      .hero-image-wrap { position: relative; left: 0; width: 100vw; height: 280px; order: 1; margin-left: calc(50% - 50vw); }
      .hero-image-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(253, 249, 248, 1) 0%, rgba(253, 249, 248, 0.8) 15%, transparent 40%);
      z-index: 1;
      display: block;
    }
      .hero-stats { gap: 20px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .section { padding: 56px 0; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
      .gallery-main { grid-column: span 2; grid-row: span 2; }
      .kpr-grid { grid-template-columns: 1fr; }
      .promo-banner { flex-direction: column; align-items: flex-start; }
      .cta-dark__buttons { flex-direction: column; align-items: center; }
      .project-hero { min-height: 420px; }
      .hero-ctas { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .project-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .grid-4 { grid-template-columns: 1fr; }
    }
  
    .noise-overlay {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }
  
    /* --- Glassmorphism & Blobs --- */
    .blob-container {
      position: fixed;
      inset: 0;
      z-index: -1;
      overflow: hidden;
      background: transparent;
      pointer-events: none;
    }
    .blob {
      position: absolute;
      filter: blur(80px);
      border-radius: 50%;
      opacity: 0.65;
      animation: float 20s infinite ease-in-out alternate;
    }
    .blob-1 {
      top: -10%; left: -10%;
      width: 60vw; height: 60vw;
      background: rgba(160, 48, 51, 0.25); /* Brand red tinted */
    }
    .blob-2 {
      bottom: -10%; right: -10%;
      width: 60vw; height: 50vw;
      background: rgba(230, 180, 100, 0.25); /* Warm gold tinted */
      animation-delay: -10s;
    }
    @keyframes float {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(10vw, 10vh) scale(1.1); }
    }

