/* ═══════════════════════════════════════════════════════════════
   SQUEEZE RENTALS — design system
   Palette: near-black / dark grey / warm white. No accent color.
   Type: Anton (display) · Inter Tight (body) · IBM Plex Mono (labels)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #070708;
  --panel: #0e0e10;
  --panel-2: #131316;
  --ink: #f2f2f0;
  --mut: #8b8b90;
  --dim: #55555a;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.18);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Inter Tight", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(20px, 4vw, 64px);
  --hdr-h: 74px;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background: var(--bg);
  scrollbar-width: thin;
  scrollbar-color: #2a2a2e transparent;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--ink); color: var(--bg); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #232327; border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-track { background: transparent; }

/* ── primitives ─────────────────────────────────────────────── */

.container { padding-left: var(--pad); padding-right: var(--pad); }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mut);
}
.label::before { content: "▪ "; font-size: 8px; vertical-align: 2px; color: var(--dim); }
.label.no-tick::before { content: none; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 242, 240, 0.5);
}

.hairline { border: 0; border-top: 1px solid var(--line); }

/* buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--ink);
  border-radius: inherit;
  transform: translateY(102%);
  transition: transform 0.55s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--bg); border-color: var(--ink); }
.btn:hover::after { transform: translateY(0); }
.btn .arr { font-family: var(--font-body); font-size: 14px; line-height: 1; transition: transform 0.45s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn.solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.solid::after { background: var(--bg); }
.btn.solid:hover { color: var(--ink); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  position: relative;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--line-2);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease);
}
.btn-ghost:hover::before { transform: scaleX(1); transform-origin: left; }

/* media reveal + parallax wrappers */
.media {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.media > img, .media > video, .media > canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-clip] { clip-path: inset(0 0 100% 0); }
[data-parallax] > img { will-change: transform; transform: scale(1.12); }

/* ── cursor ─────────────────────────────────────────────────── */

.cursor { position: fixed; inset: 0; pointer-events: none; z-index: 400; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot {
  position: absolute; top: -3px; left: -3px;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
}
.cursor-ring {
  position: absolute; top: -22px; left: -22px;
  width: 44px; height: 44px;
  border: 1px solid rgba(242, 242, 240, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 7, 8, 0);
  transition: background 0.3s;
}
.cursor.is-label .cursor-ring { background: rgba(7, 7, 8, 0.75); border-color: var(--ink); }
.cursor-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s;
}
.cursor.is-label .cursor-label { opacity: 1; }

/* ── header ─────────────────────────────────────────────────── */

.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  z-index: 120;
  transition: background 0.5s, backdrop-filter 0.5s;
}
.hdr::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease);
}
.hdr.is-solid { background: rgba(7, 7, 8, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.hdr.is-solid::after { transform: scaleX(1); }

.hdr-brand {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.hdr-brand small {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.3em;
  color: var(--mut);
}

.hdr-nav { display: flex; align-items: center; gap: 36px; }
.hdr-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mut);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.hdr-link:hover, .hdr-link.is-active { color: var(--ink); }
.hdr-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.hdr-link:hover::after, .hdr-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.hdr-cta { padding: 12px 24px; }

.burger {
  display: block;
  width: 44px; height: 44px;
  position: relative;
  z-index: 130;
}
.burger span {
  position: absolute;
  left: 10px;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.45s var(--ease), top 0.45s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }
body.menu-open .burger span:nth-child(1) { top: 21.5px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { top: 21.5px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .hdr-nav .hdr-link { display: none; }
}

/* ── overlay menu ───────────────────────────────────────────── */

.menu {
  position: fixed;
  inset: 0;
  z-index: 125;
  visibility: hidden;
  pointer-events: none;
}
.menu.is-open { visibility: visible; pointer-events: auto; }
.menu-cols { position: absolute; inset: 0; display: flex; }
.menu-col { flex: 1; background: #0b0b0d; transform: scaleY(0); transform-origin: top; }
.menu-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: calc(var(--hdr-h) + 4vh) var(--pad) 6vh;
  gap: 5vw;
  opacity: 0;
}
.menu-links { display: flex; flex-direction: column; gap: 1vh; }
.menu-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vh, 76px);
  text-transform: uppercase;
  line-height: 1.04;
  color: var(--ink);
  width: fit-content;
  overflow: hidden;
}
.menu-link em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dim);
}
.menu-link span { display: inline-block; transition: transform 0.5s var(--ease), color 0.3s; }
.menu-link:hover span { transform: translateX(12px); }
.menu-link.is-dim span { color: var(--dim); }
.menu-preview {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel);
  display: none;
}
@media (min-width: 961px) { .menu-preview { display: block; } }
.menu-preview img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.5s, transform 0.8s var(--ease);
}
.menu-preview img.is-on { opacity: 1; transform: scale(1); }
.menu-meta {
  position: absolute;
  left: var(--pad); right: var(--pad); bottom: 4vh;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── page wipe transition ───────────────────────────────────── */

.wipe { position: fixed; inset: 0; z-index: 300; display: flex; pointer-events: none; }
.wipe-col { flex: 1; background: #101013; transform: translateY(101%); }
html[data-wipe] .wipe-col { transform: translateY(0); }

/* ── preloader (home) ───────────────────────────────────────── */

.loader { position: fixed; inset: 0; z-index: 350; background: transparent; }
.loader-half {
  position: absolute;
  left: 0; right: 0;
  height: 50.5%;
  background: #060607;
  overflow: hidden;
}
.loader-half.top { top: 0; }
.loader-half.bot { bottom: 0; }
.loader-word {
  position: absolute;
  left: 0; width: 100%;
  display: flex;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(70px, 17vw, 240px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  user-select: none;
}
/* the word straddles the seam: top half shows upper part, bottom half lower */
.loader-half.top .loader-word { bottom: 0; transform: translateY(50%); }
.loader-half.bot .loader-word { top: 0; transform: translateY(-50%); }
.loader-meta {
  position: absolute;
  left: var(--pad); right: var(--pad);
  bottom: calc(50% + 12vh);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mut);
}
.loader-count {
  position: absolute;
  right: var(--pad);
  top: calc(50% + 10vh);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--mut);
}
.loader-line {
  position: absolute;
  left: 0; top: 50%;
  width: 100%; height: 1px;
  background: rgba(242, 242, 240, 0.25);
  transform: scaleX(0);
  transform-origin: left;
}

/* ── home hero ──────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}
.hero-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.hero-media.show-still .hero-still {
  opacity: 1;
  animation: kenburns 16s ease-in-out infinite alternate;
}
.hero-media.show-still video { visibility: hidden; }
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,8,0.92) 0%, rgba(7,7,8,0.25) 34%, rgba(7,7,8,0.15) 60%, rgba(7,7,8,0.55) 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad) 4.5vh;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5vh;
}
.hero-title {
  font-size: clamp(72px, 14.5vw, 250px);
  margin-left: -0.04em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-under {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 3vh;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-tag { max-width: 380px; color: var(--mut); font-size: 15px; }
.hero-tag strong { color: var(--ink); font-weight: 500; }
.hero-stats { display: flex; gap: clamp(20px, 3vw, 48px); }
.hero-stat { text-align: right; }
.hero-stat b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.2vw, 30px); letter-spacing: 0.03em; }
.hero-stat i { font-style: normal; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mut); }
.scrollcue {
  position: absolute;
  right: var(--pad);
  top: calc(var(--hdr-h) + 5vh);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mut);
  writing-mode: vertical-rl;
}
.scrollcue::after {
  content: "";
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── section scaffolding ────────────────────────────────────── */

.sect { padding: clamp(90px, 12vh, 150px) var(--pad); position: relative; }
.sect-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: clamp(40px, 7vh, 80px);
}
.sect-title { font-size: clamp(44px, 7vw, 110px); }
.sect-title .dim { color: var(--dim); }
.sect-note { max-width: 300px; color: var(--mut); font-size: 14px; padding-bottom: 10px; }

/* ── arrival (scroll-scrub film) ────────────────────────────── */

.arrival { position: relative; background: #050506; }
.arrival-stage { position: relative; height: 100svh; overflow: hidden; }
.arrival-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.arrival-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 90% at 50% 50%, transparent 55%, rgba(5,5,6,0.55) 100%);
  pointer-events: none;
}
.arrival-cap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 var(--pad);
  opacity: 0;
  pointer-events: none;
}
.arrival-cap h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 104px);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
}
.arrival-cap .label { display: block; margin-bottom: 14px; color: rgba(242,242,240,0.7); }
.arrival-hud {
  position: absolute;
  left: var(--pad); right: var(--pad); bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 242, 240, 0.55);
}
.arrival-track { flex: 1; height: 1px; background: rgba(255,255,255,0.14); position: relative; }
.arrival-track i {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}
.arrival-load {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #050506;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mut);
  transition: opacity 0.6s;
}
.arrival-load.is-done { opacity: 0; pointer-events: none; }

/* ── fleet preview rows (home) ──────────────────────────────── */

.fp { display: flex; flex-direction: column; gap: clamp(70px, 11vh, 130px); }
.fp-item {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.5vw, 40px);
  align-items: end;
  text-decoration: none;
}
.fp-media { grid-column: 1 / 8; aspect-ratio: 16 / 10; }
.fp-item:nth-child(even) .fp-media { grid-column: 6 / 13; order: 2; }
.fp-media img { transition: filter 0.6s; filter: brightness(0.92); }
.fp-item:hover .fp-media img { filter: brightness(1.05); }
.fp-body { grid-column: 8 / 13; padding-bottom: 8px; }
.fp-item:nth-child(even) .fp-body { grid-column: 1 / 6; order: 1; text-align: right; }
.fp-item:nth-child(even) .fp-specs { justify-content: flex-end; }
.fp-idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; color: var(--dim); }
.fp-name {
  font-size: clamp(40px, 4.6vw, 76px);
  margin: 14px 0 6px;
  transition: letter-spacing 0.6s var(--ease);
}
.fp-item:hover .fp-name { letter-spacing: 0.03em; }
.fp-sub { color: var(--mut); font-size: 14.5px; margin-bottom: 20px; }
.fp-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mut);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
}

/* R8 tease band */
.tease {
  margin-top: clamp(70px, 11vh, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(28px, 4vh, 48px) 0;
}
.tease-media { aspect-ratio: 21 / 9; }
.tease-media img { filter: brightness(0.85); }
.tease-kick { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(242,242,240,0.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(0.4); opacity: 1; }
  to { transform: scale(1.6); opacity: 0; }
}
.tease-title { font-size: clamp(34px, 4vw, 62px); margin-bottom: 12px; }
.tease-copy { color: var(--mut); font-size: 14.5px; max-width: 420px; margin-bottom: 24px; }

/* ── stats band ─────────────────────────────────────────────── */

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(36px, 5vh, 60px) clamp(18px, 2.5vw, 40px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.stat b sup { font-size: 0.45em; vertical-align: 0.7em; letter-spacing: 0; }
.stat i { font-style: normal; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mut); }

/* ── the standard — pinned image stack (home) ───────────────── */

.std-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: start;
}
.std-left { display: flex; flex-direction: column; }
.std-item {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.std-item:first-child { border-top: 0; }
.std-item em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--dim);
  display: block;
  margin-bottom: 18px;
}
.std-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.std-item p { color: var(--mut); font-size: 15.5px; max-width: 42ch; }
.std-item-media { display: none; }

.std-right { height: 100vh; display: flex; align-items: center; }
.std-stack {
  position: relative;
  width: 100%;
  height: min(78vh, 860px);
  overflow: hidden;
  border-radius: 4px;
  background: var(--panel);
}
.std-img { position: absolute; inset: 0; }
.std-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: clip-path, object-position;
}
.std-count {
  position: absolute;
  right: 18px; bottom: 14px;
  z-index: 20;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgba(242, 242, 240, 0.75);
  background: rgba(7, 7, 8, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 999px;
  display: flex;
  gap: 4px;
}
.std-count b { font-weight: 400; color: var(--ink); }

@media (max-width: 860px) {
  .std-grid { grid-template-columns: 1fr; }
  .std-right { display: none; }
  .std-item { min-height: 0; padding: 34px 0; }
  .std-item-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 22px;
    background: var(--panel);
  }
  .std-item-media img { width: 100%; height: 100%; object-fit: cover; }
}

/* ── experience teaser (home) ───────────────────────────────── */

.expt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.expt-media { aspect-ratio: 4 / 3; }
.expt h2 { font-size: clamp(38px, 4.6vw, 74px); margin: 18px 0 20px; }
.expt p { color: var(--mut); max-width: 46ch; margin-bottom: 30px; }
.expt-list { list-style: none; margin: 0 0 34px; }
.expt-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.expt-list li span:last-child { color: var(--mut); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

/* ── marquee ────────────────────────────────────────────────── */

.mq {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 3.2vh, 36px) 0;
  overflow: hidden;
  white-space: nowrap;
}
.mq-track { display: inline-flex; will-change: transform; }
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
  padding-right: clamp(28px, 3.5vw, 56px);
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 100px);
  line-height: 1;
  text-transform: uppercase;
}
.mq-item .o { color: transparent; -webkit-text-stroke: 1px rgba(242,242,240,0.45); }
.mq-item .dot { width: 10px; height: 10px; background: var(--ink); border-radius: 50%; flex: none; }

/* ── CTA band ───────────────────────────────────────────────── */

.cta {
  position: relative;
  text-align: center;
  padding: clamp(110px, 16vh, 190px) var(--pad);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 110%, rgba(255,255,255,0.07), transparent 60%);
  pointer-events: none;
}
.cta .label { display: block; margin-bottom: 22px; }
.cta-title { font-size: clamp(52px, 9vw, 150px); margin-bottom: 40px; }
.cta-title .dim { color: var(--dim); }
.cta-sub { color: var(--mut); font-size: 14px; margin-top: 26px; font-family: var(--font-mono); letter-spacing: 0.1em; }

/* ── footer ─────────────────────────────────────────────────── */

.ftr { border-top: 1px solid var(--line); padding: 0 var(--pad); background: #060607; }
.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(26px, 4vw, 60px);
  padding: clamp(50px, 8vh, 90px) 0 60px;
}
.ftr h5 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}
.ftr-col a, .ftr-col p { display: block; color: var(--mut); font-size: 14px; padding: 5px 0; transition: color 0.3s, transform 0.3s; }
.ftr-col a:hover { color: var(--ink); transform: translateX(4px); }
.ftr-pitch { color: var(--mut); font-size: 14.5px; max-width: 34ch; }
.ftr-pitch strong { color: var(--ink); font-weight: 500; }
.ftr-mark-wrap { overflow: hidden; padding-bottom: clamp(6px, 1vw, 14px); }
.ftr-mark {
  font-family: var(--font-display);
  font-size: clamp(70px, 16.5vw, 300px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-align: center;
  color: #1a1a1e;
  user-select: none;
  display: block;
}
.ftr-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
.ftr-legal a:hover { color: var(--ink); }

/* ── inner page hero ────────────────────────────────────────── */

.phero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--hdr-h) + 8vh) var(--pad) 5vh;
}
.phero.tall { min-height: 100svh; }
.phero-media { position: absolute; inset: 0; }
.phero-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62); transform: scale(1.08); }
.phero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,8,0.95) 4%, rgba(7,7,8,0.2) 45%, rgba(7,7,8,0.5) 100%);
}
.phero-body { position: relative; z-index: 2; width: 100%; }
.phero-title { font-size: clamp(58px, 11.5vw, 200px); margin-left: -0.04em; }
.phero-title .line { display: block; overflow: hidden; }
.phero-title .line > span { display: inline-block; }
.phero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 3vh;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.phero-row p { color: rgba(242,242,240,0.75); max-width: 460px; font-size: 15px; }

/* breadcrumb-ish kicker */
.kick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,242,240,0.65);
  margin-bottom: 3vh;
}
.kick a { color: inherit; transition: color 0.3s; }
.kick a:hover { color: var(--ink); }
.kick .sep { color: var(--dim); }

/* ── fleet page stack cards ─────────────────────────────────── */

.stack { display: flex; flex-direction: column; gap: 24px; }
.stack-card {
  position: sticky;
  top: calc(var(--hdr-h) + 18px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: min(74vh, 700px);
}
.stack-media { position: relative; overflow: hidden; }
.stack-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stack-body {
  padding: clamp(26px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.stack-idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; color: var(--dim); margin-bottom: auto; }
.stack-name { font-size: clamp(34px, 3.6vw, 60px); margin: 26px 0 8px; }
.stack-sub { color: var(--mut); font-size: 14.5px; margin-bottom: 24px; }
.stack-specs { border-top: 1px solid var(--line); margin-bottom: 30px; }
.stack-specs div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.stack-specs dt { color: var(--dim); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; align-self: center; }
.stack-specs dd { color: var(--ink); font-weight: 400; }

/* ── car detail pages ───────────────────────────────────────── */

.quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick div { padding: clamp(26px, 4vh, 44px) clamp(16px, 2vw, 34px); border-left: 1px solid var(--line); }
.quick div:first-child { border-left: 0; }
.quick b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 3.6vw, 58px); line-height: 1; margin-bottom: 10px; }
.quick b sup { font-size: 0.42em; vertical-align: 0.8em; }
.quick i { font-style: normal; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mut); }

.car-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
}
.car-story p { font-size: clamp(18px, 1.6vw, 23px); font-weight: 300; line-height: 1.55; color: #d9d9d8; }
.car-story p + p { margin-top: 1.2em; color: var(--mut); font-size: 15.5px; }
.car-facts { border-top: 1px solid var(--line); position: sticky; top: calc(var(--hdr-h) + 24px); }
.car-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.car-facts dt { color: var(--dim); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; align-self: center; white-space: nowrap; }
.car-facts dd { text-align: right; }

.gal {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(18px, 2.5vw, 40px);
  align-items: end;
}
.gal .media { aspect-ratio: 4 / 3; }
.gal .media.short { aspect-ratio: 4 / 3.6; }
.gal figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 12px;
}

.rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.rate {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--panel);
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.rate:hover { border-color: var(--line-2); transform: translateY(-4px); }
.rate h4 { font-family: var(--font-mono); font-weight: 500; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mut); margin-bottom: 22px; }
.rate b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 2.6vw, 40px); text-transform: uppercase; line-height: 1; margin-bottom: 10px; }
.rate p { color: var(--mut); font-size: 13px; }

.nextcar {
  position: relative;
  display: block;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.nextcar-media { position: absolute; inset: 0; }
.nextcar-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); transform: scale(1.05); transition: filter 0.7s, transform 1.2s var(--ease); }
.nextcar:hover .nextcar-media img { filter: brightness(0.6); transform: scale(1); }
.nextcar-body {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 13vh, 150px) var(--pad);
  text-align: center;
}
.nextcar-body .label { display: block; margin-bottom: 18px; }
.nextcar-title { font-size: clamp(48px, 8.5vw, 140px); transition: letter-spacing 0.7s var(--ease); }
.nextcar:hover .nextcar-title { letter-spacing: 0.04em; }

/* ── experience page ────────────────────────────────────────── */

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr 1.4fr;
  gap: clamp(18px, 3vw, 50px);
  padding: clamp(34px, 5vh, 56px) 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 72px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,242,240,0.4);
}
.step h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 2.6vw, 42px); text-transform: uppercase; line-height: 1; }
.step p { color: var(--mut); font-size: 15px; max-width: 56ch; }

.standards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.standard {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  padding: clamp(24px, 3vw, 40px);
}
.standard .idx { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--dim); display: block; margin-bottom: 40px; }
.standard h4 { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 1.9vw, 28px); text-transform: uppercase; margin-bottom: 12px; }
.standard p { color: var(--mut); font-size: 14px; }

.faq { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; width: 15px; height: 15px; flex: none; }
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  background: var(--mut);
  transition: transform 0.4s var(--ease);
}
.faq-x::before { left: 0; top: 7px; width: 15px; height: 1px; }
.faq-x::after { left: 7px; top: 0; width: 1px; height: 15px; }
.faq-item[open] .faq-x::after { transform: scaleY(0); }
.faq-item p { color: var(--mut); font-size: 15px; padding: 0 0 26px; max-width: 64ch; }

/* ── contact page ───────────────────────────────────────────── */

.book {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.book-rail .media { aspect-ratio: 4 / 3; margin-bottom: 34px; }
.book-rail h5 { font-family: var(--font-mono); font-weight: 500; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--dim); margin: 26px 0 8px; }
.book-rail a.big, .book-rail p.big { font-size: clamp(17px, 1.5vw, 21px); font-weight: 300; color: var(--ink); }
.book-rail a.big:hover { color: var(--mut); }

.field { position: relative; margin-bottom: 8px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 18px 0 2px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  padding: 10px 0 14px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.4s;
  appearance: none;
  -webkit-appearance: none;
}
.field select { cursor: pointer; }
.field select option { background: var(--panel); color: var(--ink); }
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field.has-err input, .field.has-err select { border-color: #a4553f; }
.field .err { position: absolute; right: 0; top: 22px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: #c4664c; opacity: 0; transition: opacity 0.3s; }
.field.has-err .err { opacity: 1; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.field .chev {
  position: absolute;
  right: 2px; bottom: 20px;
  pointer-events: none;
  color: var(--dim);
  font-size: 11px;
}
.book-form .btn { margin-top: 36px; }
.form-note { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-top: 20px; }

.success { display: none; padding: clamp(30px, 5vh, 60px) 0; }
.success.is-on { display: block; }
.success .big-check {
  width: 64px; height: 64px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  font-size: 22px;
}
.success h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 3.6vw, 54px); text-transform: uppercase; line-height: 1; margin-bottom: 14px; }
.success p { color: var(--mut); max-width: 46ch; }

/* ── R8 page ────────────────────────────────────────────────── */

.r8-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--hdr-h) + 6vh) var(--pad) 10vh;
}
.r8-bg { position: absolute; inset: 0; }
.r8-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.r8-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,7,8,0.94) 25%, rgba(7,7,8,0.35) 70%, rgba(7,7,8,0.6)); }
.r8-body { position: relative; z-index: 2; max-width: 640px; }
.r8-title { font-size: clamp(90px, 17vw, 280px); line-height: 0.85; margin: 18px 0 22px; margin-left: -0.05em; }
.r8-copy { color: var(--mut); font-size: 16px; max-width: 44ch; margin-bottom: 38px; }
.r8-copy strong { color: var(--ink); font-weight: 500; }
.notify { display: flex; gap: 0; max-width: 460px; border-bottom: 1px solid var(--line-2); }
.notify input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  padding: 15px 0;
}
.notify input::placeholder { color: var(--dim); }
.notify button {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 8px;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.notify button:hover { opacity: 0.6; }
.r8-specrow { display: flex; gap: clamp(24px, 4vw, 60px); margin-top: 7vh; }
.r8-specrow div b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.4vw, 36px); }
.r8-specrow div i { font-style: normal; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mut); }

/* ── reveal helpers ─────────────────────────────────────────── */

.sp-line { display: block; overflow: hidden; }
.sp-line > span { display: inline-block; will-change: transform; }
[data-fade] { opacity: 0; transform: translateY(28px); }
html.no-motion [data-fade] { opacity: 1; transform: none; }
html.no-motion [data-clip] { clip-path: none; }
html.no-motion [data-parallax] > img { transform: none; }

/* ── responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .stack-card { grid-template-columns: 1fr; min-height: 0; }
  .stack-media { aspect-ratio: 16 / 9; position: relative; }
  .stack-body { border-left: 0; border-top: 1px solid var(--line); }
  .book { grid-template-columns: 1fr; }
  .car-grid { grid-template-columns: 1fr; }
  .car-facts { position: static; }
}

@media (max-width: 860px) {
  .menu-inner { grid-template-columns: 1fr; }
  .fp-item, .fp-item:nth-child(even) { grid-template-columns: 1fr; }
  .fp-media, .fp-item:nth-child(even) .fp-media { grid-column: 1 / -1; order: 0; aspect-ratio: 16 / 10; }
  .fp-body, .fp-item:nth-child(even) .fp-body { grid-column: 1 / -1; order: 0; text-align: left; }
  .fp-item:nth-child(even) .fp-specs { justify-content: flex-start; }
  .tease { grid-template-columns: 1fr; }
  .expt { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .quick { grid-template-columns: 1fr 1fr; }
  .quick div:nth-child(3) { border-left: 0; }
  .quick div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .gal { grid-template-columns: 1fr; }
  .gal .media.short { aspect-ratio: 4 / 3; }
  .rates { grid-template-columns: 1fr; }
  .standards { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; }
  .step p { grid-column: 2; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .hero-under { flex-direction: column; align-items: flex-start; }
  .hero-stats { width: 100%; justify-content: space-between; }
  .hero-stat { text-align: left; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .scrollcue { display: none; }
}

@media (max-width: 560px) {
  .hdr-cta { display: none; }
  .sect-head { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* motion sanity */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
