/* =====================================================================
   REFORMA — Landing (Hero section)
   Plain CSS. Palette: RED / BLACK / WHITE. Red #C50022 is the only accent.
   Structure grouped by component so more sections can be added below.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------- */
:root {
  /* brand colours */
  --red:   #C50022;               /* the single accent */
  --red-2: #E10E2E;               /* brighter — hover / glow */
  --black: #050506;
  --bg:    #0B0A0C;               /* near-black hero base */
  --surface: #141216;
  --white: #FFFFFF;
  --cream: #F4F1EA;
  --muted: rgba(255, 255, 255, .62);
  --line:  rgba(255, 255, 255, .12);

  /* type */
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* layout */
  --container: 1280px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --header-h: 84px;
  --plane-mobile-h: clamp(150px, 20vh, 182px);    /* white bottom band on mobile */

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;                 /* never allow horizontal page scroll */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

h1, p { margin: 0; }

button { font: inherit; color: inherit; cursor: pointer; }

/* Visible focus states on every interactive element */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Custom scroll progress bar — replaces the native scrollbar with a thin
   red strip that fills top-down as the page scrolls (see js/main.js for the
   scrollY -> scaleY math). Decorative/non-interactive: native wheel,
   keyboard and touch scrolling all still work exactly as normal, only the
   visual scrollbar itself is replaced. */
html { scrollbar-width: none; }               /* Firefox */
html::-webkit-scrollbar { display: none; }     /* Chrome / Safari / Edge */

.scroll-progress {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 4px;
  z-index: 110;                     /* above the header (100) and mobile menu (90) */
  background: var(--line);          /* faint track for the full page height */
  pointer-events: none;
}
.scroll-progress__fill {
  position: absolute;
  inset: 0;
  transform: scaleY(var(--scroll-progress, 0));
  transform-origin: top;
  background: linear-gradient(var(--red-2), var(--red));
  transition: transform .12s linear;   /* smooths out per-tick scroll jumps */
}

/* ---------------------------------------------------------------------
   3. UTILITIES
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
  padding: .95em 1.6em;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--btn-bg);
  white-space: nowrap;
  transition: transform .3s var(--ease-out),
              background-color .25s ease,
              border-color .25s ease,
              box-shadow .3s ease;
}

.btn--primary {
  --btn-bg: var(--red);
  color: var(--white);
  box-shadow: 0 6px 18px -10px rgba(197, 0, 34, .8);
}
.btn--primary:hover {
  --btn-bg: var(--red-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(225, 14, 46, .65);
}

.btn--ghost {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, .02);
}
.btn--ghost:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn__arrow { transition: transform .3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   4. HEADER
   --------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
/* solid dark bg once scrolled past 40px (toggled from JS) */
.site-header.scrolled {
  background: rgba(11, 10, 12, .82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
}

.site-header__logo { flex: 0 0 auto; display: inline-flex; }
.site-header__logo img { height: 38px; width: auto; }   /* ~34–40px, keeps aspect */

/* nav sits between logo and actions */
.nav { margin-inline: auto; }
.nav__list { display: flex; gap: clamp(0.9rem, 1.6vw, 1.7rem); }
.nav__link {
  position: relative;
  font-size: .95rem;
  color: var(--muted);
  padding-block: .4rem;
  white-space: nowrap;            /* each item stays on a single line */
  transition: color .2s ease;
}
/* animated red underline on hover */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

.site-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
/* small red diagonal accent tick */
.site-header__tick {
  width: 3px;
  height: 20px;
  background: var(--red);
  transform: skewX(-20deg);
  box-shadow: 0 0 12px -1px rgba(197, 0, 34, .8);
}
.site-header__phone {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .2s ease;
}
.site-header__phone:hover { color: var(--red-2); }

/* Burger (hidden on desktop) ----------------------------------------- */
.burger {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;              /* pin to the right whenever it is shown */
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  margin-block: 4px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s ease;
}
/* burger -> X when menu open */
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay ------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem var(--gutter) 3rem;
  background: rgba(8, 7, 9, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .35s var(--ease-out), visibility .3s;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu__nav { display: flex; flex-direction: column; gap: .35rem; margin-top: 1rem; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-menu__link:hover { color: var(--red-2); padding-left: .4rem; }
.mobile-menu__footer { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu__phone {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}
.mobile-menu .btn { width: 100%; }

/* ---------------------------------------------------------------------
   5. HERO — layout
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(0.5rem, 2vh, 1.4rem));
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
  background: var(--bg);
  overflow: hidden;                    /* clip glows / shards / parallax */
  isolation: isolate;
}

/* Text lives in the normal flow (left column); the car is positioned
   absolutely over the hero so it can be large and low without stretching
   the section. .hero align-items:center keeps this block vertically centred. */
.hero__inner {
  position: relative;
  z-index: 4;                 /* text sits above the white plane (z2) */
  width: 100%;
}

/* ---------------------------------------------------------------------
   6. HERO — background layers (red/black liquid-marble over black)
   --------------------------------------------------------------------- */
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* large soft red glow — kept on the DARK (left) side, behind the heading/CTA */
.hero__glow {
  position: absolute;
  left: 4%;    /* shifted right so it drifts visibly under the text column */
  bottom: -22%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle at center,
              rgba(197, 0, 34, .34) 0%,
              rgba(197, 0, 34, .15) 32%,
              rgba(197, 0, 34, 0) 62%);
  filter: blur(20px);
  /* slow ambient drift: rises up, off the top, reappears from the bottom, loops */
  animation: heroGlowDrift 26s linear infinite;
  will-change: transform;
}

@keyframes heroGlowDrift {
  from { transform: translateY(65vh); }   /* below its resting spot — entering from the bottom */
  to   { transform: translateY(-135vh); } /* drifted up and off the top of the screen */
}

/* angular red "shards" via clip-path, low opacity */
.hero__shard {
  position: absolute;
  background: linear-gradient(135deg, var(--red) 0%, rgba(197, 0, 34, 0) 80%);
  will-change: transform;
}
.hero__shard--1 {
  top: -15%; left: 42%;
  width: 45vw; height: 130%;
  opacity: .10;
  clip-path: polygon(38% 0, 62% 0, 40% 100%, 16% 100%);
  filter: blur(6px);
}
.hero__shard--2 {
  top: -10%; right: -6%;
  width: 40vw; height: 120%;
  opacity: .07;
  clip-path: polygon(60% 0, 100% 0, 78% 100%, 40% 100%);
  filter: blur(8px);
}

/* faint grain / marble — tiled, tileable feTurbulence (desaturated), ~0.06 */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .06;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---------------------------------------------------------------------
   6b. HERO — soft light zone (3rd palette colour = white)
   A crisp diagonal white wedge on the right (clip-path), reaching the very top
   of the screen (top:0). NO grey transition, NO red seam. Near-white fill with
   a subtle #FFF->cream depth. Top vertex at 82% keeps the header phone on the
   dark side (header container is max-width:1280, so phone stays <=~80%); the
   red CTA button may straddle the edge, which is fine (solid button).
   --------------------------------------------------------------------- */
.hero__plane {
  display: none;   /* retired: hero moved to a plain rectangular photo, no diagonal */
  position: absolute;
  top: 0;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: linear-gradient(155deg, #FFFFFF 0%, #F4F1EA 100%);
  clip-path: polygon(100% 0, 100% 100%, 50% 100%);
  pointer-events: none;
}

/* Photo of a real car — plain rectangle, vertically elongated, full section
   height, flush to the right edge (no gutter). Fixed shape (not derived from
   the photo's own aspect), so object-fit:cover crops to fill it — the
   portrait source (hero-photo-v2.jpg, 896:1200) suits this tall/narrow box:
   zero vertical crop (full roofline-to-wheels height always survives), and
   at width:40% the horizontal crop is light enough that BOTH mirrors, BOTH
   headlights, the badge and BOTH wheels all stay in frame — checked against
   8 car-feature points across 375/901/1280/1440/1920/2560. Narrower widths
   would crop progressively more from the sides inward. */
.hero__photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  border-left: 1px solid var(--line);   /* same barely-visible treatment as .scroll-cue__line */
  box-shadow: -30px 0 60px -20px rgba(0, 0, 0, .5);   /* lift off the dark background */
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Retired with .hero__plane — outlined the triangle, no longer shown. */
.hero__lines { display: none; }

/* ---------------------------------------------------------------------
   7. HERO — content (text column)
   --------------------------------------------------------------------- */
.hero__content { position: relative; z-index: 2; max-width: clamp(19rem, 44vw, 38rem); }

/* kicker with short red line */
.kicker {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(0.55rem, 1.4vh, 1.05rem);
}
.kicker__line {
  width: 34px; height: 2px;
  background: var(--red);
  flex: 0 0 auto;
  box-shadow: 0 0 10px rgba(197, 0, 34, .7);
}

/* H1 — three mask-reveal lines */
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  /* cap by BOTH width and height so long RU lines never wrap and the block
     stays short enough to keep the stats above the fold on ~768px viewports */
  font-size: clamp(2.3rem, min(5.5vw, 11.5vh), 5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
/* mask wrapper: clips the inner slide; padding+neg margin keeps glyphs uncut */
.line-mask {
  display: block;
  overflow: hidden;
  padding-block: 0.08em;
  margin-block: -0.08em;
}
.line-inner { display: block; will-change: transform; }
.line-inner--red { color: var(--red); }

/* red accent bar that wipes in under line 3 */
.hero__bar {
  display: block;
  width: clamp(120px, 17vw, 220px);
  height: 5px;
  margin-top: clamp(0.6rem, 1.4vh, 1rem);
  background: var(--red);
  border-radius: 2px;
  transform-origin: left center;
  box-shadow: 0 0 18px -2px rgba(197, 0, 34, .8);
}

.hero__sub {
  max-width: 46ch;
  margin-top: clamp(0.7rem, 1.7vh, 1.2rem);
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(0.9rem, 2vh, 1.5rem);
}

/* trust stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: clamp(1rem, 2.4vh, 1.8rem);
  padding-top: clamp(0.9rem, 1.8vh, 1.4rem);
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--white);
}
.stat__label {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ---------------------------------------------------------------------
   8. HERO — media (car + glow + shadow)
   --------------------------------------------------------------------- */
.hero__media {
  position: absolute;
  z-index: 1;                                 /* behind the text (safety) */
  right: clamp(-4.5rem, -3.2vw, -1rem);       /* slight bleed off the right */
  bottom: clamp(0px, 2.5vh, 1.5rem);          /* sits low in the section */
  width: clamp(360px, 50vw, 720px);           /* large, dominant hero object */
  pointer-events: none;
}

/* JS parallax target (moves car + glow together with the cursor) */
.hero__parallax {
  position: relative;
  width: 100%;
  transform: translate3d(var(--px, 0), var(--py, 0), 0);
  will-change: transform;
}

/* strong red radial glow behind the car */
.hero__car-glow {
  position: absolute;
  left: 50%; top: 46%;
  width: 92%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
              rgba(225, 14, 46, .55) 0%,
              rgba(197, 0, 34, .28) 34%,
              rgba(197, 0, 34, 0) 66%);
  filter: blur(18px);
  z-index: -1;
}

/* idle float loop wrapper */
.hero__car-float { animation: car-float 6s ease-in-out infinite; }

.hero__car {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .55));
}

/* blurred elliptical contact shadow beneath the car */
.hero__car-shadow {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 74%;
  height: 42px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
              rgba(0, 0, 0, .72) 0%,
              rgba(0, 0, 0, 0) 72%);
  filter: blur(14px);
  z-index: 0;
}

@keyframes car-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ---------------------------------------------------------------------
   9. SCROLL CUE
   --------------------------------------------------------------------- */
.scroll-cue {
  position: absolute;
  /* align with the container's content edge (dark side), clear of the plane */
  left: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  bottom: clamp(1.1rem, 3vh, 2rem);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .7rem;
  color: var(--muted);
}
.scroll-cue__line {
  position: relative;
  width: 1px;
  height: 46px;
  background: var(--line);
  overflow: hidden;
}
/* bright red segment travelling down the line */
.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--red-2);
  box-shadow: 0 0 8px var(--red-2);
  animation: cue-travel 1.9s var(--ease-out) infinite;
}
.scroll-cue__label {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
@keyframes cue-travel {
  0%   { transform: translateY(0);    opacity: 0; }
  25%  { opacity: 1; }
  100% { transform: translateY(115px); opacity: 0; }
}

/* ---------------------------------------------------------------------
   10. NEXT-SECTION SCAFFOLD (placeholder for future content)
   --------------------------------------------------------------------- */
.next-placeholder {
  min-height: 60vh;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1rem;
}

/* =====================================================================
   11. ENTRANCE ANIMATION
   Hidden states apply only when JS is present (html.js). Revealed by
   body.is-loaded (added after document.fonts.ready). Staggered via delay.
   ===================================================================== */

/* initial hidden states (JS on) */
.js .kicker,
.js .hero__sub,
.js .hero__cta,
.js .stats {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s var(--ease-out);
}
.js .line-inner {
  transform: translateY(110%);
  transition: transform .9s var(--ease-out);
}
.js .hero__bar {
  transform: scaleX(0);
  transition: transform .7s var(--ease-out);
}
.js .hero__car {
  opacity: 0;
  transform: translateX(60px) scale(.94);
  transition: opacity 1.1s ease, transform 1.1s var(--ease-out);
}
.js .hero__car-glow,
.js .hero__car-shadow,
.js .scroll-cue {
  opacity: 0;
  transition: opacity 1s ease;
}

/* revealed states + stagger sequence:
   kicker -> l1 -> l2 -> l3 -> bar -> sub -> cta -> stats -> car */
.is-loaded .kicker            { opacity: 1; transform: none; transition-delay: .05s; }
.is-loaded .line-inner        { transform: translateY(0); }
.is-loaded .line-mask:nth-child(1) .line-inner { transition-delay: .18s; }
.is-loaded .line-mask:nth-child(2) .line-inner { transition-delay: .30s; }
.is-loaded .line-mask:nth-child(3) .line-inner { transition-delay: .42s; }
.is-loaded .hero__bar         { transform: scaleX(1); transition-delay: .60s; }
.is-loaded .hero__sub         { opacity: 1; transform: none; transition-delay: .72s; }
.is-loaded .hero__cta         { opacity: 1; transform: none; transition-delay: .84s; }
.is-loaded .stats             { opacity: 1; transform: none; transition-delay: .96s; }
.is-loaded .hero__car         { opacity: 1; transform: none; transition-delay: .55s; }
.is-loaded .hero__car-glow    { opacity: 1; transition-delay: .70s; }
.is-loaded .hero__car-shadow  { opacity: 1; transition-delay: .80s; }
.is-loaded .scroll-cue        { opacity: 1; transition-delay: 1.15s; }

/* =====================================================================
   12. RESPONSIVE
   ===================================================================== */

/* Wide desktop only keeps the phone: below this the five long RU nav
   labels need that room to stay on one line each. */
@media (max-width: 1400px) {
  .site-header__phone,
  .site-header__tick { display: none; }
  .site-header__inner { gap: 1.5rem; }
}

/* Below ~1200px the wide RU nav can't share the row with logo + CTA,
   so collapse the whole nav into the burger menu. */
@media (max-width: 1200px) {
  .nav,
  .site-header__cta { display: none; }
  .burger { display: block; }
}

/* Tablet / phone: stack the hero; the vertical photo strip becomes a
   full-width band in normal flow below the text (not a floating card —
   that read as a tiny disconnected thumbnail, see conversation). */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: left;
  }

  .hero__content { max-width: none; }

  /* .hero__photo sits BEFORE .hero__inner in the DOM (harmless on desktop,
     where it's position:absolute) — .hero is a flex column here, so `order`
     puts it visually after the text/stats without touching the markup. */
  .hero__inner { order: 1; }
  .hero__photo {
    order: 2;
    position: relative;
    inset: auto;
    right: auto; top: auto; bottom: auto;
    transform: none;
    width: 100%;
    height: clamp(240px, 48vh, 380px);
    margin-top: clamp(1.6rem, 6vw, 2.4rem);
    border: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: none;
  }

  /* scroll cue would fall right above the photo band -> hide it */
  .scroll-cue { display: none; }

  .stats { justify-content: flex-start; }
}

/* Phones */
@media (max-width: 480px) {
  :root { --header-h: 70px; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .stats {
    gap: 1.25rem 1.5rem;
  }
  .stat { flex: 1 0 40%; }

  .hero__glow { width: 120vw; height: 120vw; right: -30%; }
}

/* =====================================================================
   13. REDUCED MOTION — show everything immediately, no transforms
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  /* force final/visible states */
  .js .kicker,
  .js .hero__sub,
  .js .hero__cta,
  .js .stats,
  .js .hero__car,
  .js .hero__car-glow,
  .js .hero__car-shadow,
  .js .scroll-cue { opacity: 1; transform: none; }
  .js .line-inner { transform: none; }
  .js .hero__bar { transform: scaleX(1); }
  .hero__parallax { transform: none !important; }
}
