/* ============================================================
   WOZIR AUTO & CO. — cinematic, video-first
   Built by Ummah Technologies
   ============================================================ */

/* ---------- TOKENS ---------- */
:root{
  --ink:        #0F1729;   /* their navy — hsl(222 47% 11%) */
  --ink-2:      #16213A;   /* elevated navy surface */
  --ink-3:      #1A2740;   /* cards */
  --ink-4:      #243152;   /* card hover */
  --cream:      #F5F8FC;   /* their cool near-white — hsl(210 40% 98%) */
  --cream-dim:  rgba(245,248,252,0.68);
  --cream-faint:rgba(245,248,252,0.45);
  --gold:       #23ABAB;   /* their teal accent (named "gold" in their code) — hsl(180 70% 35%) */
  --gold-bright:#3BCBCB;   /* teal-light — hsl(180 60% 45%) */
  --line:       rgba(245,248,252,0.14);
  --line-soft:  rgba(245,248,252,0.08);

  --font-display:'Bebas Neue', Impact, sans-serif;
  --font-accent: 'Fraunces', Georgia, serif;
  --font-body:   'Manrope', system-ui, sans-serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart:cubic-bezier(0.25, 1, 0.5, 1);
  --ease-io:   cubic-bezier(0.87, 0, 0.13, 1);

  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1340px;
}

/* ---------- RESET ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:auto; }
body{
  background:var(--ink);
  color:var(--cream);
  font-family:var(--font-body);
  font-size:clamp(1rem,0.95rem + 0.2vw,1.125rem);
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; cursor:pointer; background:none; border:none; }
ul{ list-style:none; }
::selection{ background:var(--gold); color:var(--ink); }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }

/* Lenis */
html.lenis,html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }
.lenis.lenis-stopped{ overflow:hidden; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }

/* ---------- TYPE PRIMITIVES ---------- */
.kicker{
  font-family:var(--font-body);
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:var(--gold);
  display:flex; align-items:center; gap:0.75rem;
}
.kicker::before{
  content:""; width:2.2rem; height:1px; background:var(--gold); opacity:0.7; flex:none;
}
.kicker span{ color:var(--cream-faint); }

.section-title{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(2.6rem, 6.4vw, 6rem);
  line-height:0.92;
  letter-spacing:0.01em;
  text-transform:uppercase;
}
.section-title em,
.story__quote em,
.visit__title em,
.hero__title em{
  font-family:var(--font-accent);
  font-style:italic;
  font-weight:500;
  text-transform:none;
  color:var(--gold);
  letter-spacing:-0.01em;
}

.section-head{ margin-bottom:clamp(2.5rem,5vw,4.5rem); max-width:40ch; }
.section-head--row{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:2rem; max-width:none; flex-wrap:wrap;
}
.section-head .kicker{ margin-bottom:1.4rem; }

/* ---------- BUTTONS ---------- */
.btn{
  --b:var(--cream);
  display:inline-flex; align-items:center; justify-content:center; gap:0.5rem;
  font-weight:700; font-size:0.95rem; letter-spacing:0.02em;
  padding:1.05rem 2rem; border-radius:100px;
  transition:transform .5s var(--ease-expo), background-color .4s var(--ease-quart), color .4s var(--ease-quart), border-color .4s var(--ease-quart);
  will-change:transform;
}
.btn--gold{ background:var(--gold); color:var(--ink); }
.btn--gold:hover{ background:var(--gold-bright); }
.btn--ghost{ border:1px solid var(--line); color:var(--cream); backdrop-filter:blur(4px); }
.btn--ghost:hover{ border-color:var(--cream); background:rgba(245,248,252,0.06); }
.btn--block{ width:100%; }

/* ---------- REVEAL BASE (JS-enhanced; visible without JS) ---------- */
.line{ display:block; overflow:hidden; }
.line__in{ display:block; }
html.js .reveal,
html.js .reveal-stagger{ opacity:0; }

/* ---------- PRELOADER ---------- */
.preloader{
  position:fixed; inset:0; z-index:200; background:var(--ink);
  display:grid; place-items:center;
  transition:opacity .8s var(--ease-quart), visibility .8s;
}
.preloader.is-done{ opacity:0; visibility:hidden; }
.preloader__inner{ display:flex; flex-direction:column; align-items:center; gap:1.6rem; }
.preloader__logo{ width:130px; opacity:0.96; animation:floaty 3s ease-in-out infinite; }
.preloader__bar{ width:160px; height:2px; background:var(--line); overflow:hidden; border-radius:2px; }
.preloader__fill{ display:block; height:100%; width:0%; background:var(--gold); transition:width .3s linear; }
@keyframes floaty{ 0%,100%{ transform:translateY(-3px) } 50%{ transform:translateY(3px) } }

/* ---------- NAV ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:1.4rem 0;
  transition:padding .5s var(--ease-expo), background-color .5s var(--ease-quart), border-color .5s;
  border-bottom:1px solid transparent;
}
.nav--scrolled{
  padding:0.75rem 0;
  background:rgba(15,23,41,0.72);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--line-soft);
}
.nav__inner{
  max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad);
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
}
.nav__logo{ height:42px; width:auto; transition:height .5s var(--ease-expo); }
.nav--scrolled .nav__logo{ height:34px; }
.nav__links{ display:flex; gap:2.2rem; margin-left:auto; margin-right:2rem; }
.nav__links a{
  font-size:0.9rem; font-weight:600; color:var(--cream-dim);
  position:relative; padding:0.3rem 0; transition:color .35s var(--ease-quart);
}
.nav__links a::after{
  content:""; position:absolute; left:0; bottom:0; width:100%; height:1px;
  background:var(--gold); transform:scaleX(0); transform-origin:right;
  transition:transform .45s var(--ease-expo);
}
.nav__links a:hover{ color:var(--cream); }
.nav__links a:hover::after{ transform:scaleX(1); transform-origin:left; }
.nav__cta{
  display:inline-flex; align-items:center; gap:0.6rem;
  font-weight:700; font-size:0.92rem; letter-spacing:0.01em;
  padding:0.6rem 1.2rem; border:1px solid var(--line); border-radius:100px;
  transition:border-color .4s, background-color .4s, color .4s;
}
.nav__cta:hover{ border-color:var(--gold); color:var(--gold); }
.nav__cta-dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 0 rgba(34,171,171,.6); animation:pulse 2.4s infinite; }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(34,171,171,.55) } 70%{ box-shadow:0 0 0 8px rgba(34,171,171,0) } 100%{ box-shadow:0 0 0 0 rgba(34,171,171,0) } }
.nav__burger{ display:none; flex-direction:column; gap:5px; width:30px; height:24px; justify-content:center; }
.nav__burger span{ display:block; height:2px; width:100%; background:var(--cream); transition:transform .4s var(--ease-expo), opacity .3s; }
.nav.is-open .nav__burger span:nth-child(1){ transform:translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2){ transform:translateY(-3.5px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu{
  position:fixed; inset:0; z-index:90; background:var(--ink);
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
  gap:2rem; padding:var(--pad);
  clip-path:inset(0 0 100% 0); transition:clip-path .7s var(--ease-io);
}
.mobile-menu.is-open{ clip-path:inset(0 0 0% 0); }
.mobile-menu__links{ display:flex; flex-direction:column; gap:0.4rem; }
.mobile-menu__links a{ font-family:var(--font-display); font-size:clamp(2.6rem,12vw,4rem); line-height:1; text-transform:uppercase; color:var(--cream); }
.mobile-menu__links a:active{ color:var(--gold); }
.mobile-menu__cta{ font-weight:700; color:var(--gold); font-size:1.2rem; }
.mobile-menu__meta{ color:var(--cream-faint); font-size:0.9rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; min-height:100svh; display:flex; flex-direction:column; justify-content:flex-end; overflow:hidden; }
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__video{ width:100%; height:100%; object-fit:cover; will-change:transform; }
.hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(15,23,41,0.48) 0%, transparent 15%),
    linear-gradient(to top, rgba(15,23,41,0.92) 0%, rgba(15,23,41,0.06) 40%, rgba(15,23,41,0.16) 72%, rgba(15,23,41,0.32) 100%),
    radial-gradient(120% 80% at 50% 34%, transparent 52%, rgba(15,23,41,0.38) 100%);
}
.hero__grain{
  position:absolute; inset:0; opacity:0.05; mix-blend-mode:overlay; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content{ position:relative; z-index:2; width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); padding-bottom:clamp(2rem,5vh,4rem); }
.hero__kicker{ margin-bottom:1.6rem; }
.hero__title{
  font-family:var(--font-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(3.6rem, 13vw, 12.5rem); line-height:0.86; letter-spacing:0.005em;
  margin-bottom:1.8rem; max-width:14ch;
}
.hero__title em{ font-size:0.78em; }
.hero__sub{ max-width:46ch; color:var(--cream-dim); font-size:clamp(1.02rem,1.4vw,1.28rem); margin-bottom:2.2rem; }
.hero__actions{ display:flex; gap:1rem; flex-wrap:wrap; }
.hero__foot{
  position:relative; z-index:2; width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:1.6rem var(--pad) 1.8rem;
  display:flex; justify-content:space-between; align-items:flex-end; gap:1rem;
  border-top:1px solid var(--line-soft); margin-top:clamp(1.6rem,4vh,3rem);
}
.hero__phone{ display:flex; flex-direction:column; }
.hero__phone-num{ font-family:var(--font-display); font-size:1.7rem; line-height:1; letter-spacing:0.03em; }
.hero__phone-meta{ font-size:0.78rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--cream-faint); margin-top:0.35rem; }
.hero__scroll{ display:flex; flex-direction:column; align-items:center; gap:0.7rem; font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--cream-faint); }
.hero__scroll-line{ width:1px; height:46px; background:linear-gradient(var(--gold),transparent); position:relative; overflow:hidden; }
.hero__scroll-line::after{ content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background:var(--gold); animation:scrolldn 2s var(--ease-io) infinite; }
@keyframes scrolldn{ 0%{ transform:translateY(0) } 100%{ transform:translateY(300%) } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee{ overflow:hidden; border-block:1px solid var(--line-soft); padding:1.1rem 0; background:var(--ink-2); }
.marquee__track{ display:flex; align-items:center; gap:2.2rem; width:max-content; animation:marq 32s linear infinite; }
.marquee__track span{ font-family:var(--font-display); font-size:clamp(1.6rem,3vw,2.6rem); letter-spacing:0.04em; text-transform:uppercase; color:var(--cream); white-space:nowrap; }
.marquee__track i{ color:var(--gold); font-style:normal; font-size:1rem; }
@keyframes marq{ to{ transform:translateX(-50%) } }

/* ============================================================
   THE DIFFERENCE
   ============================================================ */
.difference{ position:relative; padding-block:clamp(5rem,11vw,9rem); overflow:hidden; }
.difference__bg{ position:absolute; inset:0; z-index:0; }
.difference__bg .ambient-video{ width:100%; height:100%; object-fit:cover; opacity:0.4; }
.difference__veil{ position:absolute; inset:0; background:linear-gradient(to bottom, rgba(15,23,41,0.42) 0%, rgba(15,23,41,0.52) 42%, rgba(15,23,41,0.88) 74%, rgba(15,23,41,0.96) 100%); }
.difference .container{ position:relative; z-index:2; }
.difference .section-title{ max-width:18ch; }

.pillars{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(1.5rem,3vw,3rem); }
.pillar{ padding-top:1.6rem; border-top:1px solid var(--line); }
.pillar__num{ font-family:var(--font-display); font-size:1.3rem; color:var(--gold); letter-spacing:0.08em; display:block; margin-bottom:1.4rem; }
.pillar__title{ font-family:var(--font-display); font-weight:400; font-size:clamp(1.6rem,2.4vw,2.1rem); text-transform:uppercase; line-height:1; letter-spacing:0.02em; margin-bottom:0.9rem; }
.pillar__copy{ color:var(--cream-dim); font-size:0.98rem; line-height:1.6; }

/* ============================================================
   INVENTORY
   ============================================================ */
.inventory{ padding-block:clamp(5rem,11vw,9rem); background:var(--ink); }
.inventory__note{ max-width:34ch; color:var(--cream-dim); }
.cars{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.2rem,2.2vw,2rem); }
.car{
  background:var(--ink-3); border:1px solid var(--line-soft); border-radius:18px; overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .6s var(--ease-expo), border-color .5s, background-color .5s;
  will-change:transform;
}
.car:hover{ transform:translateY(-8px); border-color:var(--line); background:var(--ink-4); }
.car__media{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--ink-2); }
.car__media img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s var(--ease-expo); }
.car:hover .car__media img{ transform:scale(1.07); }
.car__badge{
  position:absolute; top:1rem; left:1rem; z-index:2;
  font-size:0.66rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--ink); background:var(--gold); padding:0.45rem 0.8rem; border-radius:100px;
}
.car__body{ padding:1.6rem 1.6rem 1.8rem; display:flex; flex-direction:column; flex:1; }
.car__head{ display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; margin-bottom:1.3rem; }
.car__title{ font-family:var(--font-display); font-weight:400; font-size:clamp(1.7rem,2.5vw,2.2rem); text-transform:uppercase; line-height:0.95; letter-spacing:0.01em; }
.car__price{ font-family:var(--font-display); font-size:clamp(1.7rem,2.5vw,2.2rem); color:var(--gold); line-height:0.95; white-space:nowrap; display:flex; flex-direction:column; align-items:flex-end; }
.car__price span{ font-family:var(--font-body); font-size:0.62rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--cream-faint); }
.car__specs{ display:flex; flex-direction:column; gap:0.65rem; margin-bottom:1.7rem; border-top:1px solid var(--line-soft); padding-top:1.2rem; }
.car__specs li{ display:flex; justify-content:space-between; font-size:0.92rem; color:var(--cream); }
.car__specs li span{ color:var(--cream-faint); }
.car__cta{ margin-top:auto; display:inline-flex; align-items:center; gap:0.5rem; font-weight:700; font-size:0.92rem; color:var(--cream); transition:gap .4s var(--ease-expo), color .4s; }
.car__cta i{ color:var(--gold); transition:transform .4s var(--ease-expo); }
.car:hover .car__cta{ color:var(--gold); }
.car:hover .car__cta i{ transform:translateX(5px); }

.car--teaser{ background:transparent; border:1px dashed var(--line); }
.car--teaser:hover{ background:rgba(245,248,252,0.03); transform:translateY(-8px); }
.car__teaser-inner{ padding:2rem 1.8rem; display:flex; flex-direction:column; gap:1rem; height:100%; justify-content:center; }
.car__teaser-title{ font-family:var(--font-display); font-weight:400; font-size:clamp(1.9rem,3vw,2.6rem); text-transform:uppercase; line-height:0.95; }
.car__teaser-copy{ color:var(--cream-dim); font-size:0.96rem; }
.car--teaser .car__cta{ margin-top:0.4rem; }

/* ============================================================
   OUR STORY
   ============================================================ */
.story{ position:relative; padding-block:clamp(6rem,14vw,11rem); overflow:hidden; }
.story__bg{ position:absolute; inset:0; z-index:0; }
.story__bg .ambient-video{ width:100%; height:100%; object-fit:cover; opacity:0.6; }
.story__veil{ position:absolute; inset:0; background:linear-gradient(to right, rgba(15,23,41,0.92) 0%, rgba(15,23,41,0.55) 52%, rgba(15,23,41,0.40) 100%); }
.story__content{ position:relative; z-index:2; max-width:54ch; }
.story__content .kicker{ margin-bottom:1.8rem; }
.story__quote{ font-family:var(--font-display); font-weight:400; text-transform:uppercase; font-size:clamp(3rem,9vw,7.5rem); line-height:0.88; letter-spacing:0.01em; margin-bottom:2rem; }
.story__quote span{ display:block; }
.story__copy{ color:var(--cream-dim); font-size:clamp(1.05rem,1.4vw,1.25rem); max-width:50ch; margin-bottom:3rem; }
.story__stats{ display:grid; grid-template-columns:repeat(4,auto); gap:clamp(1.5rem,4vw,3.5rem); }
.stat{ display:flex; flex-direction:column; gap:0.3rem; }
.stat__num{ font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3.2rem); color:var(--gold); line-height:1; }
.stat__label{ font-size:0.74rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--cream-faint); }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit{ position:relative; padding-block:clamp(5rem,11vw,9rem); overflow:hidden; }
.visit__bg{ position:absolute; inset:0; z-index:0; }
.visit__bg .ambient-video{ width:100%; height:100%; object-fit:cover; opacity:0.5; }
.visit__veil{ position:absolute; inset:0; background:linear-gradient(105deg, rgba(15,23,41,0.90) 0%, rgba(15,23,41,0.58) 58%, rgba(15,23,41,0.46) 100%); }
.visit__grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.1fr 0.9fr; gap:clamp(2.5rem,5vw,5rem); align-items:start; }
.visit__title{ font-family:var(--font-display); font-weight:400; text-transform:uppercase; font-size:clamp(2.8rem,6vw,5.5rem); line-height:0.9; margin:1.4rem 0 1.4rem; }
.visit__copy{ color:var(--cream-dim); max-width:42ch; margin-bottom:2.6rem; }
.visit__details{ display:flex; flex-direction:column; }
.visit__details li{ display:flex; flex-direction:column; gap:0.25rem; padding:1.1rem 0; border-top:1px solid var(--line-soft); }
.visit__details li:last-child{ border-bottom:1px solid var(--line-soft); }
.visit__label{ font-size:0.72rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); }
.visit__details a,.visit__details span:not(.visit__label){ font-size:1.08rem; color:var(--cream); transition:color .35s; }
.visit__details a:hover{ color:var(--gold); }

.visit__form{ background:var(--ink-3); border:1px solid var(--line-soft); border-radius:20px; padding:clamp(1.6rem,3vw,2.4rem); display:flex; flex-direction:column; gap:1.1rem; }
.field{ display:flex; flex-direction:column; gap:0.5rem; }
.field label{ font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--cream-dim); font-weight:600; }
.field label span{ color:var(--cream-faint); text-transform:none; letter-spacing:0; }
.field input,.field select,.field textarea{
  font:inherit; font-size:1rem; color:var(--cream);
  background:var(--ink); border:1px solid var(--line); border-radius:10px;
  padding:0.85rem 1rem; width:100%; transition:border-color .35s, background-color .35s;
}
.field textarea{ resize:vertical; min-height:84px; }
.field input::placeholder,.field textarea::placeholder{ color:var(--cream-faint); }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--gold); background:var(--ink-2); }
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' stroke='%2323ABAB' stroke-width='1.6'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.5rem; }
.visit__formnote{ font-size:0.92rem; min-height:1.2em; color:var(--gold); font-weight:600; }
.visit__formnote.is-error{ color:#E08A5B; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--ink-2); border-top:1px solid var(--line-soft); padding-top:clamp(3.5rem,7vw,6rem); }
.footer__inner{ display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:2.5rem; padding-bottom:3.5rem; }
.footer__brand p{ color:var(--cream-dim); max-width:34ch; margin-top:1.3rem; font-size:0.96rem; }
.footer__logo{ height:46px; width:auto; }
.footer__col{ display:flex; flex-direction:column; gap:0.85rem; }
.footer__h{ font-size:0.72rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.5rem; }
.footer__col a{ color:var(--cream-dim); font-size:0.98rem; transition:color .35s; }
.footer__col a:hover{ color:var(--cream); }
.footer__bar{
  max-width:var(--maxw); margin-inline:auto; padding:1.6rem var(--pad);
  border-top:1px solid var(--line-soft);
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  font-size:0.84rem; color:var(--cream-faint);
}
.footer__credit a{ color:var(--gold); font-weight:600; }

/* ---------- TEXT LEGIBILITY OVER BRIGHTER VIDEO ---------- */
.hero__title,.story__quote{ text-shadow:0 2px 44px rgba(15,23,41,0.55); }
.difference .section-title,.visit__title{ text-shadow:0 2px 30px rgba(15,23,41,0.5); }
.difference .kicker,.story__content .kicker,.visit .kicker,.inventory .kicker{ text-shadow:0 1px 16px rgba(15,23,41,0.6); }
.story__copy,.difference .pillar__copy,.story__stats .stat{ text-shadow:0 1px 18px rgba(15,23,41,0.5); }

/* ---------- INVENTORY video backdrop ---------- */
.inventory{ position:relative; overflow:hidden; }
.inventory__bg{ position:absolute; inset:0; z-index:0; }
.inventory__bg .ambient-video{ width:100%; height:100%; object-fit:cover; opacity:0.3; }
.inventory__veil{ position:absolute; inset:0; background:linear-gradient(to bottom, var(--ink) 0%, rgba(15,23,41,0.72) 38%, rgba(15,23,41,0.80) 100%); }
.inventory .container{ position:relative; z-index:2; }

/* ---------- INVENTORY carousel (dream cards) ---------- */
.invcarousel{ position:relative; }
.invtrack{ display:flex; gap:1.2rem; overflow-x:auto; overflow-y:hidden; scroll-snap-type:x proximity; padding:0.4rem 0.2rem 1.4rem; scrollbar-width:none; -ms-overflow-style:none; }
.invtrack::-webkit-scrollbar{ display:none; }
.invtrack.is-grab{ cursor:grab; }
.invtrack.is-grabbing{ cursor:grabbing; }
.invcard{ position:relative; flex:0 0 auto; width:clamp(248px,24vw,300px); aspect-ratio:3/4; border-radius:16px; overflow:hidden; scroll-snap-align:start; border:1px solid var(--line-soft); background:var(--ink-2); transition:transform .6s var(--ease-expo), border-color .5s; }
.invcard:hover{ transform:translateY(-8px); border-color:var(--line); }
.invcard img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s var(--ease-expo); pointer-events:none; }
.invcard:hover img{ transform:scale(1.08); }
.invcard__scrim{ position:absolute; inset:0; pointer-events:none; background:linear-gradient(to top, rgba(15,23,41,0.95) 8%, rgba(15,23,41,0.25) 48%, transparent 72%); }
.invcard__badge{ position:absolute; top:0.85rem; left:0.85rem; font-size:0.58rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--ink); background:var(--gold); padding:0.35rem 0.7rem; border-radius:100px; }
.invcard__info{ position:absolute; left:0; right:0; bottom:0; padding:1.3rem; }
.invcard__price{ font-family:var(--font-display); font-size:2rem; line-height:1; color:var(--gold); display:flex; align-items:baseline; gap:0.45rem; }
.invcard__price span{ font-family:var(--font-body); font-size:0.58rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--cream-faint); }
.invcard__title{ font-family:var(--font-display); font-weight:400; font-size:1.55rem; text-transform:uppercase; line-height:1; letter-spacing:0.02em; margin:0.35rem 0 0.55rem; }
.invcard__specs{ font-size:0.84rem; color:var(--cream-dim); margin-bottom:0.85rem; }
.invcard__cta{ display:inline-flex; align-items:center; gap:0.45rem; font-weight:700; font-size:0.85rem; color:var(--gold); opacity:0; transform:translateY(8px); transition:opacity .45s, transform .45s var(--ease-expo); }
.invcard__cta i{ transition:transform .4s var(--ease-expo); }
.invcard:hover .invcard__cta{ opacity:1; transform:translateY(0); }
.invcard:hover .invcard__cta i{ transform:translateX(4px); }
.invcarousel__foot{ display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.invcarousel__hint{ font-size:0.72rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--cream-faint); }
.invcarousel__arrows{ display:flex; gap:0.6rem; }
.invarrow{ width:46px; height:46px; border-radius:50%; border:1px solid var(--line); color:var(--cream); font-size:1.4rem; line-height:1; display:grid; place-items:center; transition:border-color .3s, color .3s, background-color .3s; }
.invarrow:hover{ border-color:var(--gold); color:var(--gold); background:rgba(35,171,171,0.08); }
@media (max-width:899px){
  .invcard{ width:clamp(220px,72vw,280px); }
  .invcard__cta{ opacity:1; transform:none; }
  .invcarousel__arrows{ display:none; }
}

/* ---------- SHOWCASE full-bleed video band ---------- */
.showcase{ position:relative; min-height:80vh; display:flex; align-items:center; overflow:hidden; }
.showcase__bg{ position:absolute; inset:0; z-index:0; }
.showcase__bg .ambient-video{ width:100%; height:100%; object-fit:cover; opacity:0.92; will-change:transform; }
.showcase__veil{ position:absolute; inset:0; background:
  linear-gradient(100deg, rgba(15,23,41,0.84) 0%, rgba(15,23,41,0.40) 48%, rgba(15,23,41,0.18) 100%),
  linear-gradient(to top, rgba(15,23,41,0.55), transparent 32%); }
.showcase .container{ position:relative; z-index:2; }
.showcase__kicker{ margin-bottom:1.5rem; }
.showcase__title{ font-family:var(--font-display); font-weight:400; text-transform:uppercase; font-size:clamp(2.8rem,7.5vw,7rem); line-height:0.88; letter-spacing:0.01em; max-width:15ch; text-shadow:0 2px 44px rgba(15,23,41,0.6); }
.showcase__title em{ font-family:var(--font-accent); font-style:italic; font-weight:500; text-transform:none; color:var(--gold); letter-spacing:-0.01em; }
.showcase__sub{ margin-top:1.5rem; max-width:46ch; color:var(--cream); font-size:clamp(1.05rem,1.4vw,1.3rem); text-shadow:0 2px 22px rgba(15,23,41,0.6); }
.showcase__actions{ margin-top:2rem; display:flex; gap:1rem; flex-wrap:wrap; }

/* ============================================================
   FULL-PAGE SNAP — each section comes up and locks (desktop)
   ============================================================ */
.panel{ position:relative; }
@media (min-width:900px) and (min-height:680px){
  html{ scroll-snap-type:y mandatory; }
  .panel{ min-height:100svh; scroll-snap-align:start; scroll-snap-stop:always; display:flex; flex-direction:column; justify-content:center; }
  .panel > .container{ width:100%; }
  .hero{ justify-content:flex-end; }
  .inventory, .difference, .showcase, .story, .visit{ padding-block:clamp(5rem,8vh,7rem); }
  .inventory .section-head{ margin-bottom:2rem; }
  .car__media{ aspect-ratio:16/10; }
}

/* ============================================================
   DIFFERENCE — relationship statement + spinning 3D car
   ============================================================ */
.difference__grid{ display:grid; grid-template-columns:1.02fr 0.98fr; gap:clamp(2rem,4vw,4.5rem); align-items:center; width:100%; }
.difference__text .kicker{ margin-bottom:1.4rem; }
.difference .section-title{ font-size:clamp(2.1rem,3.6vw,3.6rem); line-height:0.98; max-width:18ch; }
.difference .pillars{ grid-template-columns:repeat(2,1fr); gap:1.4rem 2rem; margin-top:2.2rem; }
.difference .pillar{ padding-top:1rem; border-top:1px solid var(--line); }
.difference .pillar__num{ margin-bottom:0.8rem; }
.difference .pillar__title{ font-size:clamp(1.3rem,1.9vw,1.7rem); margin-bottom:0.5rem; }
.difference .pillar__copy{ font-size:0.9rem; line-height:1.5; }

.difference__window{ position:relative; width:100%; align-self:stretch; min-height:min(62vh,540px); border-radius:18px; overflow:hidden; border:1px solid var(--line); box-shadow:0 40px 90px -42px rgba(0,0,0,0.78); }
.difference__window video{ width:100%; height:100%; object-fit:cover; }
.difference__windowscrim{ position:absolute; inset:0; pointer-events:none; background:linear-gradient(to top, rgba(15,23,41,0.72), transparent 48%), linear-gradient(110deg, rgba(15,23,41,0.28), transparent 42%); }
.difference__windowlabel{ position:absolute; left:1.1rem; bottom:1rem; display:flex; align-items:center; gap:0.6rem; font-size:0.72rem; letter-spacing:0.2em; text-transform:uppercase; font-weight:700; color:var(--cream); }
.difference__windowlabel i{ width:7px; height:7px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 0 rgba(34,171,171,.6); animation:pulse 2.4s infinite; }

@media (max-width:899px){
  .difference__grid{ grid-template-columns:1fr; gap:1.5rem; }
  .difference__window{ min-height:300px; }
}

/* ---------- STATIC CAPTURE MODE (?static=1) ---------- */
html.is-static{ scroll-snap-type:none !important; }
html.is-static #preloader{ display:none !important; }
html.is-static .panel{ min-height:auto !important; scroll-snap-align:none !important; display:block !important; }
html.is-static .hero{ min-height:760px !important; display:flex !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .pillars{ grid-template-columns:repeat(2,1fr); row-gap:2.5rem; }
  .cars{ grid-template-columns:repeat(2,1fr); }
  .car--teaser{ grid-column:1 / -1; }
  .visit__grid{ grid-template-columns:1fr; }
  .story__stats{ grid-template-columns:repeat(2,auto); justify-content:start; gap:2rem 3rem; }
}
@media (max-width:768px){
  .nav__links{ display:none; }
  .nav__cta{ display:none; }
  .nav__burger{ display:flex; }
  .nav.is-open .nav__cta{ display:none; }
  .footer__inner{ grid-template-columns:1fr; gap:2.2rem; }
  .hero__foot{ flex-direction:column; align-items:flex-start; gap:1.4rem; }
  .hero__scroll{ display:none; }
  .section-head--row{ align-items:flex-start; }
}
@media (max-width:560px){
  .cars{ grid-template-columns:1fr; }
  .car--teaser{ grid-column:auto; }
  .story__stats{ grid-template-columns:repeat(2,1fr); }
  .footer__bar{ flex-direction:column; }
  .btn{ width:100%; }
  .hero__actions{ width:100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  html.js .reveal, html.js .reveal-stagger{ opacity:1 !important; transform:none !important; }
  .line__in{ transform:none !important; }
  .marquee__track{ animation:none; }
  .hero__video, .ambient-video{ /* keep poster; videos still allowed but no parallax */ }
}
