﻿/* ════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════ */
:root {
  --void:      #070504;
  --deep:      #100c08;
  --surface:   #1C1814;
  --ivory:     #FFFFFF;
  --stone:     #E8E4DF;
  --ash:       #C0BDB6;
  --gold:      #DDB860;
  --gold-hi:   #F5D478;
  --gold-pale: #f4e4c0;
  --mulberry:  #3F1817;
  --mulberry2: #5A2220;
  --mulberry3: #2D100F;
  --midnight:  #231F20;
  --fog:       #C0BDB6;
  --leather:   #8D7052;
  --oak:       #A59986;
  --cloud:     #FFFFFF;
  --warm:      #1A1510;
  --warm2:     #221C14;
  --cream-sec: #F5F0E8;
  --hairline:  rgba(221,184,96,.35);
  --hairline-w:rgba(255,255,255,.14);
  --c:         min(1240px, calc(100vw - 48px));
  --ease-lux:  cubic-bezier(0.22,1,0.36,1);
}

/* ════════════════════════════════════════
   BASE
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; overflow-x: hidden; }

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: #12100E;
  color: var(--ivory);
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
}
a, button, label, [role="button"] { cursor: pointer; }
input, textarea, select { cursor: text; }
input[type="radio"], input[type="checkbox"], select { cursor: pointer; }

/* ═══ BG DECORATION SYSTEM ═══ */

/* thin gold grid on body */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(221,184,96,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,184,96,.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── section deco: large soft glow circles ── */
.sec, .residence-atlas-pro { position: relative; }

/* about — top-right warm glow */
#about::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,24,23,.10) 0%, transparent 70%);
  pointer-events: none;
}
/* about — bottom-left gold glow */
#about::after {
  content: ""; position: absolute; bottom: -80px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,184,96,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* residences — center mulberry glow */
.residence-atlas-pro::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(63,24,23,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* amenities — top gold shimmer */
#amenities::before {
  content: ""; position: absolute; top: -60px; left: 20%;
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(221,184,96,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* gallery — right mulberry glow */
#gallery::before {
  content: ""; position: absolute; top: 30%; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,24,23,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* faq — subtle center mulberry */
#faq::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(63,24,23,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── thin decorative lines on3 sections ── */
#about .container::before {
  content: ""; position: absolute; top: 0; right: 60px;
  width: 1px; height: 200px;
  background: linear-gradient(180deg, rgba(221,184,96,.12), transparent);
  pointer-events: none;
}

#gallery .container::after {
  content: ""; position: absolute; bottom: 0; left: 40px;
  width: 1px; height: 180px;
  background: linear-gradient(0deg, rgba(63,24,23,.15), transparent);
  pointer-events: none;
}

/* ── corner brackets on key sections ── */
.residence-atlas-pro .ra-header::before {
  content: ""; position: absolute; top: -1px; left: -1px;
  width: 50px; height: 50px;
  border-top: 1px solid rgba(221,184,96,.15);
  border-left: 1px solid rgba(221,184,96,.15);
  pointer-events: none;
}
.residence-atlas-pro .ra-header::after {
  content: ""; position: absolute; bottom: -1px; right: -1px;
  width: 50px; height: 50px;
  border-bottom: 1px solid rgba(221,184,96,.15);
  border-right: 1px solid rgba(221,184,96,.15);
  pointer-events: none;
}
.ra-header { position: relative; }

/* ── small diamond accents ── */
.about-top::before {
  content: ""; position: absolute; top: 40px; right: 0;
  width: 8px; height: 8px;
  background: rgba(221,184,96,.12);
  transform: rotate(45deg);
  pointer-events: none;
}
.about-top::after {
  content: ""; position: absolute; bottom: 40px; left: 0;
  width: 6px; height: 6px;
  background: rgba(63,24,23,.15);
  transform: rotate(45deg);
  pointer-events: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.header {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%);
  width: min(1300px, calc(100vw - 24px));
  z-index: 200;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  background: rgba(18,16,14,.88);
  backdrop-filter: blur(24px) saturate(1.4);
}
.brand { display: flex; align-items: center; gap: 14px; height: 64px; }
.brand-logo {
  height: 60px !important; width: auto !important; object-fit: contain !important;
  filter: brightness(0) invert(1);
  transition: opacity .3s;
}
.brand:hover .brand-logo { opacity: .85; }

.nav-links { display: flex; align-items: center; gap: 32px; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,239,217,.75); font-weight: 400; }
.nav-links a { transition: color .3s; }
.nav-links a:hover { color: var(--gold-hi); }
.menu-toggle {
  display: none; background: none; border: none; padding: 8px;
  cursor: pointer; width: 36px; height: 36px; position: relative;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ivory);
  transition: all .35s var(--ease-lux); transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cloud); border: none; padding: 10px 24px;
  border-radius: 3px; transition: all .3s var(--ease-lux);
  background: linear-gradient(135deg, var(--mulberry), var(--mulberry2));
  box-shadow: 0 2px 12px rgba(63,24,23,.30);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--mulberry2), #6A2E2C); box-shadow: 0 4px 20px rgba(63,24,23,.40); }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative; height: 100svh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { transition: transform .1s linear; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: none;
}

.hero-content {
  position: relative; z-index: 2;
  width: var(--c); margin: 0 auto; padding-bottom: 100px;
}
.hero-meta-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
}
.hero-meta-row::before {
  content: ""; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero-loc {
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: .95; letter-spacing: -.01em;
  margin-bottom: 36px; max-width: 14ch;
}
.hero-title em { font-style: normal; color: var(--gold-hi); font-weight: 500; }
.hero-title span { display: block; }

.hero-footer {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.hero-tagline {
  font-size: clamp(.88rem, 1.2vw, 1rem);
  color: var(--ivory); font-weight: 300; line-height: 1.85;
  max-width: 460px; opacity: .70;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ─ buttons ─ */
.btn-lux {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Poppins", sans-serif; font-size: .62rem;
  letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
  padding: 16px 34px; border: none;
  background: linear-gradient(135deg, var(--mulberry), var(--mulberry2));
  color: var(--cloud); border-radius: 3px; cursor: pointer;
  transition: all .35s var(--ease-lux);
  box-shadow: 0 4px 20px rgba(63,24,23,.30);
}
.btn-lux:hover {
  background: linear-gradient(135deg, var(--mulberry2), #6A2E2C);
  box-shadow: 0 8px 32px rgba(63,24,23,.40);
}
.btn-lux.outline { background: transparent; border: 1px solid rgba(255,255,255,.15); color: var(--ivory); box-shadow: none; }
.btn-lux.outline:hover { border-color: var(--gold); color: var(--gold); }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ash);
}
.scroll-line {
  width: 1px; height: 52px; background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  transform-origin: top;
}

/* ── hero banner (single image, responsive) ── */
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-slide.slide-1 { background-image: url('../banners/eminent_desktop_banner.jpg'); }
@media (max-width: 980px) {
  .hero-slide.slide-1 { background-image: url('../banners/website_banner_mobile.jpg'); }
}
@media (max-width: 640px) {
  .hero-slide.slide-1 { background-image: url('../banners/website_banner_mobile.jpg'); }
}

/* hero chips */
.hero-chips {
  position: absolute; left: 50%; bottom: 220px; z-index: 2;
  transform: translateX(calc(var(--c) / 2 - 100%));
  display: flex; flex-direction: column; gap: 8px; width: 230px;
}
.h-chip {
  background: rgba(18,16,14,.65); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 6px;
  padding: 14px 18px;
}
.h-chip small { display: block; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.h-chip b { font-family: "Cormorant Garamond", serif; font-size: 1.55rem; font-weight: 400; line-height: 1; }
.h-chip span { display: block; font-size: .7rem; color: var(--ash); margin-top: 2px; font-weight: 300; }

/* ════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════ */
.band {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 22px 0; overflow: hidden;
  background: rgba(255,255,255,.02);
}
.band-track { display: flex; gap: 0; white-space: nowrap; will-change: transform; }
.band-item {
  display: inline-flex; align-items: center; gap: 28px;
  padding: 0 28px;
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.band-gem {
  width: 5px; height: 5px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ════════════════════════════════════════
   SECTION SHELL
   ════════════════════════════════════════ */
.sec { padding: 120px 0 60px; }
.sec.alt { background: #1A1412; }
.sec.surface { background: #1A1514; }
/* LIGHT section — cream background, dark text */
.sec.light { background: var(--cream-sec); color: var(--void); }
.sec.light .h2-lux { color: var(--void); }
.sec.light .h2-lux em { color: var(--mulberry); }
.sec.light .sec-copy { color: #2A211B; opacity: 1; }
.sec.light .amen-cell-desc { opacity: 1; }
.sec.light .sl-body p { opacity: 1; }
.sec.light .c-pt-body p { opacity: 1; }
.sec.light .overline-text { color: var(--mulberry); }
.sec.light .overline::before { background: var(--mulberry); }
.sec.light .amen-cell { background: #FFFFFF; }
.sec.light .amen-cell:hover { background: #FBF8F3; box-shadow: inset 0 -2px 0 var(--mulberry); }
.sec.light .amen-cell-name { color: var(--void); }
.sec.light .amen-cell-desc { color: #2A211B; }
.sec.light .amen-grid-new { background: rgba(0,0,0,.06); }
.sec.light .amen-stats-strip { border-color: rgba(0,0,0,.08); background: #FFFFFF; }
.sec.light .amen-stat-box { border-color: rgba(0,0,0,.06); }
.sec.light .amen-stat-box b { color: var(--gold); }
.sec.light .amen-stat-box span { color: #2A211B; }
.sec.light .amen-cat-strip { border-color: rgba(0,0,0,.08); }
.sec.light .amen-cat-btn { color: #4A413A; border-color: rgba(0,0,0,.06); }
.sec.light .amen-cat-btn:hover { color: var(--void); background: rgba(0,0,0,.02); }
.sec.light .amen-cat-btn.active { color: var(--mulberry); background: rgba(63,24,23,.05); }
.sec.light .amen-cat-btn.active::after { background: var(--mulberry); }
/* location light */
.sec.light .sl-body strong { color: var(--void); }
.sec.light .sl-body p { color: #2A211B; }
.sec.light .sl-n { color: var(--gold); }
.sec.light .sl-item { border-color: rgba(0,0,0,.06); }
.sec.light .sl-dist { color: var(--gold); border-color: rgba(212,168,75,.25); }
.sec.light .loc-map { border-color: rgba(0,0,0,.08); }
/* contact/enquire light */
.sec.light .c-pt-body strong { color: var(--void); }
.sec.light .c-pt-body p { color: #2A211B; }
.sec.light .c-n { color: var(--gold); }
.sec.light .form-shell { background: #FFFFFF; border-color: rgba(0,0,0,.08); box-shadow: 0 8px 40px rgba(0,0,0,.04); }
.sec.light .field { background: #F9F6F2; border-color: rgba(0,0,0,.06); color: var(--void); }
.sec.light .field:focus { border-color: var(--gold); }
.sec.light .field::placeholder { color: #A09890; }
.sec.light .f-note { color: #4A413A; }
.sec.light .c-point { border-color: rgba(0,0,0,.06); }
.sec.light .btn-lux { background: linear-gradient(135deg, var(--mulberry), var(--mulberry2)); color: var(--cloud); }
.sec.light .btn-lux:hover { background: linear-gradient(135deg, var(--mulberry2), #6A2E2C); }
.sec.light .btn-lux.outline { background: transparent; border: 1px solid rgba(63,24,23,.20); color: var(--mulberry); }
.sec.light .btn-lux.outline:hover { border-color: var(--mulberry); background: rgba(63,24,23,.04); }

.container { width: var(--c); margin: 0 auto; }

.overline {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.overline::before { content: ""; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.overline-text { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.sec-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 12vw, 10rem); font-weight: 300;
  line-height: 1; letter-spacing: -.04em;
  color: rgba(255,255,255,.03); user-select: none;
  margin-bottom: -30px; display: block;
}

.h2-lux {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -.01em;
  overflow-wrap: break-word; word-wrap: break-word;
}
.h2-lux em { font-style: normal; color: var(--gold-hi); font-weight: 500; }

.sec-copy {
  color: var(--ivory); line-height: 1.9; font-weight: 300;
  max-width: 520px; margin-top: 20px;
  font-size: clamp(.86rem, 1.1vw, .96rem);
  opacity: .65;
}

/* ════════════════════════════════════════
   ABOUT — VIDEO + CONTENT
   ════════════════════════════════════════ */
.about-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 100px;
}
.about-left { display: flex; flex-direction: column; gap: 32px; }
.about-eyebrow {
  display: flex; align-items: center; gap: 16px;
}
.about-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.about-eyebrow span { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.about-headline {
  font-family: "Poppins", sans-serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1; letter-spacing: -.01em;
}
.about-headline em { font-style: normal; color: var(--gold-hi); font-weight: 500; }
.about-body {
  font-size: clamp(.86rem, 1.1vw, .96rem);
  color: var(--ivory); line-height: 1.9; font-weight: 300;
  max-width: 480px; opacity: .65;
  border-left: 1px solid var(--hairline); padding-left: 24px;
}
.about-stats {
  display: flex; gap: 40px; padding-top: 32px;
  border-top: 1px solid var(--hairline-w);
}
.about-stat-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem; font-weight: 500; color: var(--gold-hi);
  line-height: 1;
  text-shadow: 0 0 30px rgba(212,168,75,.20);
}
.about-stat-label {
  font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ash); margin-top: 6px;
}

/* video frame */
.about-video-wrap {
  position: relative; border-radius: 3px; overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--hairline);
  cursor: pointer;
}
.about-video-thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease-lux), filter .5s;
}
.about-video-wrap:hover .about-video-thumb { transform: scale(1.03); filter: brightness(.8); }
.about-video-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,5,4,.1) 0%, rgba(7,5,4,.55) 100%);
}
.about-video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none; opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.about-video-wrap.playing iframe { opacity: 1; pointer-events: all; }
.about-video-wrap.playing .about-video-thumb,
.about-video-wrap.playing .about-video-veil,
.about-video-wrap.playing .about-play-btn { opacity: 0; pointer-events: none; }

/* play button */
.about-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: grid; place-items: center;
  z-index: 2; transition: opacity .4s;
  cursor: pointer;
}
.about-play-btn::before,
.about-play-btn::after {
  content: ""; position: absolute;
  width: 96px; height: 96px; border-radius: 50%;
  border: 1px solid rgba(221,184,96,.45);
  pointer-events: none;
}
.about-play-btn::before { animation: playPulse 2.4s ease-out infinite; }
.about-play-btn::after  { animation: playPulse 2.4s ease-out 1.2s infinite; }
@keyframes playPulse {
  0%   { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.7);  opacity: 0;  }
}
.about-play-ring {
  position: relative;
  width: 96px; height: 96px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  background: rgba(7,5,4,.55); backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.45), inset 0 0 0 4px rgba(221,184,96,.06);
  transition: transform .4s var(--ease-lux), border-color .4s, background .4s, box-shadow .4s;
}
.about-video-wrap:hover .about-play-ring {
  transform: scale(1.08);
  background: rgba(221,184,96,.18);
  box-shadow: 0 12px 40px rgba(221,184,96,.25), inset 0 0 0 4px rgba(221,184,96,.12);
}
.about-play-ring svg {
  width: 30px; height: 30px;
  fill: var(--gold-hi);
  margin-left: 5px;
  filter: drop-shadow(0 2px 8px rgba(221,184,96,.4));
}
@media (max-width: 640px) {
  .about-play-btn::before, .about-play-btn::after { width: 76px; height: 76px; }
  .about-play-ring { width: 76px; height: 76px; }
  .about-play-ring svg { width: 24px; height: 24px; }
}

/* pillars strip */
.about-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--hairline-w);
}
.about-pillar {
  padding: 44px 36px; border-right: 1px solid var(--hairline-w);
  transition: all .35s var(--ease-lux);
}
.about-pillar:last-child { border-right: none; }
.about-pillar:hover { background: rgba(255,255,255,.03); transform: translateY(-2px); box-shadow: inset 0 -2px 0 var(--gold); }
.about-pillar-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem; font-style: italic; color: var(--gold);
  margin-bottom: 18px; display: block;
}
.about-pillar h4 {
  font-weight: 500; font-size: .84rem; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 12px;
}
.about-pillar p { font-size: .82rem; color: var(--ivory); line-height: 1.8; font-weight: 300; opacity: .60; }

/* pull quote */
.pull-wrap { margin-top: 48px; padding-left: 32px; border-left: 1px solid var(--hairline); }
.pull {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.28; color: var(--ivory);
  margin-bottom: 24px;
}
.pull-attr { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); }
.pillars { margin-top: 56px; display: flex; flex-direction: column; }
.pillar-row {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-top: 1px solid var(--hairline-w);
}
.pn {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem; font-weight: 400; font-style: italic;
  color: var(--gold); flex-shrink: 0; width: 26px; padding-top: 1px;
}
.pillar-body { flex: 1; }
.pillar-body h4 { font-weight: 500; font-size: .9rem; letter-spacing: .04em; margin-bottom: 8px; text-transform: uppercase; }
.pillar-body p { font-size: .84rem; color: var(--ivory); line-height: 1.8; font-weight: 300; opacity: .60; }

/* ════════════════════════════════════════
   RESIDENCE ATLAS
   ════════════════════════════════════════ */
.residence-atlas-pro {
  padding: 120px 0;
  background: #14100C;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.ra-stage {
  width: var(--c); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 60px; align-items: center;
}
.ra-image-wrap {
  overflow: hidden;
  border: 1px solid var(--hairline); border-radius: 3px;
  aspect-ratio: 4/3;
  cursor: pointer; position: relative;
}
.ra-image-wrap::after {
  content: "Click to expand";
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: .55rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(18,16,14,.80); backdrop-filter: blur(8px);
  color: var(--gold); padding: 6px 12px; border-radius: 3px;
  border: 1px solid rgba(221,184,96,.20);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.ra-image-wrap:hover::after { opacity: 1; }

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(7,5,4,.95); backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  padding: 40px; opacity: 0;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 1400px; width: 100%;
  max-height: 90vh; display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
  max-width: 100% !important; max-height: 90vh !important;
  width: auto !important; height: auto !important;
  object-fit: contain !important;
  background: #fff; border-radius: 3px;
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.20); color: var(--ivory);
  font-size: 1.3rem; cursor: pointer; transition: all .3s;
  display: grid; place-items: center;
}
.lightbox-close:hover { background: rgba(221,184,96,.20); border-color: var(--gold); color: var(--gold); }
.lightbox-caption {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(18,16,14,.85); backdrop-filter: blur(8px);
  padding: 10px 20px; border-radius: 3px;
  border: 1px solid rgba(221,184,96,.20);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.20); color: var(--ivory);
  font-size: 1.2rem; cursor: pointer; z-index: 3;
  display: grid; place-items: center;
  transition: all .3s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav:hover { background: rgba(221,184,96,.20); border-color: var(--gold); color: var(--gold); }

/* gallery tiles clickable */
.gi { cursor: pointer; }
.gi::after {
  content: "+";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--ivory); font-size: 1.8rem; font-weight: 300;
  display: grid; place-items: center; z-index: 2;
  transition: transform .35s var(--ease-lux);
  pointer-events: none; line-height: 1;
}
.gi:hover::after { transform: translate(-50%,-50%) scale(1); }

@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 12px; width: 36px; height: 36px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
.ra-image-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 16px;
  transition: transform 1s ease, opacity .4s;
}
.ra-image-wrap:hover img { transform: scale(1.03); }
.ra-info {
  display: flex; flex-direction: column; gap: 20px;
}
.ra-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -.01em;
  color: var(--ivory);
}
.ra-tagline {
  font-size: .92rem; color: var(--ivory); line-height: 1.85; font-weight: 400; opacity: .75;
  border-left: 1px solid var(--hairline); padding-left: 20px;
}
.ra-details {
  display: flex; gap: 40px;
  padding-top: 20px; border-top: 1px solid var(--hairline-w);
}
.ra-details small {
  display: block; font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ash); margin-bottom: 6px;
}
.ra-details b {
  font-family: "Cormorant Garamond", serif; font-size: 1.35rem;
  font-weight: 400; color: var(--ivory);
}

/* selector strip */
.ra-selector {
  width: var(--c); margin: 60px auto 0;
  display: flex; gap: 0;
  border-top: 1px solid var(--hairline-w);
  padding-bottom: 0;
}
.ra-item {
  flex: 1;
  padding: 36px 32px;
  border-right: 1px solid var(--hairline-w);
  cursor: pointer; transition: background .35s;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem; font-weight: 400; color: var(--gold);
  font-style: italic; line-height: 1;
}
.ra-item:last-child { border-right: none; }
.ra-item:hover { background: rgba(184,147,90,.04); }
.ra-item.active {
  background: rgba(184,147,90,.1);
  color: var(--gold-hi);
}

/* ── RESIDENCE ATLAS — HEADER TAB STRIP ──────────── */
.ra-header {
  width: var(--c); margin: 0 auto 56px;
}
.ra-tabs {
  display: flex; flex-wrap: wrap;
  margin-top: 36px;
  border-top: 1px solid var(--hairline-w);
  border-bottom: 1px solid var(--hairline-w);
}
.ra-tab {
  padding: 16px 28px;
  font-family: "Poppins", sans-serif;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ash); background: none; border: none;
  border-right: 1px solid var(--hairline-w);
  cursor: pointer; transition: color .3s, background .3s;
  position: relative;
}
.ra-tab:last-child { border-right: none; }
.ra-tab::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform .35s var(--ease-lux); transform-origin: left;
}
.ra-tab:hover { color: var(--ivory); background: rgba(184,147,90,.03); }
.ra-tab.active { color: var(--gold-hi); }
.ra-tab.active::after { transform: scaleX(1); }

/* ════════════════════════════════════════
   DUALITY — DAY/NIGHT
   ════════════════════════════════════════ */
.duality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 64px; }
.dp {
  padding: 64px 52px;
  display: flex; flex-direction: column; gap: 28px;
}
.dp.day { background: rgba(221,184,96,.06); border: 1px solid rgba(221,184,96,.08); border-radius: 4px; }
.dp.night { background: rgba(60,80,120,.08); border: 1px solid rgba(60,80,120,.08); border-radius: 4px; }
.dp-label { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ash); }
.dp-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300; line-height: .95; }
.dp-body { font-size: .86rem; color: var(--ivory); line-height: 1.9; font-weight: 300; opacity: .60; }
.dp-signals { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 8px; }
.dp-sig { border-top: 1px solid var(--hairline-w); padding-top: 14px; }
.dp-sig small { display: block; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); margin-bottom: 6px; }
.dp-sig b { font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 400; color: var(--gold-hi); }

/* ════════════════════════════════════════
   AMENITIES — CATEGORY GRID
   ════════════════════════════════════════ */
.amen-intro {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; flex-wrap: wrap; gap: 40px;
}
.amen-stats-strip {
  display: flex; gap: 0;
  border: 1px solid var(--hairline-w); border-radius: 2px; overflow: hidden;
}
.amen-stat-box {
  padding: 20px 32px; border-right: 1px solid var(--hairline-w);
  text-align: center;
}
.amen-stat-box:last-child { border-right: none; }
.amen-stat-box b {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem; font-weight: 400; color: var(--gold-hi); line-height: 1;
}
.amen-stat-box span {
  display: block; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); margin-top: 6px;
}
.amen-cat-strip {
  display: flex; gap: 0;
  border: 1px solid var(--hairline-w); border-radius: 2px;
  margin-bottom: 2px; overflow: hidden;
}
.amen-cat-btn {
  flex: 1; padding: 14px 20px; text-align: center;
  font-family: "Poppins", sans-serif; font-size: .66rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); background: none; border: none;
  border-right: 1px solid var(--hairline-w);
  cursor: pointer; transition: color .3s, background .3s;
  position: relative; white-space: nowrap;
}
.amen-cat-btn:last-child { border-right: none; }
.amen-cat-btn::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform .35s var(--ease-lux);
}
.amen-cat-btn:hover { color: var(--ivory); background: rgba(184,147,90,.03); }
.amen-cat-btn.active { color: var(--gold-hi); background: rgba(184,147,90,.06); }
.amen-cat-btn.active::after { transform: scaleX(1); }

.amen-panel { display: none; }
.amen-panel.vis { display: block; }

.amen-grid-new {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hairline-w);
}
.amen-cell {
  background: rgba(255,255,255,.03); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .35s;
}
.amen-cell:hover { background: rgba(255,255,255,.05); }
.amen-cell-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem; font-style: italic; color: var(--gold);
}
.amen-cell-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--hairline);
  background: rgba(221,184,96,.06);
  color: var(--gold);
  transition: all .35s var(--ease-lux);
}
.amen-cell:hover .amen-cell-icon {
  background: rgba(221,184,96,.14);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.amen-cell-icon svg { width: 22px; height: 22px; }
.sec.light .amen-cell-icon {
  border-color: rgba(63,24,23,.20);
  background: rgba(63,24,23,.04);
  color: var(--mulberry);
}
.sec.light .amen-cell:hover .amen-cell-icon {
  background: rgba(63,24,23,.10);
  border-color: var(--mulberry);
}
.amen-cell-name {
  font-weight: 500; font-size: .9rem; letter-spacing: .02em;
}
.amen-cell-desc {
  font-size: .80rem; color: var(--ivory); line-height: 1.8; font-weight: 300; opacity: .60;
}

/* ════════════════════════════════════════
   GALLERY — EDITORIAL LAYOUT
   ════════════════════════════════════════ */
/* gallery — uniform 3-column grid, all tiles same aspect ratio */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 56px;
}
.gi {
  position: relative; border-radius: 4px; overflow: hidden;
  aspect-ratio: 4/3;
  min-width: 0; min-height: 0;
}
.gi img {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important; object-fit: cover !important;
  transition: transform 1s var(--ease-lux), filter .5s;
}
.gi:hover img { transform: scale(1.06); filter: brightness(1.05); }

/* featured first tile — spans 2 cols, 2 rows (big hero) */
.gi-xl { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ════════════════════════════════════════
   LOCATION
   ════════════════════════════════════════ */
.loc-grid { display: grid; grid-template-columns: .55fr .45fr; gap: 60px; align-items: stretch; }
.loc-map {
  border: 1px solid var(--hairline-w); border-radius: 4px;
  overflow: hidden; position: relative;
  min-height: 520px; height: 100%;
}
.loc-map iframe {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  border: 0;
  filter: saturate(.9) contrast(1.02);
}
.constellation {
  background: radial-gradient(ellipse at 22% 18%, rgba(184,147,90,.1), transparent 55%),
              var(--surface);
  border: 1px solid var(--hairline-w); border-radius: 2px;
  padding: 40px; min-height: 420px; position: relative;
}
.c-canvas { position: relative; height: 300px; }
.c-line {
  position: absolute; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,147,90,.28), transparent);
  transform-origin: left center;
}
.c-node {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35%, #fff, rgba(184,147,90,.7));
  box-shadow: 0 0 0 6px rgba(184,147,90,.08);
  transform: translate(-50%,-50%);
}
.c-node::after {
  content: attr(data-label);
  position: absolute; left: 18px; top: -5px;
  font-size: .68rem; letter-spacing: .1em; white-space: nowrap;
  color: rgba(240,232,219,.7);
}
.storyline { display: flex; flex-direction: column; margin-top: 44px; }
.sl-item { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--hairline-w); align-items: flex-start; }
.sl-n { font-family: "Cormorant Garamond", serif; font-size: 1.55rem; font-style: italic; color: var(--gold); flex-shrink: 0; width: 28px; padding-top: 1px; }
.sl-body strong { display: block; font-weight: 400; font-size: .88rem; letter-spacing: .04em; margin-bottom: 5px; }
.sl-body p { font-size: .84rem; color: var(--stone); line-height: 1.78; font-weight: 300; }

/* ════════════════════════════════════════
   DESIGN LAB
   ════════════════════════════════════════ */
.lab-grid { display: grid; grid-template-columns: .35fr .65fr; gap: 36px; margin-top: 64px; }
.p-btn {
  display: block; width: 100%; text-align: left; cursor: pointer;
  border: 1px solid var(--hairline-w); border-radius: 2px;
  background: none; color: var(--ivory); padding: 18px 20px;
  transition: border-color .3s, background .3s, transform .4s var(--ease-lux);
}
.p-btn + .p-btn { margin-top: 8px; }
.p-btn b { display: block; font-weight: 400; font-size: .88rem; letter-spacing: .06em; margin-bottom: 4px; }
.p-btn span { font-size: .78rem; color: var(--ash); font-weight: 300; }
.p-btn:hover { background: rgba(255,255,255,.03); }
.p-btn.active { border-color: var(--hairline); background: rgba(184,147,90,.06); transform: translateX(6px); }
.lab-out {
  border: 1px solid var(--hairline-w); border-radius: 2px;
  background: var(--surface); padding: 40px;
}
.lab-out h3 { font-family: "Cormorant Garamond", serif; font-size: 2.2rem; font-weight: 300; margin-bottom: 16px; line-height: 1.1; }
.lab-out p { font-size: .88rem; color: var(--stone); line-height: 1.9; font-weight: 300; }
.lab-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; border-top: 1px solid var(--hairline-w); padding-top: 28px; }
.m-box small { display: block; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ash); margin-bottom: 8px; }
.m-box b { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; font-weight: 400; color: var(--gold); }

/* ════════════════════════════════════════
   LIFESTYLE INDEX
   ════════════════════════════════════════ */
.idx-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin-top: 64px; background: var(--hairline-w); }
.idx-cell { background: var(--deep); padding: 44px; }
.idx-cell:hover { background: rgba(184,147,90,.03); }
.idx-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.idx-label { font-weight: 400; font-size: .88rem; letter-spacing: .06em; }
.idx-score { font-family: "Cormorant Garamond", serif; font-size: 2.6rem; font-weight: 400; color: var(--gold); line-height: 1; font-style: italic; }
.idx-bar { height: 1px; background: rgba(255,255,255,.08); position: relative; margin-bottom: 16px; }
.idx-fill { position: absolute; top: 0; left: 0; height: 1px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-pale)); }
.idx-desc { font-size: .82rem; color: var(--stone); font-weight: 300; line-height: 1.75; }

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: .48fr .52fr; gap: 80px; align-items: center; }
.contact-grid > * { min-width: 0; }
.contact-copy { display: flex; flex-direction: column; gap: 0; margin-top: 44px; }
.c-point { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--hairline-w); align-items: flex-start; }
.c-n { font-family: "Cormorant Garamond", serif; font-size: 1.55rem; font-style: italic; color: var(--gold); flex-shrink: 0; width: 32px; padding-top: 1px; line-height: 1; }
.c-pt-body { min-width: 0; flex: 1; }
.c-pt-body strong { display: block; font-weight: 400; font-size: .86rem; letter-spacing: .04em; margin-bottom: 5px; }
.c-pt-body p { font-size: .82rem; color: var(--stone); font-weight: 300; line-height: 1.75; }

.form-shell { border: 1px solid var(--hairline-w); background: var(--surface); padding: 44px; }
.form-shell .overline { margin-bottom: 28px; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field {
  width: 100%; background: rgba(255,255,255,.03);
  border: none; border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 14px 0; color: var(--ivory); outline: none;
  font-size: .88rem; font-weight: 300;
  transition: border-color .3s;
}
.field:focus { border-bottom-color: var(--gold); }
.field::placeholder { color: var(--ash); }
.f-wide { grid-column: 1 / -1; }
.f-area { resize: none; min-height: 90px; border-bottom: 1px solid rgba(255,255,255,.12); }
.f-note { font-size: .7rem; color: var(--ash); margin-top: 20px; font-weight: 300; line-height: 1.7; }

/* select field */
select.field {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px; cursor: pointer;
}
select.field option { background: var(--surface); color: var(--ivory); }

/* radio groups */
.f-radio-group { margin-top: 22px; grid-column: 1 / -1; }
.f-radio-label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 12px; font-weight: 400;
}
.f-radio-row { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.f-radio-row label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 300; color: var(--ivory);
  cursor: pointer; opacity: .85;
  transition: opacity .25s, color .25s;
}
.f-radio-row label:hover { opacity: 1; color: var(--gold-hi); }
.f-radio-row input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.30);
  background: transparent; margin: 0; flex-shrink: 0;
  cursor: pointer; transition: border-color .25s, box-shadow .25s;
  position: relative;
}
.f-radio-row input[type="radio"]:checked { border-color: var(--gold); }
.f-radio-row input[type="radio"]:checked::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--gold);
}

/* light section overrides */
.sec.light .f-radio-label { color: #2A211B; }
.sec.light .f-radio-row label { color: var(--void); }
.sec.light .f-radio-row input[type="radio"] { border-color: rgba(0,0,0,.25); }
.sec.light .f-radio-row input[type="radio"]:checked { border-color: var(--mulberry); }
.sec.light .f-radio-row input[type="radio"]:checked::after { background: var(--mulberry); }
.sec.light select.field option { background: #FFFFFF; color: var(--void); }

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq-wrap { max-width: 820px; margin: 64px auto 0; }
.fq-item { border-bottom: 1px solid var(--hairline-w); }
.fq-btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; cursor: pointer; color: var(--ivory);
  font-family: "Poppins", sans-serif; font-size: .92rem; font-weight: 400;
  letter-spacing: .01em; gap: 24px; text-align: left;
}
.fq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--hairline-w); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  font-size: 1rem; transition: transform .4s var(--ease-lux), background .3s;
}
.fq-item.active .fq-icon { transform: rotate(45deg); background: rgba(184,147,90,.1); }
.fq-ans { overflow: hidden; }
.fq-ans p { padding-bottom: 26px; font-size: .84rem; color: var(--ivory); line-height: 1.9; font-weight: 300; opacity: .60; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer { padding: 64px 0 32px; border-top: 1px solid var(--hairline-w); }

.footer-top {
  display: grid; grid-template-columns: 1.4fr 1.2fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-w);
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem; font-weight: 300; color: var(--stone);
  display: block; margin-bottom: 14px;
}
.footer-tagline {
  font-size: .78rem; color: var(--ash); line-height: 1.8;
  font-weight: 300; max-width: 260px;
}
.footer-col-label {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.footer-contact-link {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .78rem; color: var(--ash); line-height: 1.7;
  font-weight: 300; margin-bottom: 14px;
  transition: color .25s;
}
.footer-contact-link svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-contact-link:hover { color: var(--ivory); }

.footer-social-links { display: flex; flex-direction: column; gap: 10px; }
.footer-social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ash); font-weight: 300;
  padding: 9px 16px; border: 1px solid var(--hairline-w); border-radius: 3px;
  transition: all .3s var(--ease-lux);
}
.footer-social-btn:hover { color: var(--gold); border-color: var(--hairline); background: rgba(221,184,96,.04); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); }
.footer-copy a { color: var(--gold); transition: color .25s; }
.footer-copy a:hover { color: var(--gold-hi); }

@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-social-links { flex-direction: row; flex-wrap: wrap; }
}

/* ════════════════════════════════════════
   SHARED SECTION CTA ROW
   ════════════════════════════════════════ */
.sec-cta {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; align-items: center;
}
.sec-cta-note {
  flex: 1 1 100%;
  text-align: center;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 6px;
}
.sec.light .sec-cta-note { color: #2A211B; }

/* residence atlas — paired CTAs */
.ra-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ════════════════════════════════════════
   SECTION DIVIDER
   ════════════════════════════════════════ */
.divider {
  width: var(--c); margin: 0 auto;
  display: flex; align-items: center; gap: 20px; padding: 0;
  height: 1px; position: relative; overflow: visible;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--hairline-w);
}
.divider-gem {
  width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ════════════════════════════════════════
   MOBILE
   ════════════════════════════════════════ */
/* ═══ TABLET (max 980px) ═══ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(18,16,14,.97); backdrop-filter: blur(24px);
    border: 1px solid var(--hairline-w); padding: 24px;
    gap: 16px; border-radius: 4px;
  }
  .hero-chips { display: none; }
  .hero-title { font-size: clamp(2.8rem, 7vw, 4rem); }
  .hero-content { padding-bottom: 80px; }

  /* grids to single column */
  .about-top, .loc-grid, .contact-grid, .manifesto-layout { grid-template-columns: 1fr; gap: 40px; }

  /* contact copy — flush left when stacked */
  .contact-copy { margin-top: 32px; }
  .c-point { display: block; padding: 20px 0; }
  .c-n { display: block; width: auto; font-size: 1.4rem; margin-bottom: 8px; }
  .c-pt-body strong { display: block; margin-bottom: 6px; }

  .about-pillars { grid-template-columns: 1fr 1fr; }
  .about-pillar { border-bottom: 1px solid var(--hairline-w); }
  .duality-grid { grid-template-columns: 1fr; }
  .ra-stage { grid-template-columns: 1fr; gap: 40px; }
  .ra-selector { flex-wrap: wrap; }
  .lab-grid { grid-template-columns: 1fr; }
  .idx-grid { grid-template-columns: 1fr; }

  /* gallery tablet */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-xl { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }

  /* amenities */
  .amen-grid-new { grid-template-columns: repeat(2, 1fr); }
  .amen-cat-strip { flex-wrap: wrap; }
  .amen-cat-btn { flex: 1 0 33.33%; border-bottom: 1px solid var(--hairline-w); }
  .amen-intro { flex-direction: column; align-items: stretch; gap: 24px; }
  .amen-stats-strip { width: 100%; }
  .amen-stat-box { flex: 1 1 0; padding: 18px 16px; }
  .ra-tabs { flex-wrap: wrap; }
  .ra-tab { flex: 1 0 33.33%; font-size: .64rem; padding: 12px 18px; text-align: center; }

  /* loc map */
  .loc-map { min-height: 360px; }

  /* section padding */
  .sec { padding: 80px 0 40px; }
  .residence-atlas-pro { padding: 80px 0; }

  /* about video */
  .about-video-wrap { aspect-ratio: 16/9; }

  /* bg deco hide on tablet */
  #about::before, #about::after,
  .residence-atlas-pro::before,
  #gallery::before, #faq::before { opacity: .5; }
}

/* ═══ MOBILE (max 640px) ═══ */
@media (max-width: 640px) {
  :root { --c: calc(100vw - 24px); }

  .sec { padding: 64px 0 32px; }
  .residence-atlas-pro { padding: 64px 0; }

  /* nav */
  .header { top: 10px; }
  .nav { padding: 10px 14px; background: none; backdrop-filter: none; border: none; }
  .brand { height: 48px; }
  .brand-logo { height: 46px !important; }
  .nav-cta { padding: 8px 16px; font-size: .54rem; }

  /* hero */
  .hero { min-height: 600px; }
  .hero-title { font-size: 2.4rem; margin-bottom: 20px; }
  .hero-tagline { font-size: .84rem; }
  .hero-content { padding-bottom: 60px; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 24px; }
  .btn-lux { padding: 14px 24px; font-size: .56rem; }
  .scroll-cue { display: none; }

  /* headings */
  .h2-lux { font-size: 1.8rem; }
  .about-headline { font-size: 1.8rem; }
  .ra-heading { font-size: 1.8rem; }

  /* about */
  .about-top { gap: 32px; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .about-stat-val { font-size: 2.2rem; }

  /* residence */
  .ra-stage { gap: 24px; }
  .ra-selector .ra-item { font-size: 2rem; padding: 20px 16px; }
  .ra-tabs { gap: 0; }
  .ra-tab { flex: 0 0 50%; text-align: center; padding: 10px 12px; font-size: .58rem; }

  /* gallery mobile */
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gi-xl { grid-column: span 1; grid-row: span 1; aspect-ratio: 16/10; }

  /* duality */
  .dp { padding: 40px 24px; }
  .dp-signals { grid-template-columns: repeat(2,1fr); }

  /* amenities */
  .amen-grid-new { grid-template-columns: 1fr; }
  .amen-stats-strip { flex-wrap: nowrap; }
  .amen-stat-box { flex: 1 1 0; padding: 14px 8px; }
  .amen-stat-box b { font-size: 1.6rem; }
  .amen-stat-box span { font-size: .54rem; letter-spacing: .14em; }
  .amen-cat-btn { flex: 1 0 50%; border-right: none; padding: 12px 14px; font-size: .58rem; letter-spacing: .14em; }
  .amen-cell { padding: 24px 20px; }

  /* contact */
  .f-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 32px; }
  .form-shell { padding: 28px 20px; }
  .c-point { padding: 16px 0; }
  .c-pt-body strong { font-size: .9rem; }
  .c-pt-body p { font-size: .8rem; line-height: 1.65; }

  /* location */
  .loc-map { min-height: 280px; }

  /* hide get-in-touch bullet points on mobile */
  .contact-copy { display: none; }

  /* faq */
  .fq-btn { font-size: .84rem; padding: 20px 0; }

  /* lab */
  .lab-out { padding: 24px 20px; }
  .lab-metrics { grid-template-columns: 1fr; }

  /* bg deco hide on mobile */
  #about::before, #about::after,
  .residence-atlas-pro::before,
  #amenities::before,
  #gallery::before,
  #faq::before,
  #about .container::before,
  #gallery .container::after { display: none; }
  .about-top::before, .about-top::after { display: none; }
}

/* ════════════════════════════════════════
   ANIMATION HELPERS
   ════════════════════════════════════════ */
.clip-hidden { clip-path: inset(100% 0 0 0); }
.fade-hidden { opacity: 0; }
.up-hidden { opacity: 0; transform: translateY(40px); }

/* ── SCROLL PROGRESS BAR ─────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  width: 0%; z-index: 9999; pointer-events: none;
  transform-origin: left;
}

/* ── WORD SPLIT ──────────────────────────── */
.word-wrap {
  display: inline-block; overflow: hidden;
  vertical-align: top; line-height: inherit;
}
.word {
  display: inline-block;
  will-change: transform;
}

/* ── MAGNETIC BUTTON AURA ────────────────── */
.btn-lux {
  position: relative; overflow: visible;
}
.btn-aura {
  position: absolute; inset: -18px;
  border-radius: inherit; pointer-events: none;
}

/* ── SECTION PROGRESS DOTS ───────────────── */
#sec-dots {
  position: fixed; left: 28px; top: 50%;
  transform: translateY(-50%); z-index: 500;
  display: flex; flex-direction: column; gap: 10px;
}
.sec-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.18); cursor: pointer;
  transition: background .35s, transform .35s;
}
.sec-dot.active { background: var(--gold); transform: scale(1.4); }
@media (max-width: 980px) { #sec-dots { display: none; } }

/* ── STICKY RIGHT CTA ────────────────────── */
#left-cta {
  position: fixed; right: 24px; top: 50%;
  transform: translate(50%, -50%) rotate(-90deg);
  transform-origin: center;
  z-index: 500;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 26px;
  font-family: "Poppins", sans-serif; font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  background: linear-gradient(135deg, var(--mulberry), var(--mulberry2));
  color: var(--cloud); border: none; border-radius: 3px 3px 0 0;
  box-shadow: 0 4px 20px rgba(63,24,23,.30);
  transition: background .3s var(--ease-lux), box-shadow .3s var(--ease-lux);
  white-space: nowrap; cursor: pointer;
}
#left-cta:hover {
  background: linear-gradient(135deg, var(--mulberry2), #6A2E2C);
  box-shadow: 0 6px 26px rgba(63,24,23,.45);
}
#left-cta::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; background: var(--gold-hi);
  transform: rotate(45deg);
}
@media (max-width: 980px) {
  #left-cta { display: none; }   /* hide rotated right-side pill on mobile/tablet */
  .nav-cta  { display: none; }   /* hide "Book a Visit" in nav on mobile/tablet */
}

/* ── MOBILE BOTTOM STICKY CTA BAR ────────── */
#mobile-cta-bar { display: none; }
@media (max-width: 980px) {
  #mobile-cta-bar {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 500;
    display: flex;
    background: rgba(18,16,14,.95);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(221,184,96,.18);
    padding: 10px;
    gap: 8px;
  }
  #mobile-cta-bar a {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 12px;
    font-family: "Poppins", sans-serif;
    font-size: .62rem; letter-spacing: .14em;
    text-transform: uppercase; font-weight: 500;
    text-decoration: none; border-radius: 3px;
    text-align: center; line-height: 1.2;
    transition: background .3s var(--ease-lux);
  }
  #mobile-cta-bar a.primary {
    background: linear-gradient(135deg, var(--mulberry), var(--mulberry2));
    color: var(--cloud);
    box-shadow: 0 4px 14px rgba(63,24,23,.35);
  }
  #mobile-cta-bar a.primary:hover { background: linear-gradient(135deg, var(--mulberry2), #6A2E2C); }
  #mobile-cta-bar a.outline {
    background: transparent;
    color: var(--gold-hi);
    border: 1px solid var(--gold);
  }
  #mobile-cta-bar a.outline:hover { background: rgba(221,184,96,.08); }
  /* lift WhatsApp / other floating elements above the bar if present */
  body { padding-bottom: 72px; }
}
@media (max-width: 640px) {
  #mobile-cta-bar a { font-size: .56rem; padding: 12px 8px; letter-spacing: .12em; }
}

/* form success toast */
.form-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translate(-50%, 60px);
  z-index: 1100;
  background: linear-gradient(135deg, var(--mulberry), var(--mulberry2));
  color: var(--ivory); padding: 14px 24px; border-radius: 4px;
  font-size: .78rem; letter-spacing: .08em;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease-lux), opacity .35s;
}
.form-toast.show { opacity: 1; transform: translate(-50%, 0); }
.form-toast b { color: var(--gold-hi); font-weight: 500; }

/* ── ENQUIRY POPUP MODAL ─────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,5,4,.85); backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; opacity: 0;
  transition: opacity .35s var(--ease-lux);
}
.modal.open { display: flex; opacity: 1; }
.modal-shell {
  position: relative;
  width: 100%; max-width: 560px;
  background: var(--surface);
  border: 1px solid rgba(221,184,96,.18);
  border-radius: 4px; padding: 44px 40px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  scrollbar-width: none;            /* Firefox */
  -ms-overflow-style: none;          /* IE/Edge */
}
.modal-shell::-webkit-scrollbar { width: 0; height: 0; display: none; } /* Chrome/Safari */
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--ivory); font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  transition: background .25s, border-color .25s, color .25s;
}
.modal-close:hover {
  background: rgba(221,184,96,.18); border-color: var(--gold); color: var(--gold);
}
.modal-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
  font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.modal-eyebrow-line { width: 22px; height: 1px; background: var(--gold); }
.modal-title {
  font-family: "Poppins", sans-serif; font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 500; line-height: 1.2; margin-bottom: 8px;
  letter-spacing: -.01em;
}
.modal-title em { font-style: normal; color: var(--gold-hi); }
.modal-sub {
  font-size: .82rem; color: var(--ash); font-weight: 300;
  line-height: 1.6; margin-bottom: 22px;
}
.popup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.popup-grid .f-wide { grid-column: 1 / -1; }

/* phone field with +91 prefix */
.phone-wrap {
  position: relative;
  display: flex; align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: border-color .3s;
}
.phone-wrap:focus-within { border-bottom-color: var(--gold); }
.phone-prefix {
  display: inline-flex; align-items: center;
  padding: 14px 12px 14px 0;
  font-size: .88rem; font-weight: 400;
  color: var(--gold-hi);
  letter-spacing: .04em;
  border-right: 1px solid rgba(255,255,255,.08);
  margin-right: 12px;
  white-space: nowrap;
  user-select: none;
}
.phone-field {
  flex: 1; border-bottom: none !important;
  background: transparent; padding-left: 0;
}
.sec.light .phone-prefix { color: var(--mulberry); border-right-color: rgba(0,0,0,.08); }
.sec.light .phone-wrap { border-bottom-color: rgba(0,0,0,.12); }
.sec.light .phone-wrap:focus-within { border-bottom-color: var(--gold); }

@media (max-width: 640px) {
  .modal-shell { padding: 32px 22px; }
  .popup-grid { grid-template-columns: 1fr; }
  .modal-title { font-size: 1.4rem; }
}

/* success panel inside modal */
.popup-success {
  text-align: center;
  padding: 20px 0;
  animation: fadeUp .5s var(--ease-lux);
}
.popup-success-tick {
  display: grid; place-items: center;
  margin: 0 auto 22px;
  width: 64px; height: 64px;
  filter: drop-shadow(0 0 18px rgba(221,184,96,.35));
}
.popup-success-tick circle { animation: tickCircle .6s ease-out forwards; }
.popup-success-tick path { stroke-dasharray: 50; stroke-dashoffset: 50; animation: tickPath .5s .35s ease-out forwards; }
@keyframes tickCircle { from { stroke-dasharray: 0 160; } to { stroke-dasharray: 160 0; } }
@keyframes tickPath { to { stroke-dashoffset: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.popup-success-msg {
  font-size: .88rem; line-height: 1.7; color: var(--ash);
  font-weight: 300; margin-top: 10px;
}

/* ── GSAP FAQ (height animated by JS) ───── */
.fq-ans { overflow: hidden; height: 0; }
.fq-ans.open { overflow: visible; }

/* ════════════════════════════════════════
   PREMIUM BACKGROUND SYSTEM
   ════════════════════════════════════════ */

#particle-canvas { display: none; }

#bg-pattern { display: none; }

/* shimmer removed */
#bg-shimmer {
  display: none;
}
#bg-shimmer::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    transparent       30%,
    rgba(184,147,90,.04) 46%,
    rgba(212,174,114,.08) 50%,
    rgba(184,147,90,.04) 54%,
    transparent       70%
  );
  background-size: 300% 100%;
  animation: shimmerSweep 18s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%   { background-position: 220% 0; }
  100% { background-position: -120% 0; }
}

/* ════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════ */
#backToTop {
  position: fixed; bottom: 32px; right: 90px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mulberry), var(--mulberry2));
  border: 1px solid rgba(221,184,96,.20);
  color: var(--gold); cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.40);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .35s var(--ease-lux), transform .35s var(--ease-lux), background .3s, box-shadow .3s;
}
#backToTop.visible {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
#backToTop:hover {
  background: linear-gradient(135deg, var(--mulberry2), #6A2E2C);
  box-shadow: 0 8px 28px rgba(63,24,23,.50);
}
@media (max-width: 640px) {
  #backToTop { bottom: 80px; right: 18px; width: 40px; height: 40px; }
}

/* deep vignette */
#bg-vignette { display: none; }

/* art-deco corner ornaments */
#bg-corners {
  display: none;
}
.bgc {
  position: absolute; width: 110px; height: 110px;
}
.bgc--tl { top: 28px;  left: 28px; }
.bgc--tr { top: 28px;  right: 28px;  transform: scaleX(-1); }
.bgc--bl { bottom: 28px; left: 28px; transform: scaleY(-1); }
.bgc--br { bottom: 28px; right: 28px; transform: scale(-1); }
.bgc svg { width: 100%; height: 100%; }

/* duplicate responsive rules removed — consolidated above */
