    /* Super-Display-Regular custom font. Drop font files into assets/fonts/ */
    @font-face {
      font-family: 'Super-Display-Regular';
      src: url('assets/fonts/super-display-regular.woff2') format('woff2'),
           url('assets/fonts/super-display-regular.woff') format('woff'),
           url('assets/fonts/super-display-regular.ttf') format('truetype'),
           url('assets/fonts/super-display-regular.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:         #faf7f2;
      --bg-card:    #ffffff;
      --primary:    #141943;
      --primary-light: #232a63;
      --accent:     #e5b36e;
      --accent-dark: #b48a47;
      --accent-soft: #fdf6ec;
      --gold:       #b48a47;
      --gold-light: #e5b36e;
      --gold-pale:  #fdf6ec;
      --dark:       #141943;
      --dark-deep:  #0c0f2e;
      --dark-grad:  linear-gradient(135deg, #141943 0%, #232a63 50%, #141943 100%);
      --text:       #2a2f4a;
      --muted:      #6a6f88;
      --border:     #e7e1d6;
      --nav-bg:     #ffffff;
      --shadow:     0 4px 24px rgba(20,25,67,0.08);
      --font-head:  'Jost', system-ui, -apple-system, sans-serif;
      --font-body:  'DM Sans', system-ui, -apple-system, sans-serif;
    }

    html { scroll-behavior: smooth; background: var(--bg); }
    body {
      font-family: var(--font-body);
      font-weight: 400;
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden;
    }
    /* All paragraphs use DM Sans Regular (400) */
    p, .section-desc, .feat-text, .acard-body p, .hcard p, .lp-name, .form-consent {
      font-family: var(--font-body);
      font-weight: 400;
    }
::-webkit-scrollbar {
    width: 3px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background: var(--dark);
}
::-webkit-scrollbar-track {
    background: #fff;
}
    /* ━━━━━━━━━━━━━━━━━━━━ HEADER ━━━━━━━━━━━━━━━━━━━━ */
    #header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      background: var(--nav-bg);
      box-shadow: 0 2px 14px rgba(42,58,85,0.08);
      transition: padding 0.3s;
      padding: 0;
      border-bottom: 1px solid rgba(42,58,85,0.06);
    }
    .header-inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 12px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    @media (max-width: 768px) {
      .header-inner { padding: 10px 18px; }
    }
    .logo-wrap { display: flex; align-items: center; gap: 14px; }
    .logo-wrap img { height: 44px; object-fit: contain; }
    .logo-divider { width: 1px; height: 32px; background: var(--border); }

    /* Hamburger — premium stepped lines */
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 6px;
      cursor: pointer;
      width: 44px; height: 44px;
      background: transparent;
      border: none;
      padding: 4px;
      flex-shrink: 0;
      position: relative;
    }
    .hamburger span {
      display: block;
      height: 1.5px;
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: right center;
    }
    /* Three lines — long, medium, short — stepped luxury look */
    .hamburger span:nth-child(1) {
      width: 26px;
      background: var(--gold);
    }
    .hamburger span:nth-child(2) {
      width: 18px;
      background: var(--dark);
      opacity: 0.55;
    }
    .hamburger span:nth-child(3) {
      width: 10px;
      background: var(--dark);
      opacity: 0.35;
    }
    .hamburger:hover span:nth-child(1) { width: 26px; background: var(--gold); }
    .hamburger:hover span:nth-child(2) { width: 22px; background: var(--gold); opacity: 0.7; }
    .hamburger:hover span:nth-child(3) { width: 18px; background: var(--gold); opacity: 1; }

    /* Open state — clean X from the stepped lines */
    .hamburger.open span:nth-child(1) {
      width: 22px;
      transform: translateY(7.5px) rotate(45deg);
      background: var(--gold);
      opacity: 1;
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .hamburger.open span:nth-child(3) {
      width: 22px;
      transform: translateY(-7.5px) rotate(-45deg);
      background: var(--gold);
      opacity: 1;
    }

    /* ── Side nav overlay backdrop ── */
    #nav-overlay {
      position: fixed; inset: 0;
      background: rgba(20,25,67,0.55);
      backdrop-filter: blur(3px);
      z-index: 950;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    #nav-overlay.open { opacity: 1; pointer-events: auto; }

    /* ── Side panel (light theme) ── */
    #nav-drawer {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: 320px;
      background: #ffffff;
      z-index: 960;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    #nav-drawer.open { transform: translateX(0); box-shadow: -10px 0 40px rgba(42,58,85,0.18); }

    /* Panel header */
    .nav-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid rgba(42,58,85,0.08);
      flex-shrink: 0;
      background: #fafbfd;
    }
    .nav-panel-head .logos { display: flex; align-items: center; gap: 10px; }
    .nav-panel-head .logos img { height: 32px; object-fit: contain; }
    .nav-panel-head .logos .ld { width: 1px; height: 24px; background: rgba(42,58,85,0.15); }
    .nav-close {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: #f4f6fa;
      border: 1px solid rgba(42,58,85,0.1);
      color: var(--dark);
      font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      flex-shrink: 0;
    }
    .nav-close:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

    /* Nav links */
    .nav-links {
      flex: 1;
      overflow-y: auto;
      padding: 14px 0;
    }
    .nav-links::-webkit-scrollbar { width: 3px; }
    .nav-links::-webkit-scrollbar-track { background: transparent; }
    .nav-links::-webkit-scrollbar-thumb { background: rgba(42,58,85,0.18); border-radius: 2px; }
    .nav-links a {
      display: flex;
      align-items: center;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      text-decoration: none;
      letter-spacing: 0.02em;
      border-left: 3px solid transparent;
      transition: all 0.22s;
    }
    .nav-links a .nav-link-text {
      flex: 1;
      font-family: var(--font-head);
      font-size: 14.5px;
      letter-spacing: 0.01em;
    }
    .nav-links a .nav-arrow {
      font-size: 11px;
      opacity: 0;
      transform: translateX(-6px);
      transition: all 0.22s;
      color: var(--accent);
      margin-left: auto;
    }
    .nav-links a:hover {
      color: var(--accent-dark);
      background: var(--accent-soft);
      border-left-color: var(--accent);
      padding-left: 28px;
    }
    .nav-links a:hover .nav-arrow { opacity: 1; transform: translateX(0); }

    /* Panel footer */
    .nav-panel-foot {
      padding: 20px 24px;
      border-top: 1px solid rgba(42,58,85,0.08);
      flex-shrink: 0;
      background: #fafbfd;
    }
    .nav-contact-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 16px;
    }
    .nav-contact-list a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--dark);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color .2s;
    }
    .nav-contact-list a:hover { color: var(--accent-dark); }
    .nav-contact-list a i {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      flex-shrink: 0;
      transition: all .2s;
    }
    .nav-contact-list a:hover i {
      background: var(--accent);
      color: #fff;
    }
    .nav-socials-row {
      display: flex;
      gap: 8px;
      margin-bottom: 18px;
      justify-content: space-between;
    }
    .nav-socials-row a {
      flex: 1;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: #f4f6fa;
      border: 1px solid rgba(42,58,85,0.08);
      color: var(--dark);
      text-decoration: none;
      font-size: 14px;
      transition: all .2s;
    }
    .nav-socials-row a:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      transform: translateY(-2px);
    }
    .nav-enquire {
      width: 100%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: #fff;
      border: none;
      padding: 13px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 6px;
      transition: filter .2s, transform .15s;
    }
    .nav-enquire:hover { filter: brightness(1.08); transform: translateY(-1px); }

    /* ── Drawer responsive sizing ── */
    @media (max-width: 1024px) {
      #nav-drawer { width: 300px; }
    }
    @media (max-width: 768px) {
      #nav-drawer { width: 86%; max-width: 320px; }
      .nav-panel-head { padding: 16px 20px; }
      .nav-panel-head .logos img { height: 28px; }
      .nav-close { width: 32px; height: 32px; font-size: 13px; }
      .nav-links { padding: 10px 0; }
      .nav-links a { padding: 11px 20px; font-size: 13.5px; }
      .nav-links a .nav-link-text { font-size: 14px; }
      .nav-links a:hover { padding-left: 24px; }
      .nav-panel-foot { padding: 16px 20px; }
      .nav-contact-list a { font-size: 13px; gap: 10px; }
      .nav-contact-list a i { width: 28px; height: 28px; font-size: 12px; }
      .nav-socials-row a { height: 36px; font-size: 13px; border-radius: 8px; }
      .nav-enquire { padding: 12px; font-size: 11.5px; }
    }
    @media (max-width: 480px) {
      #nav-drawer { width: 92%; max-width: 300px; }
      .nav-panel-head { padding: 14px 18px; }
      .nav-panel-head .logos { gap: 8px; }
      .nav-panel-head .logos img { height: 26px; }
      .nav-links a { padding: 10px 18px; }
      .nav-links a .nav-link-text { font-size: 13.5px; }
      .nav-panel-foot { padding: 14px 18px; }
      .nav-contact-list { gap: 8px; margin-bottom: 12px; }
      .nav-socials-row { gap: 6px; margin-bottom: 14px; }
      .nav-socials-row a { height: 34px; font-size: 12px; }
    }
    @media (max-width: 360px) {
      .nav-links a .nav-link-text { font-size: 13px; }
      .nav-contact-list a { font-size: 12px; }
      .nav-contact-list a i { width: 26px; height: 26px; }
      .nav-socials-row a { height: 32px; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━ HERO BANNER ━━━━━━━━━━━━━━━━━━━━ */
    /* Desktop banner — 1920 × 900 (aspect 1920/900 ≈ 2.133) */
    /* Mobile banner  — 1080 × 1920 (aspect 1080/1920 = 0.5625, portrait) */
    #hero {
      margin: 0;
      padding: 0;
      width: 100%;
      line-height: 0;
      position: relative;
      overflow: hidden;
    }
    #hero picture,
    #hero img {
      width: 100%;
      display: block;
    }
    #hero img {
      height: auto;
    }
    @media (max-width: 768px) {
      #hero img {
        aspect-ratio: 1080 / 1920;
        max-height: 100vh;
      }
    }

    /* ━━━━━━━━━━━━━━━━━━━━ STICKY RIGHT BUTTON ━━━━━━━━━━━━━━━━━━━━ */
    .sticky-right-btn {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 800;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      background: var(--gold);
      color: #fff;
      padding: 22px 12px;
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      border-radius: 6px 0 0 6px;
      box-shadow: -4px 0 20px rgba(20,25,67,.3);
      transition: background .2s, padding .2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sticky-right-btn:hover { background: #0c0f2e; padding-right: 18px; }
    .sticky-right-btn .icon {
      writing-mode: horizontal-tb;
      font-size: 14px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━ STATS BAR ━━━━━━━━━━━━━━━━━━━━ */
    #stats {
      background: linear-gradient(135deg, #141943 0%, #232a63 50%, #141943 100%);
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    #stats::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 50%, rgba(229,179,110,.12) 0%, transparent 50%),
                  radial-gradient(circle at 80% 50%, rgba(229,179,110,.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .stats-inner {
      max-width: 1300px; margin: 0 auto; padding: 0 32px;
      display: grid; grid-template-columns: repeat(5,1fr);
      position: relative; z-index: 1;
    }
    .stat-item {
      padding: 36px 20px; text-align: center;
      border-right: 1px solid rgba(229,179,110,.18);
      transition: background .25s;
    }
    .stat-item:hover { background: rgba(229,179,110,.06); }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: var(--font-head);
      font-size: clamp(34px,3.4vw,46px); font-weight:500; letter-spacing:-0.01em;
      background: linear-gradient(135deg, var(--accent) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display:block; line-height:1; margin-bottom:8px;
    }
    .stat-label { font-size:10px; font-weight:600; letter-spacing:.1em; color:rgba(255,255,255,.7); text-transform:uppercase; }

    /* ━━━━━━━━━━━━━━━━━━━━ SECTION COMMONS ━━━━━━━━━━━━━━━━━━━━ */
    section { padding: 90px 0; }
    .container { max-width:1300px; margin:0 auto; padding:0 32px; }
    .section-tag { display:inline-block; font-family: var(--font-head); font-size:13px; font-weight:500; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
    .section-title { font-family: var(--font-head); font-size:clamp(30px,3.6vw,48px); font-weight:400; letter-spacing:-0.015em; color:var(--dark); line-height:1.2; margin-bottom:18px; }
    .section-desc { font-family: var(--font-body); font-size:15px; color:var(--muted); line-height:1.8; max-width:640px; }
    .gold-line { width:60px; height:2px; background:linear-gradient(90deg, var(--accent-dark), var(--gold-light)); margin-bottom:26px; border-radius:2px; }
    .text-center { text-align:center; }
    .text-center .gold-line { margin-left:auto; margin-right:auto; }
    .text-center .section-desc { margin-left:auto; margin-right:auto; }

    /* Cards base */
    .card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      transition: transform .25s, box-shadow .25s;
    }
    .card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(20,25,67,.09); }

    /* ━━━━━━━━━━━━━━━━━━━━ OVERVIEW ━━━━━━━━━━━━━━━━━━━━ */
    #overview { background: var(--bg); }
    .overview-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
    .overview-left { display: flex; flex-direction: column; }
    .overview-features {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 32px;
    }
    .feat-item {
      display: flex;
      gap: 14px;
      align-items: center;
      padding: 18px 20px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      transition: transform .25s, box-shadow .25s, border-color .25s;
      min-height: 90px;
    }
    .feat-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(20,25,67,.08);
      border-color: var(--accent);
    }
    .feat-icon {
      width: 40px; height: 40px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 16px;
      transition: all .25s;
    }
    .feat-item:hover .feat-icon {
      background: var(--accent);
      color: #fff;
    }
    .feat-text { font-size:13px; line-height:1.55; color:var(--muted); }
    .feat-text strong { display:block; font-weight:600; color:var(--dark); margin-bottom:4px; font-size: 14.5px; letter-spacing: .01em; }
    @media (max-width: 600px) {
      .overview-features { grid-template-columns: 1fr; }
    }

    .overview-images { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
    .ov-img {
      border-radius:10px; overflow:hidden; position:relative;
      display:flex; align-items:center; justify-content:center;
    }
    .ov-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }
    .ov-img:hover img { transform: scale(1.05); }
    .ov-img.main { grid-column:1/-1; height: 320px; }
    .ov-img.sub { height: 220px; }
    .ov-img::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(20,25,67,.55) 100%);
      pointer-events: none;
    }
    .ov-caption {
      position: absolute;
      bottom: 14px; left: 16px;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      z-index: 1;
      display: flex; align-items: center; gap: 8px;
    }
    .ov-caption i { color: var(--accent); }
    .art-tag { position:absolute; bottom:8px; right:10px; font-size:9px; color:rgba(255,255,255,.7); font-style:italic; z-index: 1; }

    /* ━━━━━━━━━━━━━━━━━━━━ HIGHLIGHTS ━━━━━━━━━━━━━━━━━━━━ */
    #highlights { background: var(--bg-card); }
    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 56px;
    }
    .hcard {
      padding: 40px 32px 36px;
      position: relative;
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 4px;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }
    .hcard::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
      opacity: 0;
      transition: opacity .35s ease;
    }
    .hcard:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 50px rgba(20,25,67,.12);
      border-color: var(--accent);
    }
    .hcard:hover::before { opacity: 1; }
    .hcard-icon {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--accent);
      margin-bottom: 26px;
      transition: background .35s ease, color .35s ease, transform .35s ease;
      position: relative;
    }
    .hcard-icon::after {
      content: "";
      position: absolute;
      inset: -6px;
      border: 1px solid var(--accent);
      border-radius: 50%;
      opacity: 0;
      transform: scale(.9);
      transition: opacity .35s ease, transform .35s ease;
    }
    .hcard:hover .hcard-icon {
      background: var(--accent);
      color: #fff;
    }
    .hcard:hover .hcard-icon::after { opacity: 1; transform: scale(1); }
    .hcard h3 {
      font-family: var(--font-head);
      font-size: 19px;
      font-weight: 500;
      color: var(--dark);
      margin-bottom: 12px;
      line-height: 1.35;
      letter-spacing: 0;
    }
    .hcard p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.75;
    }
    .hcard-num, .hcard-accent { display: none; }

    /* ━━━━━━━━━━━━━━━━━━━━ AMENITIES ━━━━━━━━━━━━━━━━━━━━ */
    #amenities { background: var(--bg); }
    #amenities .section-desc { text-align: left; max-width: 860px; }
    .amenities-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:52px; }
    .acard { border-radius:12px; overflow:hidden; border:1px solid var(--border); transition:transform .25s,box-shadow .25s; background: var(--bg-card); }
    .acard:hover { transform:translateY(-6px); box-shadow:0 20px 40px rgba(20,25,67,.12); }
    .acard-img {
      height:200px;
      position:relative;
      overflow: hidden;
    }
    .acard-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .acard:hover .acard-img img { transform: scale(1.08); }
    .acard-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(20,25,67,.7) 100%);
      pointer-events: none;
    }
    .acard-img .icon-badge {
      position: absolute;
      top: 14px; left: 14px;
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,.95);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--accent-dark);
      z-index: 2;
      box-shadow: 0 4px 10px rgba(0,0,0,.12);
    }
    .acard-img .lbl {
      position: absolute;
      bottom: 12px; left: 14px;
      font-size: 11px;
      color: rgba(255,255,255,.95);
      letter-spacing:.08em;
      text-transform: uppercase;
      font-weight: 600;
      z-index: 1;
    }
    .acard-img .art-tag { color: rgba(255,255,255,.6); z-index: 2; }
    .acard-body { padding:16px 18px 18px; background:var(--bg-card); }
    .acard-body h4 { font-size:17px; font-weight:500; color:var(--dark); margin-bottom:4px; font-family: var(--font-head); }
    .acard-body p { font-size:12.5px; color:var(--muted); line-height: 1.55; }

    /* ━━━━━━━━━━━━━━━━━━━━ FLOOR PLANS ━━━━━━━━━━━━━━━━━━━━ */
    #floorplans { background: var(--dark-grad); }
    .plans-tabs { display:flex; gap:0; margin-top:44px; border:1.5px solid var(--border); width:fit-content; border-radius:6px; overflow:hidden; background:var(--bg-card); }
    .tab-btn { padding:11px 26px; font-family: var(--font-head); font-size:12px; font-weight:600; letter-spacing:.07em; text-transform:uppercase; color:var(--muted); background:transparent; border:none; border-right:1.5px solid var(--border); cursor:pointer; transition:all .2s; }
    .tab-btn:last-child { border-right:none; }
    .tab-btn.active { background:var(--gold); color:#fff; }
    .tab-btn:hover:not(.active) { background:var(--gold-pale); color:var(--gold); }
    .plan-content { display:none; margin-top:36px; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
    .plan-content.active { display:grid; }
    .plan-img-box {
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      height: 400px;
      position: relative;
      overflow: hidden;
      transition: border-color .25s, transform .25s, box-shadow .25s;
    }
    .plan-img-box img {
      width: 100%; height: 100%;
      object-fit: contain;
      display: block;
      padding: 16px;
      background: #fff;
    }
    .plan-img-box .pi-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 16px;
      background: linear-gradient(180deg, transparent 60%, rgba(20,25,67,.6) 100%);
      pointer-events: none;
    }
    .plan-img-box .pi-overlay span {
      color: #fff;
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(229,179,110,.95);
      padding: 8px 14px;
      border-radius: 20px;
    }
    .plan-img-clickable { cursor: pointer; }
    .plan-img-clickable:hover {
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(20,25,67,.18);
    }
    .plan-zoom {
      margin-top: 14px;
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent-dark);
      background: var(--accent-soft);
      padding: 6px 14px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━ FLOOR PLAN POPUP ━━━━━━━━━━━━━━━━━━━━ */
    .plan-popup {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(20,25,67,.92);
      z-index: 11000;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(8px);
      padding: 32px 20px;
    }
    .plan-popup.open { display: flex; }
    .plan-popup-box {
      background: #fff;
      border-radius: 14px;
      max-width: 1000px;
      width: 100%;
      max-height: 92vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: 0 40px 100px rgba(0,0,0,.6);
    }
    .plan-popup-head {
      padding: 18px 26px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .plan-popup-head h3 {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 600;
      color: var(--dark);
    }
    .plan-popup-head .pp-tag {
      font-size: 11px;
      color: var(--accent-dark);
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-top: 4px;
    }
    .plan-popup-close {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--dark);
      cursor: pointer;
      font-size: 16px;
      transition: all .2s;
    }
    .plan-popup-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
    .plan-popup-body {
      flex: 1;
      overflow: auto;
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg);
    }
    .plan-popup-img {
      max-width: 100%;
      max-height: 65vh;
      width: auto;
      height: auto;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }
    .plan-popup-foot {
      padding: 16px 26px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 12px;
      justify-content: flex-end;
      background: var(--bg);
    }
    @media (max-width: 768px) {
      .plan-popup-head h3 { font-size: 16px; }
      .plan-popup-body { padding: 14px; }
    }
    .plan-details h3 { font-family: var(--font-head); font-size:26px; color:var(--dark); margin-bottom:7px; }
    .plan-details .ptag { font-size:18px; font-weight:600; color:var(--gold); margin-bottom:24px; }
    .plan-rooms { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:28px; }
    .room-item { background:var(--bg-card); border:1px solid var(--border); padding:11px 14px; border-radius:6px; }
    .room-item .rn { font-size:10px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }
    .room-item .rs { font-size:14px; font-weight:600; color:var(--dark); margin-top:2px; }

    /* ━━━━━━━━━━━━━━━━━━━━ GALLERY ━━━━━━━━━━━━━━━━━━━━ */
    #gallery { background:var(--bg-card); overflow:hidden; }
    #gallery .container { overflow:visible; }

    /* Scroll track */
    .gc-track-wrap {
      margin-top: 52px;
      overflow: hidden;
      /* peek bleed on both sides */
      margin-left: -40px;
      margin-right: -40px;
      padding: 8px 0 28px;
      cursor: grab;
    }
    .gc-track-wrap:active { cursor: grabbing; }
    .gc-track {
      display: flex;
      gap: 22px;
      width: max-content;
      animation: gcScroll 36s linear infinite;
      will-change: transform;
    }
    .gc-track-wrap:hover .gc-track { animation-play-state: paused; }
    @keyframes gcScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Card */
    .gc-card {
      flex-shrink: 0;
      width: 300px;
      cursor: pointer;
      position: relative;
    }
    .gc-img {
      width: 100%;
      height: 400px;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(20,25,67,.1);
      transition: box-shadow .3s, transform .3s;
    }
    .gc-card:hover .gc-img {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(20,25,67,.18);
    }
    .gc-img-inner {
      position: absolute; inset: 0;
      transition: transform .6s ease;
    }
    .gc-img-inner img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .gc-card:hover .gc-img-inner { transform: scale(1.08); }

    /* Badges top-left */
    .gc-badges {
      position: absolute;
      top: 14px; left: 14px;
      right: 14px;
      display: flex; gap: 6px;
      z-index: 2;
      justify-content: space-between;
      align-items: flex-start;
    }
    .gc-badge {
      background: var(--accent);
      border: none;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 20px;
      box-shadow: 0 2px 8px rgba(229,179,110,.3);
    }
    .gc-badge.km {
      background: rgba(255,255,255,.95);
      color: var(--dark);
      border: none;
      cursor: pointer;
      transition: background .2s, color .2s;
      box-shadow: 0 2px 8px rgba(20,25,67,.18);
    }
    .gc-badge.km:hover { background: var(--accent); color: #fff; }

    /* Circular view button */
    .gc-view {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      opacity: 0;
      transition: opacity .3s;
    }
    .gc-card:hover .gc-view { opacity: 1; }
    .gc-view-btn {
      width: 76px; height: 76px;
      border-radius: 50%;
      background: var(--accent);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255,255,255,.6);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .2s;
      box-shadow: 0 8px 24px rgba(0,0,0,.25);
    }
    .gc-view-btn:hover { background: var(--accent-dark); transform: scale(1.1); }

    /* Overlay dark gradient */
    .gc-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(20,25,67,.15) 0%, transparent 35%, transparent 60%, rgba(20,25,67,.7) 100%);
      z-index: 1;
    }

    /* Art tag */
    .gc-art {
      position: absolute;
      bottom: 10px; right: 12px;
      font-size: 9px;
      color: rgba(255,255,255,.35);
      font-style: italic;
      z-index: 3;
    }

    /* Card info overlaid on bottom of image */
    .gc-info {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      padding: 16px 18px;
      z-index: 3;
      pointer-events: none;
    }
    .gc-info h4 {
      font-family: var(--font-head);
      font-size: 17px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 0;
      line-height: 1.25;
      text-shadow: 0 2px 8px rgba(0,0,0,.4);
    }
    .gc-info .gc-loc {
      font-size: 12px;
      color: var(--muted);
      display: flex; align-items: center; gap: 5px;
    }
    .gc-info .gc-loc i { color: var(--accent); font-size: 10px; }
    .gc-info .gc-year {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--accent-dark);
      background: var(--accent-soft);
      padding: 3px 10px;
      border-radius: 12px;
      margin-top: 6px;
    }

    /* Scroll controls */
    .gc-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 36px;
    }
    .gc-arrow {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--bg-card);
      color: var(--dark);
      font-size: 16px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all .2s;
      flex-shrink: 0;
    }
    .gc-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
    .gc-pause-btn {
      padding: 10px 22px;
      border-radius: 20px;
      border: 1.5px solid var(--border);
      background: var(--bg-card);
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      transition: all .2s;
    }
    .gc-pause-btn:hover, .gc-pause-btn.paused {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold);
    }

    @media (max-width: 768px) {
      .gc-track-wrap { margin-left: -18px; margin-right: -18px; }
      .gc-card { width: 240px; }
      .gc-img  { height: 320px; }
    }
    @media (max-width: 480px) {
      .gc-card { width: 200px; }
      .gc-img  { height: 270px; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━ LOCATION ━━━━━━━━━━━━━━━━━━━━ */
    #location { background: var(--dark-grad); padding: 100px 0 90px; }
    #location .section-title  { color: #fff; }
    #location .section-tag    { color: var(--gold-light); }
    #location .gold-line      { background: var(--gold-light); margin-left:auto; margin-right:auto; }

    /* Map + panel layout */
    .loc-wrap {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 0;
      margin-top: 56px;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,.28);
    }
    .loc-map-frame {
      position: relative;
      min-height: 520px;
    }
    .loc-map-frame iframe {
      width: 100%; height: 100%;
      border: none;
      display: block;
      filter: contrast(1.05) saturate(0.9);
    }
    /* address chip over map */
    .loc-address-chip {
      position: absolute;
      top: 18px; left: 18px;
      background: var(--dark-grad);
      color: #fff;
      padding: 10px 16px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .04em;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
      z-index: 2;
    }
    .loc-address-chip span { font-size: 14px; }

    /* Right proximity panel */
    .loc-panel {
      background: var(--bg-card);
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      gap: 0;
      overflow-y: auto;
    }
    .loc-panel-title {
      font-family: var(--font-head);
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }
    .loc-panel-sub {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .lp-category {
      margin-bottom: 10px;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--bg-card);
      transition: border-color .2s, box-shadow .2s;
    }
    .lp-category.open { border-color: var(--accent); box-shadow: 0 6px 18px rgba(20,25,67,.07); }
    .lp-cat-head {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      cursor: pointer;
      user-select: none;
      background: var(--bg-card);
      transition: background .2s;
    }
    .lp-cat-head:hover { background: var(--accent-soft); }
    .lp-cat-icon {
      width: 32px; height: 32px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }
    .lp-category.open .lp-cat-icon {
      background: var(--accent);
      color: #fff;
    }
    .lp-cat-toggle {
      margin-left: auto;
      width: 22px; height: 22px;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      font-size: 11px;
      transition: transform .25s ease, color .2s;
    }
    .lp-category.open .lp-cat-toggle {
      transform: rotate(180deg);
      color: var(--accent-dark);
    }
    .lp-cat-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
      padding: 0 14px;
    }
    .lp-category.open .lp-cat-body {
      max-height: 320px;
      padding: 4px 14px 12px;
    }
    .lp-cat-name {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .lp-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0 8px 42px;
      border-bottom: 1px solid rgba(221,225,238,.5);
    }
    .lp-row:last-child { border-bottom: none; }
    .lp-cat-body .lp-row:first-child { border-top: 1px dashed var(--border); padding-top: 10px; margin-top: 4px; }
    .lp-name {
      font-size: 13px;
      color: var(--text);
    }
    .lp-dist {
      background: #e8edf8;
      color: var(--dark);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 3px 10px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .loc-panel-cta {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }
    .loc-panel-cta a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: var(--gold);
      color: #fff;
      text-decoration: none;
      padding: 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: background .2s;
    }
    .loc-panel-cta a:hover { background: #0c0f2e; }

    /* Highlight chips strip */
    .loc-chips {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-top: 32px;
      background: var(--bg-card);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,.28);
    }
    .loc-chip {
      flex: 1;
      text-align: center;
      padding: 26px 14px;
      border-right: 1px solid var(--border);
      transition: background .2s;
    }
    .loc-chip:last-child { border-right: none; }
    .loc-chip:hover { background: var(--gold-pale); }
    .loc-chip .lc-time {
      font-family: var(--font-body);
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      display: block;
    }
    .loc-chip .lc-icon { font-size: 18px; display: block; margin-bottom: 6px; color: var(--accent-dark); }
    .loc-chip .lc-label { font-size: 10px; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; margin-top: 3px; display: block; }

    @media(max-width:1100px) {
      .loc-wrap { grid-template-columns: 1fr; }
      .loc-map-frame { min-height: 360px; }
      .loc-chips { flex-wrap: wrap; }
      .loc-chip { flex: 1 1 33%; border-bottom: 1px solid var(--border); }
    }
    @media(max-width:600px) {
      .loc-chip { flex: 1 1 50%; }
    }

    /* FORM COMMONS */
    .form-title { font-family: var(--font-head); font-size:22px; font-weight:600; color:var(--dark); margin-bottom:5px; }
    .form-sub { font-size:12px; color:var(--muted); margin-bottom:22px; }
    .form-group { margin-bottom:12px; }
    .form-group input, .form-group select, .form-group textarea {
      width:100%; padding:13px 15px;
      border:1.5px solid var(--border); border-radius:6px;
      font-family: var(--font-body); font-size:13px; color:var(--text); background:#fff;
      outline:none; transition:border-color .2s, box-shadow .2s;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: 1; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(229,179,110,.15);
    }
    .form-consent { font-size:11px; color:var(--muted); margin-bottom:16px; line-height:1.6; }
    .btn-submit {
      width:100%; background:var(--gold); color:#fff; border:none;
      padding:13px; font-family: var(--font-head); font-size:13px;
      font-weight:700; letter-spacing:.07em; text-transform:uppercase;
      cursor:pointer; border-radius:5px; transition:background .2s,transform .15s;
    }
    .btn-submit:hover { background:#0c0f2e; transform:translateY(-1px); }

    /* ━━━━━━━━━━━━━━━━━━━━ FOOTER (light, premium) ━━━━━━━━━━━━━━━━━━━━ */
    footer {
      background: #ffffff;
      padding: 60px 0 84px; /* bottom padding reserves room for sticky bar */
      color: var(--muted);
      position: relative;
      border-top: 3px solid var(--accent);
    }
    footer::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(229,179,110,.4) 30%, rgba(229,179,110,.4) 70%, transparent 100%);
    }
    .footer-inner { max-width:1300px; margin:0 auto; padding:0 32px; }

    /* Top grid — 4 columns */
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }
    .ft-col h4 {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    .ft-col h4::after {
      content: "";
      position: absolute;
      left: 0; bottom: 0;
      width: 32px; height: 2px;
      background: var(--accent);
    }

    /* Brand col */
    .ft-brand-logos { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .ft-brand-logos img { height: 36px; object-fit: contain; }
    .ft-brand-logos .ld { width: 1px; height: 28px; background: rgba(20,25,67,.15); }
    .ft-tagline {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .ft-rera-chip {
      display: inline-block;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--accent-dark);
      background: var(--accent-soft);
      border: 1px solid rgba(229,179,110,.3);
      padding: 6px 12px;
      border-radius: 4px;
    }
    .ft-rera-url {
      margin-top: 8px;
      font-size: 12px;
      color: var(--muted);
      word-break: break-all;
    }

    /* Links col */
    .ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .ft-links a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s, padding-left .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .ft-links a::before {
      content: "›";
      color: var(--accent);
      font-size: 14px;
      transition: transform .2s;
    }
    .ft-links a:hover { color: var(--accent-dark); padding-left: 4px; }

    /* Contact col */
    .ft-contact { display: flex; flex-direction: column; gap: 14px; }
    .ft-contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.55; }
    .ft-contact-item i {
      width: 32px; height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-size: 13px;
      flex-shrink: 0;
    }
    .ft-contact-item a { color: var(--muted); text-decoration: none; font-weight: 500; }
    .ft-contact-label {
      display: block;
      font-size: 10px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent-dark);
      font-weight: 700;
      margin-bottom: 2px;
    }

    /* Newsletter / socials col */
    .ft-news-text { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
    .ft-socials { display: flex; gap: 10px; }
    .ft-socials a {
      width: 38px; height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #f6f7fb;
      border: 1px solid var(--border);
      color: var(--dark);
      text-decoration: none;
      font-size: 14px;
      transition: all .25s;
    }
    .ft-socials a:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      transform: translateY(-2px);
    }

    /* Disclaimer */
    .footer-disclaimer {
      padding: 22px 0 24px;
      font-size: 11px;
      color: rgba(20,25,67,.55);
      line-height: 1.75;
      border-bottom: 1px solid var(--border);
    }
    .footer-disclaimer strong { color: var(--dark); font-weight: 600; }

    /* Bottom strip — copyright + Wingman credit */
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 0;
      flex-wrap: wrap;
    }
    .footer-bottom .fb-copy {
      font-size: 11.5px;
      color: rgba(20,25,67,.55);
    }
    .footer-bottom .fb-credit {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11.5px;
      color: rgba(20,25,67,.55);
    }
    .footer-bottom .fb-credit a {
      color: var(--accent-dark);
      text-decoration: none;
      font-weight: 700;
      letter-spacing: .04em;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }
    .footer-bottom .fb-credit a:hover { color: var(--accent); }

    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
    }
    @media (max-width: 600px) {
      footer { padding-top: 40px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 24px; }
      .ft-col h4 { margin-bottom: 14px; font-size: 13px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding: 14px 0; }
      .footer-disclaimer { padding: 18px 0 20px; font-size: 10.5px; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━ STICKY BOTTOM FORM BAR ━━━━━━━━━━━━━━━━━━━━ */
    #sticky-bar {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 700;
      background: var(--dark-grad);
      box-shadow: 0 -8px 28px rgba(0,0,0,.32);
      padding: 14px 0;
    }
    .sticky-bar-inner {
      width: 100%;
      margin: 0;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr) auto;
      align-items: center;
      gap: 12px;
    }
    .sb-input {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.14);
      border-radius: 6px;
      font-family: var(--font-body);
      font-size: 13px;
      color: #fff;
      outline: none;
      transition: border-color .2s, background .2s, box-shadow .2s;
    }
    .sb-input::placeholder { color: rgba(255,255,255,.55); font-weight: 400; }
    .sb-input:hover { background: rgba(255,255,255,.09); }
    .sb-input:focus {
      border-color: var(--accent);
      background: rgba(255,255,255,.1);
      box-shadow: 0 0 0 3px rgba(229,179,110,.18);
    }
    .sb-select {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='rgba(229,179,110,1)' d='M5 6L0 0h10z'/></svg>");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 32px;
    }
    .sb-select option { background: #141943; color: #fff; }
    .sb-submit {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: #fff;
      border: none;
      padding: 12px 28px;
      font-family: var(--font-body);
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 6px;
      white-space: nowrap;
      transition: filter .2s, transform .15s, box-shadow .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 14px rgba(229,179,110,.28);
    }
    .sb-submit:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(229,179,110,.4);
    }
    .sb-submit i { font-size: 12px; }

    /* ━━━━━━━━━━━━━━━━━━━━ BACK TO TOP ━━━━━━━━━━━━━━━━━━━━ */
    /* Visually-hidden H1 for SEO (announced to screen readers, not visible) */
    .visually-hidden {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0);
      white-space: nowrap; border: 0;
    }

    /* ━━━━━━━━━━━━━━━━━━━━ CTA SECTION ━━━━━━━━━━━━━━━━━━━━ */
    .cta-band {
      position: relative;
      padding: 64px 0;
      background: var(--dark-grad);
      color: #fff;
      text-align: center;
      overflow: hidden;
    }
    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(229,179,110,.15) 0%, transparent 45%),
        radial-gradient(circle at 80% 50%, rgba(229,179,110,.1) 0%, transparent 45%);
      pointer-events: none;
    }
    .cta-band .container { position: relative; z-index: 1; }
    .cta-band h3 {
      font-family: var(--font-head);
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 600;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .cta-band p {
      font-size: 14px;
      color: rgba(255,255,255,.7);
      max-width: 560px;
      margin: 0 auto 26px;
      line-height: 1.7;
    }
    .cta-buttons {
      display: inline-flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 28px;
      font-family: var(--font-body);
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      border: 2px solid transparent;
      transition: transform .2s, filter .2s, background .2s, border-color .2s, box-shadow .2s;
      white-space: nowrap;
    }
    .cta-btn.primary {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: #fff;
      box-shadow: 0 6px 18px rgba(229,179,110,.32);
    }
    .cta-btn.primary:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(229,179,110,.45); }
    .cta-btn.outline {
      background: transparent;
      color: #fff;
      border-color: rgba(255,255,255,.4);
    }
    .cta-btn.outline:hover {
      background: rgba(255,255,255,.08);
      border-color: var(--accent);
      transform: translateY(-2px);
    }
    @media (max-width: 600px) {
      .cta-band { padding: 48px 0; }
      .cta-btn { padding: 12px 22px; font-size: 11.5px; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━ MOBILE STICKY CTA BAR ━━━━━━━━━━━━━━━━━━━━ */
    #mobile-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 750;
      padding: 10px 12px;
      background: #fff;
      border-top: 1px solid var(--border);
      box-shadow: 0 -8px 24px rgba(20,25,67,.12);
      gap: 10px;
      align-items: center;
    }
    .mcta-btn {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 14px;
      font-family: var(--font-body);
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      border: none;
      transition: transform .15s, filter .2s, box-shadow .2s;
      white-space: nowrap;
    }
    .mcta-btn i { font-size: 13px; }
    .mcta-btn.primary {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: #fff;
      box-shadow: 0 4px 12px rgba(229,179,110,.3);
    }
    .mcta-btn.primary:hover, .mcta-btn.primary:active {
      filter: brightness(1.06);
      transform: translateY(-1px);
    }
    .mcta-btn.secondary {
      background: var(--dark);
      color: #fff;
      border: 1.5px solid var(--dark);
    }
    .mcta-btn.secondary:hover, .mcta-btn.secondary:active {
      background: #0c0f2e;
      transform: translateY(-1px);
    }
    @media (max-width: 768px) {
      #mobile-cta { display: flex; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━ BACK TO TOP (premium) ━━━━━━━━━━━━━━━━━━━━ */
    #back-top {
      position: fixed;
      bottom: 96px; right: 24px;
      z-index: 800;
      width: 54px; height: 54px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      padding: 0;
      background: #fff;
      box-shadow:
        0 8px 22px rgba(20,25,67,.18),
        0 2px 6px rgba(20,25,67,.08);
      transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, opacity .35s, visibility .35s;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px) scale(.9);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #back-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }
    /* progress ring base — track */
    #back-top::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: conic-gradient(var(--accent) calc(var(--bt-progress, 0) * 1%), rgba(229,179,110,.12) 0);
      mask: radial-gradient(circle, transparent 60%, #000 62%);
      -webkit-mask: radial-gradient(circle, transparent 60%, #000 62%);
      transition: background .15s linear;
    }
    /* expanding ring on hover */
    #back-top::after {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 1px solid var(--accent);
      opacity: 0;
      transform: scale(.85);
      transition: opacity .35s, transform .35s;
      pointer-events: none;
    }
    #back-top .bt-core {
      position: relative;
      z-index: 2;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #fff 0%, #fff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-dark);
      font-size: 15px;
      transition: background .35s, color .35s, transform .35s;
    }
    #back-top:hover {
      transform: translateY(-4px) scale(1);
      box-shadow:
        0 14px 32px rgba(229,179,110,.28),
        0 4px 10px rgba(20,25,67,.1);
    }
    #back-top:hover::after { opacity: 1; transform: scale(1); }
    #back-top:hover .bt-core {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: #fff;
    }
    #back-top:hover .bt-core i { animation: btArrowBounce .55s cubic-bezier(.4,0,.2,1) infinite alternate; }
    @keyframes btArrowBounce {
      from { transform: translateY(1px); }
      to   { transform: translateY(-2px); }
    }
    @media (max-width: 600px) {
      #back-top { bottom: 90px; right: 16px; width: 48px; height: 48px; }
      #back-top .bt-core { width: 38px; height: 38px; font-size: 13px; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━ MODAL ━━━━━━━━━━━━━━━━━━━━ */
    .modal-overlay {
      display:none; position:fixed; inset:0;
      background:rgba(0,0,0,.65); z-index:10000;
      align-items:center; justify-content:center;
      backdrop-filter:blur(4px);
    }
    .modal-overlay.open { display:flex; }
    .modal-box {
      background:#fff; border-radius:10px; padding:44px 40px;
      width:90%; max-width:460px; position:relative;
      box-shadow:0 40px 100px rgba(0,0,0,.45);
      max-height:90vh; overflow-y:auto;
    }
    .modal-close { position:absolute; top:14px; right:18px; background:none; border:none; font-size:20px; color:var(--muted); cursor:pointer; padding:4px; transition:color .2s; }
    .modal-close:hover { color:var(--dark); }

    /* ━━━━━━━━━━━━━━━━━━━━ TOAST ━━━━━━━━━━━━━━━━━━━━ */
    #toast {
      position:fixed; bottom:90px; left:50%; transform:translateX(-50%) translateY(12px);
      background:var(--dark); color:#fff; padding:13px 26px; border-radius:50px;
      font-size:13px; font-weight:500; opacity:0; transition:all .35s; z-index:20000;
      border-left:3px solid var(--gold); pointer-events:none; white-space:nowrap;
    }
    #toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

    /* ━━━━━━━━━━━━━━━━━━━━ BTN COMMONS ━━━━━━━━━━━━━━━━━━━━ */
    .btn-primary {
      background:var(--gold); color:#fff; border:2px solid var(--gold);
      padding:12px 30px; font-family: var(--font-head); font-size:12px;
      font-weight:700; letter-spacing:.08em; text-transform:uppercase;
      cursor:pointer; border-radius:4px; transition:all .25s;
      text-decoration:none; display:inline-block;
    }
    .btn-primary:hover { background:#0c0f2e; border-color:#0c0f2e; transform:translateY(-2px); box-shadow:0 8px 24px rgba(20,25,67,.3); }

    /* ━━━━━━━━━━━━━━━━━━━━ FAQ ━━━━━━━━━━━━━━━━━━━━ */
    /* ━━━━━━━━━━━━━━━━━━━━ TRUST / CREDENTIALS ━━━━━━━━━━━━━━━━━━━━ */
    #trust { background: var(--bg-card); }
    #trust .text-center { margin-bottom: 48px; }
    #trust .text-center .section-desc { margin-bottom: 0; }
    .trust-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .trust-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 44px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .trust-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--gold-light) 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }
    .trust-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(20,25,67,.10);
      border-color: var(--accent);
    }
    .trust-card:hover::before { transform: scaleX(1); }
    .trust-number {
      display: block;
      font-family: var(--font-head);
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1;
      background: linear-gradient(135deg, var(--accent) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 14px;
    }
    .trust-plus { -webkit-text-fill-color: transparent; }
    .trust-unit {
      font-size: .42em;
      font-weight: 600;
      margin-left: 4px;
      vertical-align: baseline;
    }
    .trust-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
    }
    @media (max-width: 860px) {
      .trust-cards { grid-template-columns: 1fr; gap: 14px; max-width: 460px; }
      .trust-card { padding: 32px 24px; }
    }

    #faq { background: var(--bg); }
    #faq .container { max-width: 1200px; }
    #faq .faq-head { margin-bottom: 48px; }
    #faq .faq-head .section-desc { margin-bottom: 0; }

    .faq-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: start;
    }
    .faq-col {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    }
    .faq-item:hover { border-color: var(--accent); box-shadow: 0 10px 28px rgba(20,25,67,.06); }
    .faq-item[open] {
      border-color: var(--accent);
      box-shadow: 0 14px 36px rgba(20,25,67,.08);
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: .005em;
      line-height: 1.45;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::marker { display: none; content: ''; }
    .faq-icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: background .25s ease, color .25s ease, transform .25s ease;
    }
    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: currentColor;
      border-radius: 1px;
      transition: transform .25s ease, opacity .25s ease;
    }
    .faq-icon::before { width: 12px; height: 2px; }
    .faq-icon::after  { width: 2px; height: 12px; }
    .faq-item[open] .faq-icon {
      background: var(--accent);
      color: #fff;
      transform: rotate(180deg);
    }
    .faq-item[open] .faq-icon::after { opacity: 0; }
    .faq-answer {
      padding: 0 24px 22px;
      border-top: 1px solid var(--border);
      margin-top: -1px;
    }
    .faq-answer p {
      padding-top: 16px;
      font-size: 13.5px;
      line-height: 1.75;
      color: var(--muted);
      margin: 0;
    }

    /* ━━━━━━━━━━━━━━━━━━━━ RESPONSIVE ━━━━━━━━━━━━━━━━━━━━ */
    @media(max-width:1100px){
      .overview-grid { grid-template-columns:1fr; gap: 40px; }
      .ov-img.main { height: 280px; }
      .ov-img.sub  { height: 200px; }
      .amenities-grid { grid-template-columns:repeat(2,1fr); }
      .highlights-grid { grid-template-columns:repeat(2,1fr); }
      .stats-inner { grid-template-columns:repeat(3,1fr); }
      .loc-wrap { grid-template-columns: 1fr; }
      .loc-map-frame { min-height: 360px; }
    }

    /* ── Tablet ── */
    @media(max-width:900px){
      section { padding: 70px 0; }
      .container { padding: 0 24px; }
      .section-title { font-size: clamp(22px, 4vw, 32px); }
      .gc-card { width: 260px; }
      .gc-img { height: 350px; }
      .plans-tabs { flex-wrap: wrap; width: 100%; }
      .tab-btn { flex: 1; min-width: 33%; }
      .plan-content { grid-template-columns: 1fr !important; gap: 28px; }
      .plan-img-box { height: 320px; }
      .plan-rooms { grid-template-columns: 1fr 1fr; }
    }

    /* ── Mobile ── */
    @media(max-width:768px){
      .container { padding: 0 18px; }
      .header-inner { padding: 10px 16px; }
      .logo-wrap img { height: 36px; }
      .logo-divider { height: 26px; }

      section { padding: 56px 0; }
      .section-title { font-size: clamp(20px, 5vw, 28px); line-height: 1.25; }
      .section-desc { font-size: 12.5px; line-height: 1.7; }
      .section-tag { font-size: 10px; }

      /* Stats — hidden on mobile */
      #stats { display: none; }

      /* Overview */
      .overview-grid { gap: 32px; }
      .overview-features { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
      .feat-item { padding: 14px 14px; min-height: 78px; }
      .feat-text strong { font-size: 13px; }
      .feat-text { font-size: 12px; }
      .feat-icon { width: 36px; height: 36px; font-size: 14px; }
      .ov-img.main { height: 240px; }
      .ov-img.sub  { height: 170px; }

      /* Highlights — 2 col compact on tablet/mobile */
      .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
      .hcard { padding: 22px 18px; border-radius: 10px; }
      .hcard-icon { width: 44px; height: 44px; font-size: 16px; margin-bottom: 14px; border-radius: 12px; }
      .hcard-icon::after { inset: -4px; }
      .hcard h3 { font-size: 14px; line-height: 1.3; margin-bottom: 8px; }
      .hcard p { font-size: 12px; line-height: 1.6; }
      .hcard:hover { transform: translateY(-3px); }

      /* Amenities — 2 col compact */
      .amenities-grid { grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 32px; }
      .acard { border-radius: 10px; }
      .acard-img { height: 140px; }
      .acard-img .icon-badge { width: 30px; height: 30px; font-size: 12px; top: 8px; left: 8px; border-radius: 8px; }
      .acard-img .lbl { font-size: 9.5px; bottom: 8px; left: 10px; letter-spacing: .06em; }
      .acard-img .art-tag { font-size: 8px; bottom: 6px; right: 8px; }
      .acard-body { padding: 10px 12px 12px; }
      .acard-body h4 { font-size: 13px; line-height: 1.3; }
      .acard-body p { font-size: 11.5px; line-height: 1.45; }
      .acard:hover { transform: translateY(-3px); }

      /* Floor plans */
      .plans-tabs { flex-wrap: wrap; }
      .tab-btn { flex: 1; min-width: 50%; padding: 10px 14px; font-size: 11px; }
      .plan-img-box { height: 280px; }
      .plan-img-box img { padding: 10px; }
      .plan-img-box .pi-overlay span { font-size: 10px; padding: 6px 12px; }
      .plan-details h3 { font-size: 22px; }
      .plan-details .ptag { font-size: 14px; margin-bottom: 16px; }
      .plan-rooms { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
      .room-item { padding: 9px 12px; }

      /* Gallery */
      .gc-track-wrap { margin-left: -18px; margin-right: -18px; }
      .gc-card { width: 230px; }
      .gc-img  { height: 320px; }
      .gc-info h4 { font-size: 15px; }
      .gc-view-btn { width: 60px; height: 60px; font-size: 12px; }

      /* Location */
      .loc-wrap { margin-top: 36px; }
      .loc-map-frame { min-height: 320px; }
      .loc-panel { padding: 24px 20px; }
      .loc-panel-title { font-size: 16px; }
      .loc-chips { flex-wrap: wrap; margin-top: 24px; }
      .loc-chip { flex: 1 1 33%; padding: 18px 8px; border-bottom: 1px solid var(--border); }
      .loc-chip .lc-time { font-size: 18px; }
      .loc-chip .lc-icon { font-size: 16px; }

      /* Plan popup */
      .plan-popup { padding: 16px 12px; }
      .plan-popup-head { padding: 14px 18px; }
      .plan-popup-head h3 { font-size: 15px; }
      .plan-popup-body { padding: 12px; }
      .plan-popup-foot { padding: 12px 16px; }

      /* Modal */
      .modal-box { padding: 28px 20px; }
      .form-title { font-size: 18px; }
      .form-group input, .form-group select { padding: 11px 13px; font-size: 12.5px; }

      /* FAQ */
      #faq .faq-head { margin-bottom: 32px; }
      .faq-list { grid-template-columns: 1fr; gap: 12px; }
      .faq-col { gap: 12px; }
      .faq-item summary { padding: 16px 18px; font-size: 13.5px; gap: 14px; }
      .faq-icon { width: 24px; height: 24px; }
      .faq-icon::before { width: 10px; }
      .faq-icon::after  { height: 10px; }
      .faq-answer { padding: 0 18px 18px; }
      .faq-answer p { padding-top: 12px; font-size: 12.5px; line-height: 1.7; }

      /* Sticky right enquire button */
      .sticky-right-btn { padding: 14px 9px; font-size: 10.5px; }

      /* Hide sticky bottom CTA on mobile (mobile CTA bar shows instead) */
      #sticky-bar { display: none !important; }
      footer { padding-bottom: 90px; }

      /* Toast position — above mobile CTA bar */
      #toast { bottom: 96px; font-size: 12px; padding: 11px 22px; }

      /* Back to top — sit just above mobile CTA bar */
      #back-top { bottom: 84px; right: 14px; }
    }

    /* ── Small phones ── */
    @media(max-width:480px){
      .container { padding: 0 14px; }
      .header-inner { padding: 10px 14px; }
      .logo-wrap { gap: 10px; }
      .logo-wrap img { height: 32px; }

      section { padding: 48px 0; }
      .section-title { font-size: clamp(19px, 5.5vw, 24px); }

      .stats-inner { grid-template-columns: 1fr 1fr; }
      .stat-number { font-size: 24px; }

      .overview-features { grid-template-columns: 1fr; gap: 10px; }
      .feat-item { min-height: auto; padding: 12px 14px; }

      .highlights-grid { gap: 14px; }
      .hcard { padding: 24px 20px; }
      .amenities-grid { grid-template-columns: 1fr; gap: 14px; }
      .acard-img { height: 200px; }

      .plan-img-box { height: 240px; }
      .plan-rooms { grid-template-columns: 1fr; }
      .tab-btn { min-width: 100%; }

      .gc-card { width: 200px; }
      .gc-img  { height: 270px; }

      .loc-chip { flex: 1 1 50%; }

      .modal-box { padding: 24px 16px; }
      .plan-popup-head h3 { font-size: 14px; }
      .plan-popup-foot .btn-primary { padding: 10px 18px; font-size: 11px; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━ KEYWORD TAGS ━━━━━━━━━━━━━━━━━━━━ */
    .kw-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 12px 0 20px;
    }
    .kw-tag {
      display: inline-block;
      padding: 5px 13px;
      background: var(--accent-soft);
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      color: var(--primary);
      line-height: 1.4;
    }

    /* Popular Searches section */
    #popular-searches {
      background: var(--bg);
      padding: 32px 0 24px;
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .ps-head {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }
    #popular-searches .kw-tags {
      justify-content: center;
    }
    .kw-tags-lg .kw-tag {
      font-size: 13px;
      padding: 6px 16px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━ CMS / LEGAL PAGES ━━━━━━━━━━━━━━━━━━━━ */
    .section-cms {
      padding-top: 140px;
      padding-bottom: 80px;
      background: var(--bg);
    }
    .section-cms .container { max-width: 960px; }
    .section-cms .section-title {
      margin-bottom: 8px;
      position: relative;
      padding-bottom: 18px;
    }
    .section-cms .section-title::after {
      content: "";
      display: block;
      width: 56px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      position: absolute;
      left: 0;
      bottom: 0;
    }
    .section-cms .cms-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 40px 44px;
      box-shadow: var(--shadow);
    }
    .section-cms .cms-item h3 {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 600;
      color: var(--primary);
      margin-top: 28px;
      margin-bottom: 12px;
      letter-spacing: .01em;
    }
    .section-cms .cms-item h4 {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 600;
      color: var(--primary-light);
      margin-top: 18px;
      margin-bottom: 8px;
    }
    .section-cms .cms-item p {
      font-size: 14px;
      line-height: 1.85;
      color: var(--text);
      margin-bottom: 14px;
    }
    .section-cms .cms-item ul {
      list-style: none;
      padding: 0;
      margin: 8px 0 18px;
    }
    .section-cms .cms-item ul li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 8px;
    }
    .section-cms .cms-item ul li::before {
      content: "";
      position: absolute;
      left: 4px;
      top: 11px;
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }
    .section-cms .cms-item ul li strong { color: var(--primary); font-weight: 600; }
    .section-cms .cms-item a {
      color: var(--primary);
      text-decoration: none;
      border-bottom: 1px solid var(--gold);
      transition: color .2s;
    }
    .section-cms .cms-item a:hover { color: var(--gold); }

    @media (max-width: 768px) {
      .section-cms { padding-top: 110px; padding-bottom: 60px; }
      .section-cms .cms-item { padding: 26px 20px; border-radius: 8px; }
      .section-cms .cms-item h3 { font-size: 17px; margin-top: 22px; }
      .section-cms .cms-item h4 { font-size: 14px; }
      .section-cms .cms-item p,
      .section-cms .cms-item ul li { font-size: 13px; line-height: 1.75; }
    }

/* ═══════════════════════════════════════════════════════════════════════════
   REFERENCE-MATCH OVERRIDES (APR / Eterno design language)
   Header · Stats · About · Amenities · Gallery · Location · Plans · Searches · Sticky form
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───────── HEADER : transparent over hero, solid + dark on scroll ───────── */
#header {
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
/* subtle scrim so white logo + nav stay legible over the bright banner */
#header.transparent:not(.scrolled)::before {
  content: "";
  position: absolute; inset: 0; bottom: auto; height: 140px;
  background: linear-gradient(180deg, rgba(8,11,30,.55) 0%, rgba(8,11,30,0) 100%);
  pointer-events: none; z-index: -1;
}
#header .header-inner {
  max-width: 1300px;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
#header .logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
#header .logo-wrap img { object-fit: contain; display: block; }
#header .logo-light { height: 48px; }
#header .logo-dark  { height: 42px; }
#header .logo-divider { width: 1px; height: 30px; background: var(--border); }
#header .logo-ur { height: 34px; }
/* Transparent over hero → only white logo. Bulletproof against cascade. */
#header:not(.scrolled) .logo-light { display: block !important; }
#header:not(.scrolled) .logo-dark,
#header:not(.scrolled) .logo-divider,
#header:not(.scrolled) .logo-ur { display: none !important; }

/* Desktop horizontal nav */
#header .main-nav { display: flex; align-items: center; gap: 30px; }
#header .main-nav a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
#header .main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold-light);
  transition: width .28s ease;
}
#header .main-nav a:hover { color: var(--gold-light); }
#header .main-nav a:hover::after { width: 100%; }

#header .header-actions { display: flex; align-items: center; gap: 18px; }
#header .hamburger { display: none; }
#header .header-cta {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: none; cursor: pointer;
  padding: 12px 26px; border-radius: 30px;
  box-shadow: 0 8px 22px rgba(180,138,71,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
#header .header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(180,138,71,.42); }

/* Hamburger lines default white over hero (+ shadow for legibility on bright banner) */
#header:not(.scrolled) .hamburger span:nth-child(1),
#header:not(.scrolled) .hamburger span:nth-child(2),
#header:not(.scrolled) .hamburger span:nth-child(3) { background: #fff; opacity: 1; filter: drop-shadow(0 1px 2px rgba(0,0,0,.55)); }

/* ── Scrolled state : solid white, dark logo lockup, navy menu ── */
#header.scrolled {
  background: #fff;
  box-shadow: 0 2px 18px rgba(20,25,67,.08);
  padding: 0;
}
#header.scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }
#header.scrolled .logo-light { display: none !important; }
#header.scrolled .logo-dark,
#header.scrolled .logo-ur { display: block !important; }
#header.scrolled .logo-divider { display: block !important; background: var(--border); }
#header.scrolled .main-nav a { color: var(--dark); }
#header.scrolled .main-nav a:hover { color: var(--gold); }
#header.scrolled .hamburger span { background: var(--dark); }

@media (max-width: 992px) {
  #header .main-nav { display: none; }
  #header .header-cta { display: none; }
  #header .hamburger { display: flex; }
  #header .header-inner { padding: 14px 18px; }
  #header .logo-light { height: 40px; }
  #header .logo-dark { height: 36px; }
  #header .logo-ur { height: 30px; }
}

/* ───────── STATS : reference de_count (light bg, big Jost numbers) ───────── */
#stats {
  background: var(--bg-card);
  padding: 66px 0 46px;
}
#stats::before { display: none; }
#stats .stats-inner { gap: 0; }
#stats .stat-item {
  border-right: 1px solid var(--border);
  padding: 14px 18px;
}
#stats .stat-item:last-child { border-right: none; }
#stats .stat-item:hover { background: transparent; }
#stats .stat-number {
  font-family: var(--font-head);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: none;
  -webkit-text-fill-color: var(--dark);
  color: var(--dark);
  margin-bottom: 10px;
}
#stats .stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── ABOUT / OVERVIEW : reference offset-image layout ───────── */
#overview .overview-grid { align-items: center; gap: 64px; }
.overview-media { position: relative; padding: 0 56px 56px 0; }
.overview-media .ovm-main {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(20,25,67,.12);
}
.overview-media .ovm-main img { width: 100%; display: block; aspect-ratio: 530/370; object-fit: cover; }
.overview-media .ovm-offset {
  position: absolute; right: 0; bottom: 0;
  width: 42%; border-radius: 10px; overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 16px 40px rgba(20,25,67,.18);
}
.overview-media .ovm-offset img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
.overview-copy { display: flex; flex-direction: column; }
.overview-copy .section-desc { max-width: none; }
@media (max-width: 992px) {
  #overview .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .overview-media { padding: 0 48px 48px 0; max-width: 540px; }
}
@media (max-width: 600px) {
  .overview-media { padding: 0 40px 40px 0; }
  .overview-media .ovm-offset { width: 44%; border-width: 4px; }
}

/* ───────── AMENITIES : reference icon grid (icons, no images) ───────── */
#amenities .section-desc { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.amenities-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.am-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px 22px 30px;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.am-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20,25,67,.1);
  border-color: var(--accent);
}
.am-icon {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  position: relative;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.am-icon::after {
  content: ""; position: absolute; inset: -6px;
  border: 1px solid var(--accent); border-radius: 50%;
  opacity: 0; transform: scale(.9);
  transition: opacity .3s ease, transform .3s ease;
}
.am-tile:hover .am-icon { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: #fff; transform: translateY(-2px); }
.am-tile:hover .am-icon::after { opacity: 1; transform: scale(1); }
.am-tile h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 500; color: var(--dark);
  margin-bottom: 8px; line-height: 1.3;
}
.am-tile p { font-family: var(--font-body); font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
@media (max-width: 992px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (max-width: 680px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 34px; }
  .am-tile { padding: 26px 16px 22px; border-radius: 10px; }
  .am-icon { width: 60px; height: 60px; font-size: 22px; margin-bottom: 14px; }
  .am-tile h3 { font-size: 15px; }
  .am-tile p { font-size: 12px; }
}

/* ───────── GALLERY : reference hover-caption grid + lightbox ───────── */
#gallery { background: var(--bg-card); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-grid .g-item { display: block; text-decoration: none; }
.g-inner { position: relative; overflow: hidden; border-radius: 10px; }
.g-inner img {
  width: 100%; height: 100%;
  aspect-ratio: 530/370; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.g-item:hover .g-inner img { transform: scale(1.12); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(20,25,67,.45);
  opacity: 0; transition: opacity .35s ease; z-index: 1;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-caption {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  color: #fff; font-family: var(--font-head); font-size: 17px; font-weight: 500; letter-spacing: .02em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.g-item:hover .g-caption { opacity: 1; transform: translateY(0); }
/* Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 100002;
  background: rgba(8,11,30,.92);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.gallery-lightbox .gl-close { position: absolute; top: 22px; right: 30px; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; font-family: var(--font-body); }
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 32px; }
  .g-caption { font-size: 14px; }
}

/* ───────── LOCATION ADVANTAGE : reference tabs + map (light) ───────── */
#location { background: #f6f4ef; }
#location .section-title { color: var(--dark); }
#location .section-tag { color: var(--gold); }
#location .gold-line { background: linear-gradient(90deg, var(--accent-dark), var(--gold-light)); }
#location .la-sub { color: var(--text); font-size: 16px; }

.la-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin: 36px 0 30px; }
.la-tab {
  min-height: 48px; padding: 10px 26px;
  border: 1px solid var(--border); background: #fff; border-radius: 6px;
  font-family: var(--font-head); font-size: 15px; font-weight: 500; letter-spacing: .02em;
  color: var(--dark); cursor: pointer; white-space: nowrap;
  transition: all .25s ease;
}
.la-tab:hover { border-color: var(--gold-light); color: var(--accent-dark); }
.la-tab.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; border-color: var(--accent-dark);
  box-shadow: 0 8px 18px rgba(180,138,71,.32);
}

.la-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.la-col-list { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px 30px; display: flex; flex-direction: column; }
.la-panel { display: none; }
.la-panel.active { display: block; animation: laFade .35s ease; }
@keyframes laFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.la-cat {
  font-family: var(--font-head);
  color: var(--dark); font-size: 15px; letter-spacing: .12em; font-weight: 600;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); text-transform: uppercase;
}
.la-list { list-style: none; padding: 0; margin: 0; }
.la-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 13px 14px; margin: 0 -14px; border-bottom: 1px solid #eee;
  color: var(--text); font-size: 15px; cursor: default;
  transition: background-color .25s ease, transform .25s ease, padding .25s ease, box-shadow .25s ease;
}
.la-list li:last-child { border-bottom: 0; }
.la-list li .la-time { color: var(--accent-dark); font-weight: 600; white-space: nowrap; transition: all .25s ease; }
.la-list li:hover { background: var(--accent-soft); transform: translateX(4px); padding-left: 20px; box-shadow: inset 3px 0 0 var(--gold-light); }
.la-list li:hover .la-time { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; padding: 3px 10px; border-radius: 12px; }
.la-map { height: 360px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; }
.la-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Location chips on light bg */
#location .loc-chips { background: #fff; border: 1px solid var(--border); box-shadow: 0 16px 40px rgba(20,25,67,.08); margin-top: 28px; }
@media (max-width: 992px) {
  .la-grid { grid-template-columns: 1fr; }
  .la-map { height: 320px; }
}
@media (max-width: 600px) {
  .la-tabs { gap: 8px; }
  .la-tab { min-height: 42px; padding: 8px 16px; font-size: 13px; }
  .la-col-list { padding: 22px 20px; }
}

/* ───────── FLOOR PLANS : reference "Enquire Now" overlay thumbnails ───────── */
#floorplans { background: var(--bg-card); }
#floorplans .section-title { color: var(--dark); }
#floorplans .section-tag { color: var(--gold); }
#floorplans .gold-line { background: linear-gradient(90deg, var(--accent-dark), var(--gold-light)); }
.plans-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 50px; }
.plan-card { width: 360px; max-width: 100%; }
.plan-thumb {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(20,25,67,.1);
}
.plan-thumb img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; filter: blur(3px); transform: scale(1.04); }
.plan-veil { position: absolute; inset: 0; background: rgba(20,25,67,.42); }
.plan-enquire {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; cursor: pointer; border: none; white-space: nowrap;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 13px 30px; border-radius: 30px;
  box-shadow: 0 10px 26px rgba(180,138,71,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan-enquire:hover { transform: translate(-50%,-50%) translateY(-2px); box-shadow: 0 14px 32px rgba(180,138,71,.5); }
.plan-cap { text-align: center; margin-top: 20px; }
.plan-cap h3 { font-family: var(--font-head); font-size: 22px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.plan-cap .plan-tag { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--gold); }
@media (max-width: 600px) {
  .plans-row { gap: 30px; margin-top: 34px; }
  .plan-card { width: 100%; }
  .plan-cap h3 { font-size: 19px; }
}

/* ───────── POPULAR SEARCHES : reference bordered pills ───────── */
#popular-searches { background: var(--bg-card); padding: 42px 0 32px; }
#popular-searches .ps-head {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600; letter-spacing: .01em;
  color: var(--dark); text-transform: none; margin-bottom: 18px;
}
#popular-searches .kw-tags { gap: 9px 8px; line-height: 2.2; }
#popular-searches .kw-tag {
  background: transparent;
  border: 1px solid var(--border);
  color: #555;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  padding: 6px 16px; border-radius: 20px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  cursor: pointer;
}
#popular-searches .kw-tag:hover { border-color: var(--gold-light); color: var(--accent-dark); background: var(--accent-soft); }

/* ───────── STICKY BOTTOM FORM : reference navy bar (desktop) + pill bar (mobile) ───────── */
#sticky-bar { background: var(--dark); box-shadow: 0 -6px 20px rgba(0,0,0,.18); }
#mobile-cta {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -6px 20px rgba(0,0,0,.18);
  padding: 12px 12px;
}
#mobile-cta .mcta-btn { border-radius: 30px; padding: 12px 14px; }
#mobile-cta .mcta-btn.secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}
#mobile-cta .mcta-btn.secondary:hover,
#mobile-cta .mcta-btn.secondary:active { background: rgba(255,255,255,.1); }
#mobile-cta .mcta-btn.primary { box-shadow: 0 6px 16px rgba(180,138,71,.34); }

/* ───────── RESPONSIVE FIX-UPS for reference sections ───────── */
/* Prevent grid min-content blow-outs (keeps titles wrapping, no horizontal clip) */
.section-title, .am-tile h3, .hcard h3, .acard-body h4 { overflow-wrap: anywhere; }
.highlights-grid, .amenities-grid, .gallery-grid, .stats-inner { min-width: 0; }
.hcard, .am-tile, .g-item, .stat-item { min-width: 0; }
@media (max-width: 768px) {
  /* show the reference de_count stats on mobile (2-up) */
  #stats { display: block !important; padding: 40px 0 36px; }
  /* Frame the grid as one contained card so the dividers read as panes
     inside a border instead of open lines floating to the screen edge. */
  #stats .stats-inner {
    grid-template-columns: repeat(2, minmax(0,1fr));
    margin: 0 18px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }
  #stats .stat-item { border-bottom: 1px solid var(--border); padding: 22px 14px; }
  #stats .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  /* Lone 5th item: span both columns and drop dangling borders so the
     grid closes cleanly instead of leaving a half-width open box. */
  #stats .stat-item:last-child { grid-column: 1 / -1; border-right: none; border-bottom: none; }
  #stats .stat-number { font-size: clamp(30px, 9vw, 42px); }
  #stats .stat-label { font-size: 10.5px; }
  .highlights-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .amenities-grid  { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .gallery-grid    { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (max-width: 430px) {
  .section-title { font-size: clamp(19px, 6vw, 25px) !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVISION 2 — header auto-hide · dark footer · bg alternation · video · forms
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Header: hide on scroll-down, reveal on scroll-up ── */
#header { transition: background .35s ease, box-shadow .35s ease, padding .35s ease, transform .4s ease; will-change: transform; }
#header.hide { transform: translateY(-100%); }

/* ── Section background alternation (white / cream rhythm) ── */
#stats              { background: #ffffff; }
#overview           { background: var(--bg); }
#highlights         { background: #ffffff; }
#amenities          { background: var(--bg); }
#gallery            { background: #ffffff; }
#floorplans         { background: var(--bg); }
#walkthrough        { background: #ffffff; }
#location           { background: var(--bg); }
#construction-update{ background: #ffffff; }
#trust              { background: var(--bg); }
#faq                { background: #ffffff; }
#popular-searches   { background: var(--bg); }

/* ── Videos: contained + centred 16:9 in the viewport ── */
.walkthrough-video-wrap {
  max-width: 1000px;
  margin-left: auto !important;
  margin-right: auto !important;
  aspect-ratio: 16 / 9;
  padding-bottom: 0 !important;
  height: auto !important;
}
.walkthrough-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── Sticky bottom form: solid navy bar with WHITE input fields (APR style) ── */
#sticky-bar { background: var(--dark); }
#sticky-bar .sb-input {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #222 !important;
  border-radius: 6px;
}
#sticky-bar .sb-input::placeholder { color: #8a8a8a !important; }
#sticky-bar .sb-input:focus {
  border-color: var(--gold-light) !important;
  box-shadow: 0 0 0 3px rgba(229,179,110,.25) !important;
}

/* ── Dark footer (APR section-dark) ── */
footer {
  background: var(--dark) !important;
  color: rgba(255,255,255,.72) !important;
  border-top: 3px solid var(--accent);
}
footer::before { display: none; }
.footer-grid { border-bottom-color: rgba(255,255,255,.12) !important; }
.ft-brand-logos img { height: 46px; }
.ft-col h4 { color: #ffffff !important; }
.ft-tagline, .ft-news-text { color: rgba(255,255,255,.65) !important; }
.ft-rera-chip { background: rgba(229,179,110,.16) !important; color: var(--gold-light) !important; border: 1px solid rgba(229,179,110,.3); }
.ft-rera-url { color: rgba(255,255,255,.5) !important; }
.ft-links a { color: rgba(255,255,255,.72) !important; }
.ft-links a:hover { color: var(--gold-light) !important; }
.ft-contact-item { color: rgba(255,255,255,.72) !important; }
.ft-contact-item i { color: var(--gold-light) !important; }
.ft-contact-item a { color: rgba(255,255,255,.85) !important; }
.ft-contact-item a:hover { color: var(--gold-light) !important; }
.ft-contact-label { color: rgba(255,255,255,.5) !important; }
.ft-socials a {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  color: #fff !important;
}
.ft-socials a:hover { background: var(--accent) !important; border-color: var(--accent) !important; color: #fff !important; }
.footer-disclaimer { color: rgba(255,255,255,.5) !important; border-color: rgba(255,255,255,.12) !important; }
.footer-disclaimer strong { color: rgba(255,255,255,.8) !important; }
.footer-bottom { border-top-color: rgba(255,255,255,.12) !important; }
.fb-copy, .fb-credit { color: rgba(255,255,255,.55) !important; }
.fb-copy a, .fb-credit a { color: var(--gold-light) !important; }
footer .ld { background: rgba(255,255,255,.2) !important; }

/* ── FAQ: Load More button (mobile-only behaviour driven by JS) ── */
.faq-loadmore {
  display: none;
  margin: 28px auto 0;
  align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 30px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; cursor: pointer; border: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 8px 20px rgba(180,138,71,.3);
}
.faq-loadmore:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(180,138,71,.42); }

/* ── Popular Searches: collapsed accordion (tags stay in DOM for crawlers) ── */
.ps-accordion { width: 100%; }
.ps-accordion > summary.ps-head {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  justify-content: center; width: 100%;
  margin-bottom: 0;
}
.ps-accordion > summary.ps-head::-webkit-details-marker { display: none; }
.ps-accordion .ps-arrow { display: inline-flex; transition: transform .3s ease; color: var(--gold); font-size: 13px; }
.ps-accordion[open] .ps-arrow { transform: rotate(180deg); }
.ps-accordion .kw-tags { margin-top: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   REVISION 3 — compact landing-page footer (Explore column removed)
   ═══════════════════════════════════════════════════════════════════════════ */
footer { padding: 40px 0 70px !important; }
.footer-grid {
  grid-template-columns: 1.6fr 1.3fr 1fr !important;
  gap: 36px !important;
  padding-bottom: 24px !important;
}
.ft-brand-logos { margin-bottom: 14px !important; }
.ft-brand-logos img { height: 40px !important; }
.ft-brand-logos .ld { height: 26px !important; }
.ft-tagline { font-size: 14.5px !important; line-height: 1.7 !important; margin-bottom: 16px !important; max-width: 380px; }
.ft-rera-chip { font-size: 11px !important; padding: 6px 12px !important; }
.ft-rera-url { font-size: 12.5px !important; margin-top: 8px !important; }

/* Section headings — consistent, restrained */
.ft-col h4 {
  font-size: 14px !important;
  letter-spacing: .1em !important;
  margin-bottom: 16px !important;
  padding-bottom: 9px !important;
}
.ft-col h4::after { width: 28px !important; }

/* Contact */
.ft-contact { gap: 16px !important; }
.ft-contact-item { font-size: 14.5px !important; line-height: 1.55 !important; gap: 12px !important; }
.ft-contact-item i { width: 34px !important; height: 34px !important; font-size: 14px !important; }
.ft-contact-item a { font-size: 14.5px !important; }
.ft-contact-label { font-size: 11px !important; }

/* Stay connected */
.ft-news-text { font-size: 14.5px !important; line-height: 1.65 !important; margin-bottom: 16px !important; max-width: 300px; }
.ft-socials a { width: 36px !important; height: 36px !important; font-size: 13px !important; }

/* Disclaimer + bottom strip — tight */
.footer-disclaimer { padding: 16px 0 16px !important; font-size: 10.5px !important; line-height: 1.65 !important; }
.footer-bottom { padding: 14px 0 0 !important; }
.footer-bottom .fb-copy, .footer-bottom .fb-credit { font-size: 11px !important; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px !important; }
}
@media (max-width: 600px) {
  footer { padding: 34px 0 96px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .ft-tagline, .ft-news-text { max-width: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVISION 4 — distinct Amenities (icon-left tiles) + premium Trust band
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── AMENITIES : horizontal icon-left tiles (distinct from Highlights) ── */
.amenities-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 18px !important;
  margin-top: 48px !important;
}
.am-tile {
  display: grid !important;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 2px;
  align-items: center;
  text-align: left !important;
  padding: 22px 26px !important;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.am-tile::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
}
.am-tile:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(20,25,67,.1); border-color: rgba(229,179,110,.5); }
.am-tile:hover::before { transform: scaleY(1); }
.am-icon {
  grid-column: 1; grid-row: 1 / span 2;
  width: 56px !important; height: 56px !important;
  margin: 0 !important;
  border-radius: 14px !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 23px !important;
  color: var(--accent-dark);
  background: var(--accent-soft);
  transition: background .3s ease, color .3s ease;
}
.am-icon::after { display: none !important; }
.am-tile:hover .am-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
  color: #fff !important; transform: none !important;
}
.am-tile h3 { grid-column: 2; grid-row: 1; align-self: end; margin: 0 !important; font-size: 17px !important; }
.am-tile p  { grid-column: 2; grid-row: 2; align-self: start; font-size: 12.5px !important; }

@media (max-width: 992px) { .amenities-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; } }
@media (max-width: 600px) {
  .amenities-grid { grid-template-columns: 1fr !important; gap: 12px !important; margin-top: 32px !important; }
  .am-tile { padding: 18px 18px !important; column-gap: 14px; }
  .am-icon { width: 48px !important; height: 48px !important; font-size: 20px !important; border-radius: 12px !important; }
  .am-tile h3 { font-size: 15px !important; }
}

/* ── TRUST "Backed by Urbanrise" : one premium stat band ── */
.trust-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  max-width: 1000px;
  margin: 0 auto !important;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(20,25,67,.07);
  overflow: hidden;
}
.trust-card {
  padding: 48px 30px !important;
  text-align: center;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  position: relative;
}
/* short, vertically-centred divider that doesn't touch the panel edges */
.trust-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 60px;
  background: var(--border);
}
.trust-card::before { display: none !important; }
.trust-card:hover { transform: none !important; box-shadow: none !important; background: transparent !important; }
.trust-number { margin-bottom: 12px !important; }
.trust-label { font-size: 11.5px !important; letter-spacing: .14em !important; }

@media (max-width: 760px) {
  .trust-cards { grid-template-columns: 1fr !important; max-width: 440px; }
  .trust-card { padding: 30px 24px !important; }
  .trust-card:not(:last-child)::after {
    right: auto; top: auto; transform: translateX(-50%);
    left: 50%; bottom: 0; width: 70px; height: 1px;
  }
}
