
    /* ============================================================
       CSS VARIABLES & RESET
    ============================================================ */
    :root {
      --c-bg:         #0d0d0b;
      --c-bg-alt:     #111110;
      --c-bg-light:   #161614;
      --c-surface:    #1a1a17;
      --c-gold:       #c8a96e;
      --c-gold-light: #dfc08e;
      --c-ivory:      #f4efe8;
      --c-muted:      #7a7670;
      --c-border:     rgba(200,169,110,0.18);
      --font-serif:   'Cormorant Garamond', Georgia, serif;
      --font-sans:    'Jost', 'Helvetica Neue', sans-serif;
      --nav-h:        82px;
      --max-w:        1280px;
      --ease:         cubic-bezier(0.4,0,0.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--c-bg);
      color: var(--c-ivory);
      font-family: var(--font-sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a   { color: inherit; text-decoration: none; }
    ul  { list-style: none; }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
    }

    /* Shared typography */
    .eyebrow {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.12;
      color: var(--c-gold);
    }
    .section-title em { font-style: italic; color: var(--c-gold); }
    .section-title.dark { color: #1a1a17; }
    .section-title.dark em { color: #9c7d48; }
    .section-sub {
      color: var(--c-muted);
      font-size: 0.95rem;
      max-width: 500px;
      margin-top: 16px;
      line-height: 1.75;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 400;
      padding: 14px 38px;
      transition: all 0.35s var(--ease);
      cursor: pointer;
      border: none;
    }
    .btn-gold {
      background: var(--c-gold);
      color: var(--c-bg);
    }
    .btn-gold:hover { background: var(--c-gold-light); transform: translateY(-2px); }
    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(244,239,232,0.3);
      color: var(--c-ivory);
    }
    .btn-ghost:hover { border-color: var(--c-ivory); background: rgba(244,239,232,0.05); }
    .btn-outline-gold {
      background: transparent;
      border: 1px solid var(--c-gold);
      color: var(--c-gold);
      padding: 11px 28px;
      font-size: 0.68rem;
      margin-top: 20px;
    }
    .btn-outline-gold:hover { background: var(--c-gold); color: var(--c-bg); }
    .btn-full { width: 100%; text-align: center; }

    /* Call Us line below submit button */
    .form-call-us {
      display: block;
      text-align: center;
      margin-top: 14px;
      font-size: 0.82rem;
      color: var(--c-muted);
      letter-spacing: 0.04em;
    }
    .form-call-us a {
      color: var(--c-gold);
      font-weight: 500;
      transition: color 0.2s;
      text-decoration: none;
    }
    .form-call-us a:hover { color: var(--c-gold-light); }


    /* ============================================================
       1. NAVBAR
    ============================================================ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
    }
    .navbar.scrolled {
      background: rgba(13,13,11,0.97);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 var(--c-border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      width: 100%;
      padding: 0 40px 0 12px;
    }
    .nav-logo {
  display:flex;
  align-items:center;
}

.nav-logo img{
  height:52px;
  width:auto;
  display:block;
}
    .logo-main {
      font-family: var(--font-serif);
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--c-ivory);
    }
    .logo-sub {
      font-family: var(--font-sans);
      font-size: 0.5rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--c-gold);
    }
    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-desktop a {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffffff;
      transition: color 0.2s;
    }
    .nav-desktop a:hover { color: var(--c-ivory); }
    .nav-cta {
      background: none;
      cursor: pointer;
      font-family: var(--font-sans);
      text-transform: uppercase;
      padding: 10px 26px;
      border: 1px solid var(--c-gold) !important;
      color: var(--c-gold) !important;
      opacity: 1 !important;
      font-size: 0.68rem !important;
      letter-spacing: 0.22em;
      transition: background 0.35s, color 0.35s !important;
    }
    .nav-cta:hover { background: var(--c-gold) !important; color: var(--c-bg) !important; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 1px;
      background: var(--c-ivory);
      transition: 0.3s;
    }

    /* Slide-out overlay menu */
    .menu-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: var(--c-bg-alt);
      transform: translateX(100%);
      transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
      display: flex;
    }
    .menu-overlay.open { transform: translateX(0); }
    .menu-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px;
      gap: 6px;
    }
    .menu-right {
      width: 45%;
      overflow: hidden;
    }
    .menu-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.45);
    }
    .menu-close-btn {
      position: absolute;
      top: 30px; right: 48px;
      background: none;
      border: none;
      color: var(--c-muted);
      font-family: var(--font-sans);
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color 0.2s;
    }
    .menu-close-btn:hover { color: var(--c-ivory); }
    .menu-link {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 300;
      color: var(--c-muted);
      transition: color 0.3s, transform 0.3s;
      display: inline-block;
    }
    .menu-link:hover { color: var(--c-ivory); transform: translateX(14px); }
    .menu-backdrop {
      position: fixed;
      inset: 0;
      z-index: 1900;
      background: rgba(0,0,0,0.45);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
    }
    .menu-backdrop.visible { opacity: 1; pointer-events: all; }


    /* ============================================================
       2. HERO
    ============================================================ */
    .hero {
      position: relative;
      height: 100svh;
      min-height: 620px;
      display: flex;
      align-items: flex-end;
      padding-top: var(--nav-h);
      padding-bottom: 88px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 35%;
    }
    .hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(13,13,11,0.92) 0%,
        rgba(13,13,11,0.45) 45%,
        rgba(13,13,11,0.1) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 48px;
      max-width: 780px;
      max-height: calc(100svh - var(--nav-h) - 120px);
      overflow: visible;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .hero-eyebrow {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      letter-spacing: 0.36em;
      text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: 22px;
      animation: fadeUp 1s ease 0.3s both;
    }
    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--c-ivory);
      margin-bottom: 28px;
      animation: fadeUp 1s ease 0.5s both;
    }
    .hero-title em { font-style: italic; color: var(--c-gold); }
    .hero-sub {
      color: rgba(244,239,232,0.65);
      font-size: 1rem;
      font-weight: 300;
      margin-bottom: 44px;
      animation: fadeUp 1s ease 0.7s both;
    }
    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp 1s ease 0.9s both;
    }
    .scroll-hint {
      position: absolute;
      bottom: 44px; right: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      z-index: 2;
      color: var(--c-muted);
      font-size: 0.6rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      animation: fadeUp 1s ease 1.1s both;
    }
    .scroll-line {
      width: 1px;
      height: 56px;
      background: linear-gradient(to bottom, var(--c-gold), transparent);
      animation: pulse 2.2s ease-in-out infinite;
    }


    /* ============================================================
       NEW SECTION A — "Written by the balance" Split Layout
    ============================================================ */
    .about-split {
      background: #f8f5f0;
      padding: 0;
      overflow: hidden;
    }
    .about-split-inner {
      display: grid;
      grid-template-columns: 1fr 1.35fr;
      min-height: 620px;
    }
    .about-left {
      padding: 80px 64px 80px 80px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }
    .about-left::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.08) 40%, rgba(0,0,0,0.08) 60%, transparent);
    }
    .about-heading {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(2.4rem, 4.2vw, 4rem);
      font-weight: 300;
      line-height: 1.15;
      color: #1a3a2a;
      max-width: 480px;
    }
    .about-body-text {
      font-family: var(--font-sans);
      font-size: 0.88rem;
      font-weight: 300;
      color: #000000;
      line-height: 1.9;
      max-width: 420px;
      letter-spacing: 0.02em;
    }
    .about-right {
      position: relative;
      overflow: hidden;
    }
    .about-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      transition: transform 0.8s ease;
    }
    .about-split:hover .about-right img {
      transform: scale(1.03);
    }
    .about-right-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(248,245,240,0.15) 0%, transparent 40%);
    }

    /* ============================================================
       NEW SECTION B — Key Features / Image Mosaic Grid
    ============================================================ */
    .key-features {
      background: #ede9e2;
      padding: 90px 0 0;
      overflow: hidden;
    }
    .key-features-header {
      text-align: center;
      padding: 0 48px 60px;
    }
    .key-features-header .eyebrow {
      color: #9c7d48;
      letter-spacing: 0.38em;
    }
    .kf-title {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: #1a3a2a;
      line-height: 1.2;
      margin-top: 6px;
    }
    /* Mosaic grid — 2 rows of 3 equal tiles */
    .kf-mosaic {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 3px;
    }
    .kf-tile {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4/3;
    }
    .kf-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.65s ease;
    }
    .kf-tile:hover img { transform: scale(1.05); }
    .kf-tile-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.12) 45%,
        transparent 70%
      );
      transition: background 0.35s;
    }
    .kf-tile:hover .kf-tile-overlay {
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.2) 50%,
        transparent 75%
      );
    }
    .kf-label {
      position: absolute;
      bottom: 24px;
      left: 28px;
      font-family: var(--font-sans);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow: 0 1px 8px rgba(0,0,0,0.4);
      transition: bottom 0.3s ease;
    }
    .kf-tile:hover .kf-label { bottom: 28px; }

    /* ============================================================
       3. LOCATION / PROXIMITY
    ============================================================ */
    .location-section {
      position: relative;
      padding: 130px 0;
      overflow: hidden;
    }
    .location-bg {
      position: absolute;
      inset: 0;
    }
    .location-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .location-dim {
      position: absolute;
      inset: 0;
      background: rgba(10,10,8,0.9);
    }
    .location-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }
    .location-clock {
      width: 50px;
      height: 50px;
      margin-bottom: 26px;
    }
    .location-clock svg { width: 100%; height: 100%; }
    .location-tagline {
      color: var(--c-muted);
      font-size: 0.9rem;
      max-width: 360px;
      margin-top: 20px;
      line-height: 1.8;
    }
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }
    .loc-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--c-border);
      transition: background 0.35s;
    }
    .loc-item:hover { background: rgba(200,169,110,0.07); }
    .loc-bullet {
      color: var(--c-gold);
      font-size: 0.5rem;
      flex-shrink: 0;
      line-height: 1;
    }
    .loc-item span {
      font-size: 0.82rem;
      color: rgba(244,239,232,0.82);
    }


    /* ============================================================
       4. RESIDENCES
    ============================================================ */
    .residences-section {
      padding: 130px 0;
      background: var(--c-ivory);
      border-top: 6px solid var(--c-gold);
      border-bottom: 6px solid var(--c-gold);
    }
    .residences-section .eyebrow { color: #9c7d48; }
    .residences-section .section-sub { color: #6a6358; }
    .residences-header { margin-bottom: 68px; }
    .residences-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }
    .res-card {
      background: #fff;
      overflow: hidden;
      transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    }
    .res-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
    .res-img {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .res-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.65s ease;
    }
    .res-card:hover .res-img img { transform: scale(1.06); }
    .res-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.38), transparent 55%);
    }
    .res-body { padding: 34px 30px 38px; }
    .res-type {
      font-family: var(--font-jost);
      font-size: 1.65rem;
      font-weight: 400;
      color: #1a1a17;
      margin-bottom: 10px;
    }
    .res-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.78rem;
      color: #9a9082;
      margin-bottom: 20px;
      letter-spacing: 0.04em;
    }
    .dot { color: var(--c-gold); font-size: 1rem; }
    .res-features {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 6px;
    }
    .res-features li {
      font-size: 0.83rem;
      color: #5e5750;
      padding-left: 18px;
      position: relative;
    }
    .res-features li::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      width: 6px; height: 1px;
      background: var(--c-gold);
    }


    /* ============================================================
       4b. MASTER PLAN & FLOOR PLANS GALLERY
    ============================================================ */
    .plans-section {
      padding: 130px 0;
      background: var(--c-ivory);
      position: relative;
      overflow: hidden;
    }
    .plans-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(200,169,110,0.04) 0%, transparent 55%);
      pointer-events: none;
    }
    .plans-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .plans-header .section-sub {
      margin: 16px auto 0;
    }

    /* Tab switcher */
    .plans-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 48px;
    }
    .plans-tab {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 400;
      padding: 13px 40px;
      border: 1px solid var(--c-border);
      background: transparent;
      color: var(--c-muted);
      cursor: pointer;
      transition: all 0.3s var(--ease);
    }
    .plans-tab:first-child { border-right: none; }
    .plans-tab.active {
      background: var(--c-gold);
      border-color: var(--c-gold);
      color: var(--c-bg);
    }
    .plans-tab:not(.active):hover {
      border-color: rgba(200,169,110,0.5);
      color: var(--c-ivory);
    }

    /* Slider wrapper */
    .plans-slider-wrap {
      position: relative;
    }
    .plans-panel {
      display: none;
    }
    .plans-panel.active {
      display: block;
    }
    .plans-track-outer {
      overflow: hidden;
      position: relative;
    }
    .plans-track {
      display: flex;
      gap: 24px;
      transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
      will-change: transform;
    }
    .plans-slide {
      flex: 0 0 calc(50% - 12px);
      position: relative;
      border: 1px solid var(--c-border);
      overflow: hidden;
      background: var(--c-surface);
      cursor: pointer;
    }
    .plans-slide:only-child {
      flex: 0 0 100%;
    }
    .plans-slide-img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.55s var(--ease);
    }
    .plans-slide:hover .plans-slide-img {
      transform: scale(1.03);
    }
    .plans-slide-caption {
      padding: 18px 24px;
      background: var(--c-surface);
      border-top: 1px solid var(--c-border);
    }
    .plans-slide-caption h4 {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--c-ivory);
      margin-bottom: 4px;
    }
    .plans-slide-caption p {
      font-size: 0.78rem;
      color: var(--c-muted);
      letter-spacing: 0.06em;
    }

    /* Nav arrows */
    .plans-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 52px; height: 52px;
      border: 1px solid var(--c-border);
      background: rgba(13,13,11,0.85);
      backdrop-filter: blur(8px);
      color: var(--c-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s var(--ease);
    }
    .plans-arrow:hover {
      background: var(--c-gold);
      border-color: var(--c-gold);
      color: var(--c-bg);
    }
    .plans-arrow svg { width: 20px; height: 20px; fill: currentColor; }
    .plans-arrow-prev { left: -26px; }
    .plans-arrow-next { right: -26px; }
    .plans-arrow[disabled] { opacity: 0.25; pointer-events: none; }

    /* Dots */
    .plans-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
    }
    .plans-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--c-border);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, transform 0.3s;
    }
    .plans-dot.active {
      background: var(--c-gold);
      transform: scale(1.4);
    }

    /* Lightbox */
    .plans-lightbox {
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0,0,0,0.94);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
    }
    .plans-lightbox.open {
      opacity: 1;
      pointer-events: all;
    }
    .plans-lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      display: block;
    }
    .lb-close {
      position: absolute;
      top: 28px; right: 36px;
      background: none;
      border: none;
      color: var(--c-muted);
      font-family: var(--font-sans);
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .lb-close:hover { color: var(--c-ivory); }

    @media (max-width: 768px) {
      .plans-slide { flex: 0 0 85%; }
      .plans-arrow-prev { left: -10px; }
      .plans-arrow-next { right: -10px; }
      .plans-arrow { width: 40px; height: 40px; }
    }

    /* ============================================================
       5. AMENITIES
    ============================================================ */
    .amenities-section {
      padding: 130px 0;
      background: var(--c-bg-light);
      position: relative;
      overflow: hidden;
    }
    .amenities-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 15% 85%, rgba(200,169,110,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(200,169,110,0.04) 0%, transparent 55%);
      pointer-events: none;
    }
    .amenities-header { margin-bottom: 68px; text-align: center; }
    .amenities-header .section-sub { margin: 16px auto 0; }
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .am-card {
      padding: 38px 28px;
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      transition: background 0.4s, transform 0.4s var(--ease);
    }
    .am-card:hover { background: rgba(200,169,110,0.07); transform: translateY(-5px); }
    .am-icon {
      width: 38px; height: 38px;
      margin-bottom: 20px;
    }
    .am-icon svg { width: 100%; height: 100%; fill: var(--c-gold); }
    .am-title {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--c-ivory);
      margin-bottom: 10px;
    }
    .am-desc {
      font-size: 0.8rem;
      color: var(--c-muted);
      line-height: 1.65;
    }


    /* ============================================================
       6. CONTACT
    ============================================================ */
    .contact-section {
      padding: 130px 0;
      background: var(--c-bg);
    }
    .contact-inner {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 90px;
      align-items: start;
    }
    .contact-form-title { margin-bottom: 40px; }
    .enquiry-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .form-group label {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--c-muted);
    }
    .form-group label span { color: var(--c-gold); }
    .form-group input,
    .form-group textarea,
    .form-group select {
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      color: var(--c-ivory);
      padding: 14px 18px;
      font-family: var(--font-sans);
      font-size: 0.88rem;
      font-weight: 300;
      outline: none;
      transition: border-color 0.3s;
      resize: none;
      appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--c-muted); opacity: 0.45; }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--c-gold); }
    .form-success-msg {
      display: none;
      padding: 16px 20px;
      background: rgba(200,169,110,0.12);
      border: 1px solid var(--c-gold);
      color: var(--c-gold);
      font-size: 0.85rem;
    }

    /* Contact details */
    .contact-details { display: flex; flex-direction: column; gap: 36px; }
    .contact-detail {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .cd-icon {
      width: 34px; height: 34px;
      flex-shrink: 0;
      margin-top: 3px;
    }
    .cd-icon svg { width: 100%; height: 100%; fill: var(--c-gold); }
    .cd-label {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: 8px;
    }
    .cd-text {
      font-size: 0.88rem;
      color: var(--c-muted);
      line-height: 1.85;
    }
    .cd-text a { color: var(--c-muted); transition: color 0.2s; }
    .cd-text a:hover { color: var(--c-gold); }
    .contact-map {
      margin-top: 8px;
      border: 1px solid var(--c-border);
      overflow: hidden;
    }
    .contact-map iframe { display: block; width: 100%; height: 200px; border: 0; }


    /* ============================================================
       7. FOOTER
    ============================================================ */
    /* ── Footer ── */
    .site-footer {
      background: var(--c-bg-alt);
      border-top: 1px solid var(--c-border);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      min-height: 0;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    /* Col 1 – Logo + Social + Quick Links */
    .footer-col1 {
      padding: 48px 32px 48px 24px;
      border-right: 1px solid var(--c-border);
    }
    .footer-col1 .nav-logo { display: block; margin-bottom: 12px; }
    .footer-col1 .nav-logo img { max-height: none; width: auto; height: auto; max-width: 100%; }
    .footer-tagline {
      font-size: 0.82rem;
      color: var(--c-muted);
      line-height: 1.75;
      margin: 16px 0 20px;
    }
    .footer-social { display: flex; gap: 10px; margin-bottom: 32px; }
    .footer-social a {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--c-border);
      transition: border-color 0.3s, background 0.3s;
    }
    .footer-social a:hover { border-color: var(--c-gold); background: rgba(200,169,110,0.1); }
    .footer-social svg { width: 14px; height: 14px; fill: var(--c-gold); }
    .footer-quick-links h5 {
      font-size: 0.62rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: 16px;
    }
    .footer-quick-links ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-quick-links ul a {
      font-size: 0.83rem;
      color: var(--c-muted);
      transition: color 0.2s;
    }
    .footer-quick-links ul a:hover { color: var(--c-ivory); }

    /* Col 2 – Legal + RERA + Disclaimer */
    .footer-col2 {
      padding: 48px 48px 48px 48px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Legal Links row */
    .footer-legal-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 6px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--c-border);
      margin-bottom: 20px;
    }
    .footer-legal-links a {
      font-size: 0.82rem;
      color: var(--c-muted);
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-legal-links a:hover { color: var(--c-ivory); }
    .footer-sep { color: var(--c-muted); font-size: 0.82rem; user-select: none; }

    /* RERA block */
    .footer-rera-block {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--c-border);
    }
    .footer-rera-block p {
      font-size: 0.82rem;
      color: var(--c-muted);
      line-height: 1.8;
      margin-bottom: 4px;
    }
    .footer-rera-block strong { color: var(--c-ivory); font-weight: 500; }

    /* Disclaimer */
    .footer-disclaimer p {
      font-size: 0.76rem;
      color: var(--c-muted);
      line-height: 1.9;
    }
    .footer-link-gold { color: var(--c-gold); transition: color 0.2s; }
    .footer-link-gold:hover { color: var(--c-gold-light); }

    /* Copyright bar */
    .footer-bottom {
      border-top: 1px solid var(--c-border);
      padding: 18px 48px;
      text-align: center;
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .copyright { font-size: 0.72rem; color: var(--c-muted); }


    /* ============================================================
       BACK TO TOP
    ============================================================ */
    .back-to-top {
      position: fixed;
      bottom: 36px; right: 36px;
      z-index: 800;
      width: 48px; height: 48px;
      background: var(--c-gold);
      color: var(--c-bg);
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(14px);
      transition: opacity 0.4s, transform 0.4s;
    }
    .back-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
    .back-to-top:hover { background: var(--c-gold-light); }


    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }


    /* ============================================================
       KEYFRAMES
    ============================================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 0.25; }
      50%       { opacity: 1; }
    }


    
    /* ============================================================
       HERO LEAD FORM
    ============================================================ */
    .hero-layout{
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:40px;
    }
    .hero-lead-form{
      width:100%;
      max-width:380px;
      background: rgba(17,17,16,0.92);
      border:1px solid var(--c-border);
      backdrop-filter: blur(12px);
      padding:28px;
      border-radius:12px;
    }
    .hero-lead-form h3{
      font-family: var(--font-serif);
      font-size:2rem;
      font-weight:300;
      margin-bottom:8px;
      text-align: center;
    }
    .hero-lead-form p{
      color: rgba(244,239,232,0.7);
      font-size:.9rem;
      margin-bottom:18px;
      text-align: center;
    }
    .lead-phone-wrap{
      display:grid;
      grid-template-columns:110px 1fr;
      gap:10px;
    }


    /* ============================================================
       RESPONSIVE — TABLET
    ============================================================ */
    @media (max-width: 1024px) {
      .container { padding: 0 32px; }
      .nav-inner  { padding: 0 32px 0 12px; }
      .residences-grid { grid-template-columns: 1fr 1fr; }
      .amenities-grid  { grid-template-columns: repeat(3, 1fr); }
      .contact-inner   { grid-template-columns: 1fr; gap: 60px; }
      .footer-inner    { grid-template-columns: 1fr; }
      .footer-col1     { border-right: none; border-bottom: 1px solid var(--c-border); padding: 36px 32px; }
      .footer-col2     { padding: 36px 32px; }
      .location-inner  { grid-template-columns: 1fr; gap: 52px; }
      .menu-right      { display: none; }
      /* New sections — tablet */
      .about-split-inner { grid-template-columns: 1fr 1fr; }
      .about-left { padding: 60px 40px; }
      .kf-mosaic { grid-template-columns: 1fr 1fr; }
    }

    /* ============================================================
       RESPONSIVE — MOBILE
    ============================================================ */
    @media (max-width: 768px) {
        .nav-logo img{
  height:54px;
}
      :root { --nav-h: 64px; }
      .container { padding: 0 22px; }
      .nav-inner  { padding: 0 16px 0 10px; }
      .nav-desktop { display: none; }
      .hamburger   { display: flex; }

      /* Always show navbar background on mobile — no transparent bleed into hero */
      .navbar {
        background: rgba(13,13,11,0.97);
        backdrop-filter: blur(14px);
        box-shadow: 0 1px 0 var(--c-border);
      }

      .hero {
  height: auto;
  min-height: auto;
  padding-bottom: 0;
}

.hero-layout{
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: 0;
}

.hero-content {
  padding: 40px 22px 60px;
  max-width: 100%;
  max-height: none;
  justify-content: flex-start;
}

.hero-lead-form{
  position: relative;
  width: calc(100% - 44px);
  max-width: 100%;
  margin: 0 22px 32px;
  order: 2;
  display: none;
}
      .hero-title   { font-size: clamp(2.6rem, 10vw, 4rem); }
      .hero-btns    { flex-direction: column; }
      .scroll-hint  { display: none; }

      /* New sections — mobile */
      .about-split-inner { grid-template-columns: 1fr; }
      .about-right { min-height: 280px; }
      .about-left { padding: 52px 22px; }
      .about-left::after { display: none; }
      .key-features { padding: 60px 0 0; }
      .key-features-header { padding: 0 22px 40px; }
      .kf-mosaic { grid-template-columns: 1fr; gap: 3px; }
      .kf-tile { aspect-ratio: 16/9; }

      .location-section { padding: 90px 0; }
      .location-grid { grid-template-columns: 1fr; }

      .residences-section { padding: 90px 0; }
      .residences-grid { grid-template-columns: 1fr; }

      .amenities-section { padding: 90px 0; }
      .amenities-grid { grid-template-columns: 1fr 1fr; }

      .contact-section { padding: 90px 0; }
      .form-row { grid-template-columns: 1fr; }

      .footer-inner  { grid-template-columns: 1fr; }
      .footer-mid-row { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { text-align: center; }

      .menu-left { padding: 80px 36px; }
    }

    @media (max-width: 480px) {
      .amenities-grid { grid-template-columns: 1fr; }
    }
  
/* PROJECT HIGHLIGHTS */
.project-highlights{
  padding:100px 0;
  background:#111;
}
.project-highlights-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.highlight-list{
  display:grid;
  gap:18px;
  margin-top:28px;
}
.highlight-item{
  display:flex;
  gap:14px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding-bottom:14px;
}
.highlight-item span{
  color:#c8a96b;
}
.highlight-image img{
  width:100%;
  border-radius:16px;
  min-height:520px;
  object-fit:cover;
}
@media(max-width:768px){
  .project-highlights-wrap{
    grid-template-columns:1fr;
    padding:0 22px;
  }
  .highlight-image{
    order:-1;
  }
  .highlight-image img{
    min-height:auto;
  }
}



/* ============================================================
   INNER PAGES — Disclaimer, Privacy Policy, About Us, Contact Us
============================================================ */

body.inner-page {
  background: var(--c-bg) !important;
  color: var(--c-ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
}

body.inner-page .container {
  max-width: 860px !important;
  margin: 0 auto !important;
  padding: 72px 40px 100px !important;
}

body.inner-page .box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 56px 60px;
}

body.inner-page .eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;
  opacity: 0.8;
}

body.inner-page h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--c-gold);
  line-height: 1.15;
  margin-bottom: 24px;
}

body.inner-page .intro-divider {
  width: 48px;
  height: 1px;
  background: var(--c-gold);
  margin: 28px 0 32px;
  opacity: 0.5;
}

body.inner-page h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-gold);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
  letter-spacing: 0.03em;
}

body.inner-page p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.85;
  margin-bottom: 4px;
}

body.inner-page strong {
  color: var(--c-ivory);
  font-weight: 400;
}

body.inner-page .link {
  text-align: center;
  margin: 36px 0 20px;
}

body.inner-page .btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 14px 42px;
  background: var(--c-gold);
  color: var(--c-bg);
  border: none;
  text-decoration: none;
  transition: background 0.35s, transform 0.35s;
  cursor: pointer;
}

body.inner-page .btn-primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  body.inner-page .container { padding: 40px 18px 72px !important; }
  body.inner-page .box { padding: 36px 24px; }
  body.inner-page h2 { font-size: 2rem; }
}


/* ============================================================
   LEAD FORM MODAL
============================================================ */
.lead-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lead-modal-overlay.open {
  display: flex;
}
.lead-modal-box {
  background: #1a1a17;
  border: 1px solid rgba(200,175,130,0.25);
  border-radius: 4px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.lead-modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: #c8af82;
  margin: 0 0 6px;
  text-align: center;
}
.lead-modal-box > p {
  color: #a09585;
  font-size: 0.85rem;
  margin: 0 0 22px;
  font-family: 'Jost', sans-serif;
  text-align: center;
}
.lead-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: #a09585;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.lead-modal-close:hover { color: #c8af82; }

/* ============================================================
   HERO HIGHLIGHTS BULLETS
============================================================ */
.hero-highlights {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-highlights li {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-highlights li span {
  color: #c8af82;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ============================================================
   MOBILE BUTTON CENTERING
============================================================ */
@media (max-width: 768px) {
  .hero-btns { justify-content: center; }
  .hero-btns button, .hero-btns .btn { text-align: center; width: 100%; max-width: 280px; }
  .res-body button, .res-body .btn { width: 100%; text-align: center; }
}



/* ============================================================
   ABOUT THE BUILDER
============================================================ */
.builder-section {
  background: #f8f5f0;
  padding: 90px 0;
}
.builder-inner {
  max-width: 720px;
}
.builder-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #1a3a2a;
  margin-bottom: 24px;
  line-height: 1.15;
}
.builder-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: #555048;
  line-height: 1.9;
  max-width: 640px;
}
.builder-section .eyebrow {
  color: #9c7d48;
}
@media (max-width: 768px) {
  .builder-section { padding: 60px 0; }
}

/* ============================================================
   WHATSAPP STICKY BUTTON
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  left: 36px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
@media (max-width: 768px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 24px; left: 24px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
