/* ============================================================
   Prestige Golden Grove — style.css v2.0
   8px spacing system · Black/White/Off-White CTAs
   Green accent ONLY for Prestige brand text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:         #ECECE7;
  --cream-2:       #E4E4DE;
  --cream-3:       #DDDDD6;
  --black:         #0B0D0A;
  --black-2:       #111310;
  --black-3:       #181B16;
  --black-4:       #1E211B;
  --white:         #FFFFFF;
  --off-white:     #F5F4F0;
  --green:         #7BAF47;   /* Prestige brand green - used ONLY for "Prestige" text */
  --green-dim:     #5E8C35;
  --text-dark:     #181A17;
  --text-mid:      #404540;
  --text-muted:    #747870;
  --text-subtle:   #A0A49C;

  /* 8px Spacing Scale */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-7:  56px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-14: 112px;

  /* Radii */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;
  --r-full:999px;

  /* Shadows */
  --sh-sm: 0 1px 8px rgba(0,0,0,0.06);
  --sh-md: 0 4px 24px rgba(0,0,0,0.10);
  --sh-lg: 0 16px 56px rgba(0,0,0,0.14);
  --sh-xl: 0 32px 80px rgba(0,0,0,0.20);

  /* Typography */
  --font-display: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', Gotham, Avenir, 'Helvetica Neue', sans-serif;

  /* Transitions */
  --ease:     cubic-bezier(0.25,0.1,0.25,1);
  --ease-out: cubic-bezier(0,0,0.2,1);
  --t-1: 0.16s;
  --t-2: 0.28s;
  --t-3: 0.48s;
}

/* ── RESET ────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body { font-family:var(--font-body); background:var(--cream); color:var(--text-dark); line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img  { display:block; max-width:100%; height:auto; }
a    { color:inherit; text-decoration:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
ul,ol { list-style:none; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container { max-width:1280px; margin:0 auto; padding:0 var(--sp-4); }
.sr-only   { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

.eyebrow{
    display:block;
    font-size:12px;
    font-weight:600;
    letter-spacing:.24em;
    text-transform:uppercase;
    color:var(--text-muted);
    margin-bottom:14px;
}
.eyebrow.light { color:rgba(255,255,255,0.5); }

.section-title{
    font-family:var(--font-display);
    font-size:clamp(36px,3.8vw,48px);
    font-weight:600;
    line-height:1.15;
    color:var(--text-dark);
    margin-bottom:18px;
}

.section-title.light { color:var(--white); }
/* Green ONLY for Prestige brand name */
.Prestige-green { color:var(--green); }

.divider {
  width:48px; height:2px;
  background:var(--text-muted);
  margin:var(--sp-3) 0;
  opacity:0.4;
}
.divider.center { margin:var(--sp-3) auto; }
.divider.light  { background:rgba(255,255,255,0.3); opacity:1; }

.section-sub{
    font-size:17px;
    line-height:1.75;
    color:var(--text-muted);
    max-width:620px;
}

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(20px); transition:opacity var(--t-3) var(--ease-out), transform var(--t-3) var(--ease-out); }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.08s; } .d2 { transition-delay:0.16s; }
.d3 { transition-delay:0.24s; } .d4 { transition-delay:0.32s; }

/* ============================================================
   BUTTONS — Black / White / Off-White only
   ============================================================ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius:var(--r-full);
  font-family:var(--font-body); font-size:14px; font-weight:600;
  letter-spacing:0.02em; transition:all var(--t-1) var(--ease);
  white-space:nowrap; cursor:pointer; padding:14px var(--sp-4);
}
/* Primary - golden fill */
.btn-primary{
    background:linear-gradient(135deg,#C79A3B 0%, #D9B35B 50%, #B8862D 100%);
    color:#111;
    border:none;
    font-weight:700;
    transition:all .3s ease;
}
.btn-primary:hover{
    background:linear-gradient(135deg,#D9B35B 0%, #E5C56E 50%, #C79A3B 100%);
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(199,154,59,.35);
}

/* Secondary - white fill, black text */
.btn-secondary {
  background:var(--white); color:var(--black);
  border:1.5px solid var(--black);
}
.btn-secondary:hover { background:var(--off-white); transform:translateY(-2px); box-shadow:var(--sh-md); }

/* Ghost - transparent, white border (for dark backgrounds) */
.btn-ghost {
  background:transparent; color:var(--white);
  border:1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background:rgba(255,255,255,0.08); border-color:var(--white); transform:translateY(-2px); }

/* Off-white - cream fill */
.btn-offwhite {
  background:var(--off-white); color:var(--black);
  border:1px solid rgba(0,0,0,0.12);
}
.btn-offwhite:hover { background:var(--cream-2); transform:translateY(-2px); }

/* ── Form submit ──────────────────────────────────────────── */
.form-submit{
    width:100%;
    padding:13px 20px;
    background:#0d0d0d;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;

    font-size:15px;
    font-weight:600;
    letter-spacing:.02em;

    transition:all .25s ease;
    box-shadow:0 8px 24px rgba(0,0,0,.18);
}

.form-submit:hover{
    background:#1b1b1b;
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.form-submit:disabled{
    opacity:.6;
    cursor:not-allowed;
    transform:none;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  transition:background var(--t-2) var(--ease), box-shadow var(--t-2) var(--ease);
}
#header .header-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:72px; padding:0 var(--sp-5);
  transition:height var(--t-2);
}
#header.scrolled { background:var(--black); box-shadow:0 2px 20px rgba(0,0,0,0.5); }
#header.scrolled .header-inner { height:64px; }

.header-logo { display:flex; align-items:center; gap:var(--sp-2); flex-shrink:0; }
.logo-text    { display:flex; flex-direction:column; }
.logo-name    { font-family:var(--font-display); font-size:17px; font-weight:600; color:var(--white); line-height:1.1; }
.logo-sub     { font-size:9px; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,0.5); margin-top:2px; }
.logo-partner { font-size:7.5px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-top:1px; }

.header-nav { display:flex; align-items:center; gap:var(--sp-4); }
.header-nav a {
  font-size:13px; font-weight:500; color:rgba(255,255,255,0.78);
  transition:color var(--t-1); position:relative;
}
.header-nav a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--white); transform:scaleX(0); transition:transform var(--t-1); }
.header-nav a:hover  { color:var(--white); }
.header-nav a:hover::after { transform:scaleX(1); }

.menu-toggle { display:none; flex-direction:column; gap:5px; padding:4px; }
.menu-toggle span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:all var(--t-2); }
.menu-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity:0; }
.menu-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display:none; position:fixed; top:64px; left:0; right:0;
  background:var(--black); padding:var(--sp-3) var(--sp-3) var(--sp-5);
  border-top:1px solid rgba(255,255,255,0.07); z-index:999;
  flex-direction:column; gap:4px;
}
.mobile-nav.open { display:flex; }
.mobile-nav a { color:rgba(255,255,255,0.8); font-size:15px; padding:var(--sp-2) 0; border-bottom:1px solid rgba(255,255,255,0.06); font-weight:500; }
.mobile-nav .btn { margin-top:var(--sp-2); width:100%; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 80px;
}
.hero-bg { position:absolute; inset:0; background-image:url('hero_image.webp'); background-size:cover; background-position:center; }
.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(8,9,8,.86) 0%,
        rgba(8,9,8,.68) 32%,
        rgba(8,9,8,.30) 62%,
        rgba(8,9,8,.08) 100%
    );
}
.hero-content{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.2fr 420px;

    gap:56px;

    align-items:flex-start;

    width:100%;
    max-width:1280px;

    margin:0 auto;

    padding:16px 40px 0;
}
.hero-left{
    max-width:600px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

/* Title — reduced ~12% from previous */
.hero-title{
    font-family:var(--font-display);
    font-size:clamp(58px,6vw,82px);
    line-height:.94;
    font-weight:600;
    color:#ffffff;
    text-shadow:
        0 4px 18px rgba(0,0,0,.45),
        0 2px 6px rgba(0,0,0,.35);
}

.hero-tagline{
    font-family:var(--font-display);
    font-size:clamp(15px,1.8vw,20px);
    font-style:italic;
    color:rgba(255,255,255,.74);

    margin-bottom:0;
}
.hero-divider{
    width:46px;
    height:2px;
    margin:12px 0 18px;
}

.hero-stats{
    display:flex;
    gap:14px;

    margin:22px 0;
}
.hero-stat-value { font-family:var(--font-display); font-size:30px; font-weight:600; color:var(--white); line-height:1; }
.hero-stat-label { font-size:10px; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin-top:4px; }
.hero-stats>div{

    background:rgba(5, 164, 93, 0.06);

    border:1px solid rgba(255,255,255,.10);

    border-radius:16px;

    padding:18px 12px;

    text-align:center;

    backdrop-filter:blur(8px);

}

.hero-price-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:18px 0 24px;
}
.hero-price-item{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    padding:22px;

    backdrop-filter:blur(10px);

}
.hero-price-type  { font-size:10px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin-bottom:4px; }
.hero-price-value { font-family:var(--font-display); font-size:clamp(26px,3vw,38px); font-weight:700; color:var(--white); line-height:1; }
.hero-price-value sup { font-size:0.45em; }

.hero-cta-row  { display:flex; gap:var(--sp-2); flex-wrap:wrap; margin-top:6px;}
.hero-rera { font-size:11px; color:rgba(255,255,255,0.32); margin-top:var(--sp-2); }

/* Hero Form Card */
.hero-form-card {
  background:#ffffff;
  border-radius:var(--r-xl);
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  border:1px solid rgba(0,0,0,.08);
}
.hero-form-header{
    background:linear-gradient(
    135deg,
    #fff8e7 0%,
    #f6e3a3 18%,
    #ddb557 45%,
    #c8962c 70%,
    #a9761c 100%
);
    border-bottom:1px solid #b88a2d;
    padding:var(--sp-3) var(--sp-4);
}
.hero-form-offer{
    color:#6d4b00;
    font-size:10px;
    font-weight:700;
    letter-spacing:.22em;
    text-transform:uppercase;
}
.hero-form-title {
  font-family:var(--font-display);
  font-size:20px;
  font-weight:600;
  color:#1c1c1c;
  line-height:1.3;
}
.hero-form-body{
    padding:20px;
}

/* ── FORM SHARED ──────────────────────────────────────────── */
.lead-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.form-field{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.form-label{
    font-size:12px;
    font-weight:600;
    letter-spacing:.05em;
    color:#6c6c6c;
}

.form-label .opt{
    font-weight:400;
    color:#8a8a8a;
    margin-left:4px;
    font-size:11px;
}

.form-input{
    background:#fff;
    border:1px solid #d9d9d9;
    border-radius:10px;
    padding:11px 16px;
    font-size:14px;
    color:#222;
    outline:none;
    width:100%;
    transition:border-color .25s, box-shadow .25s;
}

.form-input::placeholder{
    color:#9a9a9a;
}

.form-input:focus{
    border-color:#7BAF47;
    background:#fff;
    box-shadow:0 0 0 3px rgba(123,175,71,.15);
}

.form-input.error{
    border-color:#D96060;
}

.form-disclaimer{
    margin-top:16px;
    font-size:11px;
    line-height:1.6;
    color:#8E8E8E;
    text-align:center;
}

.form-disclaimer strong{
    color:#D4A537;
    font-weight:600;
}

.form-disclaimer a{
    color:#D4A537;
    text-decoration:none;
    font-weight:600;
    transition:opacity .2s ease;
}

.form-disclaimer a:hover{
    opacity:.8;
    text-decoration:underline;
}

.honeypot{
    display:none !important;
    visibility:hidden;
}
/* ============================================================
   OFFER BANNER + COUNTDOWN
   ============================================================ */
#offer-banner { background:var(--black); padding:var(--sp-3) 0; border-bottom:1px solid rgba(255,255,255,0.06); }
.offer-inner  { display:flex; align-items:center; justify-content:space-between; gap:var(--sp-3); }
.offer-eyebrow  { font-size:10px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin-bottom:4px; }
.offer-headline { font-family:var(--font-display); font-size:clamp(17px,2.2vw,24px); font-weight:500; color:var(--white); }

.countdown { display:flex; gap:var(--sp-1); flex-shrink:0; }
.cd-unit   { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:var(--r-sm); padding:var(--sp-1) var(--sp-2); text-align:center; min-width:60px; }
.cd-val    { font-family:var(--font-display); font-size:26px; font-weight:600; color:var(--white); line-height:1; font-variant-numeric:tabular-nums; }
.cd-lbl    { font-size:9px; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-top:3px; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding:80px 0; background:var(--cream); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-10); align-items:center; }
.about-img-wrap { position:relative; border-radius:var(--r-xl); overflow:hidden; aspect-ratio:4/3; box-shadow:var(--sh-lg); }
.about-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform var(--t-3) var(--ease); }
.about-img-wrap:hover img { transform:scale(1.03); }
.about-img-cta {
  position:absolute; bottom:var(--sp-3); left:50%; transform:translateX(-50%);
  background:rgba(11,13,10,0.85); color:var(--white);
  border:1px solid rgba(255,255,255,0.15); border-radius:var(--r-full);
  padding:var(--sp-2) var(--sp-3); font-size:13px; font-weight:600;
  display:inline-flex; align-items:center; gap:8px;
  backdrop-filter:blur(8px); white-space:nowrap; transition:all var(--t-1);
}
.about-img-cta:hover { background:var(--black); }
.about-img-cta::before { content:''; width:7px; height:7px; background:var(--white); border-radius:50%; opacity:0.6; }

.about-stat-row { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--sp-2); margin-top:var(--sp-5); }
.about-stat {
  background:var(--white); border-radius:var(--r-md); padding:var(--sp-3) var(--sp-2);
  text-align:center; border:1px solid var(--cream-2); box-shadow:var(--sh-sm);
  transition:all var(--t-1);
}
.about-stat:hover { transform:translateY(-3px); box-shadow:var(--sh-md); }
.about-stat-val { font-family:var(--font-display); font-size:26px; font-weight:600; color:var(--text-dark); }
.about-stat-lbl { font-size:10px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-muted); margin-top:4px; }

/* ============================================================
   PRICING + FLOOR PLANS (MERGED)
   ============================================================ */
#pricing { padding:80px 0; background:var(--cream-2); }
.pricing-header { text-align:center;margin-bottom:56px; }
.config-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--sp-4); max-width:960px; margin:0 auto; }

.config-card {
  background:var(--white); border-radius:var(--r-xl);
  overflow:hidden; box-shadow:var(--sh-md);
  border:1px solid var(--cream-2);
  transition:transform var(--t-2) var(--ease), box-shadow var(--t-2);
  position:relative;
}
.config-card:hover { transform:translateY(-6px); box-shadow:var(--sh-lg); }
.config-card.featured { border:1.5px solid rgba(0,0,0,0.15); }

.config-card-badge {
  position:absolute; top:var(--sp-2); right:var(--sp-2); z-index:3;
  background:var(--black); color:var(--white);
  font-size:9px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  padding:4px var(--sp-2); border-radius:var(--r-full);
}

/* Blurred floor plan image */
.config-fp-wrap {
  position:relative; overflow:hidden; aspect-ratio:4/3;
  background:#EBEBE4; cursor:pointer;
}
.config-fp-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(4px);
    transform:scale(1.02);
    transition:.35s ease;
    pointer-events:none;
    user-select:none;
    -webkit-user-drag:none;
}
.config-card:hover .config-fp-wrap img{
    filter:blur(2px);
    transform:scale(1);
}
.config-fp-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.18);
}
.config-card:hover .config-fp-overlay { background:rgba(11,13,10,0.45); }
.fp-lock{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    width:190px;
    height:88px;

    gap:8px;

    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.35);
    backdrop-filter:blur(16px);

    border-radius:18px;

    color:#fff;
    text-align:center;

    transition:.25s ease;
}
.config-card:hover .fp-lock{
    transform:translateY(-3px) scale(1.02);
    background:rgba(255,255,255,.25);
    border-color:rgba(255,255,255,.5);
}
.fp-lock svg  { opacity:0.85; }
.fp-lock span{
    font-size:14px;
    font-weight:600;
    letter-spacing:0;
}

/* Card body */
.config-card-body { padding:var(--sp-4); }
.config-card-head { background:var(--black); padding:var(--sp-3) var(--sp-4); }
.config-type  { font-size:10px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin-bottom:4px; }
.config-name  { font-family:var(--font-display); font-size:32px; font-weight:600; color:var(--white); line-height:1; margin-bottom:4px; }
.config-size  { font-size:13px; color:rgba(255,255,255,0.5); }

.config-features { display:flex; flex-direction:column; gap:var(--sp-1); margin-bottom:var(--sp-3); }
.config-feature  { display:flex; align-items:center; gap:var(--sp-1); font-size:13px; color:var(--text-mid); }
.config-feature::before { content:''; width:5px; height:5px; background:var(--text-subtle); border-radius:50%; flex-shrink:0; }

.config-price { font-family:var(--font-display); font-size:28px; font-weight:600; color:var(--text-dark); margin-bottom:var(--sp-3); }
.config-price sup { font-size:0.5em; color:var(--text-muted); }

.config-cta-row { display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-1); }
.config-cta-row .btn { padding:12px var(--sp-2); font-size:13px; border-radius:var(--r-sm); justify-content:center; }

.pricing-note { text-align:center; font-size:12px; color:var(--text-muted); margin-top:var(--sp-3); }

/* ============================================================
   KEY HIGHLIGHTS (no Investment Advantage)
   ============================================================ */
#highlights { padding:80px 0; background:var(--black); }
.highlights-header { text-align:center; margin-bottom:48px; }
.highlights-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--sp-2); max-width:960px; margin:0 auto; }
.hl-card {
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--r-md); padding:var(--sp-2) var(--sp-3);
  display:flex; align-items:center; gap:var(--sp-2);
  font-size:13px; font-weight:500; color:rgba(255,255,255,0.8);
  transition:all var(--t-1);
}
.hl-card:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.18); transform:translateX(4px); }
.hl-check { font-size:14px; color:rgba(255,255,255,0.5); flex-shrink:0; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { padding:80px 0; background:var(--cream); }
.gallery-header { text-align:center; margin-bottom:48px; }
.gallery-main   { position:relative; border-radius:var(--r-xl); overflow:hidden; aspect-ratio:16/7; background:var(--black-3); box-shadow:var(--sh-lg); cursor:pointer; }
.gallery-main img { width:100%; height:100%; object-fit:cover; transition:opacity 0.18s; }
.gallery-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.92); border-radius:50%; width:48px; height:48px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all var(--t-1); border:none; box-shadow:var(--sh-sm); z-index:2;
}
.gallery-nav:hover { background:var(--white); transform:translateY(-50%) scale(1.06); }
.gallery-nav.prev { left:var(--sp-3); } .gallery-nav.next { right:var(--sp-3); }
.gallery-nav svg  { width:18px; height:18px; stroke:var(--text-dark); }
.gallery-thumbs   { display:grid; grid-template-columns:repeat(5,1fr); gap:var(--sp-2); margin-top:var(--sp-2); }
.gallery-thumb    { aspect-ratio:4/3; border-radius:var(--r-md); overflow:hidden; cursor:pointer; border:2px solid transparent; opacity:0.6; transition:all var(--t-1); }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; }
.gallery-thumb.active { border-color:var(--black); opacity:1; }
.gallery-thumb:hover  { opacity:0.85; }

/* ============================================================
   LOCATION
   ============================================================ */
#location {
    padding:64px 0 40px;
    background:var(--cream);
}
.location-header { text-align:center; margin-bottom:48px; }
.location-cats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:var(--sp-3);
    margin-bottom:24px;
}
.loc-card { background:var(--white); border-radius:var(--r-lg); padding:var(--sp-4); box-shadow:var(--sh-sm); border:1px solid var(--cream-2); }
.loc-cat-label { font-size:10px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-muted); margin-bottom:var(--sp-3); }
.loc-items { display:flex; flex-direction:column; gap:var(--sp-2); }
.loc-item { display:flex; align-items:center; justify-content:space-between; font-size:13px; color:var(--text-mid); padding-bottom:var(--sp-2); border-bottom:1px solid rgba(0,0,0,0.06); }
.loc-item:last-child { border-bottom:none; padding-bottom:0; }
.loc-dist { font-size:12px; font-weight:700; color:var(--text-dark); }

.infra-strip{
    background:var(--black);
    border-radius:24px;
    padding:22px 32px;
    margin-top:24px;

    display:flex;
    flex-direction:column;
    align-items:center;
}
.infra-label{
    font-size:10px;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:rgba(255,255,255,.45);
    margin-bottom:18px;
    text-align:center;
}
.infra-items{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:40px;
}
.infra-item  { font-size:13px; color:rgba(255,255,255,0.75); display:flex; align-items:center; gap:var(--sp-1); }
.infra-item::before { content:'🚇'; font-size:14px; }

/* ============================================================
   AMENITIES — Horizontal Infinite Auto-Scroll Strip
   ============================================================ */
#amenities { padding:56px 0 100px; background:var(--black); overflow:hidden; }
.amenities-header { text-align:center; margin-bottom:48px; }
.amenities-header .section-sub { color:rgba(255,255,255,0.45); margin:var(--sp-2) auto 0; text-align:center; }

.amenities-strip-wrap {
  position:relative;
  overflow:hidden;
  /* Fade edges */
  -webkit-mask-image:linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image:linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
#amenities-track {
  display:flex;
  gap:var(--sp-2);
  width:max-content;
  animation: marquee 36s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.amenity-pill {
  display:inline-flex; align-items:center; gap:var(--sp-1);
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--r-full);
  padding:var(--sp-2) var(--sp-3);
  white-space:nowrap;
  font-size:13px; font-weight:500; color:rgba(255,255,255,0.78);
  transition:all var(--t-1);
  flex-shrink:0;
}
.amenity-pill:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.2); }
.amenity-pill-icon { font-size:16px; flex-shrink:0; }

.amenities-strip-row + .amenities-strip-row { margin-top:var(--sp-2); }
#amenities-track-2 { animation-direction: reverse; animation-duration: 42s; }

.amenities-cta-row { text-align:center; margin-top:var(--sp-6); }

/* ============================================================
   BUILDER
   ============================================================ */
#builder { padding:80px 0; background:var(--cream-2); }
.builder-inner { text-align:center; }
.builder-logo-pill {
  display:inline-block; background:var(--white); border-radius:var(--r-lg);
  padding:var(--sp-2) var(--sp-5); border:1px solid var(--cream-2);
  box-shadow:var(--sh-sm); font-family:var(--font-display);
  font-size:22px; font-weight:700; color:var(--text-dark);
  margin-bottom:var(--sp-5);
}
.builder-desc { font-size:15px; color:var(--text-muted); line-height:1.8; max-width:640px; margin:0 auto var(--sp-6); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { padding:80px 0; background:var(--cream); }
.faq-header { text-align:center; margin-bottom:48px; }
.faq-list { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:var(--sp-2); }
.faq-item { background:var(--white); border-radius:var(--r-md); overflow:hidden; border:1px solid var(--cream-2); box-shadow:var(--sh-sm); }
.faq-question { display:flex; justify-content:space-between; align-items:center; padding:var(--sp-3) var(--sp-3); cursor:pointer; font-size:15px; font-weight:500; color:var(--text-dark); gap:var(--sp-2); transition:color var(--t-1); }
.faq-question:hover { color:var(--text-dark); }
.faq-icon { width:24px; height:24px; background:var(--cream-2); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all var(--t-1); font-size:16px; color:var(--text-muted); font-weight:300; }
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--black); color:var(--white); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height var(--t-2) var(--ease); }
.faq-answer-inner { padding:0 var(--sp-3) var(--sp-3); font-size:14px; line-height:1.75; color:var(--text-muted); border-top:1px solid rgba(0,0,0,0.06); padding-top:var(--sp-2); }
.faq-item.open .faq-answer { max-height:320px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta{
    padding:64px 0;
    background:var(--black);
    border-top:1px solid rgba(255,255,255,.06);
}
.final-cta-wrap{
    max-width:620px;
    margin:0 auto;
}
.final-cta-head{
    text-align:center;
    margin-bottom:24px;
}
.final-cta-head .section-title.light { font-size:clamp(32px,4vw,52px); }
.final-cta-benefits {
  display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-2);
  margin-bottom:var(--sp-4);
}
.benefit-item { display:flex; align-items:center; gap:var(--sp-1); font-size:13px; color:rgba(255,255,255,0.65); }
.benefit-item::before { content:'✓'; color:rgba(255,255,255,0.4); font-weight:700; }
.urgency-note { text-align:center; font-size:12px; color:rgba(255,255,255,0.35); margin-bottom:var(--sp-4); letter-spacing:0.06em; text-transform:uppercase; }
.final-form-box{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px;
    box-shadow:0 24px 60px rgba(0,0,0,.35);
}
.final-form-title{
    font-family:var(--font-display);
    font-size:34px;
    font-weight:600;
    line-height:1.1;
    color:var(--white);
    text-align:center;
    margin-bottom:12px;
}
.final-form-box input{
    height:50px;
    border-radius:12px;
}
.final-form-box .form-submit{
    width:100%;
    height:54px;
    background:#D4A537;
    color:#111;
    border:none;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:all .3s ease;
}

.final-form-box .form-submit:hover{
    background:#E2B84A;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(212,165,55,.30);
}
.final-form-box .form-group{
    margin-bottom:18px;
}
.final-form-box .btn:hover{
    background:#E2B84A;
}
.final-form-sub{
    font-size:15px;
    line-height:1.6;
    color:rgba(255,255,255,.68);
    text-align:center;
    max-width:480px;
    margin:0 auto 28px;
}
/* ============================================================
   FOOTER
   ============================================================ */
#footer { background:var(--black-2); border-top:1px solid rgba(255,255,255,0.06); padding:var(--sp-8) 0 0; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1.6fr; gap:var(--sp-8); padding-bottom:var(--sp-6); border-bottom:1px solid rgba(255,255,255,0.06); }
.footer-brand-desc { font-size:13px; color:rgba(255,255,255,0.4); line-height:1.75; margin-top:var(--sp-2); max-width:300px; }
.footer-col-label { font-size:10px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:var(--sp-3); }
.footer-contact-item { font-size:15px; font-weight:500; color:rgba(255,255,255,0.75); margin-bottom:var(--sp-1); display:block; transition:color var(--t-1); }
.footer-contact-item:hover { color:var(--white); }
.footer-disclaimer { font-size:12px; color:rgba(255,255,255,0.3); line-height:1.72; }
.footer-disclaimer a { color:rgba(255,255,255,0.45); text-decoration:underline; text-underline-offset:2px; }
.footer-disclaimer a:hover { color:var(--white); }
.footer-disclaimer strong { color:rgba(255,255,255,0.5); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:var(--sp-3) 0; gap:var(--sp-3); }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.25); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,0.78); z-index:2000;
  display:flex; align-items:center; justify-content:center; padding:var(--sp-3);
  opacity:0; visibility:hidden; transition:all var(--t-2) var(--ease);
  backdrop-filter:blur(4px);
}
.modal-overlay.active { opacity:1; visibility:visible; }
.modal-box {
  background:var(--black-2); border-radius:var(--r-xl); overflow:hidden;
  width:100%; max-width:420px; box-shadow:0 40px 100px rgba(0,0,0,0.7);
  border:1px solid rgba(255,255,255,0.06);
  transform:scale(0.94) translateY(16px); transition:transform var(--t-2) var(--ease);
}
.modal-overlay.active .modal-box { transform:scale(1) translateY(0); }
.modal-header{
    background:#181915;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:28px 30px 22px;
    position:relative;
}
.modal-close{
    position:absolute;
    right:22px;
    top:22px;
    transform:none;

    width:38px;
    height:38px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.75);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    transition:.25s;
}

.modal-close:hover{
    background:#D4A537;
    color:#111;
}
.modal-title{
    font-family:var(--font-display);
    font-size:30px;
    line-height:1.1;
    font-weight:600;
    color:#fff;
}
.modal-cta-label{
    margin-top:8px;
    font-size:15px;
    line-height:1.5;
    color:rgba(255,255,255,.68);
}
.modal-body{
    padding:30px;
}
/* Modal Submit Button */
.modal-box .form-submit{
    width:100%;
    height:54px;
    margin-top:12px !important;

    background:#D4A537;
    color:#111;

    border:none;
    border-radius:12px;

    font-size:16px;
    font-weight:700;
    cursor:pointer;

    transition:all .25s ease;
}

.modal-box .form-submit:hover{
    background:#E2B84A;
    color:#111;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(212,165,55,.30);
}
/* Modal Disclaimer */
.modal-box .form-disclaimer{
    margin-top:18px;
    font-size:12px;
    line-height:1.6;
    color:rgba(255,255,255,.58);
    text-align:center;
}

.modal-box .form-disclaimer strong{
    color:#D4A537;
    font-weight:600;
}

.modal-box .form-disclaimer a{
    color:#D4A537;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.modal-box .form-disclaimer a:hover{
    color:#E6BC55;
    text-decoration:underline;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast { position:fixed; bottom:var(--sp-4); right:var(--sp-4); background:var(--black-2); color:var(--white); padding:var(--sp-2) var(--sp-3); border-radius:var(--r-md); font-size:14px; font-weight:500; box-shadow:var(--sh-lg); border:1px solid rgba(255,255,255,0.1); z-index:9999; transform:translateY(120%); transition:transform var(--t-2) var(--ease); }
.toast.show    { transform:translateY(0); }
.toast.success { border-left:3px solid #5CB85C; }
.toast.error   { border-left:3px solid #D96060; }

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.floating-cta { display:none; position:fixed; bottom:var(--sp-3); left:50%; transform:translateX(-50%); z-index:800; gap:var(--sp-2); width:calc(100% - var(--sp-6)); max-width:400px; }
.floating-cta a, .floating-cta button { flex:1; display:inline-flex; align-items:center; justify-content:center; gap:6px; padding:14px; border-radius:var(--r-full); font-size:13px; font-weight:700; box-shadow:0 4px 20px rgba(0,0,0,0.35); transition:all var(--t-1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .hero-content { grid-template-columns:1fr 380px; gap:var(--sp-5); }
  .location-cats { grid-template-columns:1fr 1fr; }
}
@media (max-width:900px) {
  .header-nav, .header-cta { display:none; }
  .menu-toggle  { display:flex; }
  #header .header-inner { padding:0 var(--sp-3); }
.hero-content{
    grid-template-columns:1fr;
    gap:24px;
    padding:80px 24px 32px;
    align-items:start;
}
  .hero-left{
    max-width:100%;
}
.hero-title{
    font-size:48px;
    line-height:0.98;
    margin-bottom:0;
}
.hero-tagline{
    font-size:15px;
    line-height:1.25;
    margin:4px 0 4px;
}
.hero-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin:6px 0 10px;
}
.hero-stat-value{
    font-size:22px;
}
.hero-price-row{
    display:grid;
    grid-template-columns:1fr 1fr;
}
.hero-price-value{
    font-size:34px;
}
.hero-cta-row{
    flex-direction:column;
}
.hero-cta-row .btn{
    width:100%;
    justify-content:center;
}

 .hero-form-card{
    width:100%;
    max-width:100%;
}
  .about-grid   { grid-template-columns:1fr; gap:var(--sp-5); }
  .highlights-grid { grid-template-columns:1fr 1fr; }
  .footer-grid  { grid-template-columns:1fr; gap:var(--sp-5); }
  .floating-cta { display:flex; }
  .offer-inner  { flex-direction:column; align-items:flex-start; gap:var(--sp-2); }
  .gallery-thumbs { grid-template-columns:repeat(3,1fr); }
  .final-cta-benefits { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .hero-title{
    font-size:42px;
}

.hero-tagline{
    font-size:15px;
}

.hero-stats{
    gap:10px;
    margin:18px 0 14px;
}

.hero-stat-value{
    font-size:18px;
}

.hero-stat-label{
    font-size:9px;
}

.hero-price-row{
    grid-template-columns:1fr;
}

.hero-price-item{
    border-left:none !important;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.hero-price-item:last-child{
    border-bottom:none;
}

.hero-price-value{
    font-size:28px;
}

.hero-rera{
    text-align:center;
    font-size:11px;
}
  .config-cards { grid-template-columns:1fr; }
  .about-stat-row { grid-template-columns:repeat(3,1fr); }
  .highlights-grid { grid-template-columns:1fr 1fr; }
  .location-cats { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .cd-unit { min-width:50px; padding:var(--sp-1) var(--sp-1); }
  .cd-val  { font-size:22px; }
  .infra-items { flex-direction:column; gap:var(--sp-2); }
  .config-cta-row { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
  #amenities-track, #amenities-track-2 { animation:none; }
}
