/* =========================================================
   THE GARDENIA — Mobile-first stylesheet
   Breakpoints: base = mobile (<600px), sm = 600px, md = 768px,
   lg = 1024px, xl = 1280px
========================================================= */

:root{
  --forest:#173A2E;
  --forest-deep:#0E241C;
  --ivory:#F6F1E6;
  --gold:#B4924B;
  --gold-light:#D9C089;
  --rust:#BE5B39;
  --charcoal:#211E1B;
  --white:#FFFFFF;
  --shadow: 0 20px 46px -18px rgba(14,36,28,0.35);
  --serif: 'Playfair Display', serif;
  --sans: 'Poppins', sans-serif;
  --header-h: 64px;
  --offer-h: 0px;
  --safe-b: env(safe-area-inset-bottom, 0px);
}
*{box-sizing:border-box; margin:0; padding:0; -webkit-tap-highlight-color: transparent;}
html{scroll-behavior:smooth; scroll-padding-top: 70px;}
body{
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height:1.6;
  overflow-x:hidden;
  font-size:15px;
  padding-bottom: calc(64px + var(--safe-b));
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none; -webkit-appearance:none; appearance:none;}
input,select{font-family:inherit;}
:focus-visible{ outline:2px solid var(--gold); outline-offset:2px; }

.container{max-width:1280px; margin:0 auto; padding:0 18px;}
@media(min-width:768px){ .container{padding:0 32px;} }

/* -------- Signature motif: color-block text highlight -------- */
.tag-block{
  display:inline-block; font-family: var(--sans); font-size: 10px; letter-spacing: 2.4px;
  text-transform: uppercase; font-weight:600; padding: 6px 12px; background: var(--gold); color: var(--forest-deep);
}
.heading-block .hl{ background: var(--gold-light); padding: 0 8px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.heading-block .hl.dark{ background: var(--forest); color: var(--ivory); }
.heading-block .hl.rust{ background: var(--rust); color: var(--ivory); }

h1,h2,h3,h4{ font-family: var(--serif); font-weight:600; line-height:1.12; letter-spacing:-0.01em;}
.eyebrow{
  font-family: var(--sans); font-size:11px; letter-spacing:3px; text-transform:uppercase;
  color: var(--gold); font-weight:600; margin-bottom:12px; display:flex; align-items:center; gap:9px;
}
.eyebrow::before{content:''; width:22px; height:1px; background: var(--gold);}
.lede{ font-size:15.5px; color:rgba(33,30,27,0.72); max-width:560px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 22px; font-size:12px; letter-spacing:1.2px; text-transform:uppercase; font-weight:600;
  border:1px solid transparent; transition: all .25s ease; white-space:nowrap; min-height:46px;
}
.btn-gold{ background:var(--gold); color:var(--forest-deep); }
.btn-gold:hover{ background:var(--gold-light); }
.btn-outline{ border-color: rgba(23,58,46,0.35); color:var(--forest); }
.btn-forest{ background:var(--forest); color:var(--ivory); width:100%; justify-content:center; }
.btn-forest:hover{ background:var(--forest-deep); }

/* =========================================================
   OFFER STRIP
========================================================= */
.offer-strip{ position:relative; z-index:520; background:var(--forest-deep); color:var(--ivory); }
.offer-strip-inner{
  display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap;
  padding:8px 40px 8px 14px; font-size:11.5px; text-align:center; position:relative;
}
.offer-txt{ opacity:.9; }
.offer-timer{ font-family:var(--serif); color:var(--gold-light); letter-spacing:1px; font-size:13px; }
.offer-close{ position:absolute; right:8px; top:50%; transform:translateY(-50%); color:rgba(246,241,230,0.7); font-size:18px; padding:6px; }
.offer-strip.hidden{ display:none; }

/* =========================================================
   HEADER + NAV
========================================================= */
header{
  position:fixed; top:0; left:0; right:0; z-index:500;
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  background: rgba(14,36,28,0.35);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
header.scrolled{ background: rgba(23,58,46,0.97); box-shadow: 0 8px 24px rgba(0,0,0,0.18); backdrop-filter: blur(10px); padding:11px 16px; }
.logo{ z-index:2; display:flex; align-items:center; }
.logo-img{ height:34px; width:auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }

.hamburger{ display:flex; flex-direction:column; gap:5px; padding:10px; z-index:2; }
.hamburger span{ width:22px; height:2px; background:var(--ivory); transition:transform .25s, opacity .25s; }

.nav-scrim{ position:fixed; inset:0; background:rgba(14,36,28,0.5); z-index:498; opacity:0; pointer-events:none; transition:opacity .3s; }
.nav-scrim.show{ opacity:1; pointer-events:auto; }

.main-nav{
  position:fixed; top:0; right:0; height:100%; width:82%; max-width:340px;
  background: var(--forest-deep); z-index:499; padding:80px 30px 40px;
  transform:translateX(100%); transition:transform .35s ease;
  display:flex; flex-direction:column; overflow-y:auto;
}
.main-nav.open{ transform:translateX(0); }
.nav-close{ position:absolute; top:20px; right:20px; font-size:28px; color:var(--ivory); padding:8px;}
.main-nav ul{ display:flex; flex-direction:column; gap:4px; margin-bottom:30px; }
.main-nav a{ color: var(--ivory); font-size:16px; letter-spacing:.3px; font-weight:500; padding:14px 4px; border-bottom:1px solid rgba(246,241,230,0.08); display:block;}
.nav-mobile-cta{ display:flex; flex-direction:column; gap:12px; margin-top:auto; }
.nav-mobile-cta .btn-outline{ color:var(--ivory); border-color:rgba(246,241,230,0.4); }

.nav-cta{ display:none; }

@media(min-width:1024px){
  header{ padding:22px 40px; }
  header.scrolled{ padding:14px 40px; }
  .logo-img{ height:42px; }
  .hamburger{ display:none; }
  .nav-scrim{ display:none; }
  .main-nav{
    position:static; height:auto; width:auto; max-width:none; background:transparent;
    transform:none; padding:0; flex-direction:row; overflow:visible;
  }
  .nav-close{ display:none; }
  .main-nav ul{ flex-direction:row; gap:30px; margin-bottom:0; }
  .main-nav a{ font-size:13px; text-transform:uppercase; letter-spacing:1px; padding:0; border-bottom:none; opacity:.88; }
  .main-nav a:hover{ opacity:1; border-bottom:1px solid var(--gold-light); padding-bottom:4px;}
  .nav-mobile-cta{ display:none; }
  .nav-cta{ display:flex; gap:12px; align-items:center; }
}

/* =========================================================
   HERO
========================================================= */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:center;
  background: linear-gradient(160deg, rgba(14,36,28,0.88) 0%, rgba(14,36,28,0.6) 55%, rgba(14,36,28,0.4) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  padding: 96px 0 60px;
}
.hero-grid{ display:flex; flex-direction:column; gap:34px; }
.hero-copy .eyebrow{ color:var(--gold-light); }
.hero-copy .eyebrow::before{ background:var(--gold-light); }
.hero h1{ font-size: clamp(34px, 9vw, 56px); color:var(--ivory); margin-bottom:16px; }
.hero h1 em{ font-style:italic; color:var(--gold-light); font-weight:500;}
.hero p.sub{ color:rgba(246,241,230,0.86); font-size:15.5px; max-width:480px; margin-bottom:26px; font-weight:300;}
.hero-stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px 22px; margin: 22px 0 28px; }
.hero-stats div{ border-left:1px solid rgba(246,241,230,0.35); padding-left:12px; }
.hero-stats .num{ font-family:var(--serif); font-size:24px; color:var(--gold-light); }
.hero-stats .lab{ font-size:10.5px; letter-spacing:1px; text-transform:uppercase; color:rgba(246,241,230,0.7);}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.hero-quicklinks{ display:flex; gap:8px; flex-wrap:wrap; margin-top:20px; }
.quick-pill{
  font-size:11.5px; padding:9px 14px; border-radius:999px; background:rgba(246,241,230,0.12);
  color:var(--ivory); border:1px solid rgba(246,241,230,0.25); font-weight:500;
}

.hero-form{ background: rgba(246,241,230,0.98); padding: 28px 22px; box-shadow: var(--shadow); }
.hero-form h3{ font-size:21px; margin-bottom:5px; color:var(--forest-deep);}
.hero-form p{ font-size:12.5px; color:rgba(33,30,27,0.6); margin-bottom:18px;}
.field{ margin-bottom:14px; }
.field label{ display:block; font-size:10.5px; letter-spacing:1px; text-transform:uppercase; margin-bottom:6px; color:var(--forest); font-weight:600;}
.field input, .field select{
  width:100%; padding:13px 14px; border:1px solid rgba(23,58,46,0.22); background:#fff;
  font-family:var(--sans); font-size:16px; color:var(--charcoal); transition:border-color .25s;
}
.field input:focus, .field select:focus{ outline:none; border-color:var(--gold); }
.field .err{ font-size:11px; color:var(--rust); margin-top:5px; display:none; }
.field.invalid input, .field.invalid select{ border-color: var(--rust); }
.field.invalid .err{ display:block; }
.form-note{ font-size:10px; color:rgba(33,30,27,0.5); margin-top:12px; text-align:center; }
.success-msg{ display:none; text-align:center; padding:20px 0; }
.success-msg h4{ font-size:19px; color:var(--forest-deep); margin-bottom:8px;}
.success-msg p{ font-size:12.5px; color:rgba(33,30,27,0.65);}

.scroll-cue{ display:none; }

@media(min-width:1024px){
  .hero{ min-height:100vh; padding:140px 0 80px; }
  .hero-grid{ flex-direction:row; display:grid; grid-template-columns: 1.15fr 0.85fr; gap:60px; align-items:end; }
  .hero-stats{ grid-template-columns:repeat(4,auto); gap:34px; }
  .hero-form{ padding:40px 34px; }
  .scroll-cue{ display:flex; position:absolute; bottom:34px; left:50%; transform:translateX(-50%); flex-direction:column; align-items:center; gap:8px; }
  .scroll-cue .line{ width:1px; height:40px; background:linear-gradient(var(--gold-light), transparent); animation:pulseLine 2s infinite; }
  @keyframes pulseLine{ 0%,100%{opacity:.3;} 50%{opacity:1;} }
  .scroll-cue span{ font-size:10px; letter-spacing:3px; text-transform:uppercase; color:rgba(246,241,230,0.7); }
}

/* =========================================================
   SECTIONS (general)
========================================================= */
section{ padding:64px 0; position:relative; }
@media(min-width:768px){ section{padding:90px 0;} }
@media(min-width:1024px){ section{padding:110px 0;} }
.section-head{ max-width:640px; margin-bottom:34px; }
@media(min-width:768px){ .section-head{ margin-bottom:48px; } }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(26px,7vw,48px); }

.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){transition-delay:.04s;}
.reveal-stagger.in > *:nth-child(2){transition-delay:.1s;}
.reveal-stagger.in > *:nth-child(3){transition-delay:.16s;}
.reveal-stagger.in > *:nth-child(4){transition-delay:.22s;}
.reveal-stagger.in > *:nth-child(5){transition-delay:.28s;}

/* =========================================================
   WHY CHOOSE
========================================================= */
.why{ background:var(--white); overflow:hidden; }
.marquee-wrap{
  width:100%; overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track{
  display:flex; gap:14px; width:max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-wrap:hover .marquee-track{ animation-play-state: paused; }
@keyframes marqueeScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.marquee-item{
  flex-shrink:0; width:230px; background:var(--white); border:1px solid rgba(23,58,46,0.12);
  padding:24px 20px; transition:border-color .3s, transform .3s;
}
.marquee-item:hover{ border-color:var(--gold); transform:translateY(-4px); }
.marquee-item .num{ font-family:var(--serif); font-size:13px; color:var(--gold); margin-bottom:12px; letter-spacing:1px;}
.marquee-item .figure{ font-family:var(--serif); font-size:28px; color:var(--forest-deep); margin-bottom:8px; }
.marquee-item p.lab{ font-size:12px; color:rgba(33,30,27,0.65); }
@media(min-width:768px){
  .marquee-item{ width:270px; padding:30px 24px; }
  .marquee-item .figure{ font-size:34px; }
  .marquee-item p.lab{ font-size:13px; }
}

/* =========================================================
   PHILOSOPHY SPLIT
========================================================= */
.split{ display:flex; flex-direction:column; gap:26px; align-items:stretch; }
.split img{ width:100%; height:280px; object-fit:cover; }
.phil-h{ font-size:clamp(24px,6vw,42px); margin-bottom:16px; }
.flourish{ display:flex; align-items:center; gap:12px; margin:22px 0; }
.flourish .ln{ flex:1; height:1px; background:rgba(180,146,75,0.35); }
.flourish span{ color:var(--gold); font-size:12px; }
@media(min-width:900px){
  .split{ flex-direction:row; display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
  .split img{ height:520px; }
}

/* Master plan two-column layout */
.masterplan-grid{ display:flex; flex-direction:column; gap:32px; align-items:center; }
.masterplan-list{ display:grid; grid-template-columns:1fr 1fr; gap:10px 14px; max-width:520px; font-size:13px; margin-top:22px; color:rgba(33,30,27,0.75); }
.masterplan-visual{ position:relative; width:100%; }
.masterplan-visual img{ width:100%; height:280px; object-fit:cover; box-shadow:var(--shadow); }
.mp-badge{
  position:absolute; left:16px; bottom:16px; background:var(--forest-deep); color:var(--ivory);
  padding:14px 18px; display:flex; flex-direction:column; gap:2px; box-shadow:0 14px 30px rgba(0,0,0,0.3);
}
.mp-badge-num{ font-family:var(--serif); font-size:22px; color:var(--gold-light); line-height:1; }
.mp-badge-lab{ font-size:10px; letter-spacing:.6px; text-transform:uppercase; opacity:.8; margin-top:4px; }
.mp-tag{
  position:absolute; background:rgba(246,241,230,0.95); color:var(--forest-deep); font-size:10.5px; font-weight:600;
  padding:7px 12px; letter-spacing:.3px; box-shadow:0 8px 18px rgba(0,0,0,0.18); display:none;
}
.mp-tag::before{ content:'●'; color:var(--gold); margin-right:5px; font-size:8px; }
.mp-tag-1{ top:14px; right:14px; }
.mp-tag-2{ top:50%; left:-10px; transform:translateY(-50%); }
.mp-tag-3{ bottom:70px; right:-8px; }
@media(min-width:600px){
  .masterplan-visual img{ height:360px; }
  .mp-tag{ display:block; }
}
@media(min-width:1024px){
  .masterplan-grid{ flex-direction:row; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
  .masterplan-visual img{ height:460px; }
}

/* =========================================================
   AMENITIES (touch scroll)
========================================================= */
.amenities{ background:var(--ivory); }
.amenity-slider{
  display:flex; gap:14px; overflow-x:auto; padding-bottom:10px; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; scrollbar-width:none;
}
.amenity-slider::-webkit-scrollbar{ display:none; }
.amenity-card{
  scroll-snap-align:center; min-width:78vw; height:280px; position:relative; overflow:hidden;
  background-size:cover; background-position:center; flex-shrink:0; box-shadow:var(--shadow);
}
@media(min-width:600px){ .amenity-card{ min-width:340px; height:340px; } }
.amenity-card::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(14,36,28,0.9), rgba(14,36,28,0.05) 55%); }
.amenity-card img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.amenity-card .cap{ position:absolute; bottom:0; left:0; right:0; padding:18px; z-index:2; }
.amenity-card .cap .tag-block{ margin-bottom:8px; }
.amenity-card .cap h4{ font-family:var(--serif); font-size:18px; color:var(--ivory); }

.slider-dots{ display:flex; gap:7px; justify-content:center; margin-top:16px; }
.slider-dots .dot-item{ width:7px; height:7px; border-radius:50%; background:rgba(23,58,46,0.25); transition:background .25s, width .25s; }
.slider-dots .dot-item.active{ background:var(--gold); width:20px; border-radius:4px; }

.amenity-list-wrap{ margin-top:40px; }
.amenity-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.amenity-tags span{ font-size:11.5px; padding:8px 13px; border:1px solid rgba(23,58,46,0.25); color:var(--forest); }
@media(min-width:768px){ .amenity-tags span:hover{ background:var(--forest); color:var(--ivory); border-color:var(--forest); } }

/* =========================================================
   GALLERY + LIGHTBOX (new)
========================================================= */
.gallery{ background:var(--white); }
.gallery-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:8px; }
.gallery-grid img{ width:100%; height:150px; object-fit:cover; cursor:pointer; transition:opacity .2s; }
.gallery-grid img:active{ opacity:.8; }
@media(min-width:600px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); gap:12px; } .gallery-grid img{ height:220px; } }
@media(min-width:1024px){ .gallery-grid img{ height:260px; } .gallery-grid img:hover{ opacity:.85; } }

.lightbox{
  position:fixed; inset:0; background:rgba(10,20,16,0.96); z-index:950; display:none;
  align-items:center; justify-content:center; padding:20px;
}
.lightbox.show{ display:flex; }
.lightbox img{ max-width:100%; max-height:82vh; object-fit:contain; }
.lightbox-close{ position:absolute; top:16px; right:16px; color:#fff; font-size:30px; padding:10px; z-index:2; }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); color:#fff; font-size:22px; padding:14px; background:rgba(255,255,255,0.08); }
.lightbox-nav.prev{ left:8px; } .lightbox-nav.next{ right:8px; }
@media(min-width:768px){ .lightbox-nav{ padding:18px; } }

/* =========================================================
   LOCATION (tabbed on mobile)
========================================================= */
.location{ background:var(--forest-deep); color:var(--ivory); }
.location .lede{ color:rgba(246,241,230,0.72); }
.loc-h{ font-size:clamp(24px,6vw,42px); }
.loc-tabs{ display:flex; gap:8px; overflow-x:auto; padding-bottom:6px; margin-bottom:24px; -webkit-overflow-scrolling:touch; scrollbar-width:none;}
.loc-tabs::-webkit-scrollbar{ display:none; }
.loc-tab{ flex-shrink:0; padding:10px 16px; font-size:12px; letter-spacing:.8px; text-transform:uppercase; font-weight:600;
  color:rgba(246,241,230,0.6); border:1px solid rgba(246,241,230,0.2); }
.loc-tab.active{ background:var(--gold); color:var(--forest-deep); border-color:var(--gold); }
.loc-panel{ display:none; }
.loc-panel.active{ display:block; }
.loc-panel li{ display:flex; justify-content:space-between; gap:10px; font-size:14px; padding:13px 2px; border-bottom:1px dashed rgba(246,241,230,0.14); color:rgba(246,241,230,0.88);}
.loc-panel li b{ color:var(--gold-light); font-weight:600; white-space:nowrap; }
.loc-col-title{ display:none; }

@media(min-width:900px){
  .loc-tabs{ display:none; }
  .loc-panels{ display:grid; grid-template-columns:repeat(4,1fr); gap:40px; }
  .loc-panel{ display:block !important; }
  .loc-col-title{
    display:block; font-family:var(--serif); font-size:19px; color:var(--gold-light);
    margin-bottom:16px; padding-bottom:10px; border-bottom:1px solid rgba(246,241,230,0.18);
  }
}

/* =========================================================
   FLOOR PLANS
========================================================= */
.floorplans{ background:var(--white); }
.fp-tabs{ display:flex; gap:0; overflow-x:auto; border-bottom:1px solid rgba(23,58,46,0.15); margin-bottom:30px; -webkit-overflow-scrolling:touch; scrollbar-width:none;}
.fp-tabs::-webkit-scrollbar{ display:none; }
.fp-tab{ flex-shrink:0; padding:13px 18px; font-size:12px; letter-spacing:1px; text-transform:uppercase; font-weight:600; color:rgba(33,30,27,0.5); border-bottom:2px solid transparent; }
.fp-tab.active{ color:var(--forest-deep); border-color:var(--gold); }
.fp-panel{ display:none; }
.fp-panel.active{ display:flex; flex-direction:column; gap:28px; }
.fp-visual{
  position:relative; overflow:hidden; height:240px;
  background: linear-gradient(160deg, var(--forest-deep), var(--forest) 70%);
  display:flex; align-items:center; justify-content:center;
}
.fp-visual::before{
  content:''; position:absolute; inset:0; opacity:.18;
  background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=800&auto=format&fit=crop');
  background-size:cover; background-position:center; filter: blur(1px) saturate(0.6);
}
.fp-visual::after{
  content:''; position:absolute; inset:0;
  background: repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(246,241,230,0.05) 25px),
              repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(246,241,230,0.05) 25px);
}
.fp-visual .lock{ position:relative; z-index:2; text-align:center; padding:20px; }
.fp-visual .lock-badge{
  width:56px; height:56px; border-radius:50%; background:var(--gold); display:flex; align-items:center;
  justify-content:center; margin:0 auto 16px; box-shadow:0 12px 26px rgba(180,146,75,0.4);
}
.fp-visual .lock-badge svg{ width:24px; height:24px; color:var(--forest-deep); }
.fp-visual .lock h5{ font-family:var(--serif); font-size:17px; color:var(--ivory); margin-bottom:8px; font-weight:600; }
.fp-visual .lock p{ font-size:12px; color:rgba(246,241,230,0.65); max-width:220px; margin:0 auto; }
.fp-units{ display:flex; flex-direction:column; gap:12px; }
.fp-unit-row{ display:flex; flex-direction:column; gap:4px; padding:14px 16px; border:1px solid rgba(23,58,46,0.12); }
.fp-unit-row .u-name{ font-family:var(--serif); font-size:15.5px; color:var(--forest-deep); }
.fp-unit-row .u-size{ font-size:12px; color:rgba(33,30,27,0.55); }
.fp-cta{ margin-top:6px; }
@media(min-width:900px){
  .fp-panel.active{ flex-direction:row; display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
  .fp-visual{ height:420px; }
  .fp-visual .lock-badge{ width:68px; height:68px; }
  .fp-visual .lock-badge svg{ width:28px; height:28px; }
  .fp-visual .lock h5{ font-size:20px; }
  .fp-unit-row{ flex-direction:row; justify-content:space-between; align-items:center; }
}

/* =========================================================
   PRICING
========================================================= */
.pricing{ background: var(--forest); color:var(--ivory); text-align:center; }
.pricing h2{ font-size:clamp(26px,7vw,46px); margin-bottom:14px; }
.pricing p{ color:rgba(246,241,230,0.75); max-width:520px; margin:0 auto 28px; font-size:14px;}
.price-cards{ display:flex; flex-direction:column; gap:16px; margin-top:36px; }
.price-card{ border:1px solid rgba(246,241,230,0.2); padding:26px 22px; text-align:left; }
.price-card h4{ font-family:var(--serif); font-size:19px; margin-bottom:8px; color:var(--gold-light);}
.price-card .veil{ font-family:var(--serif); font-size:22px; letter-spacing:1px; margin:12px 0; }
.price-card p{ font-size:12.5px; color:rgba(246,241,230,0.65); margin:0 0 14px; }
.price-card .btn{ width:100%; }
@media(min-width:900px){
  .price-cards{ flex-direction:row; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .price-card{ transition:border-color .3s, transform .3s; }
  .price-card:hover{ border-color:var(--gold-light); transform:translateY(-6px); }
}

/* =========================================================
   EMI CALCULATOR (new)
========================================================= */
.emi{ background:var(--white); }
.emi-box{ display:flex; flex-direction:column; gap:28px; background:var(--ivory); padding:26px 20px; border:1px solid rgba(23,58,46,0.1); }
.emi-row{ margin-bottom:22px; }
.emi-row:last-child{ margin-bottom:0; }
.emi-label{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:10px; font-size:12.5px; color:var(--forest); font-weight:600; }
.emi-label strong{ font-family:var(--serif); font-size:16px; color:var(--forest-deep); }
input[type="range"]{
  width:100%; height:4px; -webkit-appearance:none; appearance:none; background:rgba(23,58,46,0.18); border-radius:4px; outline:none;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none; appearance:none; width:20px; height:20px; border-radius:50%; background:var(--gold);
  border:3px solid var(--forest-deep); cursor:pointer;
}
input[type="range"]::-moz-range-thumb{ width:20px; height:20px; border-radius:50%; background:var(--gold); border:3px solid var(--forest-deep); cursor:pointer; }
.emi-result{ background:var(--forest-deep); color:var(--ivory); padding:26px 22px; text-align:center; }
.er-label{ font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:rgba(246,241,230,0.7); margin-bottom:8px; }
.er-value{ font-family:var(--serif); font-size:38px; color:var(--gold-light); margin-bottom:20px; }
.er-breakup{ display:grid; grid-template-columns:1fr; gap:10px; text-align:left; border-top:1px solid rgba(246,241,230,0.15); padding-top:16px; }
.er-breakup div{ display:flex; justify-content:space-between; font-size:12.5px; color:rgba(246,241,230,0.85); }
.emi-disclaimer{ font-size:10.5px; color:rgba(246,241,230,0.5); margin-top:12px; }
@media(min-width:900px){
  .emi-box{ flex-direction:row; padding:44px; gap:44px; }
  .emi-inputs{ flex:1.1; }
  .emi-result{ flex:.9; align-self:center; }
  .er-breakup{ grid-template-columns:1fr 1fr; }
}

/* =========================================================
   PAYMENT PLAN
========================================================= */
.payment{ background:var(--ivory); }
.pp-tabs{ display:flex; gap:10px; margin-bottom:26px; }
.pp-tab{ flex:1; padding:11px 14px; font-size:11.5px; letter-spacing:1px; text-transform:uppercase; font-weight:600; border:1px solid var(--forest); color:var(--forest); text-align:center; }
.pp-tab.active{ background:var(--forest); color:var(--ivory); }
@media(min-width:600px){ .pp-tab{ flex:none; padding:11px 22px; } }

.accordion-item{ border-bottom:1px solid rgba(23,58,46,0.15); }
.accordion-head{ display:flex; justify-content:space-between; align-items:center; gap:10px; padding:16px 2px; cursor:pointer; }
.accordion-head h4{ font-family:var(--serif); font-weight:500; font-size:14.5px; display:flex; gap:12px; align-items:center; }
.accordion-head .step{ font-family:var(--sans); font-size:10.5px; color:var(--gold); border:1px solid var(--gold); width:24px; height:24px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.accordion-head .pct{ font-family:var(--serif); font-size:17px; color:var(--forest-deep); flex-shrink:0; }
.accordion-head .plus{ font-size:18px; color:var(--gold); transition:transform .3s; flex-shrink:0; }
.accordion-item.open .plus{ transform:rotate(45deg); }
.accordion-body{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.accordion-item.open .accordion-body{ max-height:100px; }
.accordion-body p{ padding:0 2px 18px 36px; font-size:12.5px; color:rgba(33,30,27,0.6); }
.pp-terms{ margin-top:26px; font-size:11.5px; color:rgba(33,30,27,0.55); line-height:1.85;}

/* =========================================================
   TESTIMONIALS (new)
========================================================= */
.testimonials{ background:var(--white); }
.testi-track{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none; padding-bottom:6px;}
.testi-track::-webkit-scrollbar{ display:none; }
.testi-card{ scroll-snap-align:center; min-width:86vw; background:var(--ivory); padding:26px 22px; border:1px solid rgba(23,58,46,0.1); flex-shrink:0; }
.testi-card .stars{ color:var(--gold); letter-spacing:2px; margin-bottom:14px; font-size:14px;}
.testi-card p{ font-size:13.5px; color:rgba(33,30,27,0.75); font-style:italic; margin-bottom:18px; line-height:1.7;}
.testi-who strong{ display:block; font-size:13px; color:var(--forest-deep); }
.testi-who span{ font-size:11px; color:rgba(33,30,27,0.5); }
@media(min-width:900px){ .testi-card{ min-width:360px; } }

/* =========================================================
   TRUST
========================================================= */
.trust{ background:var(--white); }
.trust-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:rgba(23,58,46,0.1); border:1px solid rgba(23,58,46,0.1); text-align:center;}
.trust-item{ background:#fff; padding:24px 12px; }
.trust-item svg{ width:26px; height:26px; margin:0 auto 12px; color:var(--gold); }
.trust-item p{ font-size:11.5px; letter-spacing:.3px; color:var(--forest-deep); font-weight:500; }
@media(min-width:768px){ .trust-grid{ grid-template-columns:repeat(5,1fr); } .trust-item{ padding:32px 18px; } .trust-item p{ font-size:12.5px; } }

/* =========================================================
   TEAM
========================================================= */
.team{ background:var(--forest-deep); color:var(--ivory); }
.team-grid{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:16px; }
.team-card{ border:1px solid rgba(246,241,230,0.15); padding:22px; }
.team-card .role{ font-size:10px; letter-spacing:1.6px; text-transform:uppercase; color:var(--gold-light); margin-bottom:8px;}
.team-card h4{ font-family:var(--serif); font-size:17px; margin-bottom:8px; }
.team-card p{ font-size:12px; color:rgba(246,241,230,0.65); }
@media(min-width:768px){ .team-grid{ grid-template-columns:repeat(2,1fr); gap:28px; } }
@media(min-width:1024px){ .team-grid{ grid-template-columns:repeat(4,1fr); } }

/* =========================================================
   FAQ
========================================================= */
.faq{ background:var(--white); }
.faq-wrap{ max-width:800px; margin:0 auto; }

/* =========================================================
   FINAL CTA
========================================================= */
.final-cta{
  background: linear-gradient(150deg, rgba(14,36,28,0.92), rgba(14,36,28,0.78)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=1600&auto=format&fit=crop') center/cover;
  color:var(--ivory); text-align:center; padding:80px 0;
}
.final-cta h2{ font-size:clamp(26px,8vw,54px); margin-bottom:16px; }
.final-cta p{ color:rgba(246,241,230,0.8); max-width:480px; margin:0 auto 28px; font-size:14px;}
.final-cta .btn-row{ display:flex; flex-direction:column; gap:12px; }
@media(min-width:600px){ .final-cta .btn-row{ flex-direction:row; justify-content:center; } }
@media(min-width:1024px){ .final-cta{ padding:130px 0; } }

/* =========================================================
   FOOTER
========================================================= */
footer{ background:var(--charcoal); color:rgba(246,241,230,0.75); padding:50px 0 26px; font-size:12.5px; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:30px; margin-bottom:36px; }
.footer-grid h5{ font-family:var(--serif); color:var(--gold-light); font-size:15px; margin-bottom:14px; font-weight:500;}
.footer-grid li{ margin-bottom:9px; opacity:.85; }
.footer-grid a:hover{ color:var(--gold-light); }
.footer-logo{ margin-bottom:14px;}
.footer-logo-img{ height:32px; width:auto; }
.disclaimer{ font-size:10.5px; opacity:.55; line-height:1.8; border-top:1px solid rgba(246,241,230,0.1); padding-top:20px; margin-top:8px; }
.rera-line{ font-size:11.5px; opacity:.7; margin-top:12px; }
.bottom-bar{ display:flex; flex-direction:column; gap:8px; padding-top:20px; border-top:1px solid rgba(246,241,230,0.08); font-size:11px; opacity:.6; }
@media(min-width:640px){ .footer-grid{ grid-template-columns:repeat(2,1fr); } .bottom-bar{ flex-direction:row; justify-content:space-between; } }
@media(min-width:1024px){ footer{ padding:70px 0 26px; } .footer-grid{ grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:50px; } }

/* =========================================================
   STICKY (desktop right rail)
========================================================= */
.sticky-cta{ display:none; }
@media(min-width:1024px){
  .sticky-cta{ position:fixed; right:24px; bottom:24px; z-index:600; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
  .sticky-btn{ width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    background:var(--forest); color:var(--ivory); box-shadow:0 10px 26px rgba(14,36,28,0.4); transition:transform .25s; position:relative; }
  .sticky-btn:hover{ transform:scale(1.08); }
  .sticky-btn.whatsapp{ background:#25D366; }
  .sticky-btn.call{ background:var(--rust); }
  .sticky-btn.top{ background:var(--gold); color:var(--forest-deep); opacity:0; pointer-events:none; transform:scale(.8); }
  .sticky-btn.top.show{ opacity:1; pointer-events:auto; transform:scale(1); }
  .sticky-btn svg{ width:20px; height:20px; }
  .sticky-btn .ring{ position:absolute; inset:-6px; border:1px solid currentColor; border-radius:50%; opacity:.5; animation:ringPulse 2.2s infinite; }
  @keyframes ringPulse{ 0%{ transform:scale(0.9); opacity:.6;} 100%{ transform:scale(1.4); opacity:0;} }
}

/* =========================================================
   MOBILE BOTTOM BAR (primary mobile nav — icons + labels)
========================================================= */
.mobile-bar{
  position:fixed; bottom:0; left:0; right:0; z-index:590; background:var(--forest-deep);
  display:flex; padding: 8px 6px calc(8px + var(--safe-b)); box-shadow:0 -8px 20px rgba(0,0,0,0.25);
}
.mobile-bar a, .mobile-bar button{
  flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; padding:6px 2px;
  font-size:10px; letter-spacing:.2px; color:rgba(246,241,230,0.85); font-weight:500;
}
.mobile-bar svg{ width:20px; height:20px; }
.mobile-bar .highlight{ color:var(--gold-light); }
@media(min-width:1024px){ .mobile-bar{ display:none; } body{ padding-bottom:0; } }

/* =========================================================
   MODALS
========================================================= */
.overlay{
  position:fixed; inset:0; background:rgba(14,36,28,0.75); backdrop-filter:blur(6px);
  z-index:900; display:none; align-items:flex-end; justify-content:center; padding:0;
  opacity:0; transition:opacity .3s ease;
}
@media(min-width:640px){ .overlay{ align-items:center; padding:20px; } }
.overlay.show{ display:flex; }
.overlay.show.in{ opacity:1; }
.modal{
  background:var(--ivory); max-width:460px; width:100%; padding:34px 22px calc(28px + var(--safe-b)); position:relative;
  box-shadow:0 -10px 40px rgba(0,0,0,0.3); transform:translateY(100%); transition: transform .35s ease;
  max-height:92vh; overflow-y:auto; border-radius:14px 14px 0 0;
}
@media(min-width:640px){
  .modal{ padding:44px 38px; transform:translateY(24px) scale(0.97); border-radius:2px; }
}
.overlay.show.in .modal{ transform:translateY(0) scale(1); }
.modal-wide{ max-width:640px; }
.modal-close{ position:absolute; top:14px; right:16px; font-size:24px; color:rgba(33,30,27,0.5); line-height:1; padding:8px;}
.modal .eyebrow{ color:var(--rust); }
.modal .eyebrow::before{ background:var(--rust); }
.modal h3{ font-size:22px; margin-bottom:8px; }
.modal p.desc{ font-size:13px; color:rgba(33,30,27,0.62); margin-bottom:22px; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; margin:14px 0 18px; }
.checkbox-row input{ margin-top:3px; width:16px; height:16px; flex-shrink:0; }
.checkbox-row label{ font-size:11px; color:rgba(33,30,27,0.6); }

.vt-frame{ position:relative; width:100%; height:200px; overflow:hidden; background:#000; }
.vt-frame img{ width:100%; height:100%; object-fit:cover; opacity:.75; }
.vt-play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:22px; color:#fff; background:rgba(14,36,28,0.35); }
@media(min-width:640px){ .vt-frame{ height:320px; } }

/* =========================================================
   SOCIAL PROOF TOAST
========================================================= */
.social-proof{
  position:fixed; left:12px; bottom:76px; z-index:580; background:var(--white); box-shadow:var(--shadow);
  padding:12px 16px; display:flex; align-items:center; gap:10px; max-width:250px;
  transform:translateY(140%); transition:transform .5s ease, opacity .5s ease; opacity:0;
}
.social-proof.show{ transform:translateY(0); opacity:1; }
.social-proof .dot{ width:8px; height:8px; border-radius:50%; background:#3FAE5B; flex-shrink:0; position:relative;}
.social-proof .dot::after{ content:''; position:absolute; inset:-4px; border-radius:50%; border:1px solid #3FAE5B; animation:ringPulse 1.8s infinite; }
.social-proof p{ font-size:11px; color:var(--charcoal); }
.social-proof strong{ display:block; font-size:11.5px; margin-bottom:2px; }
.social-proof .sp-close{ position:absolute; top:4px; right:6px; font-size:13px; color:rgba(0,0,0,0.35); padding:4px;}
@media(min-width:1024px){ .social-proof{ left:24px; bottom:24px; max-width:290px; padding:14px 18px;} }
