/* ==========================================================================
   Belgrave Nine
   Obsidian ground, didone display, racing green accent.
   Sharp corners everywhere. Colour comes from the cars.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  --obsidian: #0B0C0E;
  --raised: #121416;
  --raised-2: #171A1D;
  --platinum: #E8EAEB;
  --pewter: #8B9196;
  --pewter-dim: #676C71;
  --hairline: #22262A;
  --hairline-soft: #191C1F;

  --green: #2F7A57;
  --green-lit: #4FB183;
  --green-deep: #245F44;

  --scrim: linear-gradient(180deg, rgba(11, 12, 14, 0.72) 0%, rgba(11, 12, 14, 0.34) 34%, rgba(11, 12, 14, 0.86) 100%);
  --scrim-soft: linear-gradient(180deg, rgba(11, 12, 14, 0.5) 0%, rgba(11, 12, 14, 0.2) 45%, rgba(11, 12, 14, 0.8) 100%);

  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1320px;
  --wrap-tight: 1040px;
  --gutter: clamp(1.5rem, 4vw, 4.5rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--platinum);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, figure, p, ul, ol, dl, dd, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  margin: 0;
}
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--green-lit);
  outline-offset: 3px;
}

::selection {
  background: var(--green);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.9rem 1.4rem;
  background: var(--platinum);
  color: var(--obsidian);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-optical-sizing: auto;
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

/* Pages without a photographic hero carry their h1 at h2 scale */
.page-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 600;
  line-height: 1.14;
}

h4 {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

p { max-width: 66ch; }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.62;
  color: var(--pewter);
  font-weight: 400;
}

.body-lg {
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--pewter);
}

.muted { color: var(--pewter); }
.dim { color: var(--pewter-dim); }

.label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-lit);
}

.label-quiet {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pewter-dim);
}

.numeral {
  font-family: var(--display);
  font-weight: 500;
  font-variant-numeric: lining-nums;
  letter-spacing: 0.02em;
}

.text-link {
  display: inline-block;
  position: relative;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--platinum);
  padding-bottom: 0.35rem;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--green);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(0.35);
  transform-origin: right;
  background: var(--green-lit);
}

.inline-link {
  color: var(--green-lit);
  border-bottom: 1px solid rgba(79, 177, 131, 0.4);
  transition: border-color 0.25s;
}
.inline-link:hover { border-color: var(--green-lit); }

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.wrap-tight {
  width: 100%;
  max-width: var(--wrap-tight);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4.5rem, 10vw, 9rem);
}

.section-sm { padding-block: clamp(3.5rem, 7vw, 6rem); }

.section-head {
  max-width: 42ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 { margin-bottom: 1.1rem; }
.section-head .label,
.section-head .label-quiet { margin-bottom: 1.1rem; }

.rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}

.rule-green {
  height: 1px;
  width: 64px;
  background: var(--green);
  border: 0;
  margin: 0 0 1.6rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  background: var(--green);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--green);
  transition: background 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), transform 0.15s var(--ease-soft);
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn:active { transform: translateY(1px); }

.btn-ghost {
  background: transparent;
  color: var(--platinum);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover {
  background: rgba(232, 234, 235, 0.05);
  border-color: var(--pewter-dim);
}

.btn-ghost-light {
  background: rgba(11, 12, 14, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--platinum);
  border: 1px solid rgba(232, 234, 235, 0.32);
}
.btn-ghost-light:hover {
  background: rgba(11, 12, 14, 0.6);
  border-color: rgba(232, 234, 235, 0.6);
}

.btn-sm { padding: 0.8rem 1.5rem; font-size: 0.7rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft), backdrop-filter 0.4s;
}
.site-header.scrolled,
.site-header.mega-open,
.site-header.drawer-open {
  background: rgba(11, 12, 14, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.site-header.solid {
  background: var(--obsidian);
  border-bottom-color: var(--hairline);
}

.header-bar {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.6vw, 1.6rem);
}

.mega-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.25rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--platinum);
  white-space: nowrap;
  transition: color 0.25s;
}
.mega-trigger:hover,
.nav-link:hover,
.mega-trigger[aria-expanded="true"] { color: var(--green-lit); }

.caret {
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.3s var(--ease);
}
.mega-trigger[aria-expanded="true"] .caret {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1.5rem;
  margin-left: 0.5rem;
  border: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), color 0.3s;
}
.nav-cta:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--platinum);
  transition: transform 0.35s var(--ease), opacity 0.2s, width 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { width: 26px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 26px; }
.drawer-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.drawer-open .nav-toggle span:nth-child(2) { opacity: 0; }
.drawer-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 26px; }

/* --------------------------------------------------------------------------
   Mega panels
   -------------------------------------------------------------------------- */
.mega-panel {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: rgba(11, 12, 14, 0.985);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--hairline);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease), visibility 0s linear 0.34s;
}
.mega-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

/* Racing-green hairline that draws across on open */
.mega-panel::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  height: 1px; width: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.mega-panel.open::before { transform: scaleX(1); }

.mega-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(2.2rem, 3.6vw, 3.4rem) var(--gutter) clamp(2.6rem, 4vw, 3.8rem);
  display: grid;
  grid-template-columns: minmax(0, 238px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: start;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}

/* --------------------------------------------------------------------------
   Mega panel: the hangar line

   The cars are parked nose in, as they are in the hangar. Each bay is a
   narrow sliver of photograph; running along the line opens one at a time.
   -------------------------------------------------------------------------- */
.bay-head { min-width: 0; }
.bay-head h3 {
  font-size: 1.7rem;
  margin-bottom: 0.85rem;
}
.bay-head p {
  font-size: 0.9rem;
  line-height: 1.66;
  color: var(--pewter);
  margin-bottom: 1.5rem;
}

.bay-line {
  display: flex;
  gap: 3px;
  min-width: 0;
  height: clamp(300px, 40vh, 424px);
}

.bay {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  background: var(--obsidian);
  transition: flex-grow 0.55s var(--ease);
}
.bay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The cars sit a little below centre in these frames, so the sliver lands
     on bodywork rather than sky or backdrop. */
  object-position: 50% 58%;
  transform: scale(1.06);
  filter: grayscale(0.6) brightness(0.46) saturate(0.7);
  transition: filter 0.55s var(--ease-soft), transform 0.9s var(--ease);
}
.bay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 14, 0.1) 30%, rgba(11, 12, 14, 0.92) 100%);
  pointer-events: none;
}
.bay-plate,
.bay-spine,
.bay-detail { position: absolute; z-index: 1; }

.bay-plate {
  top: 14px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--green-lit);
}
.bay-spine {
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  rotate: 180deg;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--platinum);
  transition: opacity 0.3s var(--ease-soft);
}

.bay-detail {
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: clamp(1rem, 1.6vw, 1.5rem);
  width: 300px;
  max-width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease);
}
.bay-marque {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pewter-dim);
}
.bay-name {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--platinum);
}
.bay-blurb {
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--pewter);
}
.bay-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 0.2rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--hairline);
}
.bay-spec,
.bay-rate {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bay-spec { color: var(--pewter-dim); }
.bay-rate { color: var(--green-lit); }

/* Open state, whether by pointer, focus or the default first bay */
.bay-line-9 .bay:hover,
.bay-line-9 .bay:focus-visible,
.bay-line-9 .bay.is-open { flex-grow: 8; }
.bay:hover .bay-img,
.bay:focus-visible .bay-img,
.bay.is-open .bay-img {
  filter: grayscale(0) brightness(0.82) saturate(1);
  transform: scale(1);
}
.bay:hover .bay-spine,
.bay:focus-visible .bay-spine,
.bay.is-open .bay-spine { opacity: 0; }
.bay:hover .bay-detail,
.bay:focus-visible .bay-detail,
.bay.is-open .bay-detail {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}
.bay:focus-visible { outline: 1px solid var(--green-lit); outline-offset: -1px; }

/* Three wide bays keep their captions on permanently */
.bay-line-3 .bay-detail {
  opacity: 1;
  transform: none;
  width: 100%;
}
/* Reserve two lines for the blurb so all three captions sit on the same
   baselines whether the sentence wraps once or twice. */
.bay-line-3 .bay-blurb {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 0.83rem * 1.5);
}
.bay-line-3 .bay:hover,
.bay-line-3 .bay:focus-visible { flex-grow: 1.35; }

@media (max-width: 1180px) {
  .bay-line { height: clamp(260px, 34vh, 340px); }
  .bay-spine { font-size: 0.9rem; }
  .bay-detail { width: 250px; }
}

/* --------------------------------------------------------------------------
   Mobile drawer
   -------------------------------------------------------------------------- */
.drawer {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 95;
  background: var(--obsidian);
  overflow-y: auto;
  padding: 1.5rem var(--gutter) 5rem;
}
.drawer-open .drawer { display: block; }

.drawer-group { border-bottom: 1px solid var(--hairline); }
.drawer-group > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
}
.drawer-group > button .caret {
  width: 8px; height: 8px;
  border-color: var(--pewter);
}
.drawer-group.open > button .caret { transform: rotate(225deg); }

.drawer-sub {
  display: none;
  padding-bottom: 1.4rem;
}
.drawer-group.open .drawer-sub { display: block; }
.drawer-sub a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  color: var(--pewter);
  font-size: 0.98rem;
}
.drawer-sub a:hover { color: var(--platinum); }
.drawer-sub a span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--pewter-dim);
  white-space: nowrap;
}

.drawer > a.drawer-flat {
  display: block;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}
.drawer .btn { margin-top: 2rem; }

.drawer-meta {
  margin-top: 2.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 2;
  color: var(--pewter-dim);
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.hero-page { min-height: 76vh; }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--scrim);
}

.hero-rake {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(3.5rem, 9vh, 7rem);
  padding-top: calc(var(--header-h) + 2rem);
}

.hero h1 { max-width: 15ch; }
.hero .lede {
  margin-top: 1.5rem;
  max-width: 46ch;
  color: rgba(232, 234, 235, 0.86);
}
.hero .label { margin-bottom: 1.4rem; }

.hero-figures {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(232, 234, 235, 0.14);
}
.hero-figures div { min-width: 0; }
.hero-figures b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-figures span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pewter);
}

/* Ken Burns on hero photography */
@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: kenburns 28s cubic-bezier(0.22, 0.4, 0.4, 1) both;
  }
}
@keyframes kenburns {
  from { transform: scale(1.11) translate(-0.9%, 0.7%); }
  to { transform: scale(1.01) translate(0, 0); }
}

/* Car hero variant: plate number sitting behind the title */
.hero-plate {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 8vh, 6rem);
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 15rem);
  font-weight: 700;
  line-height: 0.8;
  color: rgba(232, 234, 235, 0.07);
  pointer-events: none;
  user-select: none;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.4rem;
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 234, 235, 0.72);
}
.hero-meta .dot {
  width: 3px; height: 3px;
  background: var(--green-lit);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Statement block
   -------------------------------------------------------------------------- */
.statement {
  padding-block: clamp(5rem, 12vw, 11rem);
}
.statement-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.statement p.big {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.1vw, 2.5rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--platinum);
  max-width: 26ch;
}
.statement p.big em {
  font-style: italic;
  line-height: 1.16;
  padding-bottom: 0.08em;
  display: inline-block;
}
.statement .support {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding-top: 0.6rem;
}
.statement .support p { max-width: 52ch; }

/* --------------------------------------------------------------------------
   Figures band
   -------------------------------------------------------------------------- */
.figures {
  border-block: 1px solid var(--hairline);
  background: var(--raised);
}
.figures-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4rem) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 3rem);
}
.figures-grid > div { min-width: 0; }
.figures-grid b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 0.6rem;
}
.figures-grid span {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pewter);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Collection preview (asymmetric feature grid)
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}
.feature-grid .stack {
  display: grid;
  gap: clamp(1rem, 2vw, 1.8rem);
  align-content: stretch;
}

.car-tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--raised);
  isolation: isolate;
}
.car-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.7s var(--ease-soft);
  filter: saturate(0.86) brightness(0.9);
}
.car-tile:hover img,
.car-tile:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1) brightness(1);
}
.car-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 12, 14, 0) 18%,
    rgba(11, 12, 14, 0.62) 52%,
    rgba(11, 12, 14, 0.97) 100%);
  pointer-events: none;
}
.car-tile-lg { aspect-ratio: 3 / 2; }
.car-tile-sm { aspect-ratio: 16 / 11; }

/* On wide screens the stack matches the feature tile height exactly, so the
   two columns end level and the wide car photographs are not over-cropped. */
@media (min-width: 1025px) {
  .feature-grid { align-items: stretch; }
  .feature-grid .stack { grid-template-rows: 1fr 1fr; }
  .car-tile-sm { aspect-ratio: auto; height: 100%; min-height: 0; }
  /* The stretched row defines the height here. Keeping aspect-ratio would make
     that height drive the width, overrunning the column and bleeding behind
     the stack, so the tile simply fills its cell instead. */
  .car-tile-lg { width: 100%; height: 100%; aspect-ratio: auto; }
}

.car-tile-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
}
.car-tile-body .plate {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--green-lit);
  margin-bottom: 0.6rem;
  display: block;
}
.car-tile-body h3 { margin-bottom: 0.4rem; }
.car-tile-body p {
  font-size: 0.92rem;
  color: rgba(232, 234, 235, 0.76);
  max-width: 38ch;
  margin-bottom: 0.7rem;
}
.car-tile-body .spec-line {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pewter);
}

/* --------------------------------------------------------------------------
   Collection index
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.6rem 2.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.filter-group { min-width: 0; }
.filter-group > span {
  display: block;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pewter-dim);
  margin-bottom: 0.8rem;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  padding: 0.5rem 1rem;
  border: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pewter);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.chip:hover { color: var(--platinum); border-color: var(--pewter-dim); }
.chip[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.filter-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pewter);
  white-space: nowrap;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
}

.car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--raised);
  border: 1px solid var(--hairline-soft);
  transition: border-color 0.35s, transform 0.4s var(--ease);
}
.car-card:hover {
  border-color: var(--hairline);
  transform: translateY(-3px);
}
.car-card.is-hidden { display: none; }

.car-card > a.card-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--obsidian);
}
.car-card > a.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.92);
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease-soft);
}
.car-card:hover .card-media img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}
.card-plate {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  padding: 0.55rem 0.85rem;
  background: rgba(11, 12, 14, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--green-lit);
}

.car-card-body {
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.car-card-body .marque {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pewter-dim);
}
.car-card-body h3 { font-size: 1.5rem; }
.car-card-body p {
  font-size: 0.9rem;
  color: var(--pewter);
  line-height: 1.6;
}
.car-card-figures {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
  margin-top: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--hairline-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--pewter);
}
.car-card-figures b {
  color: var(--platinum);
  font-weight: 500;
}
.car-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.1rem;
}
.car-card-foot .rate {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
}
.car-card-foot .rate small {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pewter-dim);
  display: block;
  font-weight: 400;
  margin-top: 0.1rem;
}

.compare-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pewter);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.compare-toggle:hover { color: var(--platinum); border-color: var(--pewter-dim); }
.compare-toggle[aria-pressed="true"] {
  color: var(--green-lit);
  border-color: var(--green);
}
.compare-toggle .box {
  width: 9px; height: 9px;
  border: 1px solid currentColor;
  flex-shrink: 0;
}
.compare-toggle[aria-pressed="true"] .box { background: var(--green-lit); }

.empty-state {
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
  border: 1px dashed var(--hairline);
}
.empty-state h3 { margin-bottom: 0.8rem; }
.empty-state p { margin: 0 auto 1.6rem; color: var(--pewter); }

/* --------------------------------------------------------------------------
   Compare tray + panel
   -------------------------------------------------------------------------- */
.compare-tray {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(18, 20, 22, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--green);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.compare-tray.open { transform: translateY(0); }

.compare-tray-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.compare-slots {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}
.compare-slot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.5rem 0.45rem 0.5rem;
  border: 1px solid var(--hairline);
  min-width: 0;
}
.compare-slot img {
  width: 46px; height: 30px;
  object-fit: cover;
  flex-shrink: 0;
}
.compare-slot span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.compare-slot button {
  font-size: 1rem;
  line-height: 1;
  color: var(--pewter);
  padding: 0.2rem 0.3rem;
  flex-shrink: 0;
}
.compare-slot button:hover { color: var(--platinum); }
.compare-slot.empty {
  border-style: dashed;
  color: var(--pewter-dim);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
}
.compare-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-shrink: 0;
}
.compare-clear {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pewter);
}
.compare-clear:hover { color: var(--platinum); }

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  table-layout: fixed;
}
.compare-table thead th:first-child,
.compare-table tbody th { width: 150px; }
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 1rem 1.2rem;
  vertical-align: top;
}
.compare-table thead th {
  border-bottom: 1px solid var(--green);
}
.compare-table thead img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0.8rem;
}
.compare-table thead h4 { margin-bottom: 0.25rem; }
.compare-table thead .marque {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pewter-dim);
}
.compare-table tbody th {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pewter-dim);
  white-space: nowrap;
  width: 1%;
}
.compare-table tbody tr + tr th,
.compare-table tbody tr + tr td { border-top: 1px solid var(--hairline-soft); }
.compare-table tbody td {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
}
.compare-table tbody td small {
  display: block;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--pewter-dim);
  margin-top: 0.2rem;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   Spec tiles (car pages)
   -------------------------------------------------------------------------- */
.spec-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
}
.spec-tile {
  background: var(--obsidian);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.2rem, 2vw, 1.8rem);
  min-width: 0;
}
.spec-tile b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.spec-tile b sup {
  font-size: 0.42em;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.04em;
  vertical-align: super;
  color: var(--pewter);
  margin-left: 0.14em;
}
.spec-tile span {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pewter);
}

.spec-secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.spec-secondary > div { min-width: 0; }
.spec-secondary dt {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pewter-dim);
  margin-bottom: 0.45rem;
}
.spec-secondary dd {
  font-size: 1.02rem;
  color: var(--platinum);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Detail image compositions (varied per car page)
   -------------------------------------------------------------------------- */
.detail-pair {
  display: grid;
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: start;
}
.detail-pair.offset-right { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
.detail-pair.offset-left { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
.detail-pair.offset-right > :first-child { margin-top: clamp(2rem, 6vw, 5rem); }
.detail-pair.offset-left > :last-child { margin-top: clamp(2rem, 6vw, 5rem); }
.detail-pair.even { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.detail-pair figure { min-width: 0; margin: 0; }
.detail-pair img {
  width: 100%;
  background: var(--raised);
  cursor: zoom-in;
  transition: opacity 0.3s;
}
.detail-pair img:hover { opacity: 0.92; }
.detail-pair figcaption {
  margin-top: 0.85rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--pewter-dim);
}

.detail-full {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  background: var(--raised);
}

/* --------------------------------------------------------------------------
   Included list
   -------------------------------------------------------------------------- */
.included {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.included > div {
  min-width: 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--hairline);
}
.included h4 { margin-bottom: 0.5rem; }
.included p { font-size: 0.93rem; color: var(--pewter); }

/* --------------------------------------------------------------------------
   Split editorial
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.wide-media { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
.split figure { margin: 0; min-width: 0; }
.split figure img { width: 100%; background: var(--raised); }
.split .split-body { min-width: 0; }
.split .split-body h2 { margin-bottom: 1.2rem; }
.split .split-body p + p { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Fixed photographic band
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  padding-block: clamp(6rem, 16vw, 12rem);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  isolation: isolate;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 12, 14, 0.72);
}
.band blockquote {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.015em;
  max-width: 24ch;
}
.band cite {
  display: block;
  margin-top: 1.8rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pewter);
}

/* --------------------------------------------------------------------------
   Drives
   -------------------------------------------------------------------------- */
.drive-list {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.drive-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}
.drive-row:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
.drive-row:nth-child(even) .drive-media { order: 2; }
.drive-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--raised);
  min-width: 0;
}
.drive-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
  transition: transform 1.2s var(--ease), filter 0.7s var(--ease-soft);
}
.drive-media:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.drive-body { min-width: 0; }
.drive-body h3 { margin-bottom: 0.9rem; }
.drive-body p { color: var(--pewter); margin-bottom: 1.3rem; }
.drive-figures {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  padding-block: 1rem;
  border-block: 1px solid var(--hairline);
  margin-bottom: 1.4rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pewter);
}
.drive-figures b { color: var(--platinum); font-weight: 500; }

/* Day-by-day itinerary */
.days { display: grid; gap: 0; }
.day {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  padding-block: clamp(1.8rem, 3.4vw, 2.6rem);
  border-top: 1px solid var(--hairline);
}
.day:last-child { border-bottom: 1px solid var(--hairline); }
.day-no {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--green-lit);
}
.day-no small {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pewter-dim);
  font-weight: 400;
  margin-top: 0.4rem;
}
.day-body { min-width: 0; }
.day-body h4 { margin-bottom: 0.55rem; }
.day-body p { color: var(--pewter); font-size: 0.97rem; }
.day-body img {
  width: 100%;
  margin-top: 1.3rem;
  background: var(--raised);
}
.day-route {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pewter-dim);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   Membership tiers
   -------------------------------------------------------------------------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: start;
}
.tier {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--raised);
  border: 1px solid var(--hairline-soft);
  height: 100%;
}
.tier.featured {
  background: var(--raised-2);
  border-color: var(--green);
}
.tier-name {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.tier-note {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-lit);
  margin-bottom: 1.4rem;
}
.tier-price {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.tier-price small {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pewter-dim);
  margin-top: 0.5rem;
}
.tier ul {
  display: grid;
  gap: 0.85rem;
  margin-block: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}
.tier li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 0.75rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--pewter);
}
.tier li::before {
  content: "";
  width: 6px; height: 1px;
  background: var(--green-lit);
  margin-top: 0.75rem;
}
.tier .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   Accordion
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--hairline); }
.acc-item { border-bottom: 1px solid var(--hairline); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  font-weight: 600;
  transition: color 0.25s;
}
.acc-trigger:hover { color: var(--green-lit); }
.acc-icon {
  position: relative;
  width: 12px; height: 12px;
  flex-shrink: 0;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--green-lit);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.acc-icon::before { left: 0; top: 5px; width: 12px; height: 1px; }
.acc-icon::after { left: 5px; top: 0; width: 1px; height: 12px; }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: scaleY(0); opacity: 0; }
.acc-panel {
  display: none;
  padding-bottom: 1.8rem;
}
.acc-panel.open { display: block; }
.acc-panel p { color: var(--pewter); }
.acc-panel p + p { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 3.4vw, 3rem);
}
.step {
  min-width: 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
}
.step .num {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-lit);
  margin-bottom: 0.7rem;
}
.step h4 { margin-bottom: 0.55rem; }
.step p { color: var(--pewter); font-size: 0.95rem; }

/* Checklist grid for the 14-point preparation */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
}
.checklist > div {
  background: var(--obsidian);
  padding: 1.3rem 1.5rem;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: baseline;
  min-width: 0;
}
.checklist .n {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--green-lit);
}
.checklist p { font-size: 0.93rem; color: var(--pewter); }

/* --------------------------------------------------------------------------
   People
   -------------------------------------------------------------------------- */
.people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.person { min-width: 0; }
.person img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--raised);
  margin-bottom: 1.4rem;
  filter: saturate(0.9);
}
.person h3 { margin-bottom: 0.3rem; }
.person .role {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-lit);
  margin-bottom: 1rem;
}
.person p { color: var(--pewter); font-size: 0.96rem; }
.person p + p { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Next in collection
   -------------------------------------------------------------------------- */
.next-car {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: 1px solid var(--hairline);
}
.next-car > a {
  display: block;
  position: relative;
  min-height: 300px;
  overflow: hidden;
  isolation: isolate;
}
.next-car > a + a { border-left: 1px solid var(--hairline); }
.next-car img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(0.8) brightness(0.55);
  transition: transform 1.3s var(--ease), filter 0.7s;
}
.next-car > a:hover img { transform: scale(1.05); filter: saturate(1) brightness(0.7); }
.next-car > a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(11, 12, 14, 0.25) 0%,
    rgba(11, 12, 14, 0.6) 55%,
    rgba(11, 12, 14, 0.92) 100%);
  pointer-events: none;
}

.next-car .next-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.next-car .dir {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-lit);
  margin-bottom: 0.7rem;
}
.next-car h3 { margin-bottom: 0.4rem; }
.next-car p {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 234, 235, 0.72);
}

/* --------------------------------------------------------------------------
   CTA closer
   -------------------------------------------------------------------------- */
.closer {
  text-align: center;
  padding-block: clamp(5rem, 12vw, 10rem);
  border-top: 1px solid var(--hairline);
}
.closer h2 { margin: 0 auto 1.3rem; max-width: 18ch; }
.closer p { margin: 0 auto; color: var(--pewter); }
.closer .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--platinum);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--raised);
  border: 1px solid var(--hairline);
  color: var(--platinum);
  font-size: 0.97rem;
  transition: border-color 0.25s, background 0.25s;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--pewter) 50%), linear-gradient(135deg, var(--pewter) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 15px) calc(50% + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--pewter-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-lit);
  background: var(--raised-2);
}
.field .hint {
  font-size: 0.8rem;
  color: var(--pewter);
}
.field .error {
  display: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #E4756A;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #E4756A; }
.field.invalid .error { display: block; }

.form-note {
  font-size: 0.85rem;
  color: var(--pewter-dim);
  margin-top: 1.2rem;
}

.form-success {
  display: none;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--green);
  background: var(--raised);
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { margin-bottom: 0.9rem; }
.form-success p { margin: 0 auto; color: var(--pewter); }

/* --------------------------------------------------------------------------
   Reservation modal
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 2.5rem);
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 7, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s var(--ease-soft) both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  background: var(--raised);
  border: 1px solid var(--hairline);
  animation: modalIn 0.42s var(--ease) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.99); }
  to { opacity: 1; transform: none; }
}

.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.2rem) 1.2rem;
  background: var(--raised);
  border-bottom: 1px solid var(--hairline);
}
.modal-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.3rem; }
.modal-head .sub {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pewter-dim);
}
.modal-close {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  color: var(--pewter);
  flex-shrink: 0;
  transition: color 0.25s, border-color 0.25s;
}
.modal-close:hover { color: var(--platinum); border-color: var(--pewter-dim); }

.modal-steps {
  display: flex;
  gap: 0;
  padding-inline: clamp(1.4rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--hairline);
  background: var(--raised);
}
.modal-steps li {
  flex: 1;
  padding: 0.9rem 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pewter-dim);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-steps li.active {
  color: var(--green-lit);
  border-bottom-color: var(--green);
}
.modal-steps li.done { color: var(--pewter); }

.modal-body { padding: clamp(1.4rem, 3vw, 2.2rem); }
.modal-step { display: none; }
.modal-step.active { display: block; animation: stepIn 0.35s var(--ease) both; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}

.modal-foot {
  /* Sticky so the primary action stays reachable when the step is taller
     than the dialog and the body scrolls. */
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1.4rem, 3vw, 2.2rem);
  border-top: 1px solid var(--hairline);
  background: var(--raised-2);
}
.modal-back {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pewter);
}
.modal-back:hover { color: var(--platinum); }
.modal-back[hidden] { visibility: hidden; }
/* A button's own display rule outranks the UA [hidden] rule, so the final
   step's hidden action would otherwise stay on screen. */
.modal-foot [hidden] { display: none; }

/* Calendar */
.cal {
  border: 1px solid var(--hairline);
  background: var(--obsidian);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--hairline);
}
.cal-head strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}
.cal-nav {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  color: var(--pewter);
  font-size: 0.85rem;
  transition: color 0.2s, border-color 0.2s;
}
.cal-nav:hover:not([disabled]) { color: var(--platinum); border-color: var(--pewter-dim); }
.cal-nav[disabled] { opacity: 0.3; cursor: not-allowed; }

.cal-dow,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.cal-dow {
  padding: 0.6rem 0.4rem 0.2rem;
}
.cal-dow span {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pewter-dim);
}
.cal-grid { padding: 0.4rem; gap: 2px; }
.cal-day {
  height: clamp(34px, 4.4vw, 42px);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--platinum);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
}
.cal-day:hover:not(:disabled) { border-color: var(--pewter-dim); }
.cal-day:disabled {
  color: var(--pewter-dim);
  cursor: not-allowed;
  opacity: 0.45;
}
.cal-day.taken {
  color: var(--pewter-dim);
  text-decoration: line-through;
  opacity: 0.55;
}
.cal-day.empty { visibility: hidden; }
.cal-day.selected {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.cal-day.in-range {
  background: rgba(47, 122, 87, 0.24);
  border-color: rgba(47, 122, 87, 0.32);
}
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pewter-dim);
}
.cal-legend i {
  display: inline-block;
  width: 9px; height: 9px;
  margin-right: 0.45rem;
  vertical-align: -1px;
}
.cal-legend .sw-free { border: 1px solid var(--pewter-dim); }
.cal-legend .sw-sel { background: var(--green); }
.cal-legend .sw-taken { background: rgba(139, 145, 150, 0.3); }

.date-readout {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--pewter);
}
.date-readout b { color: var(--platinum); font-weight: 500; }

/* Extras */
.extras { display: grid; gap: 0.7rem; }
.extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--hairline);
  background: var(--obsidian);
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
  min-width: 0;
}
.extra:hover { border-color: var(--pewter-dim); }
.extra.checked { border-color: var(--green); background: var(--raised-2); }
.extra .ex-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.extra .box {
  width: 14px; height: 14px;
  border: 1px solid var(--pewter-dim);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.extra.checked .box { background: var(--green); border-color: var(--green); }
.extra .box::after {
  content: "";
  width: 6px; height: 3px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity 0.2s;
}
.extra.checked .box::after { opacity: 1; }
.extra .ex-name { display: block; font-size: 0.95rem; }
.extra .ex-desc { display: block; font-size: 0.8rem; color: var(--pewter-dim); }
.extra .ex-price {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--pewter);
  white-space: nowrap;
  flex-shrink: 0;
}
.extra input { position: absolute; opacity: 0; pointer-events: none; }

/* Quote */
.quote-lines { border-top: 1px solid var(--hairline); }
.quote-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 0.95rem;
}
.quote-line .ql-label { color: var(--pewter); min-width: 0; }
.quote-line .ql-label small {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--pewter-dim);
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}
.quote-line .ql-value {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--platinum);
  white-space: nowrap;
}
.quote-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.3rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--green);
}
.quote-total .qt-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pewter);
}
.quote-total .qt-value {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
}
.deposit-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: var(--obsidian);
  border: 1px solid var(--hairline);
  font-size: 0.86rem;
  color: var(--pewter);
}

/* Modal success */
.modal-success { text-align: center; padding: clamp(1.5rem, 4vw, 2.5rem) 0; }
.tick {
  width: 62px; height: 62px;
  margin: 0 auto 1.6rem;
}
.tick circle, .tick path {
  fill: none;
  stroke: var(--green-lit);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (prefers-reduced-motion: no-preference) {
  .modal-success.show .tick circle {
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    animation: draw 0.7s var(--ease) forwards;
  }
  .modal-success.show .tick path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: draw 0.4s var(--ease) 0.5s forwards;
  }
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.modal-success h3 { margin-bottom: 0.9rem; }
.modal-success p { margin: 0 auto 1.4rem; color: var(--pewter); max-width: 44ch; }
.ref-code {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--green);
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--green-lit);
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 6, 7, 0.95);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.open { display: flex; animation: fadeIn 0.25s var(--ease-soft) both; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  color: var(--platinum);
  font-size: 1.1rem;
}
.lightbox-close:hover { border-color: var(--pewter); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--obsidian);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer-brand .brand { margin-bottom: 1.3rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--pewter);
  max-width: 34ch;
  margin-bottom: 1.6rem;
}
.footer-addr {
  display: grid;
  gap: 1.2rem;
}
.footer-addr div {
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.85;
  color: var(--pewter-dim);
  letter-spacing: 0.04em;
}
.footer-addr b {
  display: block;
  color: var(--pewter);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.64rem;
  margin-bottom: 0.35rem;
}
.footer-col h5 {
  margin: 0 0 1.1rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pewter-dim);
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--pewter);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--platinum); }

.footer-base {
  max-width: var(--wrap);
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: 1.6rem var(--gutter) 2.2rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--pewter-dim);
}
.footer-base a { color: var(--pewter); }
.footer-base a:hover { color: var(--green-lit); }

/* --------------------------------------------------------------------------
   Reveals
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-rake { display: none; }
  .band { background-attachment: scroll; }
  /* The hangar line still opens, it just does not glide */
  .bay, .bay-img, .bay-detail, .bay-spine { transition: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.08s !important;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .mega-inner { grid-template-columns: minmax(0, 200px) minmax(0, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 68px; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .mega-panel { display: none; }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .figures-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tiers { grid-template-columns: 1fr; }
  .tier { height: auto; }
  .statement-inner { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .car-tile-lg { aspect-ratio: 16 / 11; }
}

@media (max-width: 860px) {
  .split,
  .split.wide-media,
  .drive-row,
  .drive-row:nth-child(even) { grid-template-columns: 1fr; }
  .drive-row:nth-child(even) .drive-media { order: 0; }
  .detail-pair.offset-right,
  .detail-pair.offset-left,
  .detail-pair.even { grid-template-columns: 1fr; }
  .detail-pair.offset-right > :first-child,
  .detail-pair.offset-left > :last-child { margin-top: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .people { grid-template-columns: 1fr; }
  .person img { aspect-ratio: 4 / 3; }
  .next-car { grid-template-columns: 1fr; }
  .next-car > a + a { border-left: 0; border-top: 1px solid var(--hairline); }
  .steps { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .spec-secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .collection-grid { grid-template-columns: 1fr; }
  .spec-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .figures-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-plate { font-size: clamp(4.5rem, 26vw, 8rem); opacity: 0.7; }
  .day { grid-template-columns: 58px minmax(0, 1fr); gap: 1rem; }
  .spec-secondary { grid-template-columns: 1fr; }
  .modal-steps li { font-size: 0.56rem; letter-spacing: 0.08em; }
  .compare-tray-inner { padding-block: 0.85rem; }
  .compare-slot img { width: 34px; height: 24px; }
  .band { padding-block: clamp(4rem, 14vw, 7rem); }
}

@media (max-width: 420px) {
  .cal-day { font-size: 0.7rem; height: 34px; }
  .modal-steps { padding-inline: 1rem; }
}

