/* ============================================================
   THE VEHICLE ARCHIVE
   Typeface: Inter Tight (variable) — self-hosted, latin subset
   ============================================================ */
@font-face{
  font-family:'Inter Tight';
  font-style:normal;
  font-display:swap;
  font-weight:100 900;
  src:url('../fonts/inter-tight-latin-wght-normal.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root{
  --ink:#0A0A0A;
  --paper:#FFFFFF;
  --grey:#6E6E6E;
  --grey-dk:#8A8A8A;
  --rule:rgba(10,10,10,.14);
  --rule-inv:rgba(255,255,255,.16);
  --f:'Inter Tight','Helvetica Neue',Helvetica,Arial,'Liberation Sans',sans-serif;
  --gut:clamp(1.25rem,5vw,5.5rem);
  --beat:50vh;
  --ease:cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{box-sizing:border-box}
html{
  -webkit-text-size-adjust:100%;
  background:var(--ink);
  overflow-x:clip;
  overscroll-behavior-y:none;
  scroll-behavior:auto;
}
body{
  margin:0;
  font-family:var(--f);
  color:var(--ink);
  background:var(--ink);
  overflow-x:clip;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-synthesis-weight:none;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}

.sr-only{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;border:0;
}
.skip{
  position:fixed;top:-100px;left:1rem;z-index:200;background:var(--ink);color:#fff;
  padding:.75rem 1.1rem;font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;
}
.skip:focus{top:1rem}

/* ---------- type scale ---------- */
.t-xxl{font-size:clamp(3.6rem,18.5vw,16rem);font-weight:800;letter-spacing:-.052em;line-height:.82}
.t-xl {font-size:clamp(2.9rem,13vw,11rem);font-weight:800;letter-spacing:-.046em;line-height:.85}
.t-l  {font-size:clamp(2.1rem,8vw,6.4rem);font-weight:700;letter-spacing:-.04em;line-height:.9}
.t-hero{font-size:clamp(2.05rem,11vw,9.5rem);font-weight:800;letter-spacing:-.048em;line-height:.86}
.t-m  {font-size:clamp(1.45rem,4.2vw,3rem);font-weight:500;letter-spacing:-.024em;line-height:1.06}
.t-s  {font-size:clamp(1.05rem,2.3vw,1.55rem);font-weight:400;letter-spacing:-.012em;line-height:1.34}
.t-xs {font-size:clamp(.92rem,1.5vw,1.06rem);font-weight:400;letter-spacing:-.005em;line-height:1.55}
.light{font-weight:300}
.reg{font-weight:400}
.eyebrow{
  font-size:.66rem;font-weight:500;letter-spacing:.24em;text-transform:uppercase;
  line-height:1;color:var(--grey);
}
.muted{color:var(--grey)}
.dark-zone .muted,.dark-zone .eyebrow{color:var(--grey-dk)}

/* ---------- header ---------- */
.nav{
  position:fixed;inset:0 0 auto 0;z-index:90;
  display:flex;align-items:center;justify-content:space-between;
  padding:clamp(1rem,2.4vw,1.6rem) var(--gut);
  mix-blend-mode:normal;pointer-events:none;
  transition:color .45s var(--ease),transform .5s var(--ease),opacity .4s var(--ease);
  color:var(--ink);
}
.nav.hide{transform:translateY(-115%);opacity:0}
.menu-open .nav{transform:none;opacity:1}
.nav>*{pointer-events:auto}
.nav .wordmark{
  font-size:clamp(.72rem,1.1vw,.82rem);font-weight:600;letter-spacing:.22em;text-transform:uppercase;
}
.nav-links{display:flex;gap:clamp(1.1rem,2.4vw,2.4rem)}
.nav-links a{
  font-size:.72rem;font-weight:450;letter-spacing:.16em;text-transform:uppercase;
  position:relative;padding-bottom:.2rem;
}
.nav-links a::after{
  content:'';position:absolute;left:0;bottom:0;height:1px;width:100%;
  background:currentColor;transform:scaleX(0);transform-origin:right;
  transition:transform .5s var(--ease);
}
.nav-links a:hover::after,.nav-links a:focus-visible::after{transform:scaleX(1);transform-origin:left}
.nav.inv{color:#fff}
.burger{
  display:none;background:none;border:0;padding:.5rem;cursor:pointer;
  width:2.4rem;height:2.4rem;position:relative;
}
.burger span{
  position:absolute;left:.5rem;right:.5rem;height:1.5px;background:currentColor;
  transition:transform .45s var(--ease),opacity .3s;
}
.burger span:nth-child(1){top:.9rem}
.burger span:nth-child(2){top:1.35rem}
.menu-open .burger span:nth-child(1){transform:translateY(.225rem) rotate(45deg)}
.menu-open .burger span:nth-child(2){transform:translateY(-.225rem) rotate(-45deg)}

.mobile-menu{
  position:fixed;inset:0;z-index:80;background:var(--ink);color:#fff;
  display:flex;flex-direction:column;justify-content:center;gap:.4rem;
  padding:var(--gut);
  clip-path:inset(0 0 100% 0);
  transition:clip-path .7s var(--ease);
  visibility:hidden;
}
.menu-open .mobile-menu{clip-path:inset(0 0 0 0);visibility:visible}
.mobile-menu a{font-size:clamp(2rem,11vw,3.4rem);font-weight:700;letter-spacing:-.04em;line-height:1.12}
.mobile-menu .eyebrow{margin-bottom:1.6rem;color:var(--grey-dk)}

.scroll-cue{
  position:fixed;left:var(--gut);bottom:clamp(1.4rem,4vh,2.4rem);z-index:70;
  opacity:0;animation:cueIn .9s var(--ease) 1.1s forwards;
  transition:opacity .5s var(--ease);pointer-events:none;
}
.scroll-cue.gone{opacity:0!important}
@keyframes cueIn{to{opacity:1}}

/* Pause / play for the opening film. WCAG 2.2.2: motion that starts on its
   own and runs beyond five seconds needs a way to stop it. */
.film-ctl{
  position:fixed;right:var(--gut);bottom:clamp(1.4rem,4vh,2.4rem);z-index:75;
  display:inline-flex;align-items:center;gap:.65rem;
  background:none;border:0;padding:.5rem 0;cursor:pointer;
  font-size:.66rem;font-weight:500;letter-spacing:.24em;text-transform:uppercase;
  color:var(--ink);opacity:0;visibility:hidden;
  transition:opacity .5s var(--ease),color .45s var(--ease),visibility .5s;
}
.film-ctl.on{opacity:.5;visibility:visible}
.film-ctl.on:hover,.film-ctl.on:focus-visible{opacity:1}
.film-ctl .ico{display:flex;align-items:center;gap:3px;height:11px}
.film-ctl .ico i{display:block;width:3px;height:11px;background:currentColor;transition:.35s var(--ease)}
.film-ctl.paused .ico i:first-child{
  width:0;height:0;background:none;
  border-top:5.5px solid transparent;border-bottom:5.5px solid transparent;
  border-left:9px solid currentColor;
}
.film-ctl.paused .ico i:last-child{width:0;opacity:0}
.dark-ui .film-ctl{color:#fff}

/* ---------- zones ---------- */
.light-zone{background:var(--paper);color:var(--ink);position:relative;z-index:1}
.dark-zone{background:var(--ink);color:#fff;position:relative;z-index:1}

/* ---------- scene / stage / beat ----------
   A scene is tall; the stage inside it sticks for the whole of that height,
   so the beats play out while the page scrolls. --n = how many beats' worth
   of scroll distance the scene gets. */
.scene{position:relative;height:calc(var(--n,1) * var(--beat) + 100vh)}
@supports (height:100svh){.scene{height:calc(var(--n,1) * var(--beat) + 100svh)}}
.stage{
  position:sticky;top:0;
  height:100vh;height:100svh;
  overflow:clip;
  display:block;
}
/* A beat fills the stage and centres its own content with grid alignment.
   Nothing here uses a CSS transform, so GSAP owns transform outright — it
   clears the independent `translate` property when it takes over, which
   would otherwise silently drop the centring mid-sequence. */
.beat{
  position:absolute;inset:0;
  display:grid;align-content:center;justify-content:center;
  padding:0 var(--gut);
  text-align:center;
  margin:0;
}
.beat.a-left {justify-content:start;text-align:left}
.beat.a-right{justify-content:end;text-align:right}
.beat.upper  {align-content:start;padding-top:20vh}
.beat.lower  {align-content:end;padding-bottom:20vh}
.beat.a-tl   {justify-content:start;align-content:start;text-align:left;padding-top:24vh}
.beat.bleed  {justify-content:start;text-align:left;padding-left:3vw;padding-right:0;white-space:nowrap}
.beat p{margin:0}
/* Pre-paint state: with JS the engine reveals each beat in turn */
html:not(.no-js) .beat,html:not(.no-js) .plate{opacity:0;visibility:hidden}
.menu-open .nav{color:#fff}
body.menu-open{overflow:hidden}

/* ---------- the invert ----------
   A black panel clipped from the bottom up. It holds a white copy of the
   statement at exactly the same coordinates as the black one beneath it, so
   as the panel wipes upward the words change colour without moving. */
.invert{
  position:absolute;inset:0;z-index:4;
  background:var(--ink);color:#fff;
  clip-path:inset(100% 0% 0% 0%);
  will-change:clip-path;
}
.invert .beat{opacity:1!important;visibility:visible!important}
.invert-mark{
  position:absolute;left:var(--gut);bottom:clamp(1.6rem,5vh,3.2rem);
  color:rgba(255,255,255,.5);
}

/* ---------- dark content ---------- */
.wrap{padding:0 var(--gut)}
.sec{padding-block:clamp(5.5rem,15vh,11rem)}
.sec-head{display:flex;justify-content:space-between;gap:2rem;align-items:baseline;
  border-top:1px solid var(--rule-inv);padding-top:1.1rem;margin-bottom:clamp(2.6rem,7vh,5rem)}

.intro-mark{padding-block:clamp(5rem,14vh,10rem) clamp(3rem,9vh,6rem)}
.intro-mark .eyebrow{display:block;margin-bottom:clamp(1rem,3vh,2rem)}
.intro-mark h2{margin:0;font-size:max(2.6rem,min(13.5vw,11.5rem,19vh));font-weight:800;
  letter-spacing:-.05em;line-height:.84}
.intro-sub{margin-top:clamp(2rem,6vh,4rem);max-width:34ch;color:#fff}

.lede{max-width:44ch;margin:0 0 clamp(3rem,8vh,6rem)}

.grid-items{border-top:1px solid var(--rule-inv)}
.item{
  display:grid;grid-template-columns:5.5rem minmax(0,1fr) minmax(0,1.15fr);
  gap:clamp(1rem,3vw,3rem);align-items:start;
  padding:clamp(1.6rem,4vh,2.8rem) 0;border-bottom:1px solid var(--rule-inv);
}
.item .num{font-size:.7rem;letter-spacing:.2em;color:var(--grey-dk);padding-top:.45em}
.item h3{margin:0;font-size:clamp(1.15rem,2.6vw,1.9rem);font-weight:600;letter-spacing:-.025em;line-height:1.1}
.item p{margin:0;color:#B8B8B8;max-width:46ch}

.loc{display:grid;grid-template-columns:minmax(0,1fr);gap:clamp(2rem,6vh,4rem)}
.loc h2{margin:0;font-size:clamp(2.1rem,9.6vw,10rem);font-weight:800;letter-spacing:-.05em;line-height:.86}
.loc-cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:clamp(1.6rem,4vw,3.5rem)}
.loc-cols p{margin:0;color:#B8B8B8;max-width:40ch}
.region-list{list-style:none;margin:.9rem 0 0;padding:0;columns:2;column-gap:2rem}
.region-list li{padding:.42rem 0;border-bottom:1px solid var(--rule-inv);font-size:.95rem;
  break-inside:avoid}

.about p{max-width:52ch;color:#B8B8B8;margin:0 0 1.2rem}
.about .stmt{color:#fff;max-width:24ch}

/* ---------- CTA + form ---------- */
.cta{padding-block:clamp(6rem,18vh,13rem) clamp(3rem,8vh,5rem)}
.cta h2{margin:0;font-size:clamp(2.4rem,9.8vw,9.5rem);font-weight:800;letter-spacing:-.05em;line-height:.86}
.cta .sub{margin-top:clamp(1.4rem,4vh,2.4rem);color:#B8B8B8}
.cta-link{
  display:inline-flex;align-items:center;gap:.9rem;margin-top:clamp(2.4rem,7vh,4rem);
  font-size:clamp(1rem,2vw,1.35rem);font-weight:500;letter-spacing:-.01em;
  border-bottom:1px solid rgba(255,255,255,.35);padding-bottom:.55rem;
  transition:gap .45s var(--ease),border-color .45s var(--ease);
}
.cta-link:hover{gap:1.5rem;border-color:#fff}

.enq{padding-bottom:clamp(5rem,14vh,9rem)}
.enq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(1.4rem,3.5vw,3rem) clamp(1.6rem,4vw,4rem)}
.field{display:flex;flex-direction:column;gap:.55rem}
.field.full{grid-column:1/-1}
.field label{font-size:.66rem;letter-spacing:.2em;text-transform:uppercase;color:var(--grey-dk)}
.field input,.field select,.field textarea{
  background:transparent;border:0;border-bottom:1px solid var(--rule-inv);
  padding:.7rem 0;font-size:1.02rem;font-weight:400;color:#fff;
  border-radius:0;transition:border-color .4s var(--ease);
}
.field textarea{resize:vertical;min-height:5.5rem}
.field select{appearance:none;background-image:linear-gradient(45deg,transparent 50%,#8A8A8A 50%),linear-gradient(135deg,#8A8A8A 50%,transparent 50%);
  background-position:calc(100% - 12px) 1.25rem,calc(100% - 7px) 1.25rem;background-size:5px 5px,5px 5px;background-repeat:no-repeat;
  padding-right:2rem;cursor:pointer}
.field select option{background:#151515;color:#fff}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:#fff}
.field input:user-invalid,.field textarea:user-invalid{border-color:#C9564A}
.radio-row{display:flex;gap:1.6rem;padding-top:.55rem}
.radio-row label{display:inline-flex;align-items:center;gap:.55rem;font-size:.95rem;
  letter-spacing:0;text-transform:none;color:#fff;cursor:pointer}
.radio-row input{accent-color:#fff;width:1rem;height:1rem}
.enq-submit{
  margin-top:clamp(2.2rem,6vh,3.5rem);
  background:#fff;color:var(--ink);border:1px solid #fff;
  padding:1.15rem 2.4rem;font-size:.74rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  cursor:pointer;transition:background .4s var(--ease),color .4s var(--ease);
}
.enq-submit:hover{background:transparent;color:#fff}
.form-note{margin-top:1.4rem;font-size:.85rem;color:var(--grey-dk)}
.form-done{display:none;padding:2rem 0;border-top:1px solid var(--rule-inv);margin-top:2rem}
.form-done.on{display:block}

/* ---------- footer ---------- */
.foot{border-top:1px solid var(--rule-inv);padding-block:clamp(3rem,8vh,5rem) clamp(2rem,5vh,3rem)}
.foot-grid{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);gap:2.5rem;align-items:start}
.foot .wordmark{font-size:.74rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase}
.foot address{font-style:normal;margin-top:1.2rem;color:#B8B8B8;font-size:.95rem;line-height:1.7}
.foot-contact{list-style:none;margin:1.2rem 0 0;padding:0;display:flex;flex-direction:column;gap:.5rem}
.foot-contact a{color:#fff;font-size:.95rem;line-height:1.5;border-bottom:1px solid rgba(255,255,255,.28);
  padding-bottom:.1rem;transition:border-color .35s,color .35s}
.foot-contact a:hover{border-bottom-color:#fff}
.foot-links{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.5rem 1.6rem;justify-content:flex-end}
.foot-links a{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#B8B8B8;transition:color .35s}
.foot-links a:hover{color:#fff}
.foot-base{display:flex;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
  margin-top:clamp(2.5rem,7vh,4.5rem);padding-top:1.2rem;border-top:1px solid var(--rule-inv);
  font-size:.72rem;letter-spacing:.06em;color:var(--grey-dk)}

/* ---------- reveal (dark zone, restrained) ---------- */
.rv{opacity:0;transform:translate3d(0,22px,0)}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width:900px){
  :root{--beat:44vh}
  .nav-links{display:none}
  .burger{display:block}
  .item{grid-template-columns:3.2rem minmax(0,1fr);row-gap:.7rem}
  .item p{grid-column:2/-1}
  .enq-grid{grid-template-columns:minmax(0,1fr)}
  .foot-grid{grid-template-columns:minmax(0,1fr)}
  .foot-links{justify-content:flex-start}
  .t-xxl{letter-spacing:-.045em}
  .beat.bleed{white-space:nowrap}
  .region-list{columns:1}
}
@media (max-width:520px){
}

/* ============================================================
   REDUCED MOTION — everything becomes a calm, static document
   The plate sequence stays one-at-a-time via native scroll-snap.
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  .scene{height:auto!important}
  .stage{position:static;height:auto;overflow:visible;padding:clamp(3rem,10vh,6rem) var(--gut);
    display:flex;flex-direction:column;gap:clamp(2.5rem,8vh,5rem);align-items:flex-start}
  .beat{position:static!important;inset:auto!important;display:block!important;
    transform:none!important;padding:0!important;
    opacity:1!important;visibility:visible!important;max-width:100%;width:auto;white-space:normal}
  .beat.a-right{text-align:left}
  .beat.bleed{white-space:normal}
  .t-xxl{font-size:clamp(3rem,11vw,7rem)}
  .t-xl{font-size:clamp(2.4rem,8vw,5rem)}

  .invert{display:none}
  .rv{opacity:1!important;transform:none!important}
  *{animation-duration:.01ms!important;transition-duration:.01ms!important}
}

/* Fallback when JS is unavailable: show everything statically */
.no-js .scene{height:auto}
.no-js .stage{position:static;height:auto;overflow:visible;padding:4rem var(--gut);
  display:flex;flex-direction:column;gap:3rem;align-items:flex-start}
.no-js .beat{position:static;inset:auto;display:block;padding:0;max-width:100%;white-space:normal}
.no-js .invert{display:none}
.no-js .rv{opacity:1;transform:none}

/* ============================================================
   V3 — the lower half: storage model, portal, categories, FAQ
   ============================================================ */

/* a white section set inside the dark half */
.light-zone.interlude{background:var(--paper);color:var(--ink)}
.light-zone.interlude .eyebrow{color:var(--grey)}
.light-zone.interlude .rule{border-color:var(--rule)}

/* ---------- large statement blocks ---------- */
.stmt{padding-block:clamp(5.5rem,16vh,12rem)}
.stmt h2{margin:0;font-size:max(2rem,min(10.4vw,8.5rem,22vh));font-weight:800;
  letter-spacing:-.05em;line-height:.86}
.stmt .lead{margin:clamp(1.4rem,4vh,2.4rem) 0 0;max-width:22ch}
.stmt .body{margin:clamp(2.4rem,7vh,4.5rem) 0 0;max-width:56ch;color:#B8B8B8}
.stmt .body p{margin:0 0 1.15em}
.stmt .body p:last-child{margin-bottom:0}
.light-zone .stmt .body{color:#4A4A4A}

/* the two qualifying lines, given weight */
.pull{margin-top:clamp(2.6rem,7vh,4.5rem);border-top:1px solid var(--rule-inv)}
.pull p{
  margin:0;padding:clamp(1.5rem,4vh,2.4rem) 0;
  border-bottom:1px solid var(--rule-inv);
  font-size:clamp(1.15rem,2.5vw,1.75rem);font-weight:400;letter-spacing:-.02em;
  line-height:1.34;max-width:44ch;color:#8A8A8A;
}
.pull p.yes{color:#fff;font-weight:500}

/* ---------- portal features / numbered lists ---------- */
.rows{border-top:1px solid var(--rule-inv)}
.row{
  display:grid;grid-template-columns:5.5rem minmax(0,1fr) minmax(0,1.15fr);
  gap:clamp(1rem,3vw,3rem);align-items:start;
  padding:clamp(1.6rem,4vh,2.8rem) 0;border-bottom:1px solid var(--rule-inv);
}
.row .num{font-size:.7rem;letter-spacing:.2em;color:var(--grey-dk);padding-top:.45em}
.row h3{margin:0;font-size:clamp(1.15rem,2.6vw,1.9rem);font-weight:600;letter-spacing:-.025em;line-height:1.1}
.row p{margin:0;color:#B8B8B8;max-width:46ch}
.light-zone .rows,.light-zone .row{border-color:var(--rule)}
.light-zone .row p{color:#4A4A4A}
.light-zone .row .num{color:var(--grey)}

/* ---------- vehicle categories ---------- */
.cats{
  list-style:none;margin:clamp(2.5rem,7vh,4rem) 0 0;padding:0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:0 clamp(1.5rem,4vw,4rem);border-top:1px solid var(--rule);
}
.cats li{
  padding:.85rem 0;border-bottom:1px solid var(--rule);
  font-size:clamp(1rem,1.6vw,1.15rem);font-weight:500;letter-spacing:-.015em;
}
.cats li span{float:right;font-size:.66rem;letter-spacing:.2em;color:var(--grey);
  font-weight:400;padding-top:.55em}

/* ---------- FAQ ---------- */
.faq{border-top:1px solid var(--rule-inv)}
.faq details{border-bottom:1px solid var(--rule-inv)}
.faq summary{
  list-style:none;cursor:pointer;padding:clamp(1.25rem,3.2vh,2rem) 0;
  display:flex;gap:1.5rem;align-items:baseline;justify-content:space-between;
  font-size:clamp(1.05rem,2.2vw,1.5rem);font-weight:500;letter-spacing:-.02em;line-height:1.28;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:'';flex:0 0 auto;width:13px;height:13px;position:relative;top:-.1em;
  background:
    linear-gradient(currentColor,currentColor) center/100% 1.5px no-repeat,
    linear-gradient(currentColor,currentColor) center/1.5px 100% no-repeat;
  transition:transform .45s var(--ease);
}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq summary:focus-visible{outline:2px solid currentColor;outline-offset:4px}
.faq .ans{margin:0;padding:0 0 clamp(1.4rem,3.5vh,2.2rem);max-width:62ch;color:#B8B8B8}
.faq .ans p{margin:0 0 .9em}
.faq .ans p:last-child{margin:0}

/* ---------- inline link ---------- */
.ilink{
  display:inline-flex;align-items:center;gap:.6rem;margin-top:clamp(1.6rem,4vh,2.6rem);
  font-size:.95rem;font-weight:500;letter-spacing:-.005em;
  border-bottom:1px solid rgba(255,255,255,.32);padding-bottom:.4rem;
  transition:gap .4s var(--ease),border-color .4s var(--ease);
}
.ilink:hover{gap:1.1rem;border-color:#fff}
.light-zone .ilink{border-color:var(--rule)}
.light-zone .ilink:hover{border-color:var(--ink)}

/* ---------- sub-page hero ---------- */
.page-hero{padding-block:clamp(7rem,20vh,13rem) clamp(3rem,8vh,5rem)}
.page-hero h1{margin:clamp(1rem,3vh,2rem) 0 0;
  font-size:max(2rem,min(8.4vw,7.5rem,20vh));font-weight:800;letter-spacing:-.05em;line-height:.88}
.page-hero .stand{margin:clamp(1.8rem,5vh,3rem) 0 0;max-width:40ch;color:#B8B8B8}
.crumb{font-size:.66rem;letter-spacing:.2em;text-transform:uppercase;color:var(--grey-dk)}
.crumb a{border-bottom:1px solid transparent;transition:border-color .35s}
.crumb a:hover{border-color:currentColor}

/* ---------- prose ---------- */
.prose{max-width:62ch;color:#B8B8B8}
.prose h3{margin:clamp(2.4rem,6vh,3.6rem) 0 .9rem;color:#fff;
  font-size:clamp(1.2rem,2.6vw,1.75rem);font-weight:600;letter-spacing:-.025em;line-height:1.2}
.prose h3:first-child{margin-top:0}
.prose p{margin:0 0 1.15em}
.prose ul{margin:0 0 1.3em;padding:0;list-style:none}
.prose li{padding:.5rem 0;border-bottom:1px solid var(--rule-inv)}
.prose strong{color:#fff;font-weight:500}

/* ---------- form additions ---------- */
.enq-grid .field.third{grid-column:span 1}
fieldset.field{border:0;margin:0;padding:0;min-width:0}
fieldset.field legend{padding:0;font-size:.66rem;letter-spacing:.2em;text-transform:uppercase;color:var(--grey-dk)}
.radio-col{display:flex;flex-direction:column;gap:.55rem;padding-top:.8rem}
.radio-col label{display:inline-flex;align-items:center;gap:.6rem;font-size:.95rem;color:#fff;cursor:pointer}
.radio-col input{accent-color:#fff;width:1rem;height:1rem}
.field-note{margin:.45rem 0 0;font-size:.78rem;color:var(--grey-dk)}

@media (max-width:900px){
  .row{grid-template-columns:3.2rem minmax(0,1fr);row-gap:.7rem}
  .row p{grid-column:2/-1}
  .stmt .lead{max-width:100%}
}


/* ============================================================
   VEHICLE CATEGORY SWIPE (restored for the white interlude)
   ============================================================ */
/* ---------- plate sequence ---------- */
.plates-scene .stage{display:grid;place-items:center}
/* All eight plates share one grid cell, centred by the grid rather than by
   a transform, so only one is ever on stage and GSAP can move it freely. */
.plate{
  grid-area:1/1;
  margin:0;will-change:transform,opacity;
  display:grid;place-items:center;
}
.plate img{
  width:auto;height:auto;
  max-width:min(72vw,1060px);
  max-height:56vh;
  filter:drop-shadow(0 26px 42px rgba(10,10,10,.09));
}
.plate-hud{
  position:absolute;left:var(--gut);right:var(--gut);bottom:clamp(1.6rem,5vh,3.2rem);
  display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;
  pointer-events:none;
}
.plate-counter{position:relative;height:1em;min-width:5.5em}
.plate-counter span{position:absolute;left:0;top:0;opacity:0}
.plate-counter span:first-child{opacity:1}
.plate-progress{
  position:absolute;left:var(--gut);right:var(--gut);bottom:0;height:1px;background:var(--rule);
}
.plate-progress i{
  display:block;height:100%;background:var(--ink);transform:scaleX(0);transform-origin:left;
}

/* the sequence sits on white, so the plates keep their real drop shadows */
.interlude .plate img{filter:drop-shadow(0 26px 42px rgba(10,10,10,.10))}
.interlude .plate-progress{background:var(--rule)}
.interlude .plate-progress i{background:var(--ink)}
.interlude .plate-counter,.interlude .plate-hud .eyebrow{color:var(--grey)}

@media (max-width:900px){
  .plate img{max-width:90vw;max-height:42vh}
}
@media (max-width:520px){
  .plate img{max-width:93vw;max-height:36vh}
}

@media (prefers-reduced-motion:reduce){
  /* display must be forced: .plates-scene .stage is more specific than .stage,
     and without this the eight plates stack in one grid cell */
  .plates-scene .stage{
    display:flex!important;
    flex-direction:row;overflow-x:auto;scroll-snap-type:x mandatory;
    gap:0;padding:clamp(2rem,6vh,4rem) 0;-webkit-overflow-scrolling:touch;
    align-items:center;
  }
  .plate{grid-area:auto!important;transform:none!important;flex:0 0 100vw;
    opacity:1!important;visibility:visible!important;
    min-width:100vw;scroll-snap-align:center;padding:0 var(--gut)}
  .plate-hud,.plate-progress{display:none}
}
.no-js .plate{grid-area:auto;padding:2rem 0}

/* still image of the transporter on the collection page */
.page-figure{margin:clamp(2.5rem,7vh,4.5rem) 0 0;max-width:min(62vw,880px)}
.page-figure img{width:100%;height:auto;filter:drop-shadow(0 30px 40px rgba(0,0,0,.5))}
@media (max-width:900px){.page-figure{max-width:100%}}

/* ============================================================
   V4 — day into night, and the quieter statement sections
   ============================================================ */

/* ---------- the transporter section: day → night ---------- */
.daynight{background:var(--ink);color:#fff}
.daynight .stage{overflow:clip;background:var(--ink)}

.dn-media{position:absolute;inset:0;z-index:1;will-change:transform}
.dn-media picture{position:absolute;inset:0;display:block}
/* both frames sit in exactly the same box with the same fit and position, so
   the vehicle does not shift by a pixel as the environment changes */
.dn-media img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:50% 52%;
}
.dn-night{opacity:0;will-change:opacity}

.dn-scrim{
  position:absolute;inset:0;z-index:2;pointer-events:none;
  background:
    linear-gradient(to top,   rgba(10,10,10,.80) 0%, rgba(10,10,10,.30) 30%, rgba(10,10,10,0) 52%),
    linear-gradient(to right, rgba(10,10,10,.42) 0%, rgba(10,10,10,.06) 40%, rgba(10,10,10,0) 58%);
}
.dn-copy{position:absolute;inset:0;z-index:3}
.dn-copy .eyebrow{display:block;color:rgba(255,255,255,.62);margin-bottom:clamp(.8rem,2.2vh,1.3rem)}
.dn-copy p,.dn-copy h2{margin:0;color:#fff}
.dn-copy .t-s{margin-top:clamp(1rem,3vh,1.6rem);color:rgba(255,255,255,.78);max-width:34ch}
.dn-copy .ilink{margin-top:clamp(1.2rem,3.5vh,2rem)}

@media (max-width:900px){
  /* portrait crops a landscape frame to a sliver, so the picture gets its own
     band and is shown whole */
  /* give the media a box of the photograph's own proportions, so cover crops
     nothing and there is no letterboxing to pad around */
  .dn-media{top:20vh;bottom:auto;height:auto;aspect-ratio:1511/1000}
  .dn-media img{object-fit:cover;object-position:50% 50%}
  .dn-scrim{background:linear-gradient(to top,rgba(10,10,10,.94) 0%,rgba(10,10,10,.55) 30%,rgba(10,10,10,0) 52%)}
  .dn-copy .beat.lower{padding-bottom:8vh}
}

/* ---------- three-word statements ---------- */
.triad{
  list-style:none;margin:clamp(2.4rem,7vh,4rem) 0 0;padding:0;
  display:flex;flex-wrap:wrap;gap:clamp(1.2rem,5vw,4rem);
}
.triad li{font-size:clamp(1.5rem,4.4vw,3.2rem);font-weight:700;letter-spacing:-.038em;line-height:1}

/* one crawlable paragraph, kept quiet */
.seo-line{
  margin:clamp(3rem,9vh,5.5rem) 0 0;max-width:64ch;
  padding-top:clamp(1.3rem,3.5vh,2rem);border-top:1px solid var(--rule-inv);
  font-size:.95rem;line-height:1.65;color:#8A8A8A;
}

/* ---------- portal fragment: suggestion, not a product tour ---------- */
.portal-frag{
  margin:clamp(2.4rem,7vh,4rem) 0 0;max-width:min(34rem,92vw);
  border:1px solid var(--rule-inv);background:rgba(255,255,255,.03);
}
.pf-bar{display:flex;gap:.45rem;padding:.85rem 1.1rem;border-bottom:1px solid var(--rule-inv)}
.pf-bar i{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.22)}
.pf-body{padding:.2rem 1.1rem .9rem}
.pf-row{display:flex;justify-content:space-between;align-items:baseline;gap:1.5rem;
  padding:.9rem 0;border-bottom:1px solid var(--rule-inv)}
.pf-row:last-child{border-bottom:0}
.pf-k{font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--grey-dk);flex:0 0 auto}
.pf-v{font-size:.92rem;color:#fff;text-align:right}
.pf-act .pf-v{border-bottom:1px solid rgba(255,255,255,.45);padding-bottom:.2rem}

/* ---------- vehicles page gallery ---------- */
.plate-grid{
  list-style:none;margin:0 0 clamp(2.5rem,7vh,4rem);padding:0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:clamp(2rem,5vw,3.5rem);align-items:center;
}
.plate-grid img{width:100%;height:auto;filter:drop-shadow(0 18px 28px rgba(10,10,10,.10))}
.interlude .cats li{color:var(--ink)}

/* ---------- collection page: the pair, side by side ---------- */
.pair{margin:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:clamp(.9rem,2.2vw,1.6rem)}
.pair img{width:100%;height:auto;display:block}
.pair figcaption{grid-column:1/-1;margin-top:.9rem;color:var(--grey-dk)}

/* ---------- reduced motion / no JS ---------- */
@media (prefers-reduced-motion:reduce){
  .daynight .stage{display:block;padding:clamp(3rem,10vh,6rem) 0}
  .dn-media{position:relative;inset:auto;top:auto;bottom:auto;aspect-ratio:1511/1000;transform:none!important}
  .dn-media img{object-fit:cover}
  .dn-night{opacity:1}          /* show the night frame; it is the end of the story */
  .dn-scrim{display:none}
  .dn-copy{position:static;padding:clamp(2rem,6vh,3rem) var(--gut) 0}
  .dn-copy .beat{padding:0!important}
}
.no-js .daynight .stage{display:block;padding:3rem 0}
.no-js .dn-media{position:relative;inset:auto;aspect-ratio:1511/1000}
.no-js .dn-night{opacity:1}
.no-js .dn-scrim{display:none}
.no-js .dn-copy{position:static;padding:2rem var(--gut) 0}

/* the copy has to live in the lower band of the frame: the vehicle carries its
   own wordmark across the middle, and running headline type through it reads
   as a collision rather than a layer */
.dn-copy .t-l{font-size:clamp(1.7rem,5.2vw,4rem);line-height:.92;letter-spacing:-.042em}
.dn-copy .beat > *{max-width:min(32rem,46vw)}
.daynight .beat.lower{padding-bottom:12vh}
@media (max-width:900px){
  .dn-copy .t-l{font-size:clamp(1.6rem,7.6vw,2.6rem)}
  .dn-copy .beat > *{max-width:100%}
  .daynight .beat.lower{padding-bottom:16vh}
}

/* ============================================================
   PRICING — editorial rows, not tiers. No badges, no strikethroughs.
   ============================================================ */
.intro-price{
  margin:clamp(1.1rem,3vh,1.8rem) 0 0;
  font-size:1rem;letter-spacing:-.005em;color:#A8A8A8;
}

.prices{margin:clamp(2.6rem,7vh,4.5rem) 0 0;border-top:1px solid var(--rule-inv)}
.price-row{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);
  gap:clamp(.6rem,2.5vw,3rem) clamp(1.5rem,4vw,4rem);
  padding:clamp(1.7rem,4.5vh,3rem) 0;border-bottom:1px solid var(--rule-inv);
  align-items:start;
}
.price-row h3{
  margin:0;font-size:clamp(1.1rem,2.4vw,1.6rem);font-weight:600;
  letter-spacing:-.025em;line-height:1.15;
}
.price-row .price{
  grid-column:1;margin:.5rem 0 0;
  font-size:clamp(1.9rem,4.6vw,3.3rem);font-weight:700;letter-spacing:-.04em;line-height:1;
}
.price-row .price span{font-size:.4em;font-weight:400;letter-spacing:-.01em;color:var(--grey-dk)}
.price-row .price.talk{font-size:clamp(1.5rem,3.4vw,2.4rem);font-weight:600}
.price-row .note{grid-column:2;grid-row:1/span 2;margin:0;color:#B8B8B8;max-width:46ch}
.price-row .incl{
  grid-column:2;margin:clamp(1rem,2.5vh,1.5rem) 0 0;padding:0;list-style:none;
  columns:2;column-gap:2rem;
}
.price-row .incl li{
  padding:.4rem 0;font-size:.88rem;color:#B8B8B8;break-inside:avoid;
  border-bottom:1px solid var(--rule-inv);
}
.price-foot{
  margin:clamp(1.4rem,4vh,2.2rem) 0 0;max-width:52ch;
  font-size:.86rem;line-height:1.6;color:var(--grey-dk);
}

.value-notes{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:clamp(2rem,5vw,4rem);
  margin:clamp(3.2rem,9vh,5.5rem) 0 0;
  padding-top:clamp(2rem,5vh,3rem);border-top:1px solid var(--rule-inv);
}
.value-notes h3{
  margin:0 0 .8rem;font-size:clamp(1.05rem,2.2vw,1.4rem);font-weight:600;
  letter-spacing:-.025em;line-height:1.2;
}
.value-notes p{margin:0;color:#B8B8B8;max-width:44ch}

.quote-cta{margin:clamp(3.2rem,9vh,5.5rem) 0 0}
.quote-cta .t-l{margin:0}
.quote-cta .t-s{margin:clamp(.9rem,2.5vh,1.4rem) 0 0;color:#B8B8B8}
.quote-cta .cta-link{margin-top:clamp(1.6rem,4vh,2.4rem)}

/* the same rows read on white for the storage page */
.light-zone .prices,.light-zone .price-row,.light-zone .value-notes{border-color:var(--rule)}
.light-zone .price-row .note,.light-zone .price-row .incl li,.light-zone .value-notes p{color:#4A4A4A}
.light-zone .price-row .incl li{border-color:var(--rule)}

@media (max-width:760px){
  .price-row{grid-template-columns:minmax(0,1fr)}
  .price-row .note{grid-column:1;grid-row:auto;margin-top:.7rem}
  .price-row .incl{grid-column:1;columns:1}
}

/* the unit set smaller than the figure — keeps the statement to two lines at
   every width and reads better than "£165 / MONTH." all at one size */
.per{font-size:.36em;font-weight:400;letter-spacing:-.01em;text-transform:lowercase;
  color:var(--grey-dk);white-space:nowrap}
.light-zone .per{color:var(--grey)}

/* smallest phones: let the big statements come down far enough to hold their
   intended line breaks */
.cta h2{font-size:clamp(2rem,9.8vw,9.5rem)}
.quote-cta .t-l{font-size:clamp(1.75rem,6.2vw,3.4rem)}

/* ---------- the philosophy statement ----------
   The emphasis is deliberately lopsided: "Not the" is the heavy word, and
   PROFIT OF SPACE is set light and ruled through — the sentence rejects it,
   so the typography should too. Remove `struck` from the class to keep the
   light weight without the rule. */
.philosophy-v4 .not-the{
  font-weight:700;color:var(--ink);letter-spacing:-.02em;
}
.philosophy-v4 .profit{
  font-weight:200;letter-spacing:-.038em;
}
.philosophy-v4 .profit.struck{
  text-decoration:line-through;
  text-decoration-thickness:.045em;
  text-decoration-color:var(--ink);
  text-decoration-skip-ink:none;
}

/* ---------- reviews ---------- */
.revs{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:clamp(2rem,5vw,4rem);border-top:1px solid var(--rule-inv);padding-top:clamp(2rem,5vh,3rem)}
.rev{margin:0}
.rev blockquote{margin:0}
.rev blockquote p{margin:0;font-size:clamp(1.05rem,2vw,1.3rem);font-weight:400;
  letter-spacing:-.018em;line-height:1.42;color:#fff}
.rev blockquote p::before{content:'\\201C'}
.rev blockquote p::after{content:'\\201D'}
.rev figcaption{margin-top:clamp(1rem,2.5vh,1.5rem);font-size:.66rem;letter-spacing:.2em;
  text-transform:uppercase;color:#fff}
.rev figcaption span{display:block;margin-top:.4rem;color:var(--grey-dk);letter-spacing:.14em}
