/* =============================================================
   FR8BOX — Cargo Container Club
   LAYOUT SCHEME: F — alternating-bleed
     odd sections  -> boxed 1140px (the "boxes")
     even sections -> full-bleed with 5vw inner padding (the "yard")
   SPACING SCALE: compact -> section 64px / block 40px (24px mobile)
   8px inner step -> --s-1 .. --s-6
   Do not mix schemes. All tokens live in :root as CSS variables.
   BEM-lite naming: .block__elem--mod ; .s- sections ; .u- utilities.
   ============================================================= */

:root {
  /* palette */
  --c-bg: #eceff1;        /* light galvanized */
  --c-bg-dark: #171a1d;   /* hold dark */
  --c-ink: #171a1d;       /* ink on light */
  --c-ink-inv: #eceff1;   /* ink on dark */
  --c-a1: #f2a007;        /* crane yellow */
  --c-a2: #2e73b8;        /* container blue */
  --c-ink-mute: #5b6166;
  --c-ink-inv-mute: #a7afb5;

  /* fonts */
  --f-display: "Saira Stencil One", "Saira", system-ui, sans-serif;
  --f-heavy: "Saira", system-ui, sans-serif;
  --f-body: "Hanken Grotesk", system-ui, sans-serif;

  /* radius (industrial = square) */
  --r-card: 0px;

  /* borders */
  --bd: 3px solid currentColor;

  /* spacing — compact scale */
  --sec-y: 64px;      /* section vertical */
  --sec-y-m: 24px;    /* mobile section vertical */
  --blk-y: 40px;      /* inner block */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;

  /* container */
  --w-container: 1140px;

  /* motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 var(--s-2); line-height: 1.05; }
p { margin: 0 0 var(--s-2); }

/* ---------- utilities ---------- */
.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.u-container { max-width: var(--w-container); margin-inline: auto; padding-inline: var(--s-4); }
.u-bleed { width: 100%; padding-inline: 5vw; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- typography ---------- */
.u-h1 { font-family: var(--f-display); font-weight: 400; font-size: clamp(40px, 7vw, 90px); text-transform: uppercase; letter-spacing: .01em; }
.u-h1--long { font-family: var(--f-heavy); font-weight: 800; }
.u-h2 { font-family: var(--f-heavy); font-weight: 700; font-size: clamp(30px, 4.5vw, 54px); text-transform: uppercase; letter-spacing: .01em; }
.u-h3 { font-family: var(--f-heavy); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: .02em; }
.u-kicker { font-family: var(--f-heavy); font-weight: 600; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--c-a2); }
.u-intro { font-size: 18px; max-width: 64ch; color: var(--c-ink-mute); }

/* container code — stencil marking with check-digit box */
.u-code {
  font-family: var(--f-heavy); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; font-size: 13px; display: inline-flex; align-items: center; gap: 6px;
}
.u-code__check { border: 2px solid currentColor; padding: 0 5px; line-height: 1.4; }

/* stencil side labels */
.u-stencil { font-family: var(--f-heavy); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--c-ink-mute); }

/* hazard chevron strip (motif) */
.u-hazard {
  height: 8px;
  background-image: repeating-linear-gradient(-45deg, var(--c-a1) 0 14px, #1b1b1b 14px 28px);
  background-size: 40px 100%;
}

/* corrugated relief (motif) */
.u-corrugated {
  background-image: repeating-linear-gradient(90deg,
    rgba(0,0,0,.05) 0 6px, rgba(255,255,255,.04) 6px 14px);
}

/* rivet corners (motif) — added to .has-rivets */
.has-rivets { position: relative; }
.has-rivets .rivet {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: currentColor; opacity: .55; transform: scale(0);
}
.has-rivets .rivet--tl { top: 8px; left: 8px; }
.has-rivets .rivet--tr { top: 8px; right: 8px; }
.has-rivets .rivet--bl { bottom: 8px; left: 8px; }
.has-rivets .rivet--br { bottom: 8px; right: 8px; }
.is-in .rivet { animation: rivet-drive .3s var(--ease) forwards; }
.is-in .rivet--tr { animation-delay: .06s; }
.is-in .rivet--br { animation-delay: .12s; }
.is-in .rivet--bl { animation-delay: .18s; }
@keyframes rivet-drive { to { transform: scale(1); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--f-heavy); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; font-size: 15px;
  padding: 14px 26px; border: var(--bd); border-radius: var(--r-card);
  background: transparent; color: inherit; position: relative;
  transition: transform .18s var(--ease), background-color .18s var(--ease);
}
.btn--primary { background: var(--c-a1); color: #171a1d; border-color: #171a1d; }
.btn--ghost { color: inherit; }
.btn:hover { animation: crane-nudge .28s var(--ease); }
.btn--primary:hover { background: #ffb01f; }
@keyframes crane-nudge { 0% { transform: translateX(0);} 40% { transform: translateX(2px);} 100% { transform: translateX(0);} }
/* rivets on primary buttons */
.btn--primary::before, .btn--primary::after {
  content: ""; position: absolute; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: #171a1d; opacity: .5;
}
.btn--primary::before { left: 7px; }
.btn--primary::after { right: 7px; }

/* ---------- scroll reveal base ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); will-change: transform, opacity; }
.reveal.is-in { opacity: 1; transform: none; }

/* =============================================================
   NAV — nav-hamburger-first
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  background: transparent;
  transition: padding .25s var(--ease), background-color .25s var(--ease);
}
.nav.is-scrolled { background: var(--c-bg-dark); padding: 10px 5vw; border-bottom: 3px solid var(--c-a1); }
.nav__logo { display: inline-flex; align-items: baseline; gap: 8px; color: var(--c-ink-inv); }
.nav__logo b { font-family: var(--f-display); font-weight: 400; font-size: 22px; letter-spacing: .04em; }
.nav__logo span { font-family: var(--f-heavy); font-weight: 600; font-size: 11px; letter-spacing: .14em; color: var(--c-a1); }
.nav__toggle {
  color: var(--c-ink-inv); background: transparent; border: 3px solid var(--c-a1);
  padding: 9px 16px; font-family: var(--f-heavy); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: 13px; display: inline-flex; align-items: center; gap: 10px;
}
.nav__toggle::before { content: ""; width: 18px; height: 12px; background:
  linear-gradient(var(--c-a1) 0 2px, transparent 2px),
  linear-gradient(transparent 5px, var(--c-a1) 5px 7px, transparent 7px),
  linear-gradient(transparent 10px, var(--c-a1) 10px 12px); }

.nav__overlay {
  position: fixed; inset: 0; z-index: 45; background: var(--c-bg-dark); color: var(--c-ink-inv);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: var(--s-3);
  opacity: 0; transform: scale(1.03); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav__overlay[hidden] { display: none; }
.nav__overlay.is-open { opacity: 1; transform: none; }
.nav__overlay a { font-family: var(--f-display); font-weight: 400; font-size: clamp(28px, 6vw, 52px); text-transform: uppercase; letter-spacing: .03em; }
.nav__overlay a:hover { color: var(--c-a1); }
.nav__close {
  position: absolute; top: 20px; right: 5vw; color: var(--c-ink-inv); background: transparent;
  border: 3px solid var(--c-a1); padding: 8px 16px; font-family: var(--f-heavy); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; font-size: 13px;
}
.nav__overlay-code { position: absolute; bottom: 24px; color: var(--c-ink-inv-mute); }

/* =============================================================
   HERO — hero-countdown  (dark, full-bleed)
   ============================================================= */
.s-hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  background: var(--c-bg-dark); color: var(--c-ink-inv); overflow: hidden;
  padding: 120px 5vw 96px;
}
.s-hero__bg { position: absolute; inset: 0; z-index: 0; }
.s-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.1) brightness(.62);
}
/* crane floodlight vignette + beam layer */
.s-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 40%, transparent 0%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(23,26,29,.35) 0%, rgba(23,26,29,.85) 100%);
}
.s-hero__beam {
  position: absolute; inset: -40% -20%; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(242,160,7,.16) 50%, transparent 58%);
  transform: translateX(-60%); will-change: transform;
}
.s-hero__chevrons {
  position: absolute; left: -10%; right: -10%; bottom: 0; height: 26px; z-index: 2;
  background-image: repeating-linear-gradient(-45deg, var(--c-a1) 0 22px, #101010 22px 44px);
  background-size: 62px 100%; opacity: .92; will-change: background-position;
}
.s-hero__inner { position: relative; z-index: 3; max-width: var(--w-container); width: 100%; margin-inline: auto; }
.s-hero__code { color: var(--c-a1); margin-bottom: var(--s-3); }
.s-hero h1 { color: var(--c-ink-inv); }
.s-hero__slogan { font-family: var(--f-heavy); font-weight: 600; font-size: clamp(16px,2.4vw,22px); color: var(--c-a1); text-transform: uppercase; letter-spacing: .06em; margin-top: var(--s-2); }
.s-hero__lead { max-width: 56ch; color: var(--c-ink-inv-mute); font-size: 18px; margin-top: var(--s-2); }

.hero__countdown { display: flex; align-items: flex-end; gap: 10px; margin: var(--s-4) 0 var(--s-3); flex-wrap: wrap; }
.hero__cd-unit { display: flex; flex-direction: column; align-items: center; }
.hero__cd-plate {
  font-family: var(--f-heavy); font-weight: 800; font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 5vw, 52px); background: #0e1114; color: var(--c-a1);
  border: 3px solid var(--c-a1); padding: 6px 14px; min-width: 74px; text-align: center;
  overflow: hidden; position: relative;
}
.hero__cd-plate span { display: inline-block; will-change: transform; }
.hero__cd-plate span.is-flip { animation: plate-flip .32s var(--ease); }
@keyframes plate-flip { 0% { transform: translateY(0); } 49% { transform: translateY(-100%); opacity:0; } 50% { transform: translateY(100%); } 100% { transform: translateY(0); opacity:1; } }
.hero__cd-label { font-family: var(--f-heavy); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-ink-inv-mute); margin-top: 6px; }
.hero__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-top: var(--s-3); }

/* =============================================================
   Section shell + dividers
   ============================================================= */
.s-block { padding-block: var(--sec-y); }
.s-block--dark { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.s-block--dark .u-intro { color: var(--c-ink-inv-mute); }
.s-block--dark .u-kicker { color: var(--c-a1); }
.section-head { margin-bottom: var(--blk-y); }
.rivet-line { height: 3px; background:
  radial-gradient(circle, var(--c-a1) 0 3px, transparent 3px) 0 50% / 26px 8px repeat-x, #23282c; }

/* =============================================================
   THE BOXES — container cards
   ============================================================= */
.boxes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.box-card {
  border: var(--bd); border-color: var(--c-ink); position: relative; background: var(--c-bg);
  padding: 0; display: flex; flex-direction: column;
}
.box-card__media { position: relative; overflow: hidden; }
.box-card__media img { aspect-ratio: 1/1; object-fit: cover; filter: saturate(1.02) contrast(1.08); }
/* locking bars on the right door edge */
.box-card__bars { position: absolute; top: 0; right: 0; bottom: 0; width: 22px; display: flex; gap: 5px; justify-content: center; padding: 8px 0; background: rgba(23,26,29,.55); }
.box-card__bar { width: 4px; flex: 1; background: var(--c-a1); position: relative; }
.box-card__bar::after { content: ""; position: absolute; top: 46%; left: -3px; width: 10px; height: 8px; background: var(--c-a1); transition: transform .3s var(--ease); transform-origin: center; }
.box-card:hover .box-card__bar::after { transform: rotate(90deg); }
.box-card__side { position: absolute; top: 8px; left: 8px; }
.box-card__body { padding: var(--s-3); border-top: 3px solid var(--c-ink); }
.box-card__code { color: var(--c-a2); margin-bottom: var(--s-1); }
.box-card__pictos { display: flex; gap: 10px; margin-top: var(--s-2); }
.box-card__picto { width: 30px; height: 30px; border: 2px solid var(--c-ink-mute); display: grid; place-items: center; font-size: 15px; color: var(--c-ink-mute); }
.box-card__cap { display: flex; align-items: baseline; gap: 6px; margin-top: var(--s-2); }
.box-card__cap b { font-family: var(--f-heavy); font-weight: 800; font-size: 30px; line-height: 1; }
.box-card__cap span { font-family: var(--f-heavy); font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-ink-mute); }

/* =============================================================
   THE YARD — full-bleed dark + SVG map
   ============================================================= */
.yard__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-6); align-items: center; }
.yard__media img { aspect-ratio: 16/9; object-fit: cover; border: var(--bd); border-color: var(--c-a1); filter: saturate(1.05) contrast(1.1) brightness(.9); }
.yard__map { border: var(--bd); border-color: var(--c-ink-inv); padding: var(--s-3); background: #0e1114; }
.yard__map svg { width: 100%; height: auto; display: block; }
.yard-crate { fill: #1d2226; stroke: var(--c-a1); stroke-width: 3; cursor: pointer; transition: fill .2s var(--ease); }
.yard-crate:hover { fill: var(--c-a2); }
.yard-crate.is-land { animation: crate-land .5s var(--ease) both; }
@keyframes crate-land { from { transform: translateY(-8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.yard-label { fill: var(--c-ink-inv); font-family: var(--f-heavy); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.yard__map-cap { font-size: 12px; color: var(--c-ink-inv-mute); margin-top: var(--s-2); }

/* =============================================================
   CARGO RULES — picto grid (light)
   ============================================================= */
.rules__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.rule { border: var(--bd); border-color: var(--c-ink); padding: var(--s-3); position: relative; }
.rule__sign { width: 56px; height: 56px; border: 3px solid var(--c-ink); display: grid; place-items: center; margin-bottom: var(--s-2); }
.rule__sign svg { width: 30px; height: 30px; stroke: var(--c-a2); fill: none; stroke-width: 2.4; }
.rule p { margin: 0; color: var(--c-ink-mute); }

/* =============================================================
   NIGHT SHIFT — band (dark)
   ============================================================= */
.s-band { position: relative; min-height: 62vh; display: flex; align-items: center; color: var(--c-ink-inv); overflow: hidden; }
.s-band__bg { position: absolute; inset: 0; z-index: 0; }
.s-band__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.1) brightness(.5); }
.s-band__bg::after { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 55% 60% at 30% 50%, transparent, rgba(0,0,0,.7)); }
.s-band__inner { position: relative; z-index: 1; max-width: 60ch; }
.s-band .u-h2 { color: var(--c-ink-inv); }
.s-band p { color: #d7dcdf; }

/* =============================================================
   MANIFEST LOG — 3 entries (light)
   ============================================================= */
.log__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-3); }
.log-entry { border-left: 3px solid var(--c-a1); padding: 0 0 0 var(--s-3); }
.log-entry__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: var(--s-1); }
.log-entry__no { color: var(--c-a2); }
.log-entry__date { font-size: 12px; color: var(--c-ink-mute); font-family: var(--f-heavy); letter-spacing: .06em; }
.log-entry p { color: var(--c-ink-mute); margin: 0; }

/* =============================================================
   YARD SHOTS — gallery (full-bleed dark)
   ============================================================= */
.shots__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-3); }
.shot { border: var(--bd); border-color: var(--c-ink-inv); }
.shot img { aspect-ratio: 1/1; object-fit: cover; filter: saturate(1.02) contrast(1.1) brightness(.92); }
.shot figcaption { padding: 10px var(--s-2); background: #0e1114; }

/* =============================================================
   FAQ — dock questions (light)
   ============================================================= */
.faq { max-width: 820px; }
.faq__item { border-bottom: 3px solid var(--c-ink); }
.faq__q { width: 100%; text-align: left; background: transparent; border: 0; padding: var(--s-3) 40px var(--s-3) 0; position: relative;
  font-family: var(--f-heavy); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .01em; color: var(--c-ink); }
.faq__q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--c-a1); transition: transform .25s var(--ease); }
.faq__q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { padding: 0 0 var(--s-3); color: var(--c-ink-mute); margin: 0; }

/* =============================================================
   FORM — book a box (light)
   ============================================================= */
.form-wrap { max-width: 720px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); margin-top: var(--blk-y); }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--f-heavy); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-ink-mute); margin-bottom: 6px; }
.field input, .field select {
  border: 3px solid var(--c-ink); border-radius: 0; padding: 12px 14px; font: inherit; background: #fff; color: var(--c-ink);
  position: relative;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--c-a2); }
.field { position: relative; }
.field__hazard { height: 4px; margin-top: 0; background-image: repeating-linear-gradient(-45deg, var(--c-a1) 0 8px, #1b1b1b 8px 16px); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.field input:focus ~ .field__hazard, .field select:focus ~ .field__hazard { transform: scaleX(1); }
.form__submit { grid-column: 1 / -1; }
#formStatus { grid-column: 1/-1; font-family: var(--f-heavy); font-weight: 700; margin: 0; }
#formStatus.success { color: #1f7a3d; }
#formStatus.error { color: #b4291d; }

/* =============================================================
   FOOTER — footer-minimal-centered
   ============================================================= */
.footer { background: var(--c-bg-dark); color: var(--c-ink-inv); text-align: center; padding: var(--sec-y) 5vw var(--s-5); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: var(--s-3); }
.footer__logo b { font-family: var(--f-display); font-weight: 400; font-size: 30px; letter-spacing: .04em; }
.footer__logo span { display: block; font-family: var(--f-heavy); font-weight: 600; font-size: 12px; letter-spacing: .14em; color: var(--c-a1); text-transform: uppercase; margin-top: 4px; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-2) var(--s-3); }
.footer__links a { font-family: var(--f-heavy); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.footer__links a:hover { color: var(--c-a1); }
.footer__hours { color: var(--c-ink-inv-mute); font-size: 14px; }
.footer__disclaimer { font-family: var(--f-heavy); font-weight: 700; letter-spacing: .04em; color: var(--c-a1); font-size: 16px; border-top: 3px solid #2a3033; padding-top: var(--s-3); width: 100%; max-width: 640px; }
.footer__copy { color: var(--c-ink-inv-mute); font-size: 13px; }

/* =============================================================
   LEGAL pages
   ============================================================= */
.legal { padding: 120px 5vw var(--sec-y); }
.legal__wrap { max-width: 760px; margin-inline: auto; }
.legal__docmeta { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 3px solid var(--c-ink); padding-bottom: var(--s-2); margin-bottom: var(--s-4); flex-wrap: wrap; gap: 8px; }
.legal__code { color: var(--c-a2); }
.legal h1 { font-family: var(--f-display); font-weight: 400; font-size: clamp(34px,6vw,64px); text-transform: uppercase; }
.legal h2 { font-family: var(--f-heavy); font-weight: 700; font-size: 22px; text-transform: uppercase; margin-top: var(--s-4); }
.legal p, .legal li { color: var(--c-ink-mute); }
.legal ul { padding-left: 20px; }
.legal__back { display: inline-block; margin-top: var(--s-4); font-family: var(--f-heavy); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-a2); }
.legal-header { position: static; background: var(--c-bg-dark); }
.legal-header .nav__logo { color: var(--c-ink-inv); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .yard__grid { grid-template-columns: 1fr; gap: var(--s-4); }
}
@media (max-width: 768px) {
  :root { --sec-y: 40px; --blk-y: 28px; }
  .boxes__grid, .rules__grid, .log__grid, .shots__grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .s-block { padding-block: var(--sec-y); }
}
@media (max-width: 480px) {
  :root { --sec-y: 24px; }
  .s-hero { padding: 100px 5vw 72px; }
  .hero__cd-plate { min-width: 58px; padding: 5px 9px; }
  .u-container { padding-inline: var(--s-3); }
}

/* =============================================================
   REDUCED MOTION — kill everything
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .has-rivets .rivet { transform: scale(1) !important; }
  .s-hero__beam, .s-hero__chevrons { animation: none !important; }
}
