/* ============================================================
   Jashn Elevate — Cinematic Hi-Fi Landing Page
   Built on the Jashn Realty design system (colors_and_type.css)
   ============================================================ */

/* ============================================================
   Jashn Realty — Colors & Type
   Brand: deep royal blue + champagne gold, with warm interior
   neutrals (sand, oat, walnut) borrowed from the residences.
   ============================================================ */

/* ---------- Webfonts ---------- */
/* The four official Jashn brand typefaces.
   Paths are relative to this CSS file's location. When this file is
   imported from a nested folder (e.g. ui_kits/marketing-site/styles.css),
   the browser resolves the URL relative to *this* file, so the paths
   below stay correct.                                                  */
@font-face {
  font-family: "URW Classico";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/106e4a7a-8afb-47d9-80f7-a1c2fef936c7.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  /* No native italic shipped — declare the same file under font-style:italic
     so the browser applies a synthetic oblique. Matches the gate signage. */
  font-family: "URW Classico";
  font-weight: 700;
  font-style: italic;
  src: url("../fonts/106e4a7a-8afb-47d9-80f7-a1c2fef936c7.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Juicy Simple";
  src: url("../fonts/POSITYPE_-_JUICY_SIMPLE_STANDARD.OTF") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Futura Now Headline";
  src: url("../fonts/2bb553df-2c36-4d76-9636-3498238d4c87.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "PF Bague Sans Pro";
  font-weight: 500;
  src: url("../fonts/fc84ccb8-8b9f-43c5-9e92-79059add146f.ttf") format("truetype");
  font-display: swap;
}
/* PF Bague only shipped at weight 500 — fall back to itself for other weights
   so layout doesn't crash and the synthetic weight is acceptable on screen. */
@font-face {
  font-family: "PF Bague Sans Pro";
  font-weight: 400;
  src: url("../fonts/fc84ccb8-8b9f-43c5-9e92-79059add146f.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "PF Bague Sans Pro";
  font-weight: 600;
  src: url("../fonts/fc84ccb8-8b9f-43c5-9e92-79059add146f.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "PF Bague Sans Pro";
  font-weight: 300;
  src: url("../fonts/fc84ccb8-8b9f-43c5-9e92-79059add146f.ttf") format("truetype");
  font-display: swap;
}

/* ============================================================
   COLOR — Brand & semantic tokens
   ============================================================ */
:root {
  /* -- Brand: Royal Blue (primary, from launch brochure background) -- */
  --jashn-blue-950: #050B22;   /* deepest, headline backgrounds */
  --jashn-blue-900: #0A1640;   /* darkest panels, footer */
  --jashn-blue-800: #0F1F5C;   /* primary brand background */
  --jashn-blue-700: #1A2D75;   /* hero, cards */
  --jashn-blue-600: #24398F;   /* hover surface */
  --jashn-blue-500: #3753B5;   /* accent fill */
  --jashn-blue-400: #6C82D1;   /* secondary text on dark */
  --jashn-blue-300: #A3B0DE;   /* divider on dark */
  --jashn-blue-200: #D2D9ED;   /* tint card on light */
  --jashn-blue-100: #EBEEF8;   /* hairline tint */

  /* -- Brand: Champagne Gold (secondary, signage & rules) -- */
  --jashn-gold-900: #6B4F1A;   /* deep, used on light backgrounds */
  --jashn-gold-800: #8A6A2A;   /* etched gold */
  --jashn-gold-700: #A88141;   /* primary metallic */
  --jashn-gold-600: #C9A55A;   /* signature champagne gold */
  --jashn-gold-500: #D9BC78;   /* hover, highlights */
  --jashn-gold-400: #E5CE99;   /* soft accent */
  --jashn-gold-300: #EFDDB8;   /* tint */
  --jashn-gold-200: #F6EBD2;   /* wash background */
  --jashn-gold-100: #FBF5E8;   /* lightest paper-cream */

  /* -- Warm interior neutrals (from interior renders: oak, sand, oat) -- */
  --warm-000: #FFFFFF;
  --warm-50:  #FAF6EF;          /* paper cream — section bg */
  --warm-100: #F3EBDD;          /* oat */
  --warm-200: #E6D8C0;          /* sand */
  --warm-300: #CDB89A;          /* light walnut */
  --warm-400: #A88E6B;          /* walnut */
  --warm-500: #7E6444;          /* deep walnut */
  --warm-600: #5C4830;          /* espresso wood */

  /* -- Cool neutrals (UI text, lines, surfaces on light) -- */
  --ink-950: #0B0E1A;           /* near-black headline */
  --ink-900: #14182A;
  --ink-800: #1F2438;
  --ink-700: #2E3450;
  --ink-600: #4A5170;
  --ink-500: #6B7390;
  --ink-400: #9097B0;
  --ink-300: #B8BDCE;
  --ink-200: #DCDFE9;
  --ink-100: #ECEEF4;
  --ink-50:  #F6F7FA;

  /* -- Semantic status -- */
  --status-success: #2F7D54;
  --status-warn:    #B5872B;
  --status-error:   #B23A3A;
  --status-info:    var(--jashn-blue-600);

  /* ---------- Semantic role tokens ---------- */
  /* Surfaces */
  --bg-app:           var(--warm-50);
  --bg-surface:       var(--warm-000);
  --bg-elev:          var(--warm-000);
  --bg-muted:         var(--warm-100);
  --bg-brand:         var(--jashn-blue-800);
  --bg-brand-deep:    var(--jashn-blue-950);
  --bg-on-image:      rgba(10, 22, 64, 0.55);

  /* Foregrounds */
  --fg-primary:       var(--ink-950);   /* body on light */
  --fg-secondary:     var(--ink-600);
  --fg-tertiary:      var(--ink-500);
  --fg-on-brand:      var(--warm-50);   /* warm white on blue */
  --fg-on-brand-muted:var(--jashn-blue-300);
  --fg-accent:        var(--jashn-gold-700);
  --fg-accent-on-brand: var(--jashn-gold-500);

  /* Lines */
  --line-hairline:    var(--ink-200);
  --line-strong:      var(--ink-300);
  --line-gold:        var(--jashn-gold-600);
  --line-gold-soft:   var(--jashn-gold-300);
  --line-on-brand:    rgba(217, 188, 120, 0.35);   /* gold @ 35% on blue */

  /* Buttons */
  --btn-primary-bg:   var(--jashn-blue-800);
  --btn-primary-fg:   var(--jashn-gold-300);
  --btn-primary-hover-bg: var(--jashn-blue-700);
  --btn-gold-bg:      var(--jashn-gold-600);
  --btn-gold-fg:      var(--jashn-blue-950);
  --btn-gold-hover-bg:var(--jashn-gold-500);
  --btn-ghost-fg:     var(--jashn-blue-800);
  --btn-ghost-border: var(--jashn-blue-800);
}

/* ============================================================
   TYPE — Family stacks
   ============================================================ */
:root {
  /* The voice of the brand — italic flared serif (URW Classico Bold Italic
     reads as the closest commercial match to the gate-signage wordmark). */
  --font-display: "URW Classico", "Optima", "Optima Nova", "EB Garamond", Georgia, serif;
  /* For marquee, decorative one-off moments only — high-contrast modern. */
  --font-marquee: "Juicy Simple", "URW Classico", "Didot", serif;
  /* Geometric headline sans — section toppers, big stat labels, gate plates. */
  --font-headline: "Futura Now Headline", "Futura", "Avenir Next", "Inter", system-ui, sans-serif;
  /* Body — humanist sans, the workhorse */
  --font-body:    "PF Bague Sans Pro", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-ui:      "PF Bague Sans Pro", "Futura Now Headline", "Inter", system-ui, sans-serif;

  /* Type scale (a fluid-ish modular scale, ratio ~1.25) */
  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-base: 16px;
  --fs-md:   18px;
  --fs-lg:   22px;
  --fs-xl:   28px;
  --fs-2xl:  36px;
  --fs-3xl:  48px;
  --fs-4xl:  64px;
  --fs-5xl:  84px;
  --fs-6xl: 112px;

  /* Line heights */
  --lh-tight: 1.05;
  --lh-snug:  1.18;
  --lh-base:  1.5;
  --lh-loose: 1.7;

  /* Letter-spacing */
  --tracking-display: -0.01em;     /* serif italic is naturally airy */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0em;
  --tracking-wide:   0.08em;
  --tracking-eyebrow:0.22em;       /* uppercase eyebrow */
}

/* ============================================================
   TYPE — Semantic classes (also expose as CSS vars for elements
   that want font-shorthand convenience)
   ============================================================ */

/* Display — italic flared serif, the brand voice. Use sparingly. */
.t-display-xl, h1.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: var(--fs-6xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--fg-primary);
}
.t-display, h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: var(--fs-5xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--fg-primary);
}
.t-headline, h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: var(--fs-3xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-display);
  color: var(--fg-primary);
}
.t-title, h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-display);
  color: var(--fg-primary);
}
.t-subtitle, h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-lg);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-normal);
  color: var(--fg-primary);
}

/* Marquee — the high-contrast display, for one-off moments only.
   E.g. the giant "Jashn" on a splash, or a magazine-style pull-quote. */
.t-marquee {
  font-family: var(--font-marquee);
  font-weight: 400;
  font-size: var(--fs-6xl);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
}

/* Eyebrow — small uppercase gold label, geometric sans, tracks wide.
   The hallmark of a Jashn section opener. */
.t-eyebrow {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-accent);
}
.t-eyebrow.on-brand { color: var(--fg-accent-on-brand); }

/* Body */
.t-lead, p.lead {
  font-family: var(--font-body);
  font-weight: 500;          /* PF Bague only ships at 500 */
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--fg-secondary);
}
.t-body, p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--fg-primary);
}
.t-small, small {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: var(--fg-secondary);
}
.t-caption {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: var(--fs-xs);
  line-height: var(--lh-base);
  letter-spacing: 0.04em;
  color: var(--fg-tertiary);
}

/* UI label — the workhorse for nav, buttons, chips. Geometric, all-caps,
   wide tracking. */
.t-label {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: var(--fs-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-primary);
}

/* Numerics — italic flared serif for big stats (e.g. 24 acres, 8 towers) */
.t-stat {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: var(--fs-4xl);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  color: var(--fg-primary);
}

/* ============================================================
   SPACING, RADII, SHADOWS, MOTION
   ============================================================ */
:root {
  /* Spacing scale (4-base, with named t-shirt aliases) */
  --space-0:  0px;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;
  --space-11: 160px;

  /* Layout */
  --container-max:    1320px;
  --gutter:           clamp(20px, 4vw, 56px);
  --section-pad-y:    clamp(64px, 9vw, 144px);

  /* Radii — modest. Big rounded corners would feel un-architectural. */
  --r-none: 0px;
  --r-xs:   2px;
  --r-sm:   4px;
  --r-md:   8px;     /* cards, inputs */
  --r-lg:   14px;    /* feature cards */
  --r-pill: 999px;   /* chips, pills, CTAs on light */

  /* Shadows — soft, warm, never neon. Used sparingly. */
  --shadow-1: 0 1px 2px rgba(20, 24, 42, 0.06);
  --shadow-2: 0 4px 14px rgba(20, 24, 42, 0.08);
  --shadow-3: 0 12px 36px rgba(20, 24, 42, 0.10);
  --shadow-floor: 0 30px 60px -30px rgba(10, 22, 64, 0.35);
  --shadow-inset-line: inset 0 -1px 0 var(--line-hairline);

  /* Motion */
  --ease-standard: cubic-bezier(0.32, 0.08, 0.24, 1);
  --ease-emphasis: cubic-bezier(0.2, 0.7, 0.1, 1);
  --dur-fast:   150ms;
  --dur-base:   240ms;
  --dur-slow:   420ms;
  --dur-grand:  700ms; /* used for image reveals */
}

/* ============================================================
   PRIMITIVES — small reusable bits the system relies on
   ============================================================ */

/* Gold hairline rule — appears under section labels, between meta rows */
.rule-gold {
  display: inline-block;
  height: 1px;
  width: 48px;
  background: var(--jashn-gold-600);
  margin: 8px 0 16px;
  vertical-align: middle;
}
.rule-gold.long { width: 96px; }

/* Diagonal gold flash motif (echoes brochure cover diagonals) */
.gold-diagonal-bg {
  background-color: var(--jashn-blue-800);
  background-image:
    linear-gradient(105deg, transparent 48%, rgba(217,188,120,0.6) 49.6%, transparent 50.4%),
    linear-gradient(115deg, transparent 35%, rgba(36,57,143,0.35) 36%, transparent 55%),
    radial-gradient(120% 80% at 50% 50%, rgba(55,83,181,0.45), transparent 70%);
}

/* "Image protection" overlay for text over photography — never use pure black */
.img-overlay-dark {
  background: linear-gradient(180deg, rgba(10,22,64,0) 35%, rgba(10,22,64,0.78) 100%);
}
.img-overlay-soft {
  background: linear-gradient(180deg, rgba(10,22,64,0) 50%, rgba(10,22,64,0.55) 100%);
}

/* Defaults */
html {
  color: var(--fg-primary);
  background: var(--bg-app);
}
#hero,
#amenities,
#plans,
#location,
#gallery,
#contact {
  scroll-margin-top: 100px;
}
body { font-family: var(--font-body); font-size: var(--fs-base); line-height: var(--lh-base); -webkit-font-smoothing: antialiased; }
::selection { background: var(--jashn-gold-300); color: var(--jashn-blue-900); }


* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--warm-50);
  font-family: var(--font-body);
  color: var(--fg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   Theme overrides driven by Tweaks panel (via [data-*] on <html>)
   ============================================================ */
:root {
  --accent: var(--jashn-gold-600);
  --accent-soft: var(--jashn-gold-400);
  --kpi-bg: var(--jashn-blue-900);
  --kpi-fg: var(--warm-50);
  --kpi-num: var(--jashn-gold-500);
  --kpi-lab: var(--jashn-blue-300);
}
[data-tone="light"] {
  --kpi-bg: var(--warm-100);
  --kpi-fg: var(--jashn-blue-900);
  --kpi-num: var(--jashn-blue-800);
  --kpi-lab: var(--ink-500);
}
[data-accent="gold-classic"] { --accent: #C9A55A; --accent-soft: #D9BC78; }
[data-accent="gold-deep"]    { --accent: #B0904A; --accent-soft: #C9A55A; }
[data-accent="gold-bright"]  { --accent: #DDBE74; --accent-soft: #ECD79E; }
[data-accent="champagne"]    { --accent: #D6B884; --accent-soft: #E6D2A8; }

/* Container */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: var(--section-pad-y) 0; }

/* ============================================================
   1) STICKY NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: linear-gradient(180deg, rgba(10,22,64,.55) 0%, rgba(10,22,64,0) 100%);
  transition: background var(--dur-base) var(--ease-standard),
              backdrop-filter var(--dur-base);
}
.nav.scrolled {
  background: rgba(10, 22, 64, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-on-brand);
}
.nav .inner {
  display: flex; align-items: center; gap: 32px;
  padding: 22px 0;
  color: var(--fg-on-brand);
}
.nav .lockup {
  display: flex; align-items: center; gap: 12px;
}
.nav .lockup img { height: 36px; width: auto; }
.nav .lockup .word {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 22px; color: var(--accent);
  letter-spacing: -0.01em;
}
.nav .links {
  display: flex; gap: 30px; margin-left: auto;
}
.nav .links a {
  font-family: var(--font-headline);
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.nav .links a:hover { color: var(--accent-soft); }
.nav .phone {
  font-family: var(--font-headline);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.nav .cta-wa {
  font-family: var(--font-headline);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 999px;
  background: var(--accent); color: var(--jashn-blue-950);
  border: none; transition: background var(--dur-base);
}
.nav .cta-wa:hover { background: var(--accent-soft); }
.nav .cta-wa {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* ============================================================
   2) HERO — Cinematic full-bleed
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  height: 100vh; min-height: 760px; max-height: 1080px;
  color: var(--warm-50);
}
.hero .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: heroIn 1.6s var(--ease-emphasis) 0.1s forwards;
}
@keyframes heroIn { to { transform: scale(1); } }
.hero .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,64,0.6) 0%, rgba(10,22,64,0.05) 28%, rgba(10,22,64,0.85) 100%),
    linear-gradient(95deg, rgba(10,22,64,0.6) 0%, rgba(10,22,64,0) 50%);
}

.hero .scarcity {
  position: absolute;
  top: 110px; left: var(--gutter); z-index: 4;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(10,22,64,.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--font-headline);
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--warm-50);
  border-radius: 999px;
  animation: subtleGlow 3s ease-in-out infinite;
}
.hero .scarcity .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff5040;
  box-shadow: 0 0 0 0 rgba(255,80,64,.6);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,80,64,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,80,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,80,64,0); }
}
@keyframes subtleGlow {
  50% { border-color: rgba(255,255,255,.32); }
}
[data-scarcity="subtle"] .hero .scarcity { font-size: 10px; padding: 7px 14px; }
[data-scarcity="loud"] .hero .scarcity {
  background: #c2330e; border-color: #ff7050;
  font-size: 13px; padding: 12px 22px; color: #fff;
}
[data-scarcity="loud"] .hero .scarcity .dot { background: #ffd9d2; }
[data-scarcity="off"] .hero .scarcity { display: none; }

.hero .content {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 88px;
}
.hero .eyebrow {
  font-family: var(--font-headline);
  font-weight: 500; font-size: 13px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(56px, 7.6vw, 124px);
  line-height: 0.96; letter-spacing: -0.018em;
  color: var(--warm-50); margin: 0;
  max-width: 17ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
}
.hero .meta-row {
  display: flex; gap: 22px; align-items: center;
  margin-top: 30px;
  font-family: var(--font-headline);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.86);
}
.hero .meta-row .sep { color: var(--accent); }

/* Floating lead form (top-right) */
.hero .lead-form {
  position: absolute; top: 110px; right: var(--gutter);
  z-index: 5;
  width: 360px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  padding: 28px 28px 24px;
  border-radius: 4px;
  border-top: 3px solid var(--accent);
  box-shadow: 0 24px 60px -16px rgba(10,22,64,.5);
  color: var(--fg-primary);
}
.hero .lead-form .ttl {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 22px; color: var(--jashn-blue-900);
  line-height: 1.1; margin: 0 0 4px;
}
.hero .lead-form .sub {
  font-family: var(--font-body); font-size: 12px;
  color: var(--ink-600); margin-bottom: 18px;
}
.hero .lead-form .field {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 10px;
}
.hero .lead-form label {
  font-family: var(--font-headline);
  font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--jashn-gold-700);
}
.hero .lead-form .input {
  font-family: var(--font-body);
  font-size: 14px; color: var(--fg-primary);
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 4px;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.hero .lead-form .input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,165,90,.22);
}
.hero .lead-form select.input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23B0904A' d='M0 0h10L5 6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.hero .lead-form .submit {
  width: 100%;
  font-family: var(--font-headline);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 14px 16px;
  background: var(--jashn-blue-900);
  color: var(--accent-soft);
  border: none;
  margin-top: 8px;
  transition: background var(--dur-base);
}
.hero .lead-form .submit:hover { background: var(--jashn-blue-800); }
.hero .lead-form .micro {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 10.5px; color: var(--ink-500);
  line-height: 1.5;
}

/* Trust pill row */
.hero .trust-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 28px;
}
.hero .trust-row .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,.92);
  color: var(--jashn-blue-900);
  font-family: var(--font-headline);
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
}
.hero .trust-row .pill .ic {
  width: 14px; height: 14px; color: var(--accent);
}

/* Scroll hint */
.hero .scroll-hint {
  position: absolute; bottom: 32px; right: var(--gutter);
  font-family: var(--font-headline);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--accent-soft);
  display: flex; align-items: center; gap: 14px;
  z-index: 4;
}
.hero .scroll-hint::after {
  content: ""; width: 1px; height: 38px;
  background: var(--accent);
  transform-origin: top;
  animation: hintPulse 2.4s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   3) KPI STRIP
   ============================================================ */
.kpi {
  background: var(--kpi-bg);
  color: var(--kpi-fg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 280px at 18% 0%,  rgba(201,165,90,.10), transparent 60%),
    radial-gradient(800px 240px at 82% 100%, rgba(201,165,90,.08), transparent 60%);
  pointer-events: none;
}
.kpi .inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.kpi .tile {
  border-left: 1px solid var(--line-on-brand);
  padding: 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.kpi .tile:first-child { border-left: 0; padding-left: 0; }
.kpi .num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 52px; line-height: 1;
  letter-spacing: -0.015em;
  color: var(--kpi-num);
}
.kpi .num .u {
  font-size: 18px;
  color: var(--accent-soft);
  margin-left: 4px;
}
.kpi .lab {
  font-family: var(--font-headline);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--kpi-lab);
}
.kpi .tile.scarcity .num { color: #ff8a72; }
.kpi .tile.scarcity .lab { color: #ffb8a8; }

/* ============================================================
   4) USPs
   ============================================================ */
.usps {
  background: var(--warm-50);
  padding: 120px 0;
}
.usps .head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 64px;
}
.usps h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(42px, 4.6vw, 60px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--jashn-blue-900); margin: 0;
  max-width: 22ch;
}
.usps .lead {
  font-family: var(--font-body);
  font-weight: 400; font-size: 17px;
  color: var(--ink-700);
  max-width: 380px;
  line-height: 1.6;
}
.usps .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.usp-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px 28px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--ink-100);
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.usp-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-4px);
}
.usp-card .glyph {
  width: 48px; height: 48px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.usp-card .glyph svg { width: 22px; height: 22px; color: var(--accent); }
.usp-card h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 22px; line-height: 1.15;
  color: var(--jashn-blue-900); margin: 0;
}
.usp-card p {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.65;
  color: var(--ink-600); margin: 0;
}
.usp-card .credit {
  font-family: var(--font-headline);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--jashn-gold-700);
  margin-top: 4px;
}

/* ============================================================
   5) AMENITIES — cinematic hero feature + mosaic
   ============================================================ */
.amenities {
  background: var(--jashn-blue-950);
  color: var(--warm-50);
  padding: 0; /* full bleed */
}
.amenities .head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 120px 0 56px;
}
.amenities h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--warm-50); margin: 0;
  max-width: 22ch;
}
.amenities .lead {
  font-family: var(--font-body);
  font-weight: 400; font-size: 18px;
  color: var(--jashn-blue-300);
  max-width: 560px;
  margin-top: 18px; line-height: 1.7;
}
.amenities .mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 320px 320px 320px;
  gap: 4px;
}
.am-tile {
  position: relative;
  overflow: hidden;
  background-size: cover; background-position: center;
  cursor: pointer;
  transition: transform var(--dur-slow) var(--ease-standard);
}
.am-tile.feature { grid-row: 1 / span 3; grid-column: 1; }
.am-tile .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,64,0) 30%, rgba(10,22,64,0.88) 100%);
  transition: background var(--dur-base);
}
.am-tile:hover { transform: scale(1.03); }
.am-tile:hover .scrim {
  background: linear-gradient(180deg, rgba(10,22,64,0.15) 0%, rgba(10,22,64,0.9) 100%);
}
.am-tile .label {
  position: absolute;
  left: 24px; bottom: 22px; right: 24px;
  color: var(--warm-50);
  z-index: 2;
}
.am-tile .label .eb {
  font-family: var(--font-headline);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-soft);
}
.am-tile .label h4 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.01em;
  margin: 6px 0 0;
}
.am-tile.feature .label h4 { font-size: 42px; }
.am-tile.feature .label p {
  font-family: var(--font-body);
  font-size: 14px; color: rgba(255,255,255,.85);
  max-width: 460px;
  margin: 10px 0 0; line-height: 1.6;
}
.am-tile .glyph-tl {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--font-headline);
  font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-soft);
  border-radius: 999px;
}

.amenities .ribbon {
  background: var(--jashn-blue-900);
  border-top: 1px solid var(--line-on-brand);
  padding: 28px 0;
}
.amenities .ribbon .inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-headline);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.amenities .ribbon .inner b,
.amenities .ribbon .ribbon-stat__val {
  color: var(--accent); font-weight: 500;
}
.ribbon-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  white-space: nowrap;
}
.ribbon-stat__lab {
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   6) FLOOR PLANS — Master plan + 3 unit cards
   ============================================================ */
.plans {
  background: var(--warm-100);
  padding: 120px 0;
}
.plans .head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 56px;
}
.plans h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(42px, 4.6vw, 60px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--jashn-blue-900); margin: 0;
}
.plans .lead {
  font-family: var(--font-body); font-size: 17px;
  color: var(--ink-700); max-width: 380px;
  line-height: 1.6;
}

/* Master plan */
.master-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-bottom: 48px;
}
.master-plot {
  position: relative;
  height: 480px;
  background:
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(15,31,92,.04) 26px 27px),
    repeating-linear-gradient(45deg,  transparent 0 26px, rgba(201,165,90,.04) 26px 27px),
    var(--warm-50);
  border-right: 1px solid var(--ink-100);
}
.master-plot .shapes { position: absolute; inset: 36px; }
.master-plot .road {
  position: absolute;
  background: rgba(0,0,0,.05);
  border-top: 1px dashed rgba(0,0,0,.18);
  border-bottom: 1px dashed rgba(0,0,0,.18);
}
.master-plot .block {
  position: absolute;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 13px; color: var(--jashn-blue-900);
}
.master-plot .block.sold {
  background: rgba(184,64,27,.16);
  border: 1.5px solid #b8401b;
  color: #b8401b;
}
.master-plot .block.selling {
  background: rgba(201,165,90,.22);
  border: 1.5px solid var(--accent);
}
.master-plot .amenity-ring {
  position: absolute;
  border: 1.5px dashed var(--accent);
  background: rgba(201,165,90,.06);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.master-plot .amenity-ring .nm {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 14px;
  color: var(--jashn-blue-900);
  line-height: 1.1;
}
.master-plot .amenity-ring .sz {
  font-family: var(--font-headline);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}
.master-plot .tag {
  position: absolute;
  font-family: var(--font-headline);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500);
  background: rgba(255,255,255,.7);
  padding: 2px 7px; border-radius: 2px;
}
.master-plot .compass {
  position: absolute; bottom: 12px; right: 12px;
  width: 40px; height: 40px;
  border: 1px solid var(--ink-300);
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: var(--jashn-blue-800); font-weight: 700;
}

.master-legend {
  padding: 36px 40px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--warm-50);
}
.master-legend .eb {
  font-family: var(--font-headline);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.master-legend h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 28px;
  color: var(--jashn-blue-900);
  line-height: 1.1; margin: 0;
}
.master-legend .gold-rule {
  height: 2px; width: 56px; background: var(--accent);
  margin: 4px 0 4px;
}
.master-legend .row {
  display: grid; grid-template-columns: 14px 1fr auto;
  align-items: baseline; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--ink-200);
  font-family: var(--font-body); font-size: 13px;
}
.master-legend .row:last-of-type { border-bottom: none; }
.master-legend .swatch {
  width: 14px; height: 14px;
  border: 1.5px solid var(--ink-300);
  border-radius: 3px;
}
.master-legend .swatch.sold {
  background: rgba(184,64,27,.16);
  border-color: #b8401b;
}
.master-legend .swatch.selling {
  background: rgba(201,165,90,.22);
  border-color: var(--accent);
}
.master-legend .swatch.amen {
  border: 1.5px dashed var(--accent);
  background: rgba(201,165,90,.06);
  border-radius: 50%;
}
.master-legend .name {
  color: var(--ink-700);
}
.master-legend .name b {
  color: var(--jashn-blue-900);
  font-family: var(--font-display); font-style: italic;
  font-weight: 700;
  display: block;
  font-size: 14px;
}
.master-legend .val {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}
.master-legend .val.sold { color: #b8401b; }

/* Unit cards */
.units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.unit {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
  display: flex; flex-direction: column;
}
.unit:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.unit .img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
}
.unit .img .tag-bhk {
  position: absolute; top: 16px; left: 16px;
  padding: 7px 12px;
  background: rgba(10,22,64,.88);
  color: var(--accent-soft);
  font-family: var(--font-headline);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  border-radius: 2px;
}
.unit .body {
  padding: 26px 28px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.unit h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 30px;
  color: var(--jashn-blue-900); margin: 0;
  line-height: 1.05;
}
.unit .specs {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-body); font-size: 13px;
  color: var(--ink-600);
}
.unit .specs .sep { color: var(--accent); }
.unit .meta-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px; border-top: 1px solid var(--ink-100);
}
.unit .meta-line .from {
  font-family: var(--font-headline);
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500);
}
.unit .meta-line .price {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 24px;
  color: var(--jashn-blue-800);
}
.unit .actions {
  display: flex; gap: 8px;
  margin-top: 6px;
}
.unit .actions .btn {
  flex: 1;
  font-family: var(--font-headline);
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 12px 14px;
  border-radius: 2px;
  border: 1.5px solid var(--jashn-blue-900);
  background: transparent;
  color: var(--jashn-blue-900);
  transition: background var(--dur-base), color var(--dur-base);
}
.unit .actions .btn:hover {
  background: var(--jashn-blue-900); color: var(--accent-soft);
}
.unit .actions .btn.gold {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--jashn-blue-950);
}
.unit .actions .btn.gold:hover {
  background: var(--accent-soft);
}

/* ============================================================
   7) LOCATION
   ============================================================ */
.location {
  background: var(--jashn-blue-800);
  color: var(--warm-50);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.location::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, transparent 48%, rgba(217,188,120,.18) 49.5%, transparent 50.5%),
    linear-gradient(115deg, transparent 35%, rgba(36,57,143,.4) 36%, transparent 55%);
  pointer-events: none;
  opacity: 0.5;
}
.location .grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location .head h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(42px, 4.6vw, 60px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--warm-50); margin: 0 0 20px;
}
.location .head .lead {
  font-family: var(--font-body);
  font-size: 17px; color: var(--jashn-blue-300);
  max-width: 480px; line-height: 1.7;
}
.location-venue {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--jashn-blue-300);
  max-width: 480px;
  margin: 0 0 20px;
}
.location-venue__label {
  display: block;
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.location .map {
  aspect-ratio: 4/3;
  background: var(--jashn-blue-900);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: 0 0 0 1px var(--line-on-brand) inset;
}
.location .map .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(217,188,120,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,188,120,.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.location .map .pin {
  position: absolute; top: 48%; left: 52%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
}
.location .map .pin .marker {
  width: 18px; height: 18px;
  background: var(--accent);
  border: 3px solid var(--jashn-blue-950);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,165,90,.32);
  animation: pinPulse 2.2s ease-in-out infinite;
}
@keyframes pinPulse {
  50% { box-shadow: 0 0 0 12px rgba(201,165,90,.06); }
}
.location .map .pin .lbl {
  margin-top: 10px;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 14px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.location .list {
  display: flex; flex-direction: column;
}
.location .list .group-head {
  font-family: var(--font-headline);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  padding-top: 8px;
}
.location .list .group-head + .group-head { margin-top: 24px; }
.location .list .item {
  display: grid; grid-template-columns: 22px 1fr auto;
  align-items: center; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-on-brand);
}
.location .list .item svg {
  width: 16px; height: 16px; color: var(--accent);
}
.location .list .nm {
  font-family: var(--font-body); font-size: 14px;
  color: var(--warm-50);
}
.location .list .nm small {
  display: block;
  font-family: var(--font-headline);
  font-size: 10px; color: var(--jashn-blue-300);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 4px;
}
.location .list .dist {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}

/* ============================================================
   8) GALLERY
   ============================================================ */
.gallery {
  background: var(--warm-50);
  padding: 120px 0;
}
.gallery .head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 40px;
}
.gallery h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(42px, 4.6vw, 60px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--jashn-blue-900); margin: 0;
}
.gallery .tabs {
  display: flex; gap: 28px;
}
.gallery .tabs button {
  appearance: none; border: 0; background: transparent;
  font-family: var(--font-headline);
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500);
  padding: 14px 0;
  border-bottom: 1.5px solid transparent;
  transition: color var(--dur-base), border-color var(--dur-base);
}
.gallery .tabs button.on {
  color: var(--jashn-blue-900);
  border-bottom-color: var(--accent);
}
.gallery-panels {
  position: relative;
}
.gallery-panel {
  animation: gallery-panel-in var(--dur-base) var(--ease-standard);
}
.gallery-panel[hidden] {
  display: none !important;
}
@keyframes gallery-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 14px;
}
.gallery-panel--mosaic .grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: none;
  grid-auto-rows: 260px;
}
.gallery-panel--mosaic .grid .img-tile.big {
  grid-row: auto;
  grid-column: auto;
}
.gallery .grid .img-tile {
  background-size: cover; background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-slow) var(--ease-standard);
}
.gallery .grid .img-tile:hover { transform: scale(1.02); }
.gallery .grid .img-tile.big {
  grid-row: 1 / span 2;
}
.gallery .grid .img-tile .cap {
  position: absolute; left: 16px; bottom: 14px;
  padding: 4px 10px;
  background: rgba(10,22,64,.7);
  backdrop-filter: blur(6px);
  color: var(--accent-soft);
  font-family: var(--font-headline);
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 2px;
}
.gallery .gallery-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
  font-family: var(--font-body); font-size: 12px;
  color: var(--ink-500);
}
.gallery .gallery-foot .btn {
  font-family: var(--font-headline);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  border: none;
  border-radius: 999px;
}

/* ============================================================
   9) WALKTHROUGH + ABOUT
   ============================================================ */
.walk {
  background: var(--warm-100);
  padding: 120px 0;
}
.walk .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  align-items: stretch;
}
.walk .walk-video-player {
  position: relative;
  width: 100%;          /* keep within the grid column — stop aspect-ratio from
                           ballooning the width when the height is stretched */
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  cursor: pointer;
  background: var(--jashn-blue-950);
}
.walk .walk-video-player__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  background: #0a1640;
}
.walk .walk-video-player .walkthrough-video-info {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  transition: opacity var(--dur-base);
  pointer-events: none;
}
.walk .walk-video-player .playing-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s ease;
  background-image: url('https://cdn.jashnrealty.com/assets/v2/images/group-housing-info/video-play-button.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.walk .walk-video-player:hover .playing-video-icon {
  transform: translate(-50%, -50%) scale(1.08);
}
.walk .walk-video-player.is-playing .walkthrough-video-info {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 720px) {
  .walk .walk-video-player .playing-video-icon {
    width: 72px;
    height: 72px;
  }
}

.about-card {
  background: var(--jashn-blue-900);
  color: var(--warm-50);
  padding: 40px 36px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.about-card .eb {
  font-family: var(--font-headline);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.about-card h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 30px;
  line-height: 1.1; color: var(--warm-50); margin: 0;
}
.about-card p {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,.78); margin: 0;
}
.about-card .trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line-on-brand);
}
.about-card .trust .t {
  padding: 14px 10px;
  text-align: center;
  background: rgba(255,255,255,.04);
  border-radius: 2px;
}
.about-card .trust .t b {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 4px;
}
.about-card .trust .t span {
  font-family: var(--font-headline);
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   10) SCHEDULE VISIT
   ============================================================ */
.schedule {
  background:
    linear-gradient(180deg, rgba(10,22,64,.92) 0%, rgba(10,22,64,.96) 100%),
    var(--jashn-blue-900);
  color: var(--warm-50);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.schedule::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 50% 100%, rgba(201,165,90,.18), transparent 70%);
  pointer-events: none;
}
.schedule .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.schedule .copy h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--warm-50); margin: 0 0 18px;
}
.schedule .copy h2 em {
  color: var(--accent); font-style: italic;
}
.schedule .copy .lead {
  font-family: var(--font-body); font-size: 17px;
  color: var(--jashn-blue-300);
  max-width: 460px;
  line-height: 1.7;
}
.schedule .copy .points {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.schedule .copy .points .p {
  display: grid; grid-template-columns: 20px 1fr; gap: 14px;
  align-items: flex-start;
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.schedule .copy .points svg {
  width: 16px; height: 16px; color: var(--accent);
  margin-top: 3px;
}
.schedule form {
  background: #fff;
  padding: 36px;
  border-radius: 4px;
  border-top: 4px solid var(--accent);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,.4);
  color: var(--fg-primary);
}
.schedule form .ttl {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 24px;
  color: var(--jashn-blue-900); margin: 0;
  line-height: 1.1;
}
.schedule form .sub {
  font-family: var(--font-body); font-size: 13px;
  color: var(--ink-600); margin: 0 0 6px;
}
.schedule form .field {
  display: flex; flex-direction: column; gap: 4px;
}
.schedule form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.schedule form label {
  font-family: var(--font-headline);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--jashn-gold-700);
}
.schedule form .inp {
  font-family: var(--font-body); font-size: 14px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 4px;
  outline: none;
  color: var(--fg-primary);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.schedule form .inp:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,165,90,.25);
}
.schedule form select.inp {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23B0904A' d='M0 0h10L5 6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
}
.schedule form .actions {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px;
  margin-top: 6px;
}
.schedule form .btn {
  font-family: var(--font-headline);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 18px;
  border: none;
  border-radius: 4px;
  transition: background var(--dur-base);
}
.schedule form .btn.primary {
  background: var(--jashn-blue-900);
  color: var(--accent-soft);
}
.schedule form .btn.primary:hover { background: var(--jashn-blue-800); }
.schedule form .btn.gold {
  background: var(--accent);
  color: var(--jashn-blue-950);
}
.schedule form .btn.gold:hover { background: var(--accent-soft); }
.schedule form .legal {
  font-family: var(--font-body); font-size: 11px;
  color: var(--ink-500); line-height: 1.5;
}

/* ============================================================
   11) FOOTER
   ============================================================ */
.footer {
  background: var(--jashn-blue-950);
  color: var(--jashn-blue-300);
  padding: 96px 0 36px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer .lockup {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.footer .lockup img { height: 56px; }
.footer .tag {
  font-family: var(--font-body);
  font-weight: 400; font-size: 14px;
  line-height: 1.7;
  color: var(--jashn-blue-300);
  max-width: 320px;
}
.footer .addr {
  margin-top: 22px;
  font-family: var(--font-body); font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}
.footer .addr b {
  font-family: var(--font-headline);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); display: block;
  margin: 12px 0 4px;
  font-weight: 500;
}

/* Nav + footer — Jashn Realty parent logo (cinematic reference) */
.nav .lockup {
  gap: 18px !important;
}
.nav .lockup-divider {
  width: 1px;
  height: 46px;
  background: rgba(217, 188, 120, 0.45);
  flex-shrink: 0;
}
.nav .logo-realty-nav {
  align-self: center;
  width: auto;
  max-width: 180px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  flex-shrink: 0;
}
.nav.scrolled .lockup-divider {
  height: 32px;
}
.nav.scrolled .logo-realty-nav {
  height: 26px;
}
.footer .developed-by {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 0;
}
.footer .developed-by .db-label {
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer .developed-by .realty-logo-footer {
  align-self: flex-start;
  width: auto;
  max-width: 180px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer .socials {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.footer .socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background var(--dur-base), color var(--dur-base);
}
.footer .socials a:hover {
  background: var(--accent); color: var(--jashn-blue-950);
}
.footer .socials svg { width: 16px; height: 16px; }
.footer .col h5 {
  font-family: var(--font-headline);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
  font-weight: 500;
}
.footer .col a {
  display: block;
  font-family: var(--font-body); font-size: 14px;
  color: var(--jashn-blue-200);
  padding: 6px 0;
  transition: color var(--dur-fast);
}
.footer .col a:hover { color: var(--accent-soft); }
.footer .rera {
  grid-column: 1 / -1;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(217,188,120,.2);
  font-family: var(--font-body); font-size: 11px;
  color: var(--jashn-blue-400);
  line-height: 1.75;
}
.footer .rera b {
  color: var(--accent);
  font-family: var(--font-headline);
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
}
.footer .legal-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; margin-top: 20px;
  border-top: 1px solid rgba(217,188,120,.12);
  font-family: var(--font-body); font-size: 11px;
  color: var(--jashn-blue-400);
}

/* ============================================================
   Floating WhatsApp + Sticky bar (mobile-style elements)
   ============================================================ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 50;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.42);
  transition: transform var(--dur-base);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 32px; height: 32px; }

/* Eyebrow + gold rule helper (shared) */
.eyebrow-block {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 18px;
}
.eyebrow-block .eb {
  font-family: var(--font-headline);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow-block .eb.on-light { color: var(--jashn-gold-700); }
.eyebrow-block .rule {
  height: 2px; width: 48px;
  background: var(--accent);
}

/* Reveal on scroll (purely opt-in) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-grand) var(--ease-standard),
              transform var(--dur-grand) var(--ease-standard);
}
.reveal.in { opacity: 1; transform: none; }


/* ============================================================
   INVESTOR HIGHLIGHT BAND
   ============================================================ */
.investor {
  background: linear-gradient(180deg, var(--jashn-blue-900) 0%, var(--jashn-blue-950) 100%);
  color: var(--warm-50);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.investor::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 320px at 18% 0%,  rgba(201,165,90,.10), transparent 60%),
    radial-gradient(800px 280px at 82% 100%, rgba(201,165,90,.08), transparent 60%);
  pointer-events: none;
}
.investor-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.investor-copy .eyebrow-block .eb { color: var(--accent); }
.investor-copy .eyebrow-block .rule { background: var(--accent); }
.investor-copy h2 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--warm-50);
  margin: 16px 0 24px;
  max-width: 22ch;
}
.investor-copy h2 em {
  color: var(--accent);
  font-style: italic;
}
.investor-copy > p {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  margin: 0 0 28px;
}
.investor-points {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 16px;
}
.investor-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
}
.investor-points li svg {
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.investor-points li b { color: var(--warm-50); }

/* Chart side */
.investor-chart {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-on-brand);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.investor-stat .stat-eb {
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.investor-stat .stat-row {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  margin-bottom: 8px;
}
.investor-stat .stat-from {
  font-size: 38px; color: rgba(255,255,255,.55);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.32);
  text-decoration-thickness: 2px;
}
.investor-stat .stat-row svg {
  width: 28px; height: 28px;
  color: var(--accent);
}
.investor-stat .stat-to {
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}
.investor-stat .stat-delta {
  font-family: var(--font-headline);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-50);
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201,165,90,.16);
  border: 1px solid var(--accent);
  border-radius: 999px;
  margin-top: 6px;
}

/* Bars */
.investor-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  height: 160px;
  align-items: flex-end;
}
.bar-col {
  display: flex; flex-direction: column;
  align-items: center;
  height: 100%;
}
.bar-col .bar {
  width: 100%;
  border-radius: 2px 2px 0 0;
  margin-bottom: 12px;
  position: relative;
}
.bar-col .bar.before {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.32);
}
.bar-col .bar.after {
  background: var(--accent);
  box-shadow: 0 0 24px rgba(201,165,90,.4);
}
.bar-col span {
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-align: center;
  line-height: 1.5;
}
.bar-col span b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--warm-50);
  margin-top: 4px;
}
.bar-col .bar.after + span b { color: var(--accent); }

.investor-cta {
  display: inline-flex;
  align-items: center; gap: 12px;
  font-family: var(--font-headline);
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 24px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  border-radius: 4px;
  align-self: flex-start;
  transition: background var(--dur-base);
}
.investor-cta:hover { background: var(--accent-soft); }
.investor-cta svg {
  width: 16px; height: 16px;
}

/* ============================================================
   PENTHOUSE SIGNATURE CARD
   ============================================================ */
.penthouse {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-top: 48px;
  background: var(--jashn-blue-950);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-3);
}
.penthouse-img {
  position: relative;
  background-size: cover; background-position: center;
  min-height: 420px;
}
.penthouse-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,64,.4) 0%, rgba(10,22,64,.7) 100%);
}
.penthouse-img .signature-tag {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.penthouse-body {
  padding: 48px;
  color: var(--warm-50);
  display: flex; flex-direction: column; gap: 20px;
}
.penthouse-body .eyebrow-block .eb { color: var(--accent); }
.penthouse-body h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--warm-50);
  margin: 0;
}
.penthouse-body > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.penthouse-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-on-brand);
  border-bottom: 1px solid var(--line-on-brand);
  padding: 18px 0;
  margin: 4px 0;
}
.penthouse-stats .ph-stat {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 4px;
  border-left: 1px solid var(--line-on-brand);
  padding: 0 18px;
}
.penthouse-stats .ph-stat:first-child {
  border-left: 0; padding-left: 0;
}
.penthouse-stats .ph-stat b {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.penthouse-stats .ph-stat span {
  font-family: var(--font-headline);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}
.penthouse-features {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin: 0;
}
.penthouse-features::before {
  content: "Includes \2014 ";
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: none;
}
.penthouse-actions {
  display: flex; gap: 10px;
  margin-top: 4px;
}
.penthouse-actions .btn {
  font-family: var(--font-headline);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 2px;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: background var(--dur-base), color var(--dur-base);
}
.penthouse-actions .btn.gold {
  background: var(--accent);
  color: var(--jashn-blue-950);
}
.penthouse-actions .btn:hover {
  background: var(--accent);
  color: var(--jashn-blue-950);
}
.penthouse-actions .btn.gold:hover {
  background: var(--accent-soft);
}
.penthouse-note {
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* Plans footnote */
.plans-footnote {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.65;
  text-align: center;
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--ink-100);
}


/* Real Google Maps embed inside the location block */
.location .map {
  overflow: hidden;
  background: var(--jashn-blue-950);
  position: relative;
}
.location .map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  filter: contrast(1.02) saturate(0.94);
}
.location .map .map-open {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 2;
  display: inline-flex; align-items: center;
  padding: 10px 16px;
  background: rgba(10,22,64,.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-headline);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--dur-base), color var(--dur-base);
}
.location .map .map-open:hover {
  background: var(--accent);
  color: var(--jashn-blue-950);
}


/* === Proper Jashn Elevate lockup (medallion + wordmark + tagline) === */
.nav .lockup .logo-full {
  height: 56px;
  width: auto;
  display: block;
  /* Gold on transparent — keep as is on the navy nav */
}
.nav.scrolled .lockup .logo-full { height: 52px; }

.footer .lockup .logo-full {
  height: 96px;
  width: auto;
  display: block;
}


/* ============================================================
   OFFER ANNOUNCEMENT BAR
   ============================================================ */
.offer-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  background:
    linear-gradient(90deg, var(--jashn-blue-950) 0%, var(--jashn-blue-900) 50%, var(--jashn-blue-950) 100%);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 2px 16px rgba(10,22,64,.4);
  transition: transform var(--dur-base) var(--ease-standard);
}
.offer-bar.hidden {
  transform: translateY(-100%);
}
.offer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px var(--gutter);
  color: var(--warm-50);
}
.offer-flag {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 5px 12px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.offer-flag svg {
  width: 13px; height: 13px;
}
.offer-copy {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-50);
  line-height: 1.5;
}
.offer-copy b {
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  padding: 0 2px;
}
.offer-sub {
  display: inline-block;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(217,188,120,.32);
  font-family: var(--font-headline);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.offer-cta {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: background var(--dur-base);
}
.offer-cta:hover {
  background: var(--accent-soft);
}
.offer-cta svg {
  width: 14px; height: 14px;
}
.offer-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.55);
  padding: 6px;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: color var(--dur-fast);
  flex-shrink: 0;
}
.offer-close:hover { color: var(--accent); }
.offer-close svg { width: 18px; height: 18px; }

.offer-fineprint {
  position: absolute;
  right: 60px; bottom: 2px;
  font-family: var(--font-body);
  font-size: 9.5px;
  color: rgba(255,255,255,.42);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Push the sticky nav and hero down to make room for the offer bar */
.nav {
  top: 64px;
}
body.no-offer .nav {
  top: 0;
}
.hero {
  margin-top: 64px;
}
body.no-offer .hero {
  margin-top: 0;
}

/* Offer ribbon on eligible unit cards */
.unit .offer-ribbon {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center; gap: 6px;
  padding: 7px 12px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(201,165,90,.32);
}
.unit .offer-ribbon svg {
  width: 12px; height: 12px;
}
.unit.eligible .img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-base);
}
.unit.eligible:hover .img::after { opacity: 1; }


/* ============================================================
   OFFER HERO · the offer IS the headline
   ============================================================ */

/* Cancel the top-bar offset (top bar is gone) */
body.no-offer .nav { top: 0; }
body.no-offer .hero { margin-top: 0; }

/* The big offer flag above the hero h1 */
.offer-flag-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 14px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  border-radius: 2px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 6px 22px rgba(201,165,90,.35);
  align-self: flex-start;
}
.offer-flag-big svg {
  width: 16px; height: 16px;
}
.offer-flag-big .tc {
  display: inline-block;
  padding-left: 14px;
  border-left: 1px solid rgba(10,22,64,.32);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(10,22,64,.7);
}

/* The hero h1 — the Nexon line is the headline */
.offer-hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(60px, 8.2vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--warm-50);
  margin: 0;
  max-width: 17ch;
}
.offer-hero h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

.offer-hero .hero-deck {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  max-width: 60ch;
  margin: 22px 0 0;
}

/* Form gets a thin gold flag at top */
.lead-form .form-flag {
  display: inline-block;
  padding: 5px 10px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 12px;
}
.lead-form .ttl {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--jashn-blue-900);
  line-height: 1.05;
  font-size: 22px;
  margin: 0 0 6px;
}


/* One-line eligibility under the hero h1 */
.offer-hero .hero-eligibility {
  font-family: var(--font-headline);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin: 24px 0 0;
  font-weight: 500;
}


/* Force readable text on amenity tiles (override any default heading color) */
.amenities .am-tile .label h4,
.amenities .am-tile .label p {
  color: var(--warm-50) !important;
  text-shadow: 0 2px 12px rgba(10,22,64,.6);
}
.amenities .am-tile .label .eb {
  text-shadow: 0 2px 8px rgba(10,22,64,.4);
}
/* Lighter scrim — less navy over the photo, just enough at the bottom for labels */
.amenities .am-tile .scrim {
  background: linear-gradient(180deg,
    rgba(10,22,64,0) 55%,
    rgba(10,22,64,0.32) 82%,
    rgba(10,22,64,0.7) 100%);
}
.amenities .am-tile.feature .scrim {
  background: linear-gradient(180deg,
    rgba(10,22,64,0) 52%,
    rgba(10,22,64,0.3) 80%,
    rgba(10,22,64,0.68) 100%);
}


/* Keep each spec on a single line so the row aligns across cards */
.unit .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.unit .specs > span {
  white-space: nowrap;
}
.unit .specs > span.sep { color: var(--accent); }


/* Lighter scrim so the Nexon hero image is visible. The form sits top-right
   and the content sits bottom-left — those zones get a modest navy gradient;
   the middle of the image stays clear. */
.hero .scrim {
  background:
    linear-gradient(180deg,
      rgba(10,22,64,0.30) 0%,
      rgba(10,22,64,0.00) 28%,
      rgba(10,22,64,0.00) 55%,
      rgba(10,22,64,0.55) 100%) !important;
}


/* Offer reveal card · small Nexon visual + offer text, anchored above the hero h1 */
.offer-reveal {
  display: inline-flex;
  align-items: stretch;
  background: var(--accent);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 10px 32px rgba(0,0,0,.42);
  align-self: flex-start;
  max-width: 460px;
}
.offer-reveal img {
  width: 168px;
  height: auto;
  min-height: 96px;
  object-fit: cover;
  object-position: 60% center;
  display: block;
  border-right: 1px solid rgba(10,22,64,.18);
}
.offer-reveal .offer-text {
  padding: 14px 22px 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.offer-reveal .offer-eb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jashn-blue-950);
}
.offer-reveal .offer-eb svg {
  width: 13px; height: 13px;
}
.offer-reveal .offer-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--jashn-blue-950);
  line-height: 1.05;
  margin-top: 2px;
}
.offer-reveal .offer-tc {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(10,22,64,.7);
  margin-top: 4px;
}


/* Restore deeper scrim now that the hero is back on the aerial render.
   Top: enough darkening to keep the scarcity tag legible.
   Mid: clear, so the render shows through.
   Bottom: heavy navy so the H1 / eligibility / form sit on solid contrast. */
.hero .scrim {
  background:
    linear-gradient(180deg,
      rgba(10,22,64,0.55) 0%,
      rgba(10,22,64,0.10) 28%,
      rgba(10,22,64,0.45) 62%,
      rgba(10,22,64,0.92) 100%),
    linear-gradient(95deg, rgba(10,22,64,0.50) 0%, rgba(10,22,64,0) 55%) !important;
}

/* Belt-and-suspenders text shadow on the hero headline + eligibility line */
.offer-hero h1 {
  text-shadow: 0 4px 24px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.4);
}
.offer-hero .hero-eligibility {
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}


/* Larger Jashn Elevate lockup in the top nav */
.nav .lockup .logo-full { height: 78px !important; }
.nav.scrolled .lockup .logo-full { height: 64px !important; }


/* Floating call + WhatsApp stack, visible across the whole page */
.floater-stack {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform var(--dur-base), box-shadow var(--dur-base);
  border: none;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.wa {
  background: #25D366;
  box-shadow: 0 10px 28px rgba(37,211,102,.42);
}
.float-btn.wa:hover { box-shadow: 0 14px 32px rgba(37,211,102,.55); }
.float-btn.call {
  background: var(--jashn-blue-900);
  box-shadow: 0 10px 28px rgba(10,22,64,.42);
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.float-btn.call:hover { box-shadow: 0 14px 32px rgba(201,165,90,.4); }

/* Nav CTA — now Enquire Now */
.nav .cta-wa {
  text-decoration: none;
}


/* RERA Phase 3 QR badge anchored top-left of the hero */
.rera-badge {
  position: absolute;
  top: 124px; left: var(--gutter);
  z-index: 4;
  display: inline-block;
  padding: 10px 14px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--accent);
  border-radius: 2px;
  box-shadow: 0 8px 22px rgba(10,22,64,.35);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
  text-decoration: none;
}
.rera-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10,22,64,.45);
}
.rera-badge img {
  display: block;
  width: 280px;
  height: auto;
}


/* Smaller RERA badge tucked into the corner */
.rera-badge {
  top: 122px !important;
  left: auto !important;
  right: var(--gutter) !important;  /* aligns under the Book a Site Visit button */
  padding: 6px 8px !important;
}
.rera-badge img {
  width: 150px !important;
}


/* ============================================================
   MASTER PLAN · upgraded from schematic to a refined site plan
   ============================================================ */

/* Backdrop — paper with diagonal architectural hatching */
.master-plot {
  background:
    repeating-linear-gradient(135deg, transparent 0 36px, rgba(15,31,92,.04) 36px 37px),
    repeating-linear-gradient(45deg,  transparent 0 36px, rgba(201,165,90,.03) 36px 37px),
    radial-gradient(ellipse at center, var(--warm-50) 0%, var(--warm-100) 100%) !important;
}

/* Generous inner area with room for landscaping */
.master-plot .shapes {
  inset: 48px !important;
}

/* Roads — cleaner with center dashed line */
.master-plot .shapes .road {
  background: rgba(217,188,120,.18) !important;
  border-top: none !important;
  border-bottom: none !important;
}
.master-plot .shapes .road::before,
.master-plot .shapes .road::after {
  content: "";
  position: absolute;
}
.master-plot .shapes .road:nth-of-type(1)::before {
  /* horizontal road center line */
  top: 50%; left: 6%; right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 12px, transparent 12px 22px);
  opacity: 0.55;
}
.master-plot .shapes .road:nth-of-type(2)::before {
  /* vertical road center line */
  left: 50%; top: 6%; bottom: 6%;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--accent) 0 12px, transparent 12px 22px);
  opacity: 0.55;
}

/* Tower blocks — elevated with gradient + soft shadow + roof detail */
.master-plot .shapes .block {
  border-radius: 4px !important;
  border-width: 2px !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  font-weight: 700 !important;
  box-shadow:
    0 6px 14px rgba(15,31,92,.12),
    inset 0 1px 0 rgba(255,255,255,.5);
  position: absolute;
  overflow: hidden;
}
.master-plot .shapes .block::before {
  /* roof hatching */
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(0,0,0,.04) 6px 7px),
    repeating-linear-gradient(135deg, transparent 0 6px, rgba(0,0,0,.03) 6px 7px);
  pointer-events: none;
}
.master-plot .shapes .block::after {
  /* corner accent */
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  opacity: 0.4;
}
.master-plot .shapes .block.sold {
  background: linear-gradient(135deg, rgba(184,64,27,.20) 0%, rgba(184,64,27,.10) 100%) !important;
  border-color: #b8401b !important;
  color: #b8401b !important;
}
.master-plot .shapes .block.selling {
  background: linear-gradient(135deg, rgba(201,165,90,.26) 0%, rgba(201,165,90,.14) 100%) !important;
  border-color: var(--accent) !important;
  color: var(--jashn-blue-900) !important;
}

/* Westfield Club — a layered concentric medallion (not a dashed ring) */
.master-plot .shapes .amenity-ring {
  background: radial-gradient(circle, rgba(201,165,90,.22) 0%, rgba(201,165,90,.10) 60%, transparent 100%) !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow:
    0 0 0 1px var(--accent) inset,
    0 0 0 6px rgba(201,165,90,.16),
    0 0 0 7px rgba(201,165,90,.4),
    0 8px 28px rgba(201,165,90,.22);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center;
}
.master-plot .shapes .amenity-ring::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(201,165,90,.55);
  border-radius: 50%;
}
.master-plot .shapes .amenity-ring .nm {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--jashn-blue-900);
  font-size: 16px !important;
  line-height: 1.05;
  letter-spacing: -0.005em;
  position: relative;
}
.master-plot .shapes .amenity-ring .sz {
  font-family: var(--font-headline);
  font-size: 9px !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin-top: 6px !important;
  padding: 3px 8px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  position: relative;
}

/* Landscape dots — garden / trees scattered along the perimeter */
.master-plot .shapes::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 22%, rgba(60,120,80,.35) 0 4px, transparent 5px),
    radial-gradient(circle at 8% 48%, rgba(60,120,80,.32) 0 5px, transparent 6px),
    radial-gradient(circle at 8% 78%, rgba(60,120,80,.35) 0 4px, transparent 5px),
    radial-gradient(circle at 96% 22%, rgba(60,120,80,.32) 0 4px, transparent 5px),
    radial-gradient(circle at 96% 50%, rgba(60,120,80,.35) 0 5px, transparent 6px),
    radial-gradient(circle at 96% 80%, rgba(60,120,80,.32) 0 4px, transparent 5px),
    radial-gradient(circle at 22% 6%, rgba(60,120,80,.30) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 6%, rgba(60,120,80,.30) 0 5px, transparent 6px),
    radial-gradient(circle at 80% 6%, rgba(60,120,80,.30) 0 4px, transparent 5px),
    radial-gradient(circle at 22% 96%, rgba(60,120,80,.30) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 96%, rgba(60,120,80,.30) 0 5px, transparent 6px),
    radial-gradient(circle at 80% 96%, rgba(60,120,80,.30) 0 4px, transparent 5px);
  pointer-events: none;
}

/* Tag styling — thinner, more refined */
.master-plot .shapes .tag {
  background: rgba(255,255,255,.85) !important;
  padding: 4px 10px !important;
  font-size: 9.5px !important;
  letter-spacing: 0.24em !important;
  border: 1px solid var(--ink-200);
  color: var(--jashn-blue-900) !important;
  border-radius: 2px;
  font-weight: 600;
}

/* Compass — architectural rose with crosshairs */
.master-plot .shapes .compass {
  width: 52px !important;
  height: 52px !important;
  background:
    radial-gradient(circle, #fff 60%, transparent 61%),
    conic-gradient(from 0deg,
      rgba(201,165,90,.3) 0deg 1deg,
      transparent 1deg 89deg,
      rgba(201,165,90,.3) 89deg 91deg,
      transparent 91deg 179deg,
      rgba(201,165,90,.3) 179deg 181deg,
      transparent 181deg 269deg,
      rgba(201,165,90,.3) 269deg 271deg,
      transparent 271deg 360deg) !important;
  border: 1px solid var(--accent) !important;
  font-size: 16px !important;
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-weight: 700 !important;
  color: var(--jashn-blue-900) !important;
  bottom: 16px !important;
  right: 16px !important;
  position: relative;
}
.master-plot .shapes .compass::before {
  content: "";
  position: absolute;
  top: -8px; bottom: -8px;
  left: 50%; width: 1px;
  background: linear-gradient(180deg,
    var(--accent) 0%, var(--accent) 8px,
    transparent 8px, transparent calc(100% - 8px),
    var(--accent) calc(100% - 8px), var(--accent) 100%);
  opacity: 0.5;
}
.master-plot .shapes .compass::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px;
  top: 50%; height: 1px;
  background: linear-gradient(90deg,
    var(--accent) 0%, var(--accent) 8px,
    transparent 8px, transparent calc(100% - 8px),
    var(--accent) calc(100% - 8px), var(--accent) 100%);
  opacity: 0.5;
}

/* Master plan card — a touch more elevation */
.master-card {
  box-shadow: 0 24px 60px -16px rgba(15,31,92,.25) !important;
  border-radius: 6px !important;
}
.master-plot {
  min-height: 540px !important;
}


/* === Hero h1 sized down + compact form === */
.offer-hero h1 {
  font-size: clamp(42px, 5.6vw, 86px) !important;
  max-width: 16ch;
}
.offer-hero .hero-eligibility {
  font-size: 12px !important;
  letter-spacing: 0.20em;
  margin-top: 18px !important;
}

/* Compact lead form */
.hero .lead-form {
  width: 300px !important;
  padding: 20px 22px 18px !important;
}
.hero .lead-form .ttl {
  font-size: 19px !important;
  margin: 0 0 4px !important;
}
.hero .lead-form .sub {
  font-size: 11px !important;
  margin-bottom: 14px !important;
}
.hero .lead-form .form-flag {
  font-size: 9px !important;
  padding: 4px 8px !important;
  margin-bottom: 10px !important;
}
.hero .lead-form .field {
  margin-bottom: 8px !important;
  gap: 2px !important;
}
.hero .lead-form label {
  font-size: 8.5px !important;
  letter-spacing: 0.22em !important;
}
.hero .lead-form .input {
  font-size: 13px !important;
  padding: 8px 10px !important;
}
.hero .lead-form .submit {
  font-size: 10.5px !important;
  padding: 12px 14px !important;
  margin-top: 6px !important;
}


/* RERA approved strip directly below the nav main row */
.nav .rera-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0 14px;
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1px solid rgba(217,188,120,.18);
  margin-top: -4px;
}
.nav .rera-strip svg { width: 14px; height: 14px; }

/* Tweak the nav CTA to match the reference shape (rectangle with calendar icon) */
.nav .cta-wa {
  border-radius: 4px !important;
  padding: 14px 22px !important;
  letter-spacing: 0.2em !important;
  display: inline-flex;
  align-items: center;
}


/* Lighter top scrim so the dusk sky shows through */
.hero .scrim {
  background:
    linear-gradient(180deg,
      rgba(10,22,64,0.18) 0%,
      rgba(10,22,64,0.00) 22%,
      rgba(10,22,64,0.40) 62%,
      rgba(10,22,64,0.90) 100%),
    linear-gradient(95deg, rgba(10,22,64,0.40) 0%, rgba(10,22,64,0) 55%) !important;
}


/* New hero image has dense building + less sky — position the photo lower so towers fill the frame, and pull the scrim back further at top */
.hero .photo {
  background-position: center 70% !important;
}
.hero .scrim {
  background:
    linear-gradient(180deg,
      rgba(10,22,64,0.10) 0%,
      rgba(10,22,64,0.00) 18%,
      rgba(10,22,64,0.35) 60%,
      rgba(10,22,64,0.88) 100%),
    linear-gradient(95deg, rgba(10,22,64,0.35) 0%, rgba(10,22,64,0) 55%) !important;
}


/* Tighten hero so the main banner copy fits in first scroll */
.hero {
  min-height: 620px !important;
  max-height: 880px !important;
  height: 92vh !important;
}
.hero .photo {
  /* push image up so buildings dominate, sky is barely visible */
  background-position: center bottom !important;
  background-size: cover !important;
}
.hero .content {
  padding-bottom: 56px !important;
  padding-top: 130px !important;
  justify-content: center !important;
}
.offer-hero h1 {
  font-size: clamp(38px, 4.8vw, 68px) !important;
  max-width: 14ch;
}
.offer-hero .hero-eligibility {
  margin-top: 14px !important;
  font-size: 11.5px !important;
}
.offer-reveal {
  margin-bottom: 20px !important;
}
.offer-reveal img {
  width: 140px !important;
  min-height: 84px !important;
}
.offer-reveal .offer-headline {
  font-size: 18px !important;
}
.offer-reveal .offer-eb {
  font-size: 9.5px !important;
}


/* Anchor hero content to the bottom so the towers up top are visible.
   Eligibility line baseline aligns with the scroll-hint baseline (bottom: 32px). */
.hero .content {
  justify-content: flex-end !important;
  padding-bottom: 32px !important;
  padding-top: 0 !important;
}

/* Compact nav CTA — width matches the lead form's right edge */
.nav .cta-wa {
  padding: 12px 18px !important;
  font-size: 10.5px !important;
  letter-spacing: 0.18em !important;
}


/* Tighten the KPI strip vertical padding */
.kpi {
  padding: 44px 0 !important;
}


/* Nav container full-width so the Book a Site Visit button right edge
   sits at the gutter, aligned with the lead form's right edge */
.nav .inner {
  max-width: none !important;
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
}


/* Align all 3 unit cards so View Plan / Pre-Sales buttons sit at the same baseline */
.units {
  align-items: stretch;
}
.unit {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.unit .body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.unit .body > p {
  /* description grows to push the meta-line + actions down to bottom */
  flex: 1;
}
.unit .meta-line {
  margin-top: 0;
}
.unit .actions {
  margin-top: auto;
}


/* Penthouse image — no overlay, show right side of frame where the city view is */
.penthouse-img::after {
  display: none !important;
}
.penthouse-img {
  background-position: right center !important;
  background-size: cover !important;
}


/* Footer layout simplified: left brand/address column + right column of three RERA banners */
.footer .grid {
  grid-template-columns: 1.4fr 1fr !important;
  gap: 56px !important;
}
.rera-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rera-banner {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.rera-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,165,90,.25);
}
.rera-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Footer rera-text spans full width */
.footer .rera {
  grid-column: 1 / -1 !important;
}
.footer .legal-bar {
  grid-column: 1 / -1;
}


/* Clean RERA cards — no background images, just QR + registration text */
.rera-banners {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rera-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-on-brand);
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.rera-card:hover {
  background: rgba(201,165,90,.08);
  border-color: var(--accent);
}
.rera-card .rera-qr {
  width: 72px; height: 72px;
  display: block;
  border-radius: 3px;
  background: #fff;
  padding: 4px;
}
.rera-card .rera-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rera-card .rera-eb {
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.rera-card .rera-no {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--warm-50);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.rera-card .rera-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}


/* Long disclaimer block — very small text, justified, paragraph form */
.footer .rera .disclaimer-long {
  font-family: var(--font-body);
  font-size: 9px;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
  margin: 6px 0 12px;
  text-align: justify;
  font-weight: 400;
  letter-spacing: 0.005em;
}


/* Expanded RERA card to hold bank details */
.rera-card .rera-site {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}
.rera-card .rera-meta.dim {
  color: rgba(255,255,255,.42);
  font-style: italic;
}
.rera-card .rera-bank {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  background: rgba(0,0,0,.18);
  border-radius: 3px;
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 10.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.rera-card .rera-bank b {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 6px;
}
.rera-card {
  align-items: flex-start;
  padding: 18px 18px;
}
.rera-card .rera-qr {
  margin-top: 4px;
}


/* Disclaimer fits inside left footer column — no longer spans full grid width */
.footer .rera.left-col-disclaimer {
  grid-column: auto !important;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(217,188,120,.18);
}
.footer .rera.left-col-disclaimer .disclaimer-long {
  font-size: 9.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.5);
  text-align: justify;
  margin: 6px 0 12px;
}
.footer .rera.left-col-disclaimer b {
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin: 8px 0 0;
}


/* === Aerial master plan render === */
.master-plot.aerial {
  position: relative;
  overflow: hidden;
  border-bottom: 1.4px solid var(--ink-200);
  background: var(--jashn-blue-950);
  min-height: 480px;
}
.master-plot.aerial img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.master-plot.aerial .aerial-tags {
  position: absolute; inset: 0;
  pointer-events: none;
}
.master-plot.aerial .atag {
  position: absolute;
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,22,64,.85);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.18);
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.master-plot.aerial .atag.sold {
  background: rgba(184,64,27,.92);
  border-color: rgba(255,255,255,.24);
}
.master-plot.aerial .atag.selling {
  background: rgba(10,22,64,.85);
  border-color: var(--accent);
  color: var(--accent-soft);
}
.master-plot.aerial .club-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.master-plot.aerial .club-marker .dot {
  width: 16px; height: 16px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,165,90,.32), 0 4px 12px rgba(0,0,0,.4);
  animation: clubPinPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes clubPinPulse {
  50% { box-shadow: 0 0 0 12px rgba(201,165,90,.08), 0 4px 12px rgba(0,0,0,.4); }
}
.master-plot.aerial .club-marker .lbl {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--accent);
  color: var(--jashn-blue-950);
  padding: 6px 14px;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
}
.master-plot.aerial .atag-compass {
  position: absolute;
  top: 18px; left: 18px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--jashn-blue-900);
}
.master-plot.aerial .atag-compass::before {
  content: "";
  position: absolute;
  top: -6px; bottom: -6px;
  left: 50%; width: 1px;
  background: linear-gradient(180deg,
    var(--accent) 0%, var(--accent) 4px,
    transparent 4px, transparent calc(100% - 4px),
    var(--accent) calc(100% - 4px), var(--accent) 100%);
  opacity: 0.55;
}


/* ============================================================
   CLIENT FEEDBACK · prominence pass (Cinematic)
   Jashn brand, Tata Nexon & form must read at one glance.
   ============================================================ */

/* 1) Nav brand — bigger logo on a solid cream plate so it pops on the photo */
.nav .logo-full { height: 96px !important; }
.nav.scrolled .logo-full { height: 66px !important; }
.nav .lockup {
  background: rgba(245,241,232,0.96);
  padding: 6px 16px;
  border-radius: 4px;
  display: inline-flex; align-items: center;
}
.nav.scrolled .lockup { background: transparent; padding: 0; }
.nav .links a { font-size: 13px !important; letter-spacing: 0.18em !important; }
.nav .cta-wa { font-size: 12px !important; padding: 14px 24px !important; }

/* 2) Hero scrim heavier so the headline, offer card & form dominate */
.hero .scrim {
  background:
    linear-gradient(180deg,
      rgba(10,22,64,0.42) 0%,
      rgba(10,22,64,0.10) 20%,
      rgba(10,22,64,0.45) 55%,
      rgba(10,22,64,0.92) 100%),
    linear-gradient(95deg, rgba(10,22,64,0.62) 0%, rgba(10,22,64,0) 60%) !important;
}

/* 3) Tata Nexon offer reveal — much bigger & brighter */
.offer-reveal {
  margin-bottom: 26px !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.5) !important;
  border: 2px solid var(--accent) !important;
}
.offer-reveal img {
  width: 188px !important;
  min-height: 108px !important;
}
.offer-reveal .offer-eb { font-size: 12px !important; letter-spacing: 0.22em !important; }
.offer-reveal .offer-headline { font-size: 26px !important; }
.offer-reveal .offer-tc { font-size: 13px !important; }

/* 4) Hero headline + eligibility larger, full strength */
.offer-hero h1 {
  font-size: clamp(54px, 6.6vw, 104px) !important;
  line-height: 0.96 !important;
  text-shadow: 0 4px 26px rgba(0,0,0,.6), 0 2px 4px rgba(0,0,0,.45) !important;
}
.offer-hero .hero-eligibility {
  font-size: 15px !important;
  letter-spacing: 0.16em !important;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.6) !important;
}

/* 5) Lead form — bigger fields, clear labels, mandatory markers */
.hero .lead-form {
  width: 340px !important;
  padding: 26px 26px 22px !important;
  box-shadow: 0 20px 54px rgba(0,0,0,.5) !important;
  border-top: 4px solid var(--accent) !important;
}
.hero .lead-form .form-flag { font-size: 11px !important; padding: 5px 11px !important; }
.hero .lead-form .ttl { font-size: 24px !important; }
.hero .lead-form label { font-size: 11px !important; letter-spacing: 0.2em !important; }
.hero .lead-form .input { font-size: 16px !important; padding: 11px 12px !important; }
.hero .lead-form .submit { font-size: 13px !important; padding: 15px 16px !important; }
.hero .lead-form .field.req label::after { content: " *"; color: #ff8a72; }

/* 6) Section headings significantly larger across the page */
.usps h2,
.plans h2,
.gallery h2,
.schedule .copy h2 {
  font-size: clamp(50px, 5.4vw, 80px) !important;
}
.amenities h2,
.location .head h2 {
  font-size: clamp(46px, 5vw, 70px) !important;
}
.eyebrow-block .eb { font-size: 14px !important; letter-spacing: 0.24em !important; }

/* 7) KPI values bigger */
.kpi .num { font-size: 58px !important; }
.kpi .lab { font-size: 12px !important; }

/* 8) USP card heading + body bigger */
.usp-card h3 { font-size: 25px !important; }
.usp-card p { font-size: 15px !important; line-height: 1.6 !important; }

/* 9) Unit cards — bigger heading + price */
.unit h3 { font-size: 32px !important; }
.unit .meta-line .price { font-size: 28px !important; }
.unit .specs { font-size: 13.5px !important; }


/* ============================================================
   RESPONSIVE — tablet & handset (Cinematic)
   Appended last so it overrides earlier desktop rules.
   ============================================================ */

/* ---------- Tablet & below (<= 1024px) ---------- */
@media (max-width: 1024px) {
  .container, .nav .inner { padding-left: 32px !important; padding-right: 32px !important; }

  /* Hero: form leaves the top-right float, headline stacks above it */
  .hero { height: auto !important; min-height: 0 !important; max-height: none !important; margin-top: 0 !important; }
  .hero .photo { position: absolute !important; inset: 0 !important; }
  .hero .content {
    position: relative !important;
    justify-content: flex-start !important;
    padding-top: 150px !important;
    padding-bottom: 28px !important;
  }
  .hero .lead-form {
    position: static !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 24px 0 12px !important;
    top: auto !important; right: auto !important;
  }
  .hero .rera-badge { display: none !important; }
  .hero .scroll-hint { display: none !important; }
  .offer-hero h1 { font-size: clamp(46px, 8vw, 78px) !important; }

  /* KPI: 3 across */
  .kpi .inner { grid-template-columns: repeat(3, 1fr) !important; gap: 28px 16px !important; }

  /* USPs: 2 across */
  .usps .grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Amenities mosaic → 2 cols, auto rows */
  .amenities .mosaic { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
  .am-tile.feature { grid-row: auto !important; grid-column: auto !important; min-height: 280px; }
  .am-tile { min-height: 220px; }

  /* Master plan, units, location, video, schedule, footer, penthouse → stack */
  .master-card { grid-template-columns: 1fr !important; }
  .master-plot.aerial, .master-plot { min-height: 360px !important; }
  .units { grid-template-columns: 1fr 1fr !important; }
  .loc .grid, .location .grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .videoblock, .walk .grid { grid-template-columns: 1fr !important; }
  .schedule .inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .penthouse { grid-template-columns: 1fr !important; }
  .penthouse .penthouse-img, .penthouse-img { min-height: 320px !important; }
  .footer .grid { grid-template-columns: 1fr 1fr !important; gap: 36px !important; }
  .investor-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ---------- Handset (<= 720px) ---------- */
@media (max-width: 720px) {
  .container, .nav .inner { padding-left: 20px !important; padding-right: 20px !important; }

  /* Nav: hide anchor links, keep logo + CTA */
  .nav .links { display: none !important; }
  .nav .inner { gap: 14px !important; justify-content: space-between !important; }
  .nav .logo-full { height: 64px !important; }
  .nav .cta-wa { font-size: 10px !important; padding: 11px 16px !important; letter-spacing: 0.12em !important; }
  .nav .phone { display: none !important; }

  /* Hero */
  .hero .content { padding-top: 120px !important; }
  .offer-hero h1 { font-size: clamp(38px, 10vw, 56px) !important; }
  .offer-hero .hero-eligibility { font-size: 13px !important; }
  .offer-reveal { flex-direction: column !important; max-width: 280px !important; }
  .offer-reveal img { width: 100% !important; height: 130px !important; min-height: 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--accent) !important; }
  .hero .lead-form { max-width: 100% !important; }

  /* KPI: 2 across */
  .kpi { padding: 48px 0 !important; }
  .kpi .inner { grid-template-columns: 1fr 1fr !important; gap: 22px 16px !important; }
  .kpi .tile { border-left: 0 !important; padding: 0 !important; }
  .kpi .num { font-size: 38px !important; }

  /* USPs, units, footer → single column */
  .usps .grid { grid-template-columns: 1fr !important; }
  .usps .head { grid-template-columns: 1fr !important; gap: 20px !important; margin-bottom: 40px !important; }
  .units { grid-template-columns: 1fr !important; }
  .footer .grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Amenities mosaic single column */
  .amenities .mosaic { grid-template-columns: 1fr !important; }
  .amenities .ribbon .inner { flex-direction: column !important; gap: 10px !important; align-items: flex-start !important; }

  /* Section vertical padding tighten */
  .usps, .plans, .location, .gallery, .walk, .schedule, .amenities .head { padding-top: 64px !important; padding-bottom: 64px !important; }

  /* Headings scale down so they never overflow */
  .usps h2, .plans h2, .gallery h2, .schedule .copy h2 { font-size: clamp(34px, 9vw, 48px) !important; }
  .amenities h2, .location .head h2 { font-size: clamp(32px, 8.5vw, 44px) !important; }

  /* Gallery → simple 1-col stack */
  .gallery .grid,
  .gallery-panel--mosaic .grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    grid-auto-rows: auto !important;
  }
  .gallery .grid .big,
  .gallery-panel--mosaic .grid .img-tile.big {
    grid-row: auto !important;
    grid-column: auto !important;
  }
  .gallery .grid > *,
  .gallery-panel--mosaic .grid > * {
    min-height: 220px;
  }
  .gallery .head { flex-direction: column !important; align-items: flex-start !important; gap: 18px !important; }
  .gallery .tabs { flex-wrap: wrap !important; gap: 16px !important; }

  /* Forms: single-column rows */
  .schedule form .row, .schedule form .actions { grid-template-columns: 1fr !important; }

  /* Penthouse stats wrap */
  .penthouse-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 14px 0 !important; }
  .penthouse-stats .ph-stat { border-left: 0 !important; padding-left: 0 !important; }
  .penthouse-body { padding: 32px 24px !important; }

  /* RERA cards: QR stacks above text */
  .rera-card { grid-template-columns: 1fr !important; }
  .rera-card .rera-qr { width: 88px !important; height: 88px !important; }

  /* About trust 3-up stays but smaller */
  .about-card .trust { gap: 6px !important; }

  /* Floating buttons smaller */
  .floater-stack { bottom: 16px !important; right: 16px !important; }
  .float-btn { width: 50px !important; height: 50px !important; }
  .float-btn svg { width: 22px !important; height: 22px !important; }
}

/* ---------- Small handset (<= 420px) ---------- */
@media (max-width: 420px) {
  .kpi .inner { grid-template-columns: 1fr !important; }
  .offer-hero h1 { font-size: 34px !important; }
  .hero .lead-form .ttl { font-size: 20px !important; }
}


/* ============================================================
   LOGO · drop the cream plate, use the mark+wordmark direct on navy
   (matches the corporate site treatment)
   ============================================================ */
.nav .lockup {
  background: transparent !important;
  padding: 0 !important;
}
.nav.scrolled .lockup { background: transparent !important; padding: 0 !important; }

/* Gold-on-transparent lockup reads on the photo with a soft shadow for safety */
.nav .logo-full {
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.5));
  height: 88px !important;
}
.nav.scrolled .logo-full {
  height: 60px !important;
  /* on the cream scrolled nav the gold mark still reads; drop the heavy shadow */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.18));
}
@media (max-width: 720px) {
  .nav .logo-full { height: 60px !important; }
}


/* ============================================================
   HERO without form · centered offer + headline
   ============================================================ */
.offer-hero .content {
  align-items: flex-start;
  max-width: 760px;
}
.hero .lead-form { display: none !important; }

/* Give the hero a touch more bottom room now the form is gone */
.offer-hero .content { padding-bottom: 40px !important; }

/* ============================================================
   STICKY CTA BAR · slides up on scroll past hero
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  background: linear-gradient(180deg, var(--jashn-blue-900), var(--jashn-blue-950));
  border-top: 2px solid var(--accent);
  box-shadow: 0 -10px 40px rgba(0,0,0,.4);
  transform: translateY(110%);
  transition: transform .4s var(--ease-standard);
  padding: 14px clamp(16px, 4vw, 48px);
}
.sticky-cta__close {
  display: none;
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-form {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}
.sticky-offer {
  display: inline-flex; align-items: center; gap: 10px;
  padding-right: 14px;
  border-right: 1px solid var(--line-on-brand);
}
.sticky-offer svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.sticky-offer .so-eb {
  display: block;
  font-family: var(--font-headline);
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.sticky-offer .so-line {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 18px; color: var(--warm-50); line-height: 1.05;
}
.sticky-input {
  min-width: 0;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-on-brand);
  border-radius: 4px;
  color: var(--warm-50);
  outline: none;
}
.sticky-input::placeholder { color: rgba(255,255,255,.55); }
.sticky-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,165,90,.2); }
.sticky-input option { color: #111; }
.sticky-submit {
  white-space: nowrap;
  font-family: var(--font-headline);
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  border: none; border-radius: 4px;
  cursor: pointer;
  transition: background var(--dur-base);
}
.sticky-submit:hover { background: var(--accent-soft); }

/* keep the WhatsApp/call floaters above the bar when it's open */
.sticky-cta.show ~ .floater-stack { bottom: 92px; }

/* Tablet: drop offer label */
@media (max-width: 1024px) {
  .sticky-form { grid-template-columns: 1fr 1fr auto; }
  .sticky-offer { display: none; }
}
/* Mobile sticky layout — see MOBILE FIXES + STICKY CTA MOBILE at end of file */
@media (max-width: 720px) {
  .sticky-cta {
    padding-top: 28px !important;
  }
  .sticky-cta.is-collapsed .sticky-input[name="fname"],
  .sticky-cta.is-collapsed .sticky-input[name="mobile"] {
    display: none !important;
  }
  .sticky-cta.is-collapsed .sticky-submit {
    grid-column: 1 / -1 !important;
  }
  .sticky-cta__close {
    display: inline-flex;
  }
  .sticky-cta.show ~ .floater-stack { bottom: 84px; }
}

/* Tablet sticky grid correction — inputs wrap to 2 rows cleanly */
@media (max-width: 1024px) and (min-width: 721px) {
  .sticky-form {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}


/* ============================================================
   HERO v5 · poster-style (matches reference banner)
   ============================================================ */
.offer-hero .content {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding-top: 150px !important;
  padding-bottom: 0 !important;
  max-width: 820px !important;
}

/* Phase 1 sold-out pill */
.hero-soldout {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  font-family: var(--font-headline);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(10,22,64,.35);
  backdrop-filter: blur(6px);
  margin-bottom: 24px;
}
.hero-soldout svg { width: 16px; height: 16px; }

/* Big poster headline */
.offer-hero h1.hero-bighead {
  font-family: var(--font-display);
  font-style: normal; font-weight: 700;
  font-size: clamp(56px, 8vw, 128px) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.01em;
  color: #fff !important;
  margin: 0 !important;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgba(0,0,0,.6), 0 2px 4px rgba(0,0,0,.45);
}
.offer-hero h1.hero-bighead em {
  display: block;
  font-style: normal;
  color: var(--accent) !important;
}
.hero-config {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 26px);
  color: #fff;
  margin: 26px 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.hero-config::before {
  content: "";
  display: block;
  width: 64px; height: 2px;
  background: var(--accent);
  margin-bottom: 22px;
}
.hero-loc {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,.92);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.hero-loc svg { width: 18px; height: 18px; color: var(--accent); }

/* ============================================================
   NEXON GOLD RIBBON · sweeps across the lower hero (no box)
   ============================================================ */
.nexon-ribbon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  background: linear-gradient(100deg, #E6D2A8 0%, #C9A55A 42%, #B0904A 100%);
  box-shadow: 0 -8px 30px rgba(0,0,0,.28);
  transform: skewY(-1.4deg);
  transform-origin: left bottom;
}
.nexon-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transform: skewY(1.4deg);
  padding-top: 14px; padding-bottom: 14px;
  min-height: 96px;
}
.nexon-offer {
  display: flex; align-items: center; gap: 18px;
}
.nexon-offer svg {
  width: 42px; height: 42px;
  color: var(--jashn-blue-950);
  flex-shrink: 0;
}
.nexon-offer .nx-head {
  display: block;
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  color: var(--jashn-blue-950);
  letter-spacing: -0.01em;
}
.nexon-offer .nx-sub {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(12px, 1.3vw, 16px);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--jashn-blue-900);
  margin-top: 4px;
}
.nexon-car {
  height: 150px; width: auto;
  object-fit: contain;
  margin-bottom: 6px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.3));
  /* the bonanza render has a background — clip to just show the car region via blend isn't reliable, so present as a framed inset */
  border-radius: 6px;
  border: 2px solid rgba(10,22,64,.25);
}

/* push hero min-height so ribbon doesn't cover content */
.offer-hero { min-height: 760px !important; }
.offer-hero .scroll-hint { display: none !important; }

/* Tablet */
@media (max-width: 1024px) {
  .nexon-car { height: 120px; }
  .offer-hero .content { padding-top: 140px !important; }
}
/* Mobile — stack ribbon contents, shrink */
@media (max-width: 720px) {
  .nexon-ribbon { position: static !important; transform: none !important; margin-top: 24px; }
  .nexon-inner { transform: none !important; flex-direction: column; text-align: center; gap: 14px; padding: 18px 0; }
  .nexon-offer { flex-direction: column; gap: 10px; text-align: center; }
  .nexon-car { height: 110px; }
  .offer-hero { min-height: 0 !important; height: auto !important; }
  .offer-hero h1.hero-bighead { font-size: clamp(40px, 12vw, 60px) !important; }
}


/* ============================================================
   HERO v6 · car shown in the render itself, no gold band
   ============================================================ */
.nexon-ribbon { display: none !important; }

/* Position photo so the Nexon (lower-right of the render) stays in frame */
.offer-hero .photo {
  background-position: right 30% bottom !important;
  background-size: cover !important;
}

/* Headline block sits upper-left, away from the car */
.offer-hero .content {
  max-width: 720px !important;
  padding-bottom: 56px !important;
  justify-content: flex-start !important;
}

/* Free Nexon — plain gold text line, no box */
.hero-nexon {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 22px 0 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.7vw, 20px);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.hero-nexon svg { width: 22px; height: 22px; color: var(--accent); }
.hero-nexon span {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  color: var(--accent);
  font-size: 1.25em;
}

/* Stronger left + bottom scrim so text reads over the brighter render */
.offer-hero .scrim {
  background:
    linear-gradient(95deg, rgba(10,22,64,0.88) 0%, rgba(10,22,64,0.55) 38%, rgba(10,22,64,0.08) 70%, transparent 100%),
    linear-gradient(180deg, rgba(10,22,64,0.45) 0%, transparent 30%, transparent 60%, rgba(10,22,64,0.85) 100%) !important;
}

@media (max-width: 720px) {
  .offer-hero .photo { background-position: center bottom !important; }
}


/* ============================================================
   HERO v7 · match reference — elevation + car anchored bottom,
   text stacked in the upper area
   ============================================================ */
.offer-hero { min-height: 820px !important; }
.offer-hero .photo {
  background-position: center bottom !important;
  background-size: cover !important;
}
.offer-hero .content {
  justify-content: flex-start !important;
  padding-top: 150px !important;
  padding-bottom: 0 !important;
  max-width: 780px !important;
}
/* Top-down scrim so the upper text reads while the car/elevation stay clear at the bottom */
.offer-hero .scrim {
  background:
    linear-gradient(180deg, rgba(10,22,64,0.85) 0%, rgba(10,22,64,0.55) 32%, rgba(10,22,64,0.12) 55%, transparent 72%) !important;
}
@media (max-width: 720px) {
  .offer-hero { min-height: 620px !important; }
  .offer-hero .photo { background-position: center bottom !important; }
}


/* ============================================================
   HERO content aligns to the same gutter as the nav logo
   (full-width container, left padding = gutter)
   ============================================================ */
.offer-hero .content {
  max-width: none !important;
  margin: 0 !important;
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
  align-items: flex-start !important;
  text-align: left !important;
}
.offer-hero .content > * { text-align: left; }
@media (max-width: 1024px) {
  .offer-hero .content { padding-left: 32px !important; padding-right: 32px !important; }
}
@media (max-width: 720px) {
  .offer-hero .content { padding-left: 20px !important; padding-right: 20px !important; }
}


/* Phase 2 & 3 headline a touch smaller + units now a 2-card row */
.offer-hero h1.hero-bighead { font-size: clamp(44px, 6vw, 92px) !important; }
.units { grid-template-columns: repeat(2, 1fr) !important; max-width: 860px; }
@media (max-width: 720px){ .units { grid-template-columns: 1fr !important; } }


/* Pull the render back so the car isn't so large/in-your-face */
.offer-hero .photo {
  background-size: 130% auto !important;
  background-position: left 40% bottom !important;
  background-repeat: no-repeat !important;
  background-color: var(--jashn-blue-950) !important;
}
@media (max-width: 720px) {
  .offer-hero .photo { background-size: cover !important; background-position: center bottom !important; }
}


/* Zoom render out further so the Nexon reads smaller / less in-your-face */
.offer-hero .photo {
  background-size: 165% auto !important;
  background-position: left 35% bottom !important;
}
@media (max-width: 720px) {
  .offer-hero .photo { background-size: cover !important; background-position: center bottom !important; }
}


/* Zoom the whole hero render out so more of the elevation + car are visible (less crop) */
.offer-hero .photo {
  background-size: contain !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  background-color: var(--jashn-blue-950) !important;
}
@media (max-width: 720px) {
  .offer-hero .photo { background-size: cover !important; }
}


/* Hero fits within the first screen so the whole car is visible (not cut below the fold) */
.offer-hero {
  min-height: 100vh !important;
  max-height: 100vh !important;
  height: 100vh !important;
}
.offer-hero .photo {
  background-size: contain !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  background-color: var(--jashn-blue-950) !important;
}
@media (max-width: 720px) {
  .offer-hero { height: auto !important; min-height: 78vh !important; max-height: none !important; }
  .offer-hero .photo { background-size: cover !important; }
}


/* Render fills edge-to-edge (no side gaps); pinned bottom so the car stays whole */
.offer-hero {
  height: auto !important;
  min-height: 88vh !important;
  max-height: none !important;
}
.offer-hero .photo {
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}
@media (max-width: 720px) {
  .offer-hero { min-height: 78vh !important; }
}


/* Shift the render down a touch so the tower tops aren't clipped at the top edge */
.offer-hero .photo {
  background-position: center 80% !important;
}
@media (max-width: 720px) {
  .offer-hero .photo { background-position: center bottom !important; }
}


/* Slightly smaller render so the car reads a bit smaller, still edge-to-edge */
.offer-hero .photo {
  background-size: 118% auto !important;
  background-position: center 88% !important;
}
@media (max-width: 720px) {
  .offer-hero .photo { background-size: cover !important; background-position: center bottom !important; }
}


/* Proportionate render — full towers + whole car, edge-to-edge, only upper sky crops */
.offer-hero { min-height: 92vh !important; }
.offer-hero .photo {
  background-size: cover !important;
  background-position: center bottom !important;
}
@media (max-width: 720px) {
  .offer-hero { min-height: 74vh !important; }
  .offer-hero .photo { background-size: cover !important; background-position: center bottom !important; }
}


/* Zoom render out a touch so tower tops aren't clipped — sit on navy, anchored bottom */
.offer-hero .photo {
  background-size: 100% auto !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  background-color: var(--jashn-blue-950) !important;
}
@media (max-width: 720px) {
  .offer-hero .photo { background-size: cover !important; }
}


/* Hero matches the render's aspect ratio so the FULL image shows — no top crop, no side gaps */
.offer-hero {
  aspect-ratio: 1672 / 941 !important;
  min-height: 0 !important;
  max-height: none !important;
  height: auto !important;
}
.offer-hero .photo {
  background-size: 100% 100% !important;
  background-position: center !important;
  background-color: var(--jashn-blue-950) !important;
}
@media (max-width: 720px) {
  .offer-hero { aspect-ratio: auto !important; min-height: 74vh !important; }
  .offer-hero .photo { background-size: cover !important; background-position: center bottom !important; }
}


/* Stronger left scrim for headline readability over the bright render */
.offer-hero .scrim {
  background:
    linear-gradient(95deg, rgba(8,16,46,0.94) 0%, rgba(8,16,46,0.82) 30%, rgba(8,16,46,0.5) 52%, rgba(8,16,46,0.12) 72%, transparent 100%),
    linear-gradient(180deg, rgba(8,16,46,0.55) 0%, transparent 28%, transparent 62%, rgba(8,16,46,0.85) 100%) !important;
}
.offer-hero h1.hero-bighead,
.offer-hero .hero-config,
.offer-hero .hero-loc,
.offer-hero .hero-nexon {
  text-shadow: 0 2px 14px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.7) !important;
}


/* Hero aspect-ratio matched to the new render so nothing crops */
.offer-hero { aspect-ratio: 1568 / 886 !important; }


/* ============================================================
   MOBILE FIXES · sticky form + image heights
   ============================================================ */
@media (max-width: 720px) {
  /* Sticky enquiry bar: name + phone on row 1, full-width button on row 2 */
  .sticky-cta { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) !important; }
  .sticky-form {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .sticky-offer { display: none !important; }
  .sticky-input { font-size: 16px !important; padding: 11px 12px !important; width: 100%; box-sizing: border-box; }
  .sticky-submit {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 13px 16px !important;
    box-sizing: border-box;
  }

  /* Ensure all image blocks have real height on mobile so they don't collapse */
  .am-tile, .am-tile.feature { min-height: 200px !important; }
  .gallery .grid > * { min-height: 200px !important; }
  .master-plot.aerial, .master-plot { min-height: 300px !important; }
  .unit .img { min-height: 200px !important; }
  .penthouse .penthouse-img, .penthouse-img { min-height: 260px !important; }
  .videoblock .player, .player { min-height: 200px !important; }
  .loc .map, .location .map { min-height: 260px !important; }
}
@media (max-width: 420px) {
  /* very narrow: stack fields, full-width button */
  .sticky-form { grid-template-columns: 1fr !important; }
  .sticky-submit { grid-column: 1 !important; }
}


/* Units back to a 3-card row */
.units { grid-template-columns: repeat(3, 1fr) !important; max-width: none !important; }
@media (max-width: 1024px){ .units { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 720px){ .units { grid-template-columns: 1fr !important; } }


/* Hero headline a touch smaller + starting-price line */
.offer-hero h1.hero-bighead { font-size: clamp(40px, 5.2vw, 80px) !important; }
.hero-price {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 18px);
  color: #fff;
  margin: 8px 0 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
  letter-spacing: 0.04em;
}
.hero-price strong {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  color: var(--accent);
  font-size: 1.45em;
  margin-left: 4px;
}

/* HERO — 30:40:30 payment-plan chip (source-matched) */
.hero-payplan-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 2px;
  padding: 9px 18px 9px 10px;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  background: rgba(15, 31, 92, 0.42);
  backdrop-filter: blur(2px);
  width: fit-content;
  cursor: pointer;
}
.hero-payplan-chip .ppc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-payplan-chip .ppc-icon svg {
  width: 18px;
  height: 18px;
  color: var(--jashn-blue-950);
}
.hero-payplan-chip .ppc-figure {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.hero-payplan-chip .ppc-label {
  font-family: var(--font-headline);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-50);
}
@media (max-width: 560px) {
  .hero-payplan-chip { gap: 10px; padding: 8px 14px 8px 8px; }
  .hero-payplan-chip .ppc-figure { font-size: 22px; }
  .hero-payplan-chip .ppc-label { font-size: 11px; letter-spacing: 0.14em; }
}


/* Nav logo: white over the dark hero, gold lockup once nav turns cream on scroll */
.nav .logo-gold { display: none; }
.nav .logo-white { display: block; }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-gold { display: block; }


/* Only the white logo — keep nav dark on scroll so it stays visible */
.nav .logo-gold { display: none !important; }
.nav .logo-white, .nav.scrolled .logo-white { display: block !important; }
.nav.scrolled {
  background: rgba(10,22,64,0.92) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,165,90,.28) !important;
}
/* nav links + CTA readable on the dark scrolled bar */
.nav.scrolled .links a { color: rgba(255,255,255,.86) !important; }
.nav.scrolled .links a:hover { color: var(--accent) !important; }


/* Bigger nav logo (trimmed asset — fills its box) */
.nav .logo-full { height: 132px !important; width: auto !important; max-width: none !important; }
.nav.scrolled .logo-full { height: 84px !important; }
.nav, .nav .inner, .nav .lockup { overflow: visible !important; }
.nav .lockup { display: inline-flex !important; align-items: center !important; }
@media (max-width: 720px) {
  .nav .logo-full { height: 84px !important; }
  .nav.scrolled .logo-full { height: 60px !important; }
}


/* Lighter hero banner — client: background too dark. Brighten the render, keep
   just enough left+bottom scrim that the headline stays readable. */
.offer-hero .scrim {
  background:
    linear-gradient(95deg, rgba(8,16,46,0.72) 0%, rgba(8,16,46,0.45) 30%, rgba(8,16,46,0.18) 55%, transparent 78%),
    linear-gradient(180deg, rgba(8,16,46,0.28) 0%, transparent 30%, transparent 66%, rgba(8,16,46,0.55) 100%) !important;
}
.offer-hero h1.hero-bighead,
.offer-hero .hero-config,
.offer-hero .hero-loc,
.offer-hero .hero-price,
.offer-hero .hero-soldout {
  text-shadow: 0 2px 16px rgba(0,0,0,.9), 0 1px 4px rgba(0,0,0,.8) !important;
}


/* "drive" unit after the minutes figure in the location list */
.location .list .drv {
  font-family: var(--font-headline);
  font-style: normal; font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-tertiary);
  margin-left: 4px;
}

/* ============================================================
   INTRO SPLASH — first-appear preloader
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--jashn-blue-800);
  opacity: 1;
  transition: opacity 600ms ease;
}
.splash-logo {
  width: min(260px, 40vw);
  height: auto;
  animation: splash-fade-in 900ms ease both;
}
@keyframes splash-fade-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.splash.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .splash-logo { animation: none; }
  .splash { transition: none; }
}

/* ============================================================
   ALL-DEVICE RESPONSIVE LAYER
   Appended last so it wins. Covers: 4K/iMac, laptop, tablet
   (portrait + landscape), large/standard/small phones, and
   short landscape viewports. Adds a mobile hamburger drawer.
   ============================================================ */

/* ---- Global overflow & media safety ---- */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, svg, iframe { max-width: 100%; height: auto; }
.hero .photo, .splash-logo { height: auto; } /* keep explicit-height media intact below */

/* ---- Hamburger button (hidden on desktop) ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  margin-left: auto;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px; width: 100%;
  background: var(--warm-50, #fff);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav.scrolled .nav-toggle span { background: var(--warm-50, #fff); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile drawer ---- */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 59;
  flex-direction: column;
  gap: 4px;
  padding: 96px 28px 32px;
  background: rgba(10, 22, 64, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-on-brand, rgba(255,255,255,.12));
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .38s cubic-bezier(.4,0,.2,1), visibility 0s linear .38s;
  max-height: 100dvh;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform .38s cubic-bezier(.4,0,.2,1), visibility 0s;
}
body.menu-open { overflow: hidden; }
.mobile-menu-links { display: flex; flex-direction: column; }
.mobile-menu-links a {
  color: var(--warm-50, #fff);
  font-family: var(--font-display, serif);
  font-size: 22px;
  letter-spacing: .02em;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu-links a:active {
  color: var(--accent, #C9A55A);
}
.mobile-menu-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, #C9A55A);
  color: var(--jashn-blue-900, #0A1640);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 16px 20px;
  border-radius: 10px;
}

/* ---- Switch to hamburger from tablet down (<= 960px) ---- */
@media (max-width: 960px) {
  .nav .links { display: none !important; }
  .nav-toggle { display: inline-flex !important; }
  .nav .inner { justify-content: space-between !important; gap: 12px !important; }
  .nav .cta-wa { margin-left: auto; }
  .nav .lockup-divider,
  .nav .logo-realty-nav { display: none !important; }
}

/* ---- Mid tablet portrait (iPad 768/810/834) polish ---- */
@media (max-width: 900px) and (min-width: 721px) {
  .hero .content { padding-top: 132px !important; }
  .usps .grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ---- iOS zoom guard: form fields must be >= 16px ---- */
@media (max-width: 768px) {
  input, select, textarea,
  .sticky-input, .schedule input, .schedule select, .schedule textarea,
  .lead-form input, .lead-form select {
    font-size: 16px !important;
  }
}

/* ---- Standard phones (<= 600px) ---- */
@media (max-width: 600px) {
  .nav .cta-wa { display: none !important; }   /* CTA lives in the drawer + sticky bar */
  .nav-toggle { margin-left: auto; }
  .floater-stack { bottom: 14px !important; right: 14px !important; }

  /* The hero content box can render wider than the screen on small devices,
     so width:100% won't wrap. Cap the long Nexon line to the real viewport
     width (minus side gutters) so it always wraps on screen. */
  .hero-nexon {
    display: block !important;
    max-width: calc(100vw - 40px) !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    line-height: 1.5;
  }
  .hero-nexon span { white-space: normal !important; }
  .hero-nexon svg { display: inline-block; vertical-align: -5px; margin-right: 6px; }
  .hero-config, .hero-loc, .hero-price, .hero-soldout, .hero-payplan-chip { max-width: calc(100vw - 40px) !important; }
}

/* ---- Small phones (<= 400px) ---- */
@media (max-width: 400px) {
  .container, .nav .inner { padding-left: 16px !important; padding-right: 16px !important; }
  .nav .logo-full { height: 52px !important; }
  .offer-hero h1 { font-size: clamp(30px, 9vw, 38px) !important; }
  .hero .hero-config, .hero .hero-loc { font-size: 14px !important; }
  .hero .hero-price strong { font-size: 1.1em !important; }
  .hero .hero-payplan-chip { max-width: calc(100vw - 40px) !important; }
  .hero .hero-payplan-chip .ppc-figure { font-size: 20px !important; }
  .hero .hero-payplan-chip .ppc-label { font-size: 10.5px !important; letter-spacing: 0.1em !important; }
  .hero .hero-payplan-chip .ppc-icon { width: 30px !important; height: 30px !important; }
  .hero .hero-payplan-chip .ppc-icon svg { width: 16px !important; height: 16px !important; }
  .kpi .num { font-size: 32px !important; }
  .penthouse-stats { grid-template-columns: 1fr !important; }
  .mobile-menu-links a { font-size: 20px; padding: 14px 4px; }
}

/* ---- Very small / older phones (<= 340px) ---- */
@media (max-width: 340px) {
  .nav .logo-full { height: 46px !important; }
  .offer-hero h1 { font-size: 28px !important; }
  .kpi .inner { grid-template-columns: 1fr !important; }
}

/* ---- Phones in landscape (short viewport) ---- */
@media (max-height: 540px) and (orientation: landscape) {
  .hero .content { padding-top: 92px !important; padding-bottom: 24px !important; }
  .splash-logo { width: min(180px, 28vw); }
  .mobile-menu { padding-top: 72px; }
  .scroll-hint { display: none !important; }
}

/* ============================================================
   PHP lead forms (contact / schedule — not in hero)
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.lead-form {
  background: var(--warm-50); color: var(--jashn-blue-900);
  padding: clamp(22px, 3vw, 32px);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(201,165,90,.35);
}
.lead-form__ttl {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px); margin: 0 0 6px; color: var(--jashn-blue-900);
}
.lead-form__sub {
  margin: 0 0 18px; font-size: 13px; color: var(--ink-600);
}
.lead-form__field { margin-bottom: 12px; }
.lead-form__inp {
  width: 100%; font-size: 14px; padding: 12px 14px;
  border: 1px solid var(--line-on-light, #d8dde8); border-radius: 4px;
  background: #fff; color: var(--jashn-blue-900);
}
.lead-form__inp:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,165,90,.25);
}
.lead-form__submit {
  width: 100%; margin-top: 4px;
}
.lead-form__consent {
  margin: 12px 0 0; font-size: 11px; line-height: 1.5; color: var(--ink-500);
}
.lead-form__wa {
  display: block; width: 100%; margin-top: 10px; text-align: center;
  padding: 12px 16px; border: 1px solid var(--jashn-blue-800);
  border-radius: 4px; font-family: var(--font-headline);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--jashn-blue-800); background: transparent;
}
.lead-form__wa:hover { border-color: var(--accent); color: var(--accent); }
.lead-form__err {
  margin: 0 0 8px; font-size: 12px; color: #b42318;
}
.schedule-form-wrap .lead-form { background: #fff; }
.schedule-form .ttl { margin-top: 0; }
.schedule-form .visit-date-picker { margin-top: 8px; }

/* Thank-you page */
body.ty-page {
  background:
    radial-gradient(900px 380px at 8% 0%, rgba(201,165,90,.16), transparent 62%),
    radial-gradient(760px 320px at 96% 100%, rgba(201,165,90,.09), transparent 62%),
    var(--jashn-blue-950);
  color: var(--warm-50);
  min-height: 100vh;
}
.ty-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 96px) 24px 48px;
}
.ty-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, rgba(16,32,86,.96), rgba(8,19,54,.98));
  border: 1px solid rgba(201,165,90,.42);
  border-radius: 14px;
  box-shadow:
    0 28px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  padding: clamp(28px, 5vw, 44px);
}
.ty-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,165,90,.55);
  background: rgba(201,165,90,.1);
  color: var(--accent-soft);
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ty-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57d38b;
  box-shadow: 0 0 0 5px rgba(87,211,139,.18);
}
.ty-logo-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 24px;
  width: 100%;
}
.ty-logo-divider {
  width: 1px;
  height: 34px;
  background: rgba(201,165,90,.45);
}
.ty-logo {
  height: 52px;
  width: auto;
  margin: 0;
}
.ty-logo-realty {
  width: auto;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.ty-wrap h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.08;
  margin: 0 0 16px;
  color: #f6eddc;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.ty-lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,.95);
  margin: 0 0 20px;
}
.ty-sub {
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
  margin: 0 0 16px;
}
.ty-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 20px;
}
.ty-highlight {
  border: 1px solid rgba(201,165,90,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  padding: 12px 10px;
  text-align: left;
}
.ty-highlight__label {
  display: block;
  font-family: var(--font-headline);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.ty-highlight__value {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.96);
}
.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 22px;
}
.ty-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 22px;
  border-radius: 6px;
  border: 1px solid rgba(201,165,90,.55);
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.ty-actions .btn:not(.gold) {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.98);
}
.ty-actions .btn.gold {
  background: var(--accent);
  color: var(--jashn-blue-950);
}
.ty-back {
  display: inline-block;
  font-size: 14px;
  color: #f0d79b;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ty-redirect-note {
  margin: 0 0 12px;
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ty-redirect-note #tyCountdown {
  color: #f0d79b;
}
.ty-redirect-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ty-redirect-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240,215,155,.9);
  opacity: .25;
  animation: tyDotPulse 1.2s infinite ease-in-out;
}
.ty-redirect-dots span:nth-child(2) { animation-delay: .2s; }
.ty-redirect-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes tyDotPulse {
  0%, 80%, 100% { transform: scale(.85); opacity: .25; }
  40% { transform: scale(1.2); opacity: 1; }
}
@media (max-width: 640px) {
  .ty-card { padding: 24px 18px; }
  .ty-logo-row { gap: 10px; margin-bottom: 20px; }
  .ty-logo-divider { height: 28px; }
  .ty-logo { height: 44px; }
  .ty-logo-realty { height: 22px; }
  .ty-highlights { grid-template-columns: 1fr; }
  .ty-actions { flex-direction: column; }
  .ty-actions .btn { width: 100%; }
}


/* ============================================================
   STICKY CTA — mobile layout (wins over all rules above)
   ============================================================ */
@media (max-width: 720px) {
  /* Keep USP icon and heading parallel on mobile */
  .usps .usp-card {
    display: grid !important;
    grid-template-columns: 48px 1fr !important;
    column-gap: 14px !important;
    row-gap: 8px !important;
    align-items: start !important;
  }
  .usps .usp-card .glyph {
    grid-column: 1;
    grid-row: 1;
    margin-top: 2px;
  }
  .usps .usp-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
  }
  .usps .usp-card p,
  .usps .usp-card .credit {
    grid-column: 2;
  }

  .sticky-cta {
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) !important;
    overflow: visible !important;
  }
  .sticky-cta__close {
    display: inline-flex !important;
    top: -12px !important;
    right: 6px !important;
  }
  .sticky-cta.is-collapsed .sticky-cta__close {
    display: none !important;
  }
  .sticky-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .sticky-offer { display: none !important; }
  .sticky-input.col-hide-mobile {
    display: none !important;
  }
  .sticky-input[type="text"],
  .sticky-input[type="tel"],
  .sticky-input[type="email"] {
    width: 100% !important;
    -webkit-appearance: none;
    appearance: none;
  }
  select.sticky-input {
    width: 100% !important;
    color: var(--warm-50) !important;
    background-color: rgba(255,255,255,.06) !important;
  }
  select.sticky-input option {
    color: #111 !important;
    background: #fff !important;
  }
  .sticky-submit {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    text-align: center !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
    padding: 14px 12px !important;
  }
  .floater-stack {
    bottom: 68px !important;
    right: 8px !important;
  }
  .sticky-cta.show ~ .floater-stack {
    bottom: calc(188px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
@media (max-width: 420px) {
  .sticky-form { grid-template-columns: 1fr 1fr !important; }
  .sticky-submit { font-size: 12px !important; }
}

/* Mobile only: align USP icon and heading in one row */
@media (max-width: 720px) {
  .usps .grid .usp-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 12px;
    align-items: center;
  }
  .usps .grid .usp-card .glyph {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }
  .usps .grid .usp-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
  .usps .grid .usp-card p,
  .usps .grid .usp-card .credit {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   LEAD ENQUIRY POPUP (CTA-triggered · matches sticky bar fields)
   ============================================================ */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease-standard), visibility 0.35s;
}
.lead-popup.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 46, 0.72);
  backdrop-filter: blur(6px);
}
.lead-popup__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 640px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 32px);
  background: linear-gradient(180deg, var(--jashn-blue-900), var(--jashn-blue-950));
  border: 2px solid var(--accent);
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  color: var(--warm-50);
  transform: translateY(16px);
  transition: transform 0.35s var(--ease-standard);
}
.lead-popup.is-open .lead-popup__panel {
  transform: translateY(0);
}
.lead-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-on-brand);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--warm-50);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.lead-popup__close:hover {
  border-color: var(--accent);
  background: rgba(201, 165, 90, 0.15);
}
.lead-popup__close svg { width: 20px; height: 20px; }
.lead-popup__offer {
  margin-bottom: 16px;
  padding-right: 48px;
  border-right: 0;
}
.lead-popup__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  margin: 0 0 20px;
  padding-right: 48px; /* clear the absolutely-positioned close (X) button */
  color: var(--warm-50);
  line-height: 1.15;
}

/* FIX #11 — KPI stats: keep 2 columns across all mobile widths. The earlier
   <=420px and <=340px rules dropped this to a single column; this overrides them
   (later source order) so phones show a 2-up grid as requested. */
@media (max-width: 720px) {
  .kpi .inner { grid-template-columns: 1fr 1fr !important; }
}

/* FIX #12 — Penthouse stats: keep 2 columns across all mobile widths. The earlier
   <=400px rule dropped this to a single column; this overrides it so phones show
   a 2-up grid (5 Bedrooms / 2 Levels / 1 Home office+bar / 1 Formal Drawing Room). */
@media (max-width: 720px) {
  .penthouse-stats { grid-template-columns: repeat(2, 1fr) !important; }
}

/* FIX #13 — The lead-popup offer block shares the .sticky-offer class, which the
   sticky CTA bar hides on tablet/mobile (display:none). Keep it visible inside the
   popup on all sizes (so offer popups show "Booking Bonanza / Get a Tata Nexon" on
   mobile too), and hide it only when lead-popup.js adds .lead-hide-offer (the 3 BHK
   1,650 floor-plan and Penthouse enquiry popups). Id-scoped to win the cascade. */
#leadPopupOffer.sticky-offer { display: flex !important; }
#leadPopupOffer.lead-hide-offer { display: none !important; }

/* FIX #14 — The "Pre-sales" unit CTA is now a WhatsApp <a> link; center its label
   like the <button> "View plan" sibling (anchors default to left-aligned text). */
.unit .actions a.btn { text-align: center; }

/* ============================================================
   FIX #15 — Lead forms: searchable country-code combobox before the
   Phone field + required-field asterisks. (built by js/country-code.js)
   ============================================================ */
.req { color: #e0654f; margin-left: 2px; font-weight: 700; }

.phone-row { display: flex; gap: 8px; align-items: stretch; width: 100%; }
.phone-row > input[type="tel"] { flex: 1 1 auto; min-width: 0; }

.cc-combobox { position: relative; flex: 0 0 auto; display: flex; }
.cc-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px; padding: 0 10px;
  border: 1px solid var(--ink-200); border-radius: 4px;
  background: #fff; color: var(--jashn-blue-900);
  font-family: var(--font-body); font-size: 14px;
  cursor: pointer; white-space: nowrap;
}
.cc-toggle .cc-flag { font-size: 16px; line-height: 1; }
.cc-toggle .cc-dial { font-weight: 600; }
.cc-toggle .cc-caret { font-size: 10px; opacity: .65; }

.cc-panel {
  position: absolute; z-index: 230;
  top: calc(100% + 6px); left: 0;
  width: 280px; max-width: 78vw;
  background: #fff; color: var(--jashn-blue-900);
  border: 1px solid var(--ink-200); border-radius: 8px;
  box-shadow: 0 18px 50px rgba(10, 22, 64, .28);
  padding: 8px;
}
.cc-panel[hidden] { display: none; }
.cc-search {
  width: 100%; box-sizing: border-box;
  padding: 9px 11px; margin-bottom: 8px;
  border: 1px solid var(--ink-200); border-radius: 6px;
  font-family: var(--font-body); font-size: 14px; outline: none;
  color: var(--jashn-blue-900); background: #fff;
}
.cc-search:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201, 165, 90, .2); }
.cc-list { list-style: none; margin: 0; padding: 0; max-height: 240px; overflow-y: auto; }
.cc-item {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 8px;
  padding: 9px 8px; border-radius: 6px; cursor: pointer;
  font-family: var(--font-body); font-size: 14px;
}
.cc-item:hover { background: var(--jashn-gold-100); }
.cc-item .cc-name { color: var(--ink-800); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cc-item .cc-code { color: var(--ink-500); font-variant-numeric: tabular-nums; }
.cc-empty { padding: 12px 8px; color: var(--ink-500); font-size: 13px; text-align: center; }

/* Dark-form variants (sticky bar + popup): toggle matches the dark inputs */
.sticky-form .cc-toggle,
.lead-popup__form .cc-toggle {
  background: rgba(255, 255, 255, .06);
  border-color: var(--line-on-brand);
  color: var(--warm-50);
}
/* Sticky bar sits at the screen bottom → open the panel upward, and don't clip it */
.sticky-cta { overflow: visible; }
.sticky-form .cc-panel { top: auto; bottom: calc(100% + 8px); }

/* FIX #19 — Gallery tiles with desktop/mobile image variants (Exterior & Interior).
   Base .img-tile--rwd = JPEG (desktop var(--img-d), mobile var(--img-m)). */
.gallery .grid .img-tile--rwd { background-image: var(--img-d); }
@media (max-width: 720px) {
  .gallery .grid .img-tile--rwd { background-image: var(--img-m); }
}

/* WebP layer — only added (via .img-tile--rwd-webp / .img-tile--webp) once the
   .webp files are uploaded and $elevate_lucknow_gallery_webp is set true.
   image-set() serves WebP to supporting browsers, JPEG otherwise. */
.gallery .grid .img-tile--rwd-webp {
  background-image: image-set(var(--img-d-webp) type("image/webp"), var(--img-d) type("image/jpeg"));
}
/* single-image tile (no mobile variant), e.g. "Lift Lobby" */
.gallery .grid .img-tile--webp {
  background-image: image-set(var(--img-d-webp) type("image/webp"), var(--img-d) type("image/jpeg"));
}

/* FIX #20 — Penthouse image: desktop-version on desktop, mobile-version on
   handsets, with WebP (image-set) when --webp class is present. Size/position
   come from the existing .penthouse-img rules. */
.penthouse-img { background-image: var(--img-d); }
@media (max-width: 720px) {
  .penthouse-img { background-image: var(--img-m); }
}
.penthouse-img--webp {
  background-image: image-set(var(--img-d-webp) type("image/webp"), var(--img-d) type("image/jpeg"));
}

/* FIX #23 — Walk section: desktop is flush (gap 0, per request), but on mobile the
   stacked video + about-card keep a gap like before. */
@media (max-width: 720px) {
  .walk .grid { gap: 28px !important; }
}

/* FIX #24 — Master-plan aerial (1200x600 = 2:1): on mobile the tall fixed-height
   box cropped the sides (building cut on the left). Match the image ratio so the
   whole aerial shows, no crop. */
@media (max-width: 720px) {
  .master-plot.aerial {
    height: auto !important;        /* override the fixed 480px so aspect-ratio sets the height */
    aspect-ratio: 2 / 1 !important;
    min-height: 0 !important;
  }
  .master-plot.aerial img {
    object-fit: cover !important;
    object-position: center !important;
  }
}

/* FIX #22 — Amenities tiles locked to the images' aspect ratios so the FULL image
   shows (no crop). Desktop: feature = wide banner (5:2) full-width on top, the 6
   others = 2:1 in a 3-col grid. Mobile: 3:2 (matches the mobile images). */
.amenities .mosaic {
  grid-template-columns: 1fr 1fr 1fr !important;
  grid-template-rows: auto !important;
}
.amenities .am-tile {
  aspect-ratio: 2 / 1;
  min-height: 0 !important;
  grid-row: auto !important;
  grid-column: auto !important;
}
.amenities .am-tile.feature {
  aspect-ratio: 5 / 2;             /* ~2.5:1 wide hero */
  grid-column: 1 / -1 !important;  /* full width, top row */
  grid-row: auto !important;
}
@media (max-width: 1024px) {
  .amenities .mosaic { grid-template-columns: 1fr 1fr !important; }
  .amenities .am-tile.feature { grid-column: 1 / -1 !important; }
}
@media (max-width: 720px) {
  .amenities .mosaic { grid-template-columns: 1fr !important; }
  .amenities .am-tile,
  .amenities .am-tile.feature {
    aspect-ratio: 3 / 2;           /* matches mobile images (390x260) */
    grid-column: auto !important;
  }
}

/* FIX #21 — Amenities mosaic tiles: desktop-version on desktop, mobile-version on
   handsets, with WebP (image-set) when --webp class present. Size/position from
   the existing .am-tile rules. */
.amenities .am-tile.am-rwd { background-image: var(--img-d); }
.amenities .am-tile.am-rwd-webp {
  background-image: image-set(var(--img-d-webp) type("image/webp"), var(--img-d) type("image/jpeg"));
}

@media (max-width: 720px) {
  .penthouse-img--webp {
    background-image: image-set(var(--img-m-webp) type("image/webp"), var(--img-m) type("image/jpeg"));
  }
  .amenities .am-tile.am-rwd { background-image: var(--img-m); }
  .amenities .am-tile.am-rwd-webp {
    background-image: image-set(var(--img-m-webp) type("image/webp"), var(--img-m) type("image/jpeg"));
  }
  /* Mobile image is purpose-built 3:2 — show it whole (no left-crop), centered.
     (Overrides the global "background-position: right center" + fixed min-heights.) */
  .penthouse .penthouse-img,
  .penthouse-img {
    background-position: center !important;
    background-size: cover !important;
    aspect-ratio: 3 / 2 !important;
    min-height: 0 !important;
  }
}
@media (max-width: 720px) {
  .gallery .grid .img-tile--rwd-webp {
    background-image: image-set(var(--img-m-webp) type("image/webp"), var(--img-m) type("image/jpeg"));
  }
}

/* FIX #16 — Jashn Realty logo at the top of the "About the developer" card
   (matches the reference LP). logo-blue.png inverted to white for the dark card. */
.about-card .about-realty-logo {
  width: auto;
  height: 30px;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ============================================================
   FIX #17 — Mobile header to match the reference LP:
   - Nav: Jashn Realty wordmark (left) + "Book a Site Visit" + hamburger.
     (the Jashn Elevate logo moves into the hero below)
   - Hero: centered Jashn Elevate logo + centered "Phase 1 Sold Out" pill,
     headline and the rest stay left-aligned.
   ============================================================ */
.hero-brand-logo { display: none; }

@media (max-width: 720px) {
  /* --- Nav --- */
  .nav .lockup .logo-white,
  .nav .lockup .logo-full { display: none !important; }          /* Elevate logo → hero */
  .nav .lockup .lockup-divider { display: none !important; }
  .nav .lockup .logo-realty-nav {
    display: inline-block !important;
    height: 28px !important;
    max-width: 150px !important;
  }
  .nav .cta-wa {
    display: inline-flex !important;                              /* show Book a Site Visit */
    margin-left: auto !important;
    padding: 9px 12px !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }
  .nav-toggle { display: inline-flex !important; }               /* keep hamburger */
  .nav .inner { gap: 8px !important; }

  /* --- Hero brand logo (centered) --- */
  .offer-hero .content .hero-brand-logo {
    display: block !important;
    height: 60px;
    width: auto;
    align-self: flex-start;
    margin: 0 0 14px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
  }
  /* --- "Phase 1 Sold Out" pill: show, left-aligned with the headline --- */
  .hero.offer-hero#hero .hero-soldout {
    display: inline-flex !important;
    align-self: flex-start !important;
    height: auto !important;
    overflow: visible !important;
    margin: 0 0 18px !important;
    padding: 9px 18px !important;
  }
  /* keep headline + supporting lines left-aligned */
  .offer-hero .content { align-items: flex-start !important; text-align: left !important; }
}

/* ============================================================
   FIX #18 — DESKTOP header to match the reference LP
   (netbizlabs Cinematic-Design-Lucknow). Desktop only (>=1024px);
   mobile/tablet header is left as-is.
   - Nav shows ONLY the Jashn Realty wordmark (no Elevate logo / divider).
   - The Jashn Elevate logo lives in the hero (92px, left-aligned).
   - "Book a Site Visit" CTA has no trailing arrow.
   ============================================================ */
@media (min-width: 1024px) {
  .nav .lockup .logo-full,
  .nav .lockup .logo-white,
  .nav .lockup .lockup-divider { display: none !important; }
  .nav .lockup .logo-realty-nav {
    display: inline-block !important;
    height: 28px !important;
    max-width: none !important;
    width: auto !important;
  }
  .offer-hero .content .hero-brand-logo {
    display: block !important;
    height: 92px;
    width: auto;
    max-width: 460px;
    margin: 0 0 22px;
    align-self: flex-start;
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.7));
  }
  /* reference CTA = calendar + text, no trailing arrow */
  .nav .cta-wa svg:last-child { display: none !important; }
}
.lead-popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-popup__field { margin: 0; }
.lead-popup__inp {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-on-brand);
  border-radius: 4px;
  color: var(--warm-50);
  outline: none;
}
.lead-popup__inp::placeholder { color: rgba(255, 255, 255, 0.55); }
.lead-popup__inp:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.2);
}
.lead-popup__inp option { color: #111; background: #fff; }
.lead-popup__submit {
  width: 100%;
  margin-top: 4px;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--jashn-blue-950);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--dur-base);
}
.lead-popup__submit:hover { background: var(--accent-soft); }
.lead-popup__err {
  margin: 0;
  font-size: 13px;
  color: #ffb8a8;
}
body.lead-popup-open {
  overflow: hidden;
}
body.lead-popup-open .sticky-cta {
  transform: translateY(110%);
}
@media (max-width: 480px) {
  .lead-popup { padding: 12px; align-items: flex-end; }
  .lead-popup__panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 8px 8px 0 0;
  }
}


/* Hero — mobile: hide sold-out pill; headline aligned ~building roof line */
@media (max-width: 720px) {
  .hero.offer-hero#hero .content {
    padding-top: 120px !important;
    padding-bottom: 28px !important;
    justify-content: flex-start !important;
  }
  .hero.offer-hero#hero .hero-soldout {
    display: inline-flex !important;
    align-self: flex-start !important;
    margin: 0 0 18px !important;
    padding: 9px 18px !important;
    height: auto !important;
    overflow: visible !important;
  }
  .hero.offer-hero#hero h1.hero-bighead {
    margin-top: 0 !important;
  }
}


/* ============================================================
   MOBILE POLISH — professional handset layout (<= 720px)
   ============================================================ */
@media (max-width: 720px) {
  /* Section rhythm */
  .usps,
  .plans,
  .gallery {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  /* Light-section headers — centered on mobile */
  .usps .head,
  .plans .head,
  .gallery .head {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }
  .usps .head > div:first-child,
  .plans .head > div:first-child,
  .gallery .head > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  .usps .eyebrow-block,
  .plans .eyebrow-block,
  .gallery .eyebrow-block {
    align-items: center !important;
    margin-bottom: 12px !important;
  }
  .usps .eyebrow-block .rule,
  .plans .eyebrow-block .rule,
  .gallery .eyebrow-block .rule {
    align-self: center !important;
  }
  .usps h2,
  .plans h2,
  .gallery h2 {
    max-width: none !important;
    line-height: 1.12 !important;
    font-size: clamp(30px, 7.8vw, 40px) !important;
    text-align: center !important;
  }
  .usps .lead,
  .plans .lead {
    max-width: none !important;
    width: 100% !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: var(--ink-600) !important;
    margin: 0 !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(10, 22, 64, 0.1) !important;
    text-align: center !important;
  }
  .gallery .tabs {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px 20px !important;
    width: 100% !important;
  }

  /* USP cards */
  .usps .grid {
    gap: 14px !important;
  }
  .usp-card {
    padding: 22px 20px !important;
    gap: 12px !important;
    border-radius: 10px !important;
    border-color: rgba(10, 22, 64, 0.08) !important;
    box-shadow: 0 6px 28px rgba(10, 22, 64, 0.07) !important;
  }
  .usp-card:hover {
    transform: none !important;
    box-shadow: 0 6px 28px rgba(10, 22, 64, 0.07) !important;
  }
  .usp-card h3 {
    font-size: 19px !important;
    line-height: 1.22 !important;
  }
  .usp-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  .usp-card .glyph {
    width: 42px !important;
    height: 42px !important;
  }
  .usp-card .credit {
    font-size: 9px !important;
    letter-spacing: 0.18em !important;
  }

  /* Amenities intro */
  .amenities .head {
    padding: 56px 20px 28px !important;
    text-align: center !important;
  }
  .amenities h2 {
    max-width: none !important;
    font-size: clamp(30px, 7.8vw, 40px) !important;
    line-height: 1.12 !important;
  }
  .amenities .lead {
    font-size: 15px !important;
    margin-top: 12px !important;
  }

  /* Amenities mosaic + stat ribbon */
  .amenities .mosaic {
    gap: 6px !important;
  }
  .am-tile:hover {
    transform: none !important;
  }
  .am-tile .label {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
  }
  .am-tile .label h4 {
    font-size: 22px !important;
    margin-top: 4px !important;
  }
  .am-tile.feature .label h4 {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.15 !important;
  }
  .am-tile.feature .label p {
    font-size: 13px !important;
    margin-top: 8px !important;
  }
  .amenities .ribbon {
    padding: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
  .amenities .ribbon .inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .amenities .ribbon .ribbon-stat {
    display: grid !important;
    grid-template-columns: 7.5rem 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    white-space: normal !important;
    font-family: var(--font-headline) !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
  }
  .amenities .ribbon .ribbon-stat:first-child {
    padding-top: 20px !important;
  }
  .amenities .ribbon .ribbon-stat:last-child {
    border-bottom: 0 !important;
    padding-bottom: 22px !important;
  }
  .amenities .ribbon .ribbon-stat__val {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    color: var(--accent) !important;
  }
  .amenities .ribbon .ribbon-stat__lab {
    color: rgba(255, 255, 255, 0.78) !important;
  }

  .plans {
    padding-top: 48px !important;
  }

  /* KPI strip */
  .kpi .inner {
    gap: 20px 12px !important;
  }
  .kpi .num {
    font-size: 34px !important;
  }
  .kpi .lab {
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
  }

  /* Unit / plan cards */
  .unit {
    border-radius: 10px !important;
    overflow: hidden !important;
  }
  .unit h3 {
    font-size: 26px !important;
  }
  .master-card {
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  /* Sticky enquiry — compact stacked fields (still 16px type for iOS) */
  .sticky-cta {
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom)) !important;
    border-top-width: 1px !important;
  }
  .sticky-form {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 6px !important;
  }
  .sticky-input {
    min-height: 0 !important;
    height: auto !important;
    padding: 9px 12px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    border-radius: 5px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
  }
  .sticky-submit {
    grid-column: 1 !important;
    min-height: 0 !important;
    padding: 11px 14px !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    line-height: 1.2 !important;
    border-radius: 5px !important;
  }
  .sticky-cta.show ~ .floater-stack {
    bottom: calc(155px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .floater-stack {
    right: 12px !important;
    gap: 10px !important;
  }
  .location-venue {
    text-align: center !important;
    max-width: none !important;
    margin-bottom: 16px !important;
    font-size: 14px !important;
  }

  /* Footer — contact block only */
  .footer .grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .footer .lockup,
  .footer .socials,
  .footer .left-col-disclaimer,
  .footer .rera-banners {
    display: none !important;
  }
  .footer .developed-by {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 0 12px !important;
  }
  .footer .developed-by .db-label {
    text-align: center !important;
  }
  .footer .developed-by .realty-logo-footer {
    align-self: center !important;
    height: 28px !important;
  }
  .footer .addr {
    text-align: center !important;
    max-width: none !important;
    margin-top: 8px !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
  }
  .footer .addr b {
    margin: 14px 0 4px !important;
    font-size: 9px !important;
    letter-spacing: 0.2em !important;
  }
  .footer .addr b:first-of-type {
    margin-top: 0 !important;
  }
  .footer .legal-bar {
    text-align: center !important;
    margin-top: 20px !important;
    padding-top: 16px !important;
    font-size: 10px !important;
  }

  .float-btn {
    width: 52px !important;
    height: 52px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
  }
}

/* Gallery image captions — match cinematic reference (Cinematic-Design-Lucknow.html) */
.gallery .grid .img-tile .cap,
.gallery-panel .grid .img-tile .cap {
  font-family: var(--font-headline) !important;
  font-size: 9.5px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}


/* ============================================================
   RESPONSIVE FIXES · 2026-06
   Appended last so it wins over the layered hero/footer overrides above.
   ============================================================ */

/* FIX #1 — Hero blew out to ~1105px wide on phones: an unconditional
   `aspect-ratio:1568/886` (added for desktop, further up this file) overrode the
   mobile `aspect-ratio:auto`, and body{overflow-x:hidden} masked the spill — so
   the Tata Nexon render was clipped off-screen. Force true viewport width on
   handsets and let the photo cover/anchor-bottom instead of being cropped away. */
@media (max-width: 720px) {
  .hero.offer-hero#hero {
    aspect-ratio: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 74vh !important;
  }
  .hero.offer-hero#hero .photo {
    background-size: cover !important;
    background-position: center bottom !important;
  }
}

/* FIX #2 — Master-plan aerial labels are %-positioned + nowrap, so on small
   screens they overlap each other and clip past the edges. The legend directly
   below already lists Phase 1/2/3 + the Westfield Club, so drop the floating
   labels on mobile and keep the clean aerial image (compass stays). */
@media (max-width: 720px) {
  .master-plot.aerial .atag,
  .master-plot.aerial .club-marker { display: none !important; }
}

/* FIX #3 — RERA registration cards + legal disclaimer were display:none on
   mobile. For a RERA-regulated real-estate page these must stay visible.
   Restore them (cards already stack single-column at <=720px). */
@media (max-width: 720px) {
  .footer .rera-banners { display: flex !important; margin-top: 24px !important; }
  .footer .rera.left-col-disclaimer { display: block !important; text-align: left !important; }
}

/* FIX #4 — Nav logo was 78–132px tall on tablet/hamburger widths, bloating the
   bar. (Full-nav laptop range 1024–1300px sets its own logo height in FIX #8.)
   Uses the .lockup-scoped selector to match the specificity of the 78px rule
   above (with two !important rules, specificity decides, not source order). */
@media (max-width: 1023px) and (min-width: 721px) {
  .nav .lockup .logo-full { height: 64px !important; }
  .nav.scrolled .lockup .logo-full { height: 52px !important; }
}

/* FIX #6 — About-card trust stats: 3-up is cramped below 400px. */
@media (max-width: 400px) {
  .about-card .trust { grid-template-columns: 1fr 1fr !important; }
}

/* FIX #7 — USP cards on mobile: the heading sat in column 2 (beside the icon)
   while the paragraph + credit spanned 1/-1 (flush to the far-left edge), so the
   heading and body text had different left edges — very visible with short
   one-line headings ("Phase 1 Sold Out"). Put heading, body and credit all in
   column 2 so they share one left edge; the icon sits beside the heading. */
@media (max-width: 720px) {
  .usps .grid .usp-card { align-items: center !important; row-gap: 10px !important; }
  .usps .grid .usp-card h3,
  .usps .grid .usp-card p,
  .usps .grid .usp-card .credit { grid-column: 2 !important; }
  .usps .grid .usp-card .glyph { grid-column: 1 !important; grid-row: 1 !important; }
}

/* FIX #8 — "Book a Site Visit" CTA wrapped to two lines on 14–15" laptops, and
   the full horizontal nav didn't fit between the old 960px breakpoint and ~1300px.
   - The CTA text never wraps.
   - Keep the FULL horizontal menu (no hamburger) down to 1024px by tightening the
     spacing and hiding the secondary "Jashn | Realty" wordmark; the wordmark and
     roomy spacing return at >=1301px where they fit.
   - The hamburger drawer is used only below 1024px. */
.nav .cta-wa { white-space: nowrap !important; }

/* Full horizontal nav, compact — 1024px to 1300px */
@media (min-width: 1024px) and (max-width: 1300px) {
  .nav .links { display: flex !important; }
  .nav-toggle { display: none !important; }
  .nav .inner { gap: 18px !important; justify-content: flex-start !important; }
  .nav .links { gap: 18px !important; margin-left: auto !important; }
  .nav .links a { font-size: 11px !important; letter-spacing: 0.12em !important; }
  .nav .cta-wa { margin-left: 18px !important; padding: 10px 16px !important; letter-spacing: 0.10em !important; }
  .nav .lockup-divider,
  .nav .logo-realty-nav { display: none !important; }
  .nav .lockup .logo-full { height: 54px !important; }
  .nav.scrolled .lockup .logo-full { height: 50px !important; }
}

/* Hamburger drawer — below 1024px */
@media (max-width: 1023px) {
  .nav .links { display: none !important; }
  .nav-toggle { display: inline-flex !important; }
  .nav .inner { justify-content: space-between !important; gap: 12px !important; }
  .nav .cta-wa { margin-left: auto; }
  .nav .lockup-divider,
  .nav .logo-realty-nav { display: none !important; }
}

/* FIX #9 — Mobile only: hide the sticky nav on scroll-down, reveal on scroll-up.
   JS (main.js) toggles .nav-hidden based on scroll direction; the transform is
   scoped to handsets so desktop/tablet are unaffected. */
@media (max-width: 720px) {
  #topnav.nav {
    transition: transform 0.35s var(--ease-standard),
                background var(--dur-base) var(--ease-standard),
                backdrop-filter var(--dur-base);
    will-change: transform;
  }
  #topnav.nav.nav-hidden { transform: translateY(-100%); }
}

/* FIX #10 — Mobile sticky action bar: Call Now · WhatsApp · Claim the Offer.
   Handsets only. Replaces the form sticky-bar + floating call/WhatsApp buttons
   there, so there's a single, persistent bottom bar (no stacked/overlapping UI). */
.mobile-action-bar { display: none; }
@media (max-width: 720px) {
  .mobile-action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 56;
    background: linear-gradient(180deg, var(--jashn-blue-900) 0%, var(--jashn-blue-950) 100%);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-action-bar .mab-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 54px;
    padding: 9px 4px;
    color: #fff;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--font-headline);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-action-bar .mab-item:first-child { border-left: 0; }
  .mobile-action-bar .mab-item svg { width: 18px; height: 18px; flex-shrink: 0; }
  .mobile-action-bar .mab-item:active { background: rgba(255, 255, 255, 0.06); }
  /* Last action (Claim the Offer) — gold block with dark label, like the reference */
  .mobile-action-bar .mab-offer {
    background: linear-gradient(180deg, var(--jashn-gold-600) 0%, var(--jashn-gold-700) 100%);
    color: var(--jashn-blue-950);
    border-left: 0;
  }
  .mobile-action-bar .mab-offer:active { background: var(--jashn-gold-700); }

  /* Single bottom bar on mobile — retire the old form sticky-bar + floaters */
  .sticky-cta { display: none !important; }
  .floater-stack { display: none !important; }

  /* Keep the very bottom of the page clear of the fixed bar */
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
}