/* ============================================================
   GAUR ALARIS — alarisnoida.com (the corridor / investment build)
   Sector 22D, Yamuna Expressway — peacock-themed 3 BHK residences
   ------------------------------------------------------------
   FONTS — paste in <head> BEFORE this stylesheet:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">

   RULES:
   - Marcellus for display headings only (h1/h2, wordmark, price figures).
   - Poppins for everything else — nav, body, labels, buttons, forms.
   - No eyebrow kickers. No radial hero glow. No symmetric card triplets.
   - Price: BSP + launch price + headline shown; other charges, payment
     plan and floor plans stay gated to WhatsApp.
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  --font-display: "Marcellus", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Peacock palette */
  --ink: #08201f;
  --ink-soft: #0b2b2a;
  --teal: #0d4a4a;
  --teal-deep: #093736;
  --emerald: #14695c;
  --emerald-bright: #1e8a74;
  --gold: #c9a961;
  --gold-bright: #d9bd77;
  --gold-deep: #a8873f;
  --cream: #f7f4ee;
  --cream-card: #fffdf8;
  --white: #ffffff;
  --text: #1c2a29;
  --text-muted: #4c5f5d;
  --text-on-dark: #eef0ea;
  --text-on-dark-muted: #b7c4bf;
  --line: rgba(13, 74, 74, .14);
  --line-on-dark: rgba(217, 189, 119, .22);
  --wa-green: #1faa53;

  --grad-plume: linear-gradient(120deg, #0d4a4a 0%, #14695c 45%, #0a1f2b 100%);
  --grad-gold: linear-gradient(100deg, #a8873f 0%, #c9a961 45%, #d9bd77 100%);
  --grad-gold-text: linear-gradient(100deg, #c9a961, #e7d194 55%, #c9a961);

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6.5rem;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(8, 32, 31, .08);
  --shadow: 0 10px 30px -12px rgba(8, 32, 31, .22);
  --shadow-lift: 0 24px 60px -24px rgba(8, 32, 31, .38);
  --shadow-gold: 0 8px 28px -10px rgba(201, 169, 97, .45);

  --container: 72rem;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);
  --bar-h: 3.75rem;
}

/* ---------- 2. BASE RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom));
}
img, svg, video { max-width: 100%; height: auto; display: block; }
img { background: rgba(13, 74, 74, .06); }
h1, h2, h3, h4, p, figure, ul, ol { margin: 0 0 var(--space-4); }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--emerald); }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding-left: 1.25rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 3. TYPE SYSTEM ---------- */
.display, h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: .002em;
  color: var(--ink);
}
h1, .display-xl { font-size: clamp(2.3rem, 6vw, 4rem); }
h2, .display-lg { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; line-height: 1.35; color: var(--ink); }
h4 { font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--ink); }
.lead { font-size: 1.1rem; font-weight: 400; color: var(--text-muted); max-width: 42em; }
.on-dark { color: var(--text-on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark .lead, .on-dark .muted { color: var(--text-on-dark-muted); }
.gold-text { background: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--text-muted); }
.small-caps-label {
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-deep);
}
.on-dark .small-caps-label, .section--dark .small-caps-label, .section--teal .small-caps-label { color: var(--gold-bright); }

/* ---------- 4. LAYOUT / SECTION RHYTHM ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--container-pad); }
.section { padding-block: var(--space-8); }
.section--dark { background: var(--ink); }
.section--teal { background: var(--grad-plume); }
.section--tight { padding-block: var(--space-7); }
@media (min-width: 48em) { .section { padding-block: var(--space-9); } }
.section-head { max-width: 42em; margin-bottom: var(--space-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--wide { max-width: 56em; }
.rule-gold { width: 4.5rem; height: 2px; border: 0; background: var(--grad-gold); margin: var(--space-4) 0 var(--space-5); }
.section-head--center .rule-gold { margin-inline: auto; }
.grid { display: grid; gap: var(--space-5); }
@media (min-width: 40em) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64em) { .grid--asym { grid-template-columns: 1.1fr .9fr; gap: var(--space-8); align-items: center; } }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  padding: .9rem 1.9rem; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--grad-gold); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn--gold:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 34px -10px rgba(201,169,97,.6); }
.btn--ghost { background: transparent; color: var(--gold-bright); border-color: var(--gold); }
.btn--ghost:hover { background: rgba(201, 169, 97, .12); color: var(--gold-bright); }
.btn--teal { background: var(--teal); color: var(--white); }
.btn--teal:hover { background: var(--emerald); color: var(--white); }
.btn--block { width: 100%; }

/* ---------- 6. HERO — full-bleed render, bottom scrim, form in view ---------- */
.hero {
  position: relative;
  color: var(--text-on-dark);
  overflow: hidden;
  isolation: isolate;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--bar-h) + 1.1rem) var(--space-6);
  background: var(--ink);
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,32,31,.28) 0%, rgba(8,32,31,.32) 22%, rgba(8,32,31,.74) 60%, rgba(8,32,31,.95) 100%);
}
.hero .container { position: relative; width: 100%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-5); align-items: end; }
@media (min-width: 64em) { .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: var(--space-8); } }
.hero-content { max-width: 36rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .05em;
  color: var(--gold-bright);
  border: 1px solid var(--line-on-dark); border-radius: var(--radius-pill);
  padding: .4rem 1rem; margin-bottom: var(--space-3);
  background: rgba(8, 32, 31, .55);
}
.hero h1 { color: var(--white); margin-bottom: var(--space-3); font-size: clamp(1.75rem, 5.2vw, 4rem); }
.hero-sub { font-size: clamp(.95rem, 2vw, 1.15rem); font-weight: 400; color: var(--text-on-dark-muted); max-width: 34em; margin-bottom: var(--space-3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.hero-note { font-size: .76rem; color: var(--text-on-dark-muted); margin-top: 0; margin-bottom: 0; line-height: 1.5; }
.hero-formwrap { width: 100%; max-width: 26rem; }
.lead-card--hero { max-width: none; margin: 0; padding: var(--space-5); box-shadow: var(--shadow-lift); }
.lead-card--hero h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.lead-card--hero .lead-card__sub { font-size: .82rem; margin-bottom: var(--space-4); }
.lead-card--hero input { padding: .7rem .9rem; margin-bottom: var(--space-3); }
.hero-wa-link { display: block; text-align: center; font-size: .82rem; font-weight: 500; color: var(--gold-bright); margin-top: var(--space-3); }
.hero-wa-link:hover { color: var(--gold); }
@media (min-width: 30em) { .hero { padding-block: calc(var(--bar-h) + 1.5rem) var(--space-8); } }

/* Compact mobile hero — the form must clear the fold without scrolling */
@media (max-width: 29.99em) {
  :root { --bar-h: 3.1rem; }
  .topnav .container { height: 3.1rem; }
  .hero { padding-block: calc(var(--bar-h) + .5rem) var(--space-4); }
  .hero-badge {
    display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 100%; margin-bottom: var(--space-2); padding: .32rem .8rem; font-size: .66rem;
  }
  .hero h1 { font-size: 1.6rem; line-height: 1.12; margin-bottom: var(--space-2); }
  .hero-sub {
    font-size: .86rem; margin-bottom: var(--space-2);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .hero-note { font-size: .68rem; }
  .hero-grid { gap: var(--space-3); }
  .lead-card--hero { padding: var(--space-4); }
  .lead-card--hero h3 { font-size: 1.1rem; margin-bottom: .1rem; }
  .lead-card--hero .lead-card__sub { font-size: .76rem; margin-bottom: var(--space-3); line-height: 1.4; }
  .lead-card--hero input { padding: .6rem .8rem; margin-bottom: var(--space-2); font-size: .92rem; }
  .lead-card--hero .consent-row { margin-bottom: var(--space-3); }
  .lead-card--hero .consent-row label { font-size: .72rem; line-height: 1.35; }
  .lead-card--hero .btn { padding: .7rem 1.5rem; font-size: .88rem; }
  .hero-wa-link { font-size: .74rem; margin-top: var(--space-2); }
}

/* Peacock plume accent — reusable decorative SVG feather */
.plume-accent {
  width: 2.5rem; height: 2.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M32 60C32 38 32 22 32 8' stroke='%23c9a961' stroke-width='1.6' stroke-linecap='round'/%3E%3Cellipse cx='32' cy='18' rx='11' ry='16' stroke='%230d4a4a' stroke-width='1.6'/%3E%3Cellipse cx='32' cy='18' rx='6.5' ry='10' stroke='%2314695c' stroke-width='1.4'/%3E%3Ccircle cx='32' cy='18' r='3' fill='%23c9a961'/%3E%3Cpath d='M32 44c-5-3-9-3-14-1M32 50c-6-2-10-1-15 2M32 44c5-3 9-3 14-1M32 50c6-2 10-1 15 2' stroke='%2314695c' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- 7. EDITORIAL ALTERNATING ROWS (replaces symmetric card grids) ---------- */
.ed-row { display: flex; flex-direction: column; gap: var(--space-5); padding-block: var(--space-6); border-bottom: 1px solid var(--line); }
.ed-row:last-child { border-bottom: none; }
.section--dark .ed-row, .section--teal .ed-row { border-color: var(--line-on-dark); }
@media (min-width: 56em) {
  .ed-row { flex-direction: row; align-items: center; gap: var(--space-8); padding-block: var(--space-7); }
  .ed-row.ed-row--reverse { flex-direction: row-reverse; }
}
.ed-row__media { flex: 1 1 45%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; margin: 0; }
.ed-row__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
/* --natural: renders that carry baked-in captions/logos near their edges — never force-crop these, show the full frame */
.ed-row__media--natural { display: flex; }
.ed-row__media--natural img { width: 100%; height: auto; object-fit: contain; aspect-ratio: auto; }
.ed-row__credit { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; background: linear-gradient(0deg, rgba(8,32,31,.82), transparent); color: var(--white); font-size: .7rem; font-weight: 500; padding: .55rem .7rem .45rem; }
.ed-row__body { flex: 1 1 55%; }
.ed-row__tag { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .005em; color: var(--gold-deep); margin-bottom: var(--space-2); }
.section--dark .ed-row__tag, .section--teal .ed-row__tag { color: var(--gold-bright); }
.ed-row__body p:last-child { margin-bottom: 0; }

/* ---------- 8. STAT / NUMBER ROW ---------- */
.stat-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (min-width: 48em) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: left; }
.stat__num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 4.2vw, 2.5rem); line-height: 1.05;
  color: var(--teal); display: block;
}
.stat__num sup, .stat__num small { font-size: .5em; font-family: var(--font-body); font-weight: 600; }
.stat__label { font-size: .82rem; font-weight: 500; letter-spacing: .01em; color: var(--text-muted); margin-top: var(--space-2); display: block; }
.on-dark .stat-row, .section--dark .stat-row, .section--teal .stat-row { border-color: var(--line-on-dark); }
.on-dark .stat__num, .section--dark .stat__num, .section--teal .stat__num { color: var(--gold-bright); }
.on-dark .stat__label, .section--dark .stat__label, .section--teal .stat__label { color: var(--text-on-dark-muted); }

/* ---------- 9. CORRIDOR FACT LIST ---------- */
.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.fact-list li { display: flex; gap: .85rem; align-items: flex-start; padding: var(--space-4) var(--space-5); background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius); }
.section--dark .fact-list li, .section--teal .fact-list li { background: var(--ink-soft); border-color: var(--line-on-dark); }
.fact-list__mark { flex-shrink: 0; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--grad-gold); color: var(--ink); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.fact-list strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: .15rem; }
.section--dark .fact-list strong, .section--teal .fact-list strong { color: var(--white); }
.fact-list span { color: var(--text-muted); font-size: .92rem; }
.section--dark .fact-list span, .section--teal .fact-list span { color: var(--text-on-dark-muted); }

/* ---------- 9b. PROJECT-DETAILS TABLE (D1) — premium two-column, no <table> weirdness ---------- */
.detail-table { background: var(--cream-card); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.detail-row { display: grid; grid-template-columns: 1fr; gap: .3rem; padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--line); }
.detail-row:last-child { border-bottom: none; }
.detail-row:nth-child(even) { background: rgba(13, 74, 74, .035); }
@media (min-width: 42em) { .detail-row { grid-template-columns: 13rem 1fr; gap: var(--space-5); padding: var(--space-5); align-items: baseline; } }
.detail-row dt { margin: 0; font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); }
.detail-row dd { margin: 0; font-size: 1rem; font-weight: 500; color: var(--ink); line-height: 1.55; }
.detail-row dd a { font-weight: 600; }

/* ---------- 10. SPEC / CONFIG TABLE ---------- */
.spec-table { width: 100%; border-collapse: collapse; background: var(--cream-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { padding: .95rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; vertical-align: top; }
.spec-table th { width: 38%; font-weight: 600; color: var(--text-muted); font-size: .82rem; letter-spacing: .02em; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table td { font-weight: 600; color: var(--ink); }
.spec-table td .fine { display: block; font-weight: 400; color: var(--text-muted); font-size: .82rem; margin-top: .2rem; }
.spec-table tr.spec-table__gated td { color: var(--gold-deep); }
.spec-table tr.spec-table__gated a { font-weight: 600; }

/* ---------- 11. PRICE CALLOUT BAND ---------- */
.price-band {
  background: var(--grad-plume);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  color: var(--text-on-dark);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: var(--space-5);
  box-shadow: var(--shadow-lift);
}
@media (min-width: 48em) { .price-band { flex-direction: row; align-items: center; justify-content: space-between; padding: var(--space-7); } }
.price-band__label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: var(--gold-bright); display: block; margin-bottom: var(--space-2); }
.price-band__figure { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 4.6vw, 2.75rem); line-height: 1.1; color: var(--white); display: block; }
.price-band__figure .star { color: var(--gold-bright); }
.price-band__caveat { font-size: .8rem; color: var(--text-on-dark-muted); margin: var(--space-2) 0 0; max-width: 32em; }
.price-band .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ---------- 12. GATED CTA CARD (floor plan / cost sheet) ---------- */
.gate-card {
  background: var(--ink); color: var(--text-on-dark);
  border-radius: var(--radius-lg); padding: var(--space-7) var(--space-6);
  text-align: center; box-shadow: var(--shadow-lift);
  border: 1px solid var(--line-on-dark);
}
.gate-card h2 { color: var(--white); }
.gate-card p { color: var(--text-on-dark-muted); max-width: 34em; margin-inline: auto; }
.gate-card .btn { margin-top: var(--space-4); }

/* ---------- 13. DESIGN PEDIGREE LIST ---------- */
.pedigree-list { border-top: 1px solid var(--line); }
.pedigree-item { display: grid; grid-template-columns: 1fr; gap: .3rem; padding: var(--space-5) 0; border-bottom: 1px solid var(--line); }
@media (min-width: 42em) { .pedigree-item { grid-template-columns: 11rem 1fr; align-items: baseline; gap: var(--space-6); } }
.pedigree-item__role { font-weight: 600; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.pedigree-item__name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin-bottom: .2rem; }
.pedigree-item__desc { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* ---------- 14. GALLERY STRIP ---------- */
.gallery-strip { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
@media (min-width: 42em) {
  .gallery-strip { grid-template-columns: repeat(4, 1fr); }
  .gallery-strip li:first-child { grid-column: span 2; grid-row: span 2; }
}
.gallery-strip li { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.gallery-strip li:first-child img { aspect-ratio: 1 / 1; }
.gallery-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(8,32,31,.82), transparent);
  color: var(--white); font-size: .72rem; font-weight: 500;
  padding: .6rem .7rem .5rem;
}

/* ---------- 15. FAQ — expand-to-view accordion, "Answers, Before You Call" ---------- */
.faq-accordion { display: grid; gap: var(--space-3); }
.faq-accordion details {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden;
}
.faq-accordion summary {
  list-style: none; cursor: pointer; padding: var(--space-4) var(--space-5);
  font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
  content: "+"; flex-shrink: 0; font-family: var(--font-body); font-weight: 600; font-size: 1.2rem;
  color: var(--gold-deep); transition: transform .2s ease; line-height: 1;
}
.faq-accordion details[open] summary::after { content: "−"; }
.faq-accordion details[open] summary { border-bottom: 1px solid var(--line); }
.faq-accordion details p { padding: var(--space-4) var(--space-5); margin: 0; color: var(--text-muted); }
.faq-hi { color: var(--gold-deep); font-weight: 500; font-family: var(--font-body); font-size: .85em; }

/* ---------- 15b. MODAL / POPUP (exit-intent + floor plan) ---------- */
body.modal-lock { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: var(--space-4); }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4, 16, 15, .78); backdrop-filter: blur(2px); }
.modal__panel {
  position: relative; width: 100%; max-width: 26rem; max-height: 92vh; overflow-y: auto;
  background: var(--cream-card); border-radius: var(--radius-lg); border-top: 3px solid var(--gold);
  padding: var(--space-6) var(--space-5) var(--space-5); box-shadow: var(--shadow-lift);
  animation: modalIn .22s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__panel h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; margin-bottom: var(--space-2); padding-right: var(--space-6); }
.modal__panel form { margin-top: var(--space-4); }
.modal__panel input { width: 100%; padding: .8rem 1rem; margin-bottom: var(--space-4); border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); font-size: 1rem; }
.modal__panel input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13, 74, 74, .12); }
.modal__close {
  position: absolute; top: var(--space-4); right: var(--space-4); width: 2rem; height: 2rem;
  border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--ink);
  font-size: 1.1rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.modal__close:hover { background: var(--cream); }

/* ---------- 16. LEAD-FORM CARD ---------- */
.lead-card { background: var(--cream-card); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius-lg); padding: var(--space-6) var(--space-5); box-shadow: var(--shadow-lift); max-width: 28rem; }
@media (min-width: 48em) { .lead-card { padding: var(--space-6); } }
.lead-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.55rem; margin-bottom: var(--space-2); }
.lead-card__sub { font-size: .92rem; color: var(--text-muted); margin-bottom: var(--space-5); }
.lead-card label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: var(--space-1); }
.lead-card input { width: 100%; padding: .8rem 1rem; margin-bottom: var(--space-4); border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); font-size: 1rem; font-weight: 400; transition: border-color .15s ease, box-shadow .15s ease; }
.lead-card input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13, 74, 74, .12); }
.lead-card input::placeholder { color: #8a9895; }
.consent-row { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: var(--space-4); }
.consent-row input[type="checkbox"] { width: 1.2rem; height: 1.2rem; margin: .1rem 0 0; accent-color: var(--teal); flex-shrink: 0; }
.consent-row label { font-size: .8rem; font-weight: 400; color: var(--text-muted); line-height: 1.5; }
.lead-card__fine { font-size: .74rem; line-height: 1.5; color: var(--text-muted); margin: var(--space-3) 0 0; min-height: 1.2em; }

/* ---------- 17. TOP NAV ---------- */
.topnav { position: sticky; top: 0; z-index: 50; background: rgba(8, 32, 31, .94); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line-on-dark); }
.topnav .container { display: flex; align-items: center; justify-content: space-between; height: 4rem; gap: var(--space-4); }
.topnav__brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; color: var(--white); letter-spacing: .02em; flex-shrink: 0; white-space: nowrap; }
.topnav__brand span { color: var(--gold-bright); }
.topnav__logo { height: 26px; width: auto; max-width: 62px; flex-shrink: 0; background: transparent; }
.topnav__divider { width: 1px; height: 1.5rem; background: var(--line-on-dark); flex-shrink: 0; }
@media (min-width: 30em) { .topnav__brand { font-size: 1.25rem; } .topnav__logo { height: 30px; max-width: 74px; } }
.topnav__links { display: none; list-style: none; margin: 0; padding: 0; gap: var(--space-5); align-items: center; flex: 1; justify-content: center; }
.topnav__links a { color: var(--text-on-dark-muted); font-size: .88rem; font-weight: 500; white-space: nowrap; }
.topnav__links a:hover { color: var(--gold-bright); }
.topnav__right { display: flex; align-items: center; gap: var(--space-4); flex-shrink: 0; }
.topnav__phone { display: none; color: var(--text-on-dark-muted); font-size: .88rem; font-weight: 500; white-space: nowrap; }
.topnav__cta { padding: .65rem 1.35rem; font-size: .85rem; }
@media (min-width: 64em) {
  .topnav__links { display: flex; }
  .topnav__phone { display: inline; }
}

/* ---------- 18. STICKY MOBILE ACTION BAR ---------- */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; height: calc(var(--bar-h) + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -6px 24px rgba(8, 32, 31, .25); }
.action-bar a { display: flex; align-items: center; justify-content: center; gap: .55rem; font-weight: 600; font-size: .95rem; }
.action-bar__call { background: var(--ink); color: var(--gold-bright); }
.action-bar__call:hover { color: var(--gold-bright); background: var(--teal-deep); }
.action-bar__wa { background: var(--wa-green); color: var(--white); }
.action-bar__wa:hover { color: var(--white); filter: brightness(1.06); }
@media (min-width: 64em) {
  .action-bar { left: auto; right: 1.5rem; bottom: 1.5rem; grid-template-columns: auto auto; gap: .75rem; height: auto; padding-bottom: 0; box-shadow: none; background: transparent; }
  .action-bar a { padding: .85rem 1.5rem; border-radius: var(--radius-pill); box-shadow: var(--shadow); }
  body { padding-bottom: 0; }
}

/* ---------- 19. FOOTER / DISCLOSURE ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: var(--space-8) 0 var(--space-7); font-size: .88rem; }
.site-footer a { color: var(--gold-bright); }
.site-footer a:hover { color: var(--gold); }
.footer-brand { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--white); letter-spacing: .02em; margin-bottom: var(--space-2); }
.footer-rera { border: 1px solid var(--line-on-dark); border-radius: var(--radius); padding: var(--space-4) var(--space-5); margin-block: var(--space-5); font-size: .82rem; line-height: 1.6; }
.footer-rera strong { color: var(--gold-bright); font-weight: 600; }
.disclosure-block { border-top: 1px solid var(--line-on-dark); margin-top: var(--space-6); padding-top: var(--space-5); font-size: .76rem; line-height: 1.7; color: var(--text-on-dark-muted); }

/* ---------- 20. UTILITIES ---------- */
.text-center { text-align: center; }
.ref-tag { font-size: .68rem; color: var(--text-muted); opacity: .75; margin-top: .5rem; margin-bottom: 0; }
.on-dark .ref-tag, .section--dark .ref-tag, .section--teal .ref-tag { color: var(--text-on-dark-muted); }
.inline-stat { color: var(--gold-deep); font-weight: 600; }
.section--dark .inline-stat, .section--teal .inline-stat, .on-dark .inline-stat { color: var(--gold-bright); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: .75rem 1.25rem; z-index: 100; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700; }
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }

/* ============================================================
   21. DECK THEME — "Life Spreads Its Wings" corridor cluster
   Luxury-editorial layer sourced from the Gaur Alaris developer
   deck: gold Cinzel engraved caps, warm-ivory + gold geometric
   sections, deep-peacock feature panels, peacock-wing mark.
   Additive only — existing sections untouched.
   ============================================================ */
:root {
  --font-deco: "Cinzel", "Marcellus", Georgia, serif;
  --cream-warm: #f4ecdb;         /* deck ivory */
  --gold-title: #8a6a1f;         /* AA-legible antique gold on cream (large text) */
  --grad-peacock-deep: radial-gradient(125% 120% at 50% 0%, #123f39 0%, #0c2c2a 46%, #071e1d 100%);
}

/* --- 21a. Deco type: Cinzel engraved caps, scoped to the cluster --- */
.deco-eyebrow {
  font-family: var(--font-deco); font-weight: 600;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); display: block; margin-bottom: var(--space-3);
}
.deco-title {
  font-family: var(--font-deco); font-weight: 500;
  text-transform: uppercase; letter-spacing: .035em; line-height: 1.18;
  color: var(--gold-title);
}
.section--peacock .deco-eyebrow, .on-dark .deco-eyebrow { color: var(--gold-bright); }
.section--peacock .deco-title, .on-dark .deco-title { color: var(--gold-bright); }

/* --- 21b. Warm-ivory section with subtle gold art-deco lattice edges --- */
.section--cream { background: var(--cream-warm); position: relative; overflow: hidden; }
.section--cream > .container { position: relative; z-index: 1; }
.section--cream::before, .section--cream::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 74px; z-index: 0;
  opacity: .5; pointer-events: none; display: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='96' viewBox='0 0 60 96' fill='none' stroke='%23c9a961' stroke-width='1.1'%3E%3Cpath d='M7 96 Q7 34 30 8 Q53 34 53 96'/%3E%3Cpath d='M14 96 Q14 42 30 20 Q46 42 46 96'/%3E%3Cpath d='M30 34 l12 18 -12 18 -12 -18 z'/%3E%3C/svg%3E") repeat-y center top / 60px auto;
}
.section--cream::before { left: 0; }
.section--cream::after { right: 0; }
@media (min-width: 75em) { .section--cream::before, .section--cream::after { display: block; } }

/* --- 21c. Deep-peacock feature panel (airport / momentum) --- */
.section--peacock { background: var(--grad-peacock-deep); color: var(--text-on-dark); position: relative; }
.section--peacock .lead, .section--peacock .muted { color: var(--text-on-dark-muted); }
.section--peacock .rule-gold { background: var(--grad-gold); }
.section--peacock .fact-list li { background: var(--ink-soft); border-color: var(--line-on-dark); }
.section--peacock .fact-list strong { color: var(--white); }
.section--peacock .fact-list span { color: var(--text-on-dark-muted); }
.section--peacock .fact-list__mark { background: var(--grad-gold); color: var(--ink); }

/* --- 21d. Peacock-wing mark (gold nested pointed arches) --- */
.wing-mark {
  width: 3.1rem; height: 3.4rem; margin: 0 auto var(--space-4);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 108' fill='none' stroke='%23c9a961' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 104 Q20 38 50 6 Q80 38 80 104'/%3E%3Cpath d='M29 104 Q29 46 50 18 Q71 46 71 104'/%3E%3Cpath d='M38 104 Q38 55 50 30 Q62 55 62 104'/%3E%3Cpath d='M47 104 Q47 64 50 44 Q53 64 53 104'/%3E%3Cpath d='M50 66 L50 104'/%3E%3Ccircle cx='50' cy='99' r='3.4' fill='%23c9a961' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* --- 21e. Framed deck slide, shown WHOLE (no crop of labels/tags) --- */
.deck-figure {
  margin: 0 0 var(--space-6); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gold); box-shadow: var(--shadow); background: var(--ink);
}
.deck-figure img { width: 100%; height: auto; display: block; }
.deck-figure figcaption {
  background: var(--ink); color: var(--text-on-dark-muted);
  font-size: .74rem; font-weight: 500; letter-spacing: .02em; line-height: 1.5;
  padding: .6rem var(--space-4);
}
.deck-figure figcaption b { color: var(--gold-bright); font-weight: 600; }

/* --- 21f. Status pills (approved / proposed / planned / operational) --- */
.status-tag {
  display: inline-block; font-family: var(--font-body); font-size: .62rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; padding: .16rem .5rem; border-radius: var(--radius-pill);
  border: 1px solid transparent; vertical-align: middle; margin-left: .45rem; white-space: nowrap;
}
.status-tag--operational, .status-tag--approved { color: #1a5c46; background: rgba(30,138,116,.14); border-color: rgba(26,92,70,.38); }
.status-tag--proposed { color: #8a6a1f; background: rgba(201,169,97,.16); border-color: rgba(168,135,63,.45); }
.status-tag--planned { color: #4c5f5d; background: rgba(13,74,74,.06); border-color: var(--line); }
.section--peacock .status-tag--operational, .section--peacock .status-tag--approved { color: #8fe6c6; background: rgba(30,138,116,.20); border-color: rgba(143,230,198,.4); }
.section--peacock .status-tag--proposed { color: var(--gold-bright); background: rgba(201,169,97,.18); border-color: var(--line-on-dark); }
.section--peacock .status-tag--planned { color: var(--text-on-dark-muted); background: rgba(255,255,255,.05); border-color: var(--line-on-dark); }

/* --- 21g. Corridor list (rail) — gold-accented editorial rows --- */
.corridor-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
@media (min-width: 46em) { .corridor-list { grid-template-columns: 1fr 1fr; } }
.corridor-list li {
  background: var(--cream-card); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: var(--space-4) var(--space-5);
}
.corridor-list b { display: block; color: var(--ink); font-size: 1rem; font-weight: 600; }
.corridor-list p { margin: .25rem 0 0; color: var(--text-muted); font-size: .88rem; line-height: 1.5; }

/* --- 21h. Economy groups (deck-14) --- */
.corridor-groups { display: grid; gap: var(--space-5); }
@media (min-width: 48em) { .corridor-groups { grid-template-columns: repeat(2, 1fr); } }
.corridor-group {
  background: var(--cream-card); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-sm);
}
.corridor-group__head {
  font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 var(--space-3);
}
.corridor-group ul { margin: 0; padding-left: 1.15rem; }
.corridor-group li { color: var(--text-muted); font-size: .93rem; margin-bottom: .35rem; }
.corridor-group li:last-child { margin-bottom: 0; }
.corridor-group li strong { color: var(--ink); font-weight: 600; }
