:root {
  --charcoal: #313539;
  --charcoal-deep: #272b2f;
  --charcoal-soft: #383d42;
  --charcoal-pale: #41464b;
  --text: #aaa9a9;
  --text-bright: #d4d3d1;
  --white: #f1f1ef;
  --accent: #49a0ba;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .24);
  --sidebar: 264px;
  --max: 1170px;
  --pad: clamp(24px, 4.5vw, 76px);
  --heading: "Unica One", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Vollkorn", Georgia, "Times New Roman", serif;
  --ui: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0 0 0 var(--sidebar);
  background: var(--charcoal);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--white); }

h1, h2, h3, h4 {
  color: var(--white);
  font-family: var(--heading);
  font-weight: 400;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  left: calc(var(--sidebar) + 20px);
  top: -60px;
  z-index: 999;
  padding: 11px 18px;
  background: var(--white);
  color: var(--charcoal-deep);
  font-family: var(--ui);
  font-size: 12px;
}
.skip-link:focus { top: 20px; }

/* Fixed studio navigation */
.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  width: var(--sidebar);
  height: 100vh;
  height: 100dvh;
  padding: 38px 31px 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--charcoal-deep);
  border-right: 1px solid rgba(255,255,255,.07);
}
.header-bar { display: block; flex: 0 0 auto; }
.brand {
  display: block;
  width: 104px;
  max-width: 100%;
  flex: 0 0 auto;
  margin: 0 auto 38px;
}
.brand picture { display: block; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.menu-toggle { display: none; }
.header-panel {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  padding-bottom: max(4px, env(safe-area-inset-bottom));
}
.primary-nav,
.car-rail {
  display: flex;
  flex-direction: column;
}
.primary-nav { margin-bottom: 34px; }
.primary-nav a {
  padding: 8px 0;
  color: var(--text-bright);
  font-family: var(--heading);
  font-size: 15px;
  letter-spacing: .045em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .25s ease, padding-left .25s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--white); padding-left: 5px; }
.car-rail {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.car-tab {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 4px;
  align-items: center;
  padding: 6px 0;
  color: #929292;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .075em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color .25s ease;
}
.car-tab span { color: #676b6f; font-size: 8px; }
.car-tab:hover,
.car-tab:focus-visible,
.car-tab.active { color: var(--white); }
.car-tab.active span { color: var(--accent); }
.header-contact {
  margin-top: auto;
  padding-top: 26px;
  flex: 0 0 auto;
}
.header-contact p {
  margin: 0 0 18px;
  color: #777b7e;
  font-family: var(--ui);
  font-size: 9px;
  letter-spacing: .12em;
  line-height: 1.7;
  text-transform: uppercase;
}
.restomod-language-switcher {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #666b6e;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.restomod-language-switcher a { color: #868b8e; }
.restomod-language-switcher a.current,
.restomod-language-switcher a:hover,
.restomod-language-switcher a:focus-visible { color: var(--accent); }

/* Buttons and links */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  background: transparent;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .17em;
  line-height: 1;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover,
.button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal-deep);
}
.button-light {
  background: var(--white);
  color: var(--charcoal-deep);
  border-color: var(--white);
}
.button-light:hover,
.button-light:focus-visible { background: transparent; color: var(--white); }
.button-ghost { border-color: rgba(255,255,255,.48); }
.button-small { min-height: 46px; padding: 13px 16px; font-size: 9px; }

.header-contact .button-small {
  width: 100%;
  min-height: 50px;
  margin-top: 10px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 18px;
  margin-top: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  font-family: var(--ui);
  font-size: 9px;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: border-color .25s ease;
}
.text-link::after { content: "\2192"; font-size: 14px; }
.text-link:hover,
.text-link:focus-visible { border-color: var(--accent); }

/* Hero */
.hero,
.car-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal-deep);
}
.hero-media,
.car-hero-media { position: absolute; inset: 0; }
.hero-media img,
.car-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img { object-position: 50% 56%; }
.hero::after,
.car-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,20,22,.83) 0%, rgba(17,20,22,.44) 48%, rgba(17,20,22,.12) 80%),
    linear-gradient(0deg, rgba(17,20,22,.78) 0%, transparent 58%);
}
.hero-content,
.car-hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  padding: clamp(90px, 15vh, 160px) var(--pad) clamp(64px, 10vh, 110px);
}
.eyebrow,
.small-label {
  margin: 0;
  color: var(--accent);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1.55;
  text-transform: uppercase;
}
.hero h1,
.car-hero h1 {
  max-width: 980px;
  margin: 18px 0 0;
  font-size: clamp(54px, 7.2vw, 104px);
  letter-spacing: -.025em;
  line-height: .94;
}
.hero .lede,
.car-subtitle {
  max-width: 660px;
  margin: 27px 0 0;
  color: #d1d0cd;
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.5;
}
.hero-index {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* General sections */
.section { padding: clamp(82px, 10vw, 150px) var(--pad); }
.section-inner { width: min(var(--max), 100%); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) minmax(360px, 1.55fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
  margin-bottom: clamp(56px, 7vw, 92px);
}
.section-head h2,
.car-intro h2,
.editorial-copy h2,
.engineering-note h2,
.closing-copy h2,
.story-text h2,
.approval-copy h2,
.cad-copy h2,
.footer-lead h2 {
  margin: 0;
  font-size: clamp(37px, 4.5vw, 69px);
  letter-spacing: -.015em;
  line-height: 1.04;
}
.section-head p,
.car-intro > div > p,
.editorial-copy p,
.engineering-note p,
.closing-copy p,
.story-text p,
.approval-copy p,
.cad-copy p,
.footer-lead > p {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
}
.section-head p + p { margin-top: 15px; }
.intro-section { background: var(--charcoal); }

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.principles article {
  min-height: 330px;
  padding: clamp(32px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal-soft);
}
.principles span {
  color: var(--accent);
  font-family: var(--ui);
  font-size: 9px;
  letter-spacing: .16em;
}
.principles h3 {
  margin: 68px 0 14px;
  font-size: clamp(25px, 2.7vw, 39px);
  line-height: 1.1;
}
.principles p { max-width: 490px; margin: 0; }

/* Collection */
.collection { padding-bottom: 0; background: var(--charcoal-deep); }
.collection-list { border-top: 1px solid var(--line); }
.model-row {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}
.model-row:nth-child(even) { grid-template-columns: .82fr 1.18fr; }
.model-row:nth-child(even) .model-media { order: 2; }
.model-media { min-height: 580px; overflow: hidden; background: #202427; }
.model-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.82);
  transition: transform 1s ease, filter .6s ease;
}
.model-row:hover .model-media img { transform: scale(1.025); filter: saturate(1); }
.model-copy {
  padding: clamp(42px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.model-copy > div:first-child { margin-bottom: auto; }
.model-number {
  display: block;
  margin-bottom: 18px;
  color: #6f7478;
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .18em;
}
.model-copy h2 {
  margin: 34px 0 0;
  font-size: clamp(45px, 5.5vw, 78px);
  line-height: .95;
}
.model-copy > p {
  margin: 21px 0 0;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}
.model-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.model-meta span,
.car-hero-status,
.approval-status {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: #b9b9b7;
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Home editorial stories - intentionally not a gallery */
.feature-intro { background: var(--charcoal); padding-bottom: 74px; }
.editorial-feature {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  border-top: 1px solid var(--line);
  background: var(--charcoal-soft);
}
.editorial-feature-reverse { grid-template-columns: .88fr 1.12fr; }
.editorial-feature-reverse .editorial-image { order: 2; }
.editorial-image { min-height: 590px; overflow: hidden; }
.editorial-image img { height: 100%; object-fit: cover; }
.editorial-copy {
  padding: clamp(50px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-copy h2 { font-size: clamp(34px, 3.6vw, 56px); margin-top: 22px; }
.editorial-copy p { font-size: 18px; }

.engineering-band { background: var(--charcoal-deep); }
.engineering-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 650px;
  border: 1px solid var(--line);
}
.engineering-image { min-height: 610px; overflow: hidden; background: #1f2326; }
.engineering-image img { height: 100%; object-fit: cover; }
.engineering-note {
  padding: clamp(48px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--charcoal-soft);
}
.engineering-note h2 { margin-top: 22px; font-size: clamp(38px, 4.2vw, 62px); }
.engineering-note p { font-size: 18px; }
.engineering-note .button { align-self: flex-start; margin-top: 30px; }

.closing {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
}
.closing-image { min-height: 640px; }
.closing-image img { height: 100%; object-fit: cover; }
.closing-copy {
  padding: clamp(54px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.closing-copy h2 { margin-top: 22px; }
.closing-copy .button-row { align-items: flex-end; }

/* Individual car pages */
.car-hero { min-height: 92vh; }
.car-hero h1 { font-size: clamp(68px, 9vw, 132px); }
.car-hero-content { width: min(980px, 100%); }
.car-subtitle { max-width: 740px; }
.car-hero-status { display: inline-flex; margin-top: 30px; border-color: rgba(255,255,255,.38); color: var(--white); }
.car-opening { background: var(--charcoal-deep); }
.car-intro {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) minmax(360px, 1.55fr);
  gap: clamp(42px, 8vw, 120px);
}
.car-intro h2 { font-size: clamp(38px, 4.7vw, 70px); }
.spec-grid {
  margin-top: clamp(68px, 8vw, 105px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec {
  min-height: 145px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spec:first-child { padding-left: 0; }
.spec:last-child { border-right: 0; }
.spec strong {
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(27px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.spec span {
  margin-top: 16px;
  color: #7f8386;
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .15em;
  line-height: 1.5;
  text-transform: uppercase;
}
.car-narrative { background: var(--charcoal); }
.story-section {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  border-top: 1px solid var(--line);
}
.story-section.story-reverse { grid-template-columns: .88fr 1.12fr; background: var(--charcoal-soft); }
.story-reverse .story-image { order: 2; }
.story-image { min-height: 640px; overflow: hidden; background: #24282b; }
.story-image img { height: 100%; object-fit: cover; }
.story-text {
  padding: clamp(50px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text h2 { margin-top: 23px; font-size: clamp(35px, 3.9vw, 58px); }
.story-text p { font-size: 18px; }
.story-text p + p { margin-top: 13px; }

/* Engineering dossier */
.engineering-dossier { padding-bottom: 0; }
.engineering-dossier .section-head { margin-bottom: 84px; }
.engineering-group {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  margin: 0 calc(var(--pad) * -1);
  border-top: 1px solid var(--line);
}
.engineering-group:nth-child(even) { grid-template-columns: 1.12fr .88fr; }
.engineering-group:nth-child(even) .engineering-plate { order: 2; }
.engineering-plate {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #202427;
}
.engineering-plate img { height: 100%; object-fit: cover; }
.engineering-plate figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 8px 10px;
  background: rgba(39,43,47,.86);
  color: var(--text-bright);
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  body[data-car="vetechbusa"] .engineering-group {
    grid-template-columns: 1.18fr .82fr;
  }
  body[data-car="vetechbusa"] .engineering-group:nth-child(even) {
    grid-template-columns: .82fr 1.18fr;
  }
}
body[data-car="vetechbusa"] .engineering-plate,
body[data-car="vetechbusa"] .engineering-plate .site-gallery {
  background: #e7e7e5;
}
body[data-car="vetechbusa"] .engineering-plate > img,
body[data-car="vetechbusa"] .engineering-plate .gallery-slide img {
  object-fit: contain;
  object-position: center;
}
.engineering-list { background: var(--charcoal-soft); }
.engineering-item { border-bottom: 1px solid var(--line); }
.engineering-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 130px 1fr 24px;
  gap: 18px;
  align-items: center;
  min-height: 100px;
  padding: 25px clamp(24px, 4vw, 56px);
  cursor: pointer;
}
.engineering-item summary::-webkit-details-marker { display: none; }
.engineering-item summary span {
  color: var(--accent);
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}
.engineering-item summary strong {
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}
.engineering-item summary i {
  color: var(--text);
  font-family: var(--ui);
  font-size: 18px;
  font-style: normal;
  text-align: right;
}
.engineering-item[open] summary i { transform: rotate(45deg); }
.engineering-item > p {
  max-width: 660px;
  margin: -4px 50px 0 186px;
  padding: 0 0 34px;
  font-size: 17px;
  line-height: 1.65;
}

.approval-feature,
.cad-panel {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.approval-feature { background: var(--charcoal); }
.approval-image,
.cad-media { min-height: 620px; overflow: hidden; }
.approval-image img,
.cad-media img { height: 100%; object-fit: cover; }
.approval-copy,
.cad-copy {
  padding: clamp(50px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.approval-status {
  display: inline-flex;
  align-self: flex-start;
  margin: 23px 0 28px;
  border-color: rgba(73,160,186,.5);
  color: var(--accent);
}
.approval-copy p,
.cad-copy p { font-size: 18px; }
.cad-panel { background: #252a2d; }
.cad-media { background: #1e2225; }
.cad-media img { object-fit: cover; filter: saturate(.62) contrast(1.03); }

.next-car {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.next-car > img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform 1s ease; }
.next-car::after { content: ""; position: absolute; inset: 0; background: rgba(15,18,20,.66); }
.next-car:hover > img { transform: scale(1.025); }
.next-car-copy { position: relative; z-index: 2; padding: 45px; }
.next-car-copy span {
  color: var(--accent);
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.next-car-copy h2 {
  margin: 16px 0;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .95;
}
.next-car-copy em {
  color: var(--white);
  font-family: var(--ui);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .17em;
  text-transform: uppercase;
}

/* Footer */
.site-footer { background: #1e2225; padding: clamp(75px, 9vw, 125px) var(--pad) 30px; }
.footer-lead { width: min(860px, 100%); margin-bottom: 105px; }
.footer-lead h2 { margin-top: 20px; font-size: clamp(44px, 6vw, 82px); }
.footer-lead > p { max-width: 690px; font-size: 19px; }
.footer-lead .button { margin-top: 29px; }
.footer-links {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .65fr);
  gap: 48px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.footer-logo { width: 112px; }
.footer-links strong {
  display: block;
  margin-bottom: 19px;
  color: #6e7377;
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.footer-links div a,
.footer-links div span {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .035em;
}
.footer-legacy {
  width: min(var(--max), 100%);
  margin: 72px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 22px;
  color: #8b8e91;
  font-family: var(--ui);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-legal i { color: #73777a; font-style: normal; }
.footer-legal a { color: #b9bcbe; }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--accent); }
.footer-socials {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.footer-socials a {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2b3034;
  color: #70757a;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: #353b40;
  color: var(--white);
  transform: translateY(-2px);
}
.footer-socials svg { width: 27px; height: 27px; fill: currentColor; }
.footer-socials a[aria-label="Instagram"] svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-socials a[aria-label="Instagram"] .social-icon-dot { fill: currentColor; stroke: none; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --sidebar: 230px; }
  .site-header { padding-left: 25px; padding-right: 25px; }
  .brand { width: 96px; }
  .engineering-item summary { grid-template-columns: 100px 1fr 20px; }
  .engineering-item > p { margin-left: 156px; }
}

@media (min-width: 901px) and (max-height: 850px) {
  .site-header { padding-top: 24px; padding-bottom: 20px; }
  .brand { margin-bottom: 28px; }
  .primary-nav { margin-bottom: 18px; }
  .primary-nav a { padding-top: 6px; padding-bottom: 6px; }
  .car-rail { padding-top: 14px; padding-bottom: 14px; }
  .car-tab { padding-top: 4px; padding-bottom: 4px; }
  .header-contact { margin-top: 20px; padding-top: 14px; }
  .header-contact p { margin-bottom: 10px; }
}

@media (max-width: 900px) {
  body { margin-left: 0; padding-top: calc(72px + env(safe-area-inset-top)); }
  .skip-link { left: 20px; }
  .site-header {
    inset: 0 0 auto 0;
    width: auto;
    height: calc(72px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) max(22px, env(safe-area-inset-right)) 0 max(22px, env(safe-area-inset-left));
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow: visible;
  }
  .header-bar {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand { width: 155px; margin: 0; }
  .menu-toggle {
    display: block;
    border: 0;
    background: transparent;
    color: var(--white);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .17em;
    text-transform: uppercase;
  }
  .header-panel {
    position: fixed;
    inset: calc(72px + env(safe-area-inset-top)) 0 0;
    display: none;
    min-height: 0;
    padding: 34px max(26px, env(safe-area-inset-right)) max(34px, calc(20px + env(safe-area-inset-bottom))) max(26px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--charcoal-deep);
  }
  .header-panel.open { display: flex; }
  .primary-nav a { font-size: 23px; padding: 8px 0; }
  .car-tab { font-size: 12px; padding: 8px 0; }
  .header-contact { margin-top: 25px; }
  .hero, .car-hero { min-height: calc(100vh - 72px); }
  .section-head,
  .car-intro { grid-template-columns: 1fr; gap: 25px; }
  .model-row,
  .model-row:nth-child(even),
  .editorial-feature,
  .editorial-feature-reverse,
  .engineering-feature,
  .story-section,
  .story-section.story-reverse,
  .approval-feature,
  .cad-panel,
  .closing { grid-template-columns: 1fr; }
  .model-row:nth-child(even) .model-media,
  .editorial-feature-reverse .editorial-image,
  .story-reverse .story-image { order: 0; }
  .model-media,
  .editorial-image,
  .engineering-image,
  .story-image,
  .approval-image,
  .cad-media,
  .closing-image { min-height: 58vw; }
  .model-copy { min-height: 470px; }
  .principles { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .spec:nth-child(2) { border-right: 0; }
  .spec:nth-child(n+3) { border-top: 1px solid var(--line); }
  .engineering-group,
  .engineering-group:nth-child(even) {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
  .engineering-group:nth-child(even) .engineering-plate { order: 0; }
  .engineering-plate { position: relative; height: 65vw; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --pad: 21px; }
  body { font-size: 15px; }
  .hero h1 { font-size: 49px; }
  .car-hero h1 { font-size: 61px; }
  .hero-content, .car-hero-content { padding-bottom: 55px; }
  .hero-index { display: none; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .section-head h2,
  .car-intro h2,
  .editorial-copy h2,
  .engineering-note h2,
  .closing-copy h2,
  .story-text h2,
  .approval-copy h2,
  .cad-copy h2 { font-size: 37px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 270px; }
  .principles h3 { margin-top: 52px; }
  .model-media,
  .editorial-image,
  .engineering-image,
  .story-image,
  .approval-image,
  .cad-media,
  .closing-image { min-height: 78vw; }
  .model-copy,
  .editorial-copy,
  .engineering-note,
  .story-text,
  .approval-copy,
  .cad-copy,
  .closing-copy { padding: 48px 24px; }
  .model-copy { min-height: 420px; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec,
  .spec:first-child { min-height: 110px; padding: 22px 0; border-right: 0; border-top: 1px solid var(--line); }
  .engineering-dossier { padding-left: 0; padding-right: 0; }
  .engineering-dossier > .section-inner > .section-head { padding-left: var(--pad); padding-right: var(--pad); }
  .engineering-plate { height: 80vw; }
  .engineering-item summary { grid-template-columns: 1fr 22px; gap: 8px; min-height: 110px; padding: 22px; }
  .engineering-item summary span { grid-column: 1 / 3; }
  .engineering-item summary i { grid-column: 2; grid-row: 2; }
  .engineering-item > p { margin: -2px 22px 0; padding-bottom: 26px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }
  .footer-legal i { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* V14 homepage: approval-first, compact and image-led */
.home-page {
  --home-paper: #efefec;
  --home-ink: #202326;
  --home-muted: #65686a;
}
.home-intro {
  min-height: 500px;
  padding: clamp(80px, 10vw, 145px) var(--pad) clamp(62px, 8vw, 110px);
  display: grid;
  align-items: center;
  background: var(--home-paper);
  color: var(--home-ink);
  text-align: center;
}
.home-intro-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}
.home-intro .eyebrow { color: #707476; }
.home-intro h1 {
  margin: 22px 0 0;
  color: var(--home-ink);
  font-size: clamp(58px, 8.5vw, 122px);
  letter-spacing: -.025em;
  line-height: .91;
}
.home-intro-inner > p:not(.eyebrow) {
  max-width: 690px;
  margin: 30px auto 0;
  color: #55595b;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}
.home-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: var(--home-ink);
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.home-actions span {
  width: 1px;
  height: 20px;
  background: #949795;
}
.home-actions a {
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
}
.home-actions a:hover,
.home-actions a:focus-visible { border-color: var(--home-ink); }

.home-panorama {
  position: relative;
  height: clamp(270px, 38vw, 510px);
  margin: 0;
  overflow: hidden;
  background: #202427;
}
.home-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}
.home-panorama::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(18,21,23,.68), transparent);
}
.home-panorama figcaption {
  position: absolute;
  z-index: 1;
  left: var(--pad);
  bottom: 22px;
  color: rgba(255,255,255,.82);
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-interlude {
  height: clamp(330px, 46vw, 640px);
  margin: 0;
  overflow: hidden;
  background: #202427;
}
.home-interlude img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.programme-jump {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f7f7f4;
  border-bottom: 1px solid rgba(0,0,0,.14);
  isolation: isolate;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.programme-jump a {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0,0,0,.11);
  color: #35383a !important;
  font-family: var(--ui);
  font-size: 9px;
  letter-spacing: .11em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: background .2s ease;
}
.programme-jump a:last-child { border-right: 0; }
.programme-jump a:hover,
.programme-jump a:focus-visible { background: #e3e4e1; }
.programme-jump span { margin-right: 8px; color: #777b79 !important; font-size: 7px; opacity: 1 !important; visibility: visible !important; }

.approval-overview {
  background: var(--home-paper);
  color: var(--home-muted);
}
.home-section-heading {
  max-width: 880px;
  margin-bottom: clamp(48px, 6vw, 76px);
}
.home-section-heading .small-label { color: #777b7d; }
.home-section-heading h2 {
  margin: 18px 0 0;
  color: var(--home-ink);
  font-size: clamp(42px, 5.4vw, 76px);
  letter-spacing: -.02em;
  line-height: .98;
}
.home-section-heading > p:last-child {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}
.approval-table { border-top: 1px solid rgba(0,0,0,.2); }
.approval-row {
  min-height: 98px;
  display: grid;
  grid-template-columns: 14px minmax(150px,.65fr) minmax(185px,.85fr) minmax(270px,1.5fr) 110px;
  gap: 22px;
  align-items: center;
  padding: 21px 4px;
  border-bottom: 1px solid rgba(0,0,0,.16);
  color: var(--home-ink);
  transition: background .2s ease, padding .2s ease;
}
.approval-row:hover,
.approval-row:focus-visible {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(255,255,255,.56);
}
.approval-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #888;
}
.approval-eu .approval-dot { background: #2c8c63; }
.approval-homologation .approval-dot { background: #49a0ba; }
.approval-markets .approval-dot { background: #a9893e; }
.approval-review .approval-dot { background: #8b8e90; }
.approval-track .approval-dot { background: #b76855; }
.approval-row strong {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}
.approval-row em {
  font-family: var(--ui);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.approval-row p { margin: 0; color: var(--home-muted); font-size: 15px; line-height: 1.45; }
.approval-row b {
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .14em;
  text-align: right;
  text-transform: uppercase;
}
.approval-row b::after { content: "\2192"; margin-left: 8px; }
.approval-caveat {
  max-width: 760px;
  margin: 24px 0 0;
  color: #747779;
  font-family: var(--ui);
  font-size: 9px;
  letter-spacing: .04em;
  line-height: 1.6;
}

.programme-intro { padding-bottom: 0; background: var(--charcoal-deep); }
.programme-intro .home-section-heading .small-label { color: var(--accent); }
.programme-intro .home-section-heading h2 { color: var(--white); }
.programme-intro .home-section-heading > p:last-child { color: var(--text); }
.home-programme-list {
  padding: 0 var(--pad) clamp(84px, 10vw, 145px);
  background: var(--charcoal-deep);
}
.home-programme {
  width: min(var(--max), 100%);
  min-height: 390px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(420px, 1.1fr);
  border: 1px solid var(--line);
  background: var(--charcoal);
}
.home-programme-image {
  height: 100%;
  min-height: 390px;
  max-height: 450px;
  overflow: hidden;
  background: #22272a;
}
.home-programme-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.84);
  transition: transform .8s ease, filter .5s ease;
}
.home-programme:hover .home-programme-image img { transform: scale(1.022); filter: saturate(1); }
.home-programme-copy {
  min-width: 0;
  padding: clamp(32px, 4vw, 58px);
  display: flex;
  flex-direction: column;
}
.home-programme-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}
.home-programme .model-number { margin: 0; }
.home-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #b8b9b8;
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.home-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #888;
}
.status-eu i { background: #4aa277; }
.status-homologation i { background: var(--accent); }
.status-markets i { background: #b69952; }
.status-review i { background: #96999b; }
.status-track i { background: #bd705d; }
.home-programme-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(41px, 4.5vw, 66px);
  line-height: .95;
}
.home-programme-copy > p:not(.small-label) {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.55;
}
.home-programme-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 25px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-programme-facts div {
  min-width: 0;
  padding: 14px 12px 14px 0;
  border-right: 1px solid var(--line);
}
.home-programme-facts div:not(:first-child) { padding-left: 12px; }
.home-programme-facts div:last-child { border-right: 0; }
.home-programme-facts dt {
  color: #6d7275;
  font-family: var(--ui);
  font-size: 7px;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.home-programme-facts dd {
  margin: 5px 0 0;
  color: #c9c9c7;
  font-family: var(--ui);
  font-size: 9px;
  line-height: 1.35;
}
.home-programme-actions {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: auto;
  padding-top: 24px;
}
.home-programme-actions .button { min-height: 40px; padding: 10px 16px; }
.home-programme-actions .text-link { margin-top: 0; }

.home-philosophy {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: clamp(84px, 10vw, 145px) auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--charcoal-soft);
}
.home-philosophy-image {
  height: clamp(330px, 38vw, 470px);
  overflow: hidden;
}
.home-philosophy-image img { height: 100%; object-fit: cover; }
.home-philosophy-copy {
  padding: clamp(42px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-philosophy-copy h2,
.home-engineering-copy h2,
.home-final h2 {
  margin: 18px 0 0;
  font-size: clamp(37px, 4vw, 58px);
  line-height: 1;
}
.home-philosophy-copy > p:not(.small-label),
.home-engineering-copy > p:not(.small-label) {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.6;
}
.home-philosophy-copy > p + p { margin-top: 10px; }

.home-engineering { padding-top: 0; background: var(--charcoal); }
.home-engineering-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border: 1px solid var(--line);
  background: var(--charcoal-deep);
}
.home-engineering-media {
  height: clamp(340px, 37vw, 480px);
  overflow: hidden;
}
.home-engineering-media img { height: 100%; object-fit: cover; }
.home-engineering-copy {
  padding: clamp(40px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-engineering-copy h2 { font-size: clamp(34px, 3.8vw, 54px); }

.home-final {
  padding: clamp(64px, 8vw, 105px) var(--pad);
  display: grid;
  grid-template-columns: 1.15fr .7fr auto;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  background: var(--home-paper);
  color: var(--home-muted);
}
.home-final h2 { color: var(--home-ink); }
.home-final > p { margin: 0; font-size: 17px; line-height: 1.6; }
.home-final .button-light {
  background: var(--home-ink);
  border-color: var(--home-ink);
  color: var(--home-paper);
  white-space: nowrap;
}
.home-final .button-light:hover,
.home-final .button-light:focus-visible { background: transparent; color: var(--home-ink); }

@media (max-width: 1050px) {
  .approval-row {
    grid-template-columns: 14px minmax(140px,.7fr) minmax(170px,.9fr) 1.4fr;
  }
  .approval-row b { display: none; }
  .home-programme { grid-template-columns: .85fr 1.15fr; }
  .home-programme-facts { grid-template-columns: 1fr 1fr; }
  .home-programme-facts div:nth-child(2) { border-right: 0; }
  .home-programme-facts div:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .programme-jump { top: 72px; overflow-x: auto; display: flex; }
  .programme-jump a { flex: 0 0 160px; }
  .home-programme {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-programme-image {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }
  .home-philosophy,
  .home-engineering-card,
  .home-final { grid-template-columns: 1fr; }
  .home-philosophy-image,
  .home-engineering-media { height: auto; aspect-ratio: 16 / 9; }
  .home-final .button { justify-self: start; }
}

@media (max-width: 700px) {
  .home-intro { min-height: 450px; }
  .home-intro h1 { font-size: 53px; }
  .home-panorama { height: 255px; }
  .home-actions { flex-direction: column; gap: 5px; }
  .home-actions span { width: 22px; height: 1px; }
  .approval-row {
    grid-template-columns: 12px 1fr;
    gap: 7px 12px;
    padding: 19px 2px;
  }
  .approval-row strong { grid-column: 2; }
  .approval-row em,
  .approval-row p { grid-column: 2; }
  .approval-row b { display: none; }
  .approval-dot { grid-row: 1; }
  .home-programme-list { padding-left: 12px; padding-right: 12px; }
  .home-programme-copy { padding: 29px 22px 34px; }
  .home-programme-top { align-items: flex-start; flex-direction: column; gap: 8px; }
  .home-programme-actions { align-items: stretch; flex-direction: column; gap: 0; }
  .home-programme-actions .button { width: 100%; }
  .home-programme-actions .text-link { margin-top: 18px; }
  .home-philosophy { width: calc(100% - 24px); }
  .home-philosophy-copy,
  .home-engineering-copy { padding: 38px 23px; }
}

/* V19: image-first homepage opening and title-before-image editorial order */
.home-programme {
  display: block;
  min-height: 0;
}
.home-programme-heading {
  padding: clamp(34px, 4vw, 56px) clamp(32px, 4.5vw, 64px) clamp(28px, 3vw, 40px);
}
.home-programme-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(41px, 4.5vw, 66px);
  line-height: .95;
}
.home-programme-image {
  display: block;
  height: clamp(300px, 42vw, 540px);
  min-height: 0;
  max-height: none;
}
.home-programme-copy {
  padding: clamp(30px, 3.5vw, 48px) clamp(32px, 4.5vw, 64px) clamp(38px, 4.5vw, 62px);
}
.home-programme-copy > p:not(.small-label) { margin-top: 0; }
.home-programme-actions { margin-top: 0; }

.home-philosophy,
.home-engineering-card {
  grid-template-columns: 1.12fr .88fr;
}
.home-philosophy-heading,
.home-engineering-heading {
  grid-column: 1 / -1;
  padding: clamp(42px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}
.home-philosophy-heading h2,
.home-engineering-heading h2 {
  max-width: 940px;
  margin: 18px 0 0;
  font-size: clamp(37px, 4vw, 58px);
  line-height: 1;
}
.home-philosophy-copy,
.home-engineering-copy { justify-content: flex-start; }
.home-philosophy-copy > p:first-child,
.home-engineering-copy > p:first-child { margin-top: 0; }
.home-philosophy-image,
.home-engineering-media { min-height: 360px; }

.car-hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
}
.car-hero::after { display: none; }
.car-hero-content {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 150px) var(--pad) clamp(48px, 6vw, 82px);
}
.car-hero-media {
  position: relative;
  inset: auto;
  height: clamp(430px, 65vw, 820px);
}
.car-hero-media img { object-position: center; }

.story-section,
.approval-feature,
.cad-panel {
  grid-template-columns: 1.12fr .88fr;
}
.story-heading,
.approval-heading,
.cad-heading {
  grid-column: 1 / -1;
  padding: clamp(58px, 7vw, 100px) clamp(50px, 7vw, 105px) clamp(40px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
}
.story-heading h2,
.approval-heading h2,
.cad-heading h2 {
  max-width: 980px;
  margin: 22px 0 0;
  font-size: clamp(37px, 4.5vw, 69px);
  letter-spacing: -.015em;
  line-height: 1.04;
}
.story-heading { grid-row: 1; }
.story-image {
  grid-column: 1;
  grid-row: 2;
}
.story-text {
  grid-column: 2;
  grid-row: 2;
  justify-content: flex-start;
}
.story-text p:first-child { margin-top: 0; }
.story-reverse .story-image {
  grid-column: 2;
  order: 0;
}
.story-reverse .story-text { grid-column: 1; }

.approval-heading,
.cad-heading { grid-row: 1; }
.approval-heading .approval-status {
  margin-bottom: 0;
}
.approval-image {
  grid-column: 1;
  grid-row: 2;
}
.approval-copy {
  grid-column: 2;
  grid-row: 2;
  justify-content: flex-start;
}
.approval-copy p:first-child,
.cad-copy p:first-child { margin-top: 0; }
.cad-media {
  grid-column: 2;
  grid-row: 2;
}
.cad-copy {
  grid-column: 1;
  grid-row: 2;
  justify-content: flex-start;
}

.next-car {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--charcoal-deep);
  text-align: center;
}
.next-car::after { display: none; }
.next-car-copy {
  position: relative;
  z-index: 1;
  padding: clamp(58px, 8vw, 105px) var(--pad);
}
.next-car-copy h2 { margin-bottom: 18px; }
.next-car > img {
  position: relative;
  inset: auto;
  width: 100%;
  height: clamp(360px, 55vw, 700px);
}

@media (max-width: 900px) {
  .home-philosophy,
  .home-engineering-card,
  .story-section,
  .story-section.story-reverse,
  .approval-feature,
  .cad-panel { grid-template-columns: 1fr; }
  .home-philosophy-heading,
  .home-engineering-heading,
  .story-heading,
  .approval-heading,
  .cad-heading { grid-column: 1; }
  .story-image,
  .story-reverse .story-image,
  .approval-image,
  .cad-media {
    grid-column: 1;
    grid-row: 2;
  }
  .story-text,
  .story-reverse .story-text,
  .approval-copy,
  .cad-copy {
    grid-column: 1;
    grid-row: 3;
  }
  .home-philosophy-image,
  .home-engineering-media { min-height: 0; }
}

@media (max-width: 700px) {
  .home-panorama { height: clamp(280px, 78vw, 440px); }
  .home-interlude { height: clamp(280px, 72vw, 440px); }
  .home-programme-heading,
  .home-programme-copy { padding-left: 22px; padding-right: 22px; }
  .home-programme-image { height: auto; aspect-ratio: 16 / 10; }
  .home-philosophy-heading,
  .home-engineering-heading,
  .story-heading,
  .approval-heading,
  .cad-heading { padding: 42px 23px 32px; }
  .car-hero-content { padding: 66px 21px 44px; }
  .car-hero-media { height: 78vw; min-height: 310px; }
  .story-image,
  .approval-image,
  .cad-media { min-height: 78vw; }
}

/* V21: enquiries, galleries and standalone brand pages */
.photo-enquiry { position: relative; }
.photo-enquiry-link {
  position: absolute;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 8;
  min-height: 44px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(17,20,22,.88);
  color: var(--white);
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.photo-enquiry-link:hover,
.photo-enquiry-link:focus-visible { background: var(--accent); border-color: var(--accent); }
.photo-enquiry-link span { font-size: 14px; }
.photo-enquiry-link .editable-link-text { font-size: inherit; }
.home-programme-media { position: relative; }
.home-programme-media .home-programme-image { width: 100%; }

.header-contact-lines {
  margin: 13px 0 4px;
  display: grid;
  gap: 8px;
}
.header-contact-lines a {
  min-height: 44px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  color: #aeb2b3;
  font-family: var(--ui);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.header-contact-lines a:hover,
.header-contact-lines a:focus-visible { border-color: var(--accent); color: var(--white); }

.approval-row {
  grid-template-columns: 14px minmax(135px,.55fr) minmax(160px,.75fr) minmax(170px,.8fr) minmax(250px,1.3fr) 95px;
}
.approval-format {
  color: #686d6f;
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.site-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #202427;
}
.gallery-slides,
.gallery-slide { width: 100%; height: 100%; }
.gallery-slide { margin: 0; }
.gallery-slide[hidden] { display: none; }
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 7;
  width: 58px;
  height: 64px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.76);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
}
.gallery-previous { left: 20px; }
.gallery-next { right: 20px; }
.gallery-arrow:hover,
.gallery-arrow:focus-visible { background: var(--accent); }
.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 23px;
  z-index: 7;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.gallery-dots button {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.42);
}
.gallery-dots button[aria-current="true"] { background: #fff; }
.home-interlude .site-gallery { min-height: inherit; }

/* Every managed public photograph can hold a click-through gallery. */
.brand-feature-media > .site-gallery,
.story-image > .site-gallery,
.approval-image > .site-gallery,
.cad-media > .site-gallery { min-height: inherit; }
.commission-image > .site-gallery { position: absolute; inset: 0; }
.next-car-copy {
  display: block;
  color: var(--white);
  text-decoration: none;
}
.next-car-gallery {
  width: 100%;
  height: clamp(360px, 55vw, 700px);
}
.next-car-gallery .site-gallery { height: 100%; }

.custom-home-section {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: clamp(84px, 10vw, 145px) auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border: 1px solid var(--line);
  background: var(--charcoal-soft);
}
.custom-home-heading {
  grid-column: 1 / -1;
  padding: clamp(42px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}
.custom-home-heading h2 {
  max-width: 950px;
  margin: 18px 0 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .98;
}
.custom-home-gallery { min-height: clamp(380px, 45vw, 620px); }
.custom-home-copy {
  padding: clamp(42px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.custom-home-copy p { margin: 0; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; }
.custom-home-full-gallery .custom-home-gallery { grid-column: 1 / -1; }
.custom-home-full-gallery .custom-home-copy { grid-column: 1 / -1; }
.custom-home-text { grid-template-columns: 1fr; }
.custom-home-text .custom-home-heading,
.custom-home-text .custom-home-copy { grid-column: 1; }

.brand-page { background: var(--charcoal); }
.brand-page-hero { background: var(--charcoal-deep); }
.brand-page-hero-copy {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 150px) var(--pad) clamp(52px, 7vw, 90px);
}
.brand-page-hero-copy h1 {
  max-width: 1050px;
  margin: 18px 0 0;
  font-size: clamp(62px, 9vw, 132px);
  letter-spacing: -.025em;
  line-height: .92;
}
.brand-page-hero-copy > p:last-child {
  max-width: 780px;
  margin: 28px 0 0;
  color: #c1c2c0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}
.brand-page-hero-media {
  height: clamp(430px, 64vw, 820px);
  overflow: hidden;
}
.brand-page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.brand-page-intro { background: var(--home-paper); color: var(--home-muted); }
.brand-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(160px,.4fr) minmax(420px,1.6fr);
  gap: clamp(40px, 8vw, 120px);
}
.brand-page-intro-grid h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .98;
}
.brand-page-intro-grid > div > p {
  max-width: 800px;
  margin: 26px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}
.brand-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border-top: 1px solid var(--line);
  background: var(--charcoal);
}
.brand-feature:nth-of-type(even) { background: var(--charcoal-soft); }
.brand-feature-heading {
  grid-column: 1 / -1;
  padding: clamp(58px, 7vw, 105px) clamp(50px, 7vw, 105px) clamp(40px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
}
.brand-feature-heading h2 {
  max-width: 990px;
  margin: 20px 0 0;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .98;
}
.brand-feature-media { min-height: 620px; overflow: hidden; }
.brand-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.brand-feature-copy {
  padding: clamp(50px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-feature-copy p {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}
.brand-feature-copy p + p { margin-top: 18px; }
.brand-feature-reverse .brand-feature-media { grid-column: 2; }
.brand-feature-reverse .brand-feature-copy { grid-column: 1; grid-row: 2; }
.engineering-principles { background: var(--charcoal-deep); }
.brand-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brand-principle-grid article {
  min-height: 300px;
  padding: clamp(28px, 3vw, 45px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-principle-grid span { color: var(--accent); font-family: var(--ui); font-size: 8px; letter-spacing: .14em; }
.brand-principle-grid h3 { margin: 70px 0 14px; font-size: clamp(25px, 2.7vw, 38px); }
.brand-principle-grid p { margin: 0; line-height: 1.65; }

.contact-options-section { background: var(--home-paper); color: var(--home-ink); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,.18);
  border-left: 1px solid rgba(0,0,0,.18);
}
.contact-language-card {
  min-height: 420px;
  padding: clamp(38px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(0,0,0,.18);
}
.contact-language-card h2 { margin: 28px 0 50px; font-size: clamp(38px, 4.5vw, 64px); line-height: 1; }
.contact-language-card > a {
  margin-top: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(0,0,0,.2);
  color: var(--home-ink);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .06em;
}
.contact-language-card .contact-primary-link {
  margin-top: auto;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: var(--home-ink);
  color: #fff;
  text-transform: uppercase;
}
.contact-offices {
  margin-top: clamp(50px, 7vw, 95px);
  padding: clamp(38px, 5vw, 72px);
  background: #303438;
  color: #b8b8b5;
}
.contact-offices > .small-label { margin: 0 0 42px; color: var(--accent); }
.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 6vw, 90px);
}
.contact-office-card { min-width: 0; }
.contact-office-card h3 {
  margin: 0 0 9px;
  color: #f0f0ed;
  font-family: var(--ui);
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-office-card .contact-office-city {
  margin: 0;
  color: #f0f0ed;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-office-rule { display: block; width: 60px; margin: 24px 0 30px; border-top: 1px solid #e5e5e2; }
.contact-office-card > strong {
  display: block;
  margin-bottom: 13px;
  color: #b99262;
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.contact-office-card > p:not(.contact-office-city) { min-height: 76px; margin: 0 0 18px; line-height: 1.65; }
.contact-office-card > a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 11px;
  color: #e8e8e5;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .045em;
  overflow-wrap: anywhere;
}
.contact-office-card > a:hover,
.contact-office-card > a:focus-visible { color: var(--accent); }
.contact-office-card b { font-weight: 700; }
.contact-location {
  margin-top: clamp(50px, 7vw, 95px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
}
.contact-location h2 { margin: 19px 0 0; font-size: clamp(42px, 5vw, 72px); line-height: 1; }
.contact-location p { font-size: 18px; line-height: 1.65; }
.contact-location .button { margin-top: 20px; }
.contact-location-note { padding: 34px; border: 1px solid rgba(0,0,0,.18); }
.contact-location-note strong { font-family: var(--ui); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-location-note p { margin-bottom: 0; font-size: 16px; }
.contact-map-section {
  margin-top: clamp(42px, 6vw, 82px);
  border: 1px solid rgba(0,0,0,.18);
  background: #d8d9d6;
}
.contact-map-frame {
  display: block;
  width: 100%;
  min-height: clamp(420px, 58vw, 680px);
  border: 0;
}

@media (max-width: 1120px) {
  .approval-row {
    grid-template-columns: 14px minmax(130px,.65fr) minmax(155px,.8fr) minmax(190px,1fr) minmax(250px,1.4fr);
  }
  .approval-row b { display: none; }
}

@media (max-width: 900px) {
  .approval-row { grid-template-columns: 14px minmax(140px,.7fr) minmax(180px,.9fr) minmax(190px,1fr); }
  .approval-row p { grid-column: 2 / -1; }
  .custom-home-section,
  .brand-feature,
  .brand-feature-reverse,
  .brand-page-intro-grid,
  .contact-location { grid-template-columns: 1fr; }
  .contact-office-grid { grid-template-columns: 1fr 1fr; }
  .custom-home-heading,
  .custom-home-gallery,
  .custom-home-copy,
  .brand-feature-heading,
  .brand-feature-media,
  .brand-feature-copy,
  .brand-feature-reverse .brand-feature-media,
  .brand-feature-reverse .brand-feature-copy { grid-column: 1; }
  .brand-feature-heading { grid-row: 1; }
  .brand-feature-media,
  .brand-feature-reverse .brand-feature-media { grid-row: 2; }
  .brand-feature-copy,
  .brand-feature-reverse .brand-feature-copy { grid-row: 3; }
  .brand-principle-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .photo-enquiry-link {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
  .gallery-arrow { width: 46px; height: 52px; font-size: 32px; }
  .gallery-previous { left: 10px; }
  .gallery-next { right: 10px; }
  .gallery-dots { bottom: 74px; }
  .approval-row {
    grid-template-columns: 12px 1fr;
    gap: 7px 12px;
  }
  .approval-row strong,
  .approval-row em,
  .approval-row .approval-format,
  .approval-row p { grid-column: 2; }
  .custom-home-section { width: calc(100% - 24px); }
  .custom-home-heading,
  .custom-home-copy { padding: 38px 23px; }
  .custom-home-gallery { min-height: 74vw; }
  .brand-page-hero-copy { padding: 64px 21px 44px; }
  .brand-page-hero-copy h1 { font-size: 58px; }
  .brand-page-hero-media { height: 78vw; min-height: 320px; }
  .brand-feature-heading,
  .brand-feature-copy { padding: 42px 23px; }
  .brand-feature-media { min-height: 78vw; }
  .brand-principle-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .contact-office-grid { grid-template-columns: 1fr; }
  .contact-office-card > p:not(.contact-office-city) { min-height: 0; }
  .brand-principle-grid article { min-height: 240px; }
  .contact-language-card { min-height: 350px; }
}

/* V22: concise approval summary and previous commissions archive */
.road-approval-note {
  padding: 26px clamp(24px, 4.5vw, 76px);
  display: grid;
  grid-template-columns: minmax(145px, .55fr) minmax(280px, 1.5fr) auto;
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,.16);
  border-bottom: 1px solid rgba(0,0,0,.16);
  background: #e3e4e1;
  color: #202326;
}
.road-approval-note p { margin: 0; }
.road-approval-note > p:nth-child(2) { font-size: 15px; line-height: 1.5; }
.road-approval-note > a {
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.road-approval-note > a span { margin-left: 10px; color: var(--accent); font-size: 14px; }
.road-approval-note > a .editable-link-text { margin-left: 0; color: inherit; font-size: inherit; }

.commissions-page { background: var(--charcoal); }
.commissions-intro {
  min-height: 520px;
  padding: clamp(90px, 12vw, 175px) var(--pad) clamp(65px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .55fr);
  gap: clamp(90px, 8vw, 155px);
  align-items: end;
  background: var(--charcoal-deep);
}
.commissions-intro > div { min-width: 0; }
.commissions-intro h1 {
  max-width: 1080px;
  margin: 22px 0 0;
  font-size: clamp(58px, 7vw, 104px);
  line-height: .9;
}
.commissions-intro > p {
  max-width: 610px;
  margin: 0;
  color: var(--text-bright);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}
@media (max-width: 1200px) {
  .commissions-intro {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(38px, 6vw, 64px);
    align-items: start;
  }
  .commissions-intro h1 {
    max-width: 920px;
    font-size: clamp(58px, 9vw, 100px);
  }
  .commissions-intro > p {
    max-width: 680px;
    margin-left: auto;
  }
}
.commission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.commission-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal-soft);
}
.commission-image {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #202427;
}
.commission-image img { width: 100%; height: 100%; object-fit: cover; }
.commission-image figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  padding: 7px 10px;
  background: rgba(30,34,37,.82);
  color: var(--white);
  font-family: var(--ui);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.commission-copy { padding: clamp(34px, 5vw, 72px); }
.commission-copy h2 {
  margin: 22px 0 24px;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: .95;
}
.commission-copy > p:not(.small-label) {
  max-width: 650px;
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.65;
}
.commission-specs { margin: 0; border-top: 1px solid var(--line); }
.commission-specs div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: minmax(90px, .45fr) 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.commission-specs dt,
.commission-specs dd { margin: 0; }
.commission-specs dt {
  color: #777d80;
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.commission-specs dd { color: var(--text-bright); font-size: 14px; line-height: 1.45; }
.commissions-note {
  padding: clamp(70px, 9vw, 125px) var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  background: var(--charcoal-deep);
}
.commissions-note p { max-width: 720px; margin: 0; font-size: 17px; }

@media (max-width: 600px) {
  .commissions-intro { padding-left: 22px; padding-right: 22px; }
  .commissions-intro h1 { font-size: 54px; }
  .commission-copy { padding: 38px 23px; }
  .commission-specs div { grid-template-columns: 88px 1fr; }
}

.header-contact {
  margin-top: auto;
}
