@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/bodoni-moda-italic-400.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --color-navy-950: oklch(13% 0.028 245);
  --color-navy-900: oklch(17% 0.028 245);
  --color-navy-800: oklch(23% 0.026 245);
  --color-surface: oklch(96% 0.008 70);
  --color-surface-2: oklch(92% 0.009 70);
  --color-ink: oklch(16% 0.02 245);
  --color-text-on-dark: oklch(97% 0.006 70);
  --color-muted-light: oklch(69% 0.018 245);
  --color-muted-dark: oklch(40% 0.018 245);
  --color-red: oklch(56.5% 0.22 28);
  --color-red-dark: oklch(48% 0.19 28);
  --color-success: oklch(51% 0.14 150);
  --color-error: oklch(50% 0.2 28);
  --color-line-dark: oklch(34% 0.02 245);
  --color-line-light: oklch(81% 0.01 70);
  --font-sans: "Manrope", "Avenir Next", Arial, sans-serif;
  --font-serif: "Bodoni Moda", "Bodoni 72", Didot, serif;
  --text-body: 1rem;
  --text-small: 0.8125rem;
  --text-label: 0.75rem;
  --text-card-title: 1rem;
  --text-subheading: clamp(1.25rem, 1.3vw, 1.6rem);
  --text-heading: clamp(2.8rem, 6vw, 6rem);
  --text-section-heading: clamp(2.45rem, 4.7vw, 5.2rem);
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(5rem, 9vw, 8rem);
  --container: 108rem;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --rail-width: 5.5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.75rem;
  --z-sticky: 300;
  --z-dialog: 500;
  --z-toast: 600;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--color-navy-950);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-kerning: normal;
  font-optical-sizing: auto;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus,
summary:focus {
  outline: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 0.125rem solid var(--color-red);
  outline-offset: 0.25rem;
}

::selection {
  background: var(--color-red);
  color: var(--color-text-on-dark);
}

[hidden] {
  display: none !important;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: calc(var(--z-toast) + 1);
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  color: var(--color-ink);
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease-out-quart);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.light-section {
  background: var(--color-surface);
  color: var(--color-ink);
}

.dark-section {
  background: var(--color-navy-950);
  color: var(--color-text-on-dark);
}

.section-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-section);
}

.section-with-rail {
  position: relative;
  overflow: clip;
}

.section-rail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--page-gutter) 0;
  font-variant-numeric: tabular-nums;
}

.section-rail strong {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 400;
}

.section-rail span {
  width: 2.5rem;
  height: 0.125rem;
  background: var(--color-red);
}

.dark-section .section-rail {
  color: var(--color-text-on-dark);
}

.section-heading p {
  margin: 0 0 var(--space-lg);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  max-width: 17ch;
  font-size: var(--text-section-heading);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

.section-heading h2 em {
  color: inherit;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.accent-period {
  color: var(--color-red);
  font-family: var(--font-sans);
  font-style: normal;
}

.heading-note {
  position: relative;
  display: block;
  max-width: 68ch;
  margin-top: var(--space-xl);
  padding-left: 3.4rem;
  color: var(--color-muted-dark);
  font-size: var(--text-body);
  line-height: 1.7;
  text-wrap: pretty;
}

.heading-note::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 2.4rem;
  height: 0.125rem;
  background: var(--color-red);
}

.dark-section .heading-note {
  color: var(--color-muted-light);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-xl);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s var(--ease-out-quart);
}

.button svg,
.header-call svg,
.hero-contact svg,
.inventory-proof a svg,
.vehicle-card__body svg,
.review-quote a svg,
.location-panel a svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 0.2s var(--ease-out-quart);
}

.button--red {
  background: var(--color-red);
  color: var(--color-text-on-dark);
}

.button--outline {
  border: 0.0625rem solid var(--color-line-dark);
  background: var(--color-navy-900);
  color: var(--color-text-on-dark);
}

.button:active {
  transform: scale(0.98);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.icon-button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 2rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: var(--z-sticky);
  inset: 0 0 auto;
  color: var(--color-text-on-dark);
  transition: background-color 0.3s var(--ease-out-quart), backdrop-filter 0.3s var(--ease-out-quart);
}

.site-header.is-scrolled {
  background: oklch(13% 0.028 245 / 0.92);
  backdrop-filter: blur(1rem);
}

.site-header__inner {
  display: flex;
  width: min(100%, var(--container));
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.brand {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  gap: var(--space-md);
}

.brand__mark {
  position: relative;
  display: grid;
  width: 3.8rem;
  height: 3.2rem;
  place-items: center;
  padding-right: var(--space-md);
  color: var(--color-text-on-dark);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.17em;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 0.125rem;
  background: var(--color-red);
}

.brand__name {
  display: none;
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand__name small {
  display: block;
  color: var(--color-muted-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
}

.desktop-nav,
.header-call {
  display: none;
}

.menu-button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.4rem;
  border: 0.0625rem solid var(--color-line-dark);
  background: var(--color-navy-900);
}

.menu-button span {
  width: 1.25rem;
  height: 0.0625rem;
  background: currentColor;
}

.mobile-menu {
  width: min(90vw, 28rem);
  max-height: calc(100svh - 2rem);
  margin: var(--space-md) var(--space-md) auto auto;
  padding: var(--space-xl);
  border: 0.0625rem solid var(--color-line-dark);
  border-radius: var(--radius-md);
  background: var(--color-navy-900);
  color: var(--color-text-on-dark);
  z-index: var(--z-dialog);
}

.mobile-menu::backdrop {
  background: oklch(5% 0.02 245 / 0.72);
  backdrop-filter: blur(0.35rem);
}

.mobile-menu[open] {
  animation: dialog-enter 0.32s var(--ease-out-expo) both;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-lg);
  border-bottom: 0.0625rem solid var(--color-line-dark);
}

.mobile-menu__top p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
  margin-block: var(--space-xl);
}

.mobile-menu nav a {
  min-height: 3.6rem;
  padding-block: var(--space-md);
  border-bottom: 0.0625rem solid var(--color-line-dark);
  font-size: 1.25rem;
}

.mobile-menu .button {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 54rem;
  align-items: start;
  overflow: hidden;
  background: var(--color-navy-950);
  color: var(--color-text-on-dark);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, var(--color-navy-950) 0 34%, transparent 66%);
  pointer-events: none;
}

.hero__image {
  position: absolute;
  z-index: -2;
  inset: 33% 0 0;
  overflow: hidden;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-navy-950), transparent 52%);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 72%;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(8.5rem, 19vh, 11rem);
}

.hero__eyebrow {
  display: flex;
  max-width: 38rem;
  align-items: center;
  gap: var(--space-md);
  margin: 0 0 var(--space-xl);
  color: var(--color-muted-light);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__eyebrow span {
  flex: 0 0 2.4rem;
  height: 0.125rem;
  background: var(--color-red);
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: var(--text-heading);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--color-surface);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero__mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.hero__index {
  display: none;
}

.hero-contact {
  display: grid;
  gap: var(--space-sm);
  width: min(100%, var(--container));
  margin-top: var(--space-xl);
  margin-inline: auto;
  padding: var(--space-md) var(--page-gutter);
  border-left: 0.1875rem solid var(--color-red);
  background: oklch(13% 0.028 245 / 0.92);
  box-shadow: 0 0.75rem 1.5rem oklch(8% 0.02 245 / 0.25);
}

.hero-contact a {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-on-dark);
  font-size: var(--text-small);
  font-weight: 500;
}

.hero-contact a svg {
  flex: 0 0 auto;
  color: var(--color-red);
}

.hero-contact__cta {
  display: none !important;
}

/* Inventory */
.inventory::after {
  content: "";
  position: absolute;
  width: min(64rem, 75vw);
  aspect-ratio: 1;
  top: -28rem;
  right: -20rem;
  border: 8rem solid var(--color-surface-2);
  border-radius: 50%;
  opacity: 0.75;
}

.inventory__heading {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-2xl);
}

.inventory__heading h2 {
  max-width: 16ch;
}

.vehicle-filter {
  position: relative;
  z-index: 2;
  display: grid;
  overflow: clip;
  margin-bottom: var(--space-sm);
  border: 0.0625rem solid var(--color-line-light);
  background: var(--color-surface);
}

.vehicle-filter label {
  position: relative;
  min-width: 0;
  padding: var(--space-sm) var(--space-lg);
  border-bottom: 0.0625rem solid var(--color-line-light);
}

.vehicle-filter label span {
  display: block;
  margin-bottom: var(--space-2xs);
  color: var(--color-muted-dark);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-filter select {
  width: 100%;
  min-height: 2.25rem;
  border: 0;
  background: transparent;
  font-size: var(--text-body);
  font-weight: 600;
  text-transform: uppercase;
}

.vehicle-filter :is(select, button):focus-visible {
  outline-offset: -0.25rem;
}

.vehicle-filter button {
  display: flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  border: 0;
  background: var(--color-navy-950);
  color: var(--color-text-on-dark);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vehicle-filter button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: var(--color-red);
  stroke-width: 1.7;
}

.filter-status {
  margin: 0 0 var(--space-lg);
  color: var(--color-muted-dark);
  font-size: var(--text-small);
}

.vehicle-grid {
  display: grid;
  gap: var(--space-md);
}

.vehicle-card {
  min-width: 0;
  overflow: hidden;
  border: 0.0625rem solid var(--color-line-light);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: border-color 0.2s ease, transform 0.25s var(--ease-out-quart);
}

.vehicle-card:focus-within {
  outline: 0.125rem solid var(--color-red);
  outline-offset: -0.1875rem;
}

.vehicle-card > a:focus-visible {
  outline: 0;
}

.vehicle-card__image {
  aspect-ratio: 1.94 / 1;
  overflow: hidden;
  background: var(--color-navy-900);
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-quint), filter 0.3s ease;
}

.vehicle-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
}

.vehicle-card__body h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: var(--text-card-title);
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vehicle-card__body strong {
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.vehicle-card__body svg {
  color: var(--color-red);
}

.vehicle-card__body p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-muted-dark);
  font-size: var(--text-small);
  font-variant-numeric: tabular-nums;
}

.vehicle-card.is-filtered-out {
  display: none;
}

.empty-state {
  padding: var(--space-2xl);
  border: 0.0625rem solid var(--color-line-light);
  text-align: center;
}

.empty-state p {
  margin: 0 0 var(--space-md);
}

.text-action {
  min-height: 2.75rem;
  border: 0;
  border-bottom: 0.125rem solid var(--color-red);
  background: transparent;
  font-weight: 600;
}

.inventory-proof {
  display: grid;
  margin-top: var(--space-lg);
  background: var(--color-navy-950);
  color: var(--color-text-on-dark);
}

.inventory-proof > div {
  display: grid;
  min-height: 8.5rem;
  place-content: center;
  padding: var(--space-xl);
  border-bottom: 0.0625rem solid var(--color-line-dark);
  text-align: center;
}

.inventory-proof strong,
.trust-band strong {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.inventory-proof span,
.trust-band span {
  margin-top: var(--space-sm);
  color: var(--color-muted-light);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inventory-proof > a {
  display: flex;
  min-height: 6rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--color-red);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

/* Services */
.services {
  isolation: isolate;
}

.services__arc {
  position: absolute;
  z-index: -1;
  width: 75rem;
  aspect-ratio: 1;
  top: -41rem;
  right: -18rem;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.65;
}

.services__arc::before {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(90deg, transparent, var(--color-navy-950) 88%), url("assets/hero-automobile-nord.webp") center 62% / cover no-repeat;
}

.services__heading {
  margin-bottom: var(--space-2xl);
}

.service-grid {
  display: grid;
  border-top: 0.0625rem solid var(--color-line-dark);
  border-left: 0.0625rem solid var(--color-line-dark);
}

.service-module {
  min-height: 13rem;
  padding: var(--space-xl);
  border-right: 0.0625rem solid var(--color-line-dark);
  border-bottom: 0.0625rem solid var(--color-line-dark);
  transition: transform 0.25s var(--ease-out-quart), background-color 0.25s ease;
}

.service-module > svg {
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: var(--space-xl);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.service-module text {
  fill: currentColor;
  stroke: none;
  font-family: var(--font-sans);
  font-size: 0.5rem;
}

.service-module h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-module p {
  max-width: 32ch;
  margin: 0;
  color: currentColor;
  font-size: 0.875rem;
  opacity: 0.82;
}

.service-module--dark {
  background: var(--color-navy-900);
  color: var(--color-text-on-dark);
}

.service-module--light {
  background: var(--color-surface);
  color: var(--color-ink);
}

.service-module--red {
  background: var(--color-red);
  color: var(--color-text-on-dark);
}

.process {
  margin-top: var(--space-2xl);
}

.process > h3 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: 0 0 var(--space-xl);
  color: var(--color-muted-light);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process > h3::before {
  content: "";
  width: 2.3rem;
  height: 0.125rem;
  background: var(--color-red);
}

.process ol {
  position: relative;
  display: grid;
  gap: var(--space-xl);
  margin: 0 0 var(--space-xl);
  padding: 0;
  list-style: none;
}

.process li {
  position: relative;
  display: grid;
  grid-template-columns: auto 2.75rem 1fr;
  align-items: center;
  gap: var(--space-md);
}

.process li strong {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 400;
}

.process li svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.process li span {
  color: var(--color-muted-light);
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process .button {
  width: 100%;
  border-radius: 0;
}

/* About and trust */
.about__top {
  display: grid;
  gap: var(--space-2xl);
  padding-top: var(--space-section);
}

.about__heading {
  align-self: center;
}

.about__heading h2 {
  max-width: 19ch;
}

.about__image {
  min-height: 20rem;
  margin: 0;
  overflow: hidden;
  border-top-left-radius: 70% 75%;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-band {
  position: relative;
  display: grid;
  margin-top: var(--space-3xl);
  padding: var(--space-2xl) var(--page-gutter) var(--space-3xl);
  background: var(--color-navy-950);
  color: var(--color-text-on-dark);
}

.trust-band > div {
  display: grid;
  min-height: 8rem;
  place-content: center;
  border-bottom: 0.0625rem solid var(--color-line-dark);
  text-align: center;
}

.trust-band p {
  grid-column: 1 / -1;
  margin: var(--space-xl) 0 0;
  color: var(--color-muted-light);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.trust-band p::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 0.125rem;
  margin-right: var(--space-md);
  background: var(--color-red);
  vertical-align: middle;
}

.trust-content {
  display: grid;
  gap: var(--space-2xl);
  padding-block: var(--space-3xl) var(--space-section);
}

.review-quote {
  margin: 0;
  border: 0.0625rem solid var(--color-line-light);
  background: var(--color-surface);
}

.review-quote p {
  margin: 0;
  padding: var(--space-xl);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
  text-wrap: pretty;
}

.review-quote footer {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--color-muted-dark);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-quote a {
  display: flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-red);
  color: var(--color-text-on-dark);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Team */
.team {
  position: relative;
}

.team__arc {
  position: absolute;
  top: -19rem;
  right: -17rem;
  width: 46rem;
  aspect-ratio: 1;
  border: 0.0625rem solid var(--color-line-dark);
  border-radius: 50%;
  opacity: 0.75;
}

.team__heading {
  position: relative;
}

.team__heading h2 {
  max-width: 13ch;
}

.team-grid {
  position: relative;
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.team-card {
  overflow: hidden;
  border: 0.0625rem solid var(--color-line-dark);
  background: var(--color-navy-900);
}

.team-card__image {
  position: relative;
  aspect-ratio: 4 / 4.35;
  margin: 0;
  overflow: hidden;
}

.team-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 56%, oklch(13% 0.028 245 / 0.28));
  pointer-events: none;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out-quart);
}

.team-card__content {
  padding: var(--space-xl);
}

.team-card__content p,
.team-card__content span {
  display: block;
  margin: 0;
  color: var(--color-muted-light);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card__content h3 {
  margin: var(--space-xs) 0 var(--space-sm);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.team-card__content span {
  color: var(--color-text-on-dark);
  font-size: 0.6875rem;
}

.faq h3,
.contact-form h3 {
  margin: 0 0 var(--space-lg);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq h3::after,
.contact-form h3::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 0.125rem;
  margin-top: var(--space-sm);
  background: var(--color-red);
}

.faq details {
  border: 0.0625rem solid var(--color-line-light);
  border-bottom: 0;
}

.faq details:last-child {
  border-bottom: 0.0625rem solid var(--color-line-light);
}

.faq summary {
  position: relative;
  min-height: 3.75rem;
  padding: var(--space-md) 3.5rem var(--space-md) var(--space-lg);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: var(--space-lg);
  color: var(--color-red);
  font-size: 1.4rem;
  transform: translateY(-50%);
  transition: transform 0.25s var(--ease-out-quart);
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  max-width: 65ch;
  margin: 0;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-muted-dark);
  font-size: var(--text-body);
  text-wrap: pretty;
}

/* Contact */
.contact {
  isolation: isolate;
}

.contact__arc {
  position: absolute;
  z-index: 0;
  width: min(48rem, 70vw);
  aspect-ratio: 1;
  top: -27rem;
  right: -26rem;
  border-radius: 50%;
  background: var(--color-red);
}

.contact__heading {
  margin-bottom: var(--space-2xl);
}

.contact-grid {
  display: grid;
  gap: var(--space-md);
}

.location-panel,
.contact-details,
.contact-form {
  position: relative;
  min-width: 0;
  border: 0.0625rem solid var(--color-line-light);
  border-radius: 0;
  background: var(--color-surface);
}

.location-panel {
  min-height: 30rem;
  overflow: hidden;
  background: var(--color-surface-2);
}

.location-panel__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-panel__content {
  position: absolute;
  z-index: 2;
  left: var(--space-lg);
  bottom: var(--space-lg);
}

.location-panel .button,
.contact-form .button {
  border-radius: 0;
}

.brand--dark .brand__mark,
.brand--dark .brand__name {
  color: var(--color-ink);
}

.location-panel .brand__name {
  display: inline;
}

.location-panel address {
  margin: var(--space-sm) 0 var(--space-lg) 4.8rem;
  font-size: var(--text-small);
  font-style: normal;
}

.location-panel__city {
  position: absolute;
  right: var(--space-lg);
  bottom: var(--space-lg);
  font-size: 0.875rem;
}

.contact-details {
  display: grid;
  align-content: center;
  padding: var(--space-lg);
}

.contact-details > a,
.contact-details > span {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: var(--space-md);
  min-height: 4.5rem;
  padding-block: var(--space-sm);
  border-bottom: 0.0625rem solid var(--color-line-light);
  font-variant-numeric: tabular-nums;
}

.contact-details > :last-child {
  border-bottom: 0;
}

.contact-details svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-details a:first-child svg {
  color: var(--color-red);
}

.contact-details small {
  display: block;
  margin-bottom: var(--space-2xs);
  color: var(--color-muted-dark);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-form {
  align-self: stretch;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-surface) 65%, oklch(90% 0.04 28));
}

.form-field {
  position: relative;
  margin-bottom: var(--space-lg);
}

.form-field label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-muted-dark);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: var(--space-sm) 0;
  border: 0;
  border-bottom: 0.0625rem solid var(--color-muted-dark);
  border-radius: 0;
  background: transparent;
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--color-red);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-bottom-color: var(--color-error);
}

.field-error {
  min-height: 1.25rem;
  margin: var(--space-xs) 0 0;
  color: var(--color-error);
  font-size: var(--text-body);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 1.5rem;
  margin: var(--space-md) 0 0;
  color: var(--color-muted-dark);
  font-size: var(--text-small);
}

.form-status.is-success {
  color: var(--color-success);
}

.form-status.is-error {
  color: var(--color-error);
}

/* Footer */
.site-footer {
  background: var(--color-navy-950);
  color: var(--color-text-on-dark);
}

.site-footer__inner {
  display: grid;
  gap: var(--space-2xl);
  padding-block: var(--space-3xl) max(var(--space-3xl), env(safe-area-inset-bottom));
}

.site-footer h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer h2::after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.125rem;
  margin-top: var(--space-xs);
  background: var(--color-red);
}

.site-footer__inner > div:not(.site-footer__legal) a,
.site-footer__text {
  display: block;
  min-height: 2.4rem;
  color: var(--color-muted-light);
  font-size: var(--text-small);
}

.site-footer__legal {
  padding-top: var(--space-lg);
  border-top: 0.0625rem solid var(--color-line-dark);
}

.site-footer__legal p {
  margin: 0 0 var(--space-sm);
  color: var(--color-muted-light);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: var(--z-toast);
  right: var(--space-md);
  bottom: max(var(--space-md), env(safe-area-inset-bottom));
  max-width: min(24rem, calc(100vw - 2rem));
  padding: var(--space-md) var(--space-lg);
  border: 0.0625rem solid var(--color-line-dark);
  border-radius: var(--radius-sm);
  background: var(--color-navy-900);
  color: var(--color-text-on-dark);
}

.toast:not([hidden]) {
  animation: toast-enter 0.28s var(--ease-out-expo) both;
}

/* Motion */
body.is-ready .hero__image {
  animation: hero-image-enter 0.85s var(--ease-out-expo) both;
}

body.is-ready .hero__eyebrow,
body.is-ready .hero h1,
body.is-ready .hero__mobile-actions,
body.is-ready .hero-contact {
  animation: hero-copy-enter 0.72s var(--ease-out-expo) both;
}

body.is-ready .hero h1 {
  animation-delay: 0.08s;
}

body.is-ready .hero__mobile-actions {
  animation-delay: 0.16s;
}

body.is-ready .hero-contact {
  animation-delay: 0.24s;
}

@keyframes hero-image-enter {
  from { clip-path: inset(0 0 100% 0); filter: blur(0.7rem); }
  to { clip-path: inset(0); filter: blur(0); }
}

@keyframes hero-copy-enter {
  from { opacity: 0.35; transform: translateY(1.25rem); filter: blur(0.35rem); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

@keyframes dialog-enter {
  from { opacity: 0; transform: translateX(1rem); }
  to { opacity: 1; transform: none; }
}

@keyframes toast-enter {
  from { opacity: 0; transform: translateY(0.75rem); }
  to { opacity: 1; transform: none; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .header-call:hover {
    transform: translateY(-0.125rem);
  }

  .button--red:hover,
  .inventory-proof > a:hover,
  .review-quote a:hover {
    background: var(--color-red-dark);
  }

  .button:hover svg,
  .hero-contact a:hover svg,
  .inventory-proof a:hover svg,
  .review-quote a:hover svg {
    transform: translateX(0.25rem);
  }

  .desktop-nav a:hover,
  .site-footer a:hover {
    color: var(--color-text-on-dark);
  }

  .vehicle-card:hover {
    border-color: var(--color-red);
    transform: translateY(-0.25rem);
  }

  .vehicle-card:hover img {
    transform: scale(1.035);
  }

  .service-module:hover {
    transform: translateY(-0.25rem);
  }

  .team-card:hover img {
    transform: scale(1.035);
  }

  .contact-details a:hover {
    color: var(--color-red-dark);
  }
}

@media (min-width: 36rem) {
  .brand__name {
    display: block;
  }

  .inventory-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-band > div:nth-child(odd) {
    border-right: 0.0625rem solid var(--color-line-dark);
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner > .brand,
  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 44rem) {
  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 48rem) {
  .vehicle-filter {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 0.8fr;
  }

  .vehicle-filter label {
    border-right: 0.0625rem solid var(--color-line-light);
    border-bottom: 0;
  }

  .vehicle-filter button {
    min-height: 100%;
  }

  .process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .about__image {
    min-height: 32rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2xl);
  }

  .trust-content {
    grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.75fr);
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-column: 1 / -1;
  }

  .site-footer__inner {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }

  .site-footer__inner > .brand,
  .site-footer__legal {
    grid-column: auto;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  .site-header__inner {
    min-height: 7rem;
  }

  .site-header .brand {
    min-height: 6.4rem;
    gap: 1.875rem;
  }

  .site-header .brand__mark {
    width: 6.75rem;
    height: 6.4rem;
    padding-right: 1.875rem;
    font-size: 3.25rem;
  }

  .site-header .brand__mark::after {
    width: 0.1875rem;
  }

  .site-header .brand__name {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    line-height: 1.32;
  }

  .site-header .brand__name small {
    margin-top: var(--space-2xs);
    font-size: 1.15rem;
    letter-spacing: 0.25em;
  }

  .desktop-nav,
  .header-call {
    display: flex;
  }

  .desktop-nav {
    align-items: center;
    gap: clamp(1.3rem, 3vw, 3.4rem);
    margin-left: auto;
  }

  .desktop-nav a {
    position: relative;
    min-height: 2.75rem;
    align-content: center;
    font-size: var(--text-label);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    left: 0;
    height: 0.125rem;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease-out-quart);
  }

  .desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .header-call {
    min-height: 3.25rem;
    align-items: center;
    gap: var(--space-sm);
    margin-left: var(--space-xl);
    padding: var(--space-sm) var(--space-lg);
    border: 0.0625rem solid var(--color-text-on-dark);
    font-size: var(--text-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.15s var(--ease-out-quart), border-color 0.2s ease;
  }

  .header-call svg {
    color: var(--color-red);
  }

  .menu-button {
    display: none;
  }

  .hero {
    min-height: 52rem;
    align-items: center;
  }

  .hero::after {
    background: linear-gradient(90deg, var(--color-navy-950) 0 32%, transparent 60%);
  }

  .hero__image {
    inset: 0 0 0 35%;
    clip-path: ellipse(78% 100% at 82% 55%);
  }

  .hero__image::after {
    background: linear-gradient(90deg, var(--color-navy-950), transparent 35%);
  }

  .hero__image img {
    object-position: 60% 56%;
  }

  .hero__content {
    padding-top: 5.5rem;
  }

  .hero__content > * {
    width: 45%;
  }

  .hero-contact {
    position: absolute;
    z-index: 5;
    right: var(--page-gutter);
    bottom: var(--space-2xl);
    display: grid;
    width: fit-content;
    max-width: calc(100% - (2 * var(--page-gutter)));
    margin: 0;
    padding: 0;
    border-left: 0;
    grid-template-columns: fit-content(28rem) fit-content(20rem) fit-content(20rem);
    border: 0.0625rem solid oklch(90% 0.01 245 / 0.42);
    background: oklch(18% 0.02 245 / 0.58);
    -webkit-backdrop-filter: blur(1.25rem) saturate(130%);
    backdrop-filter: blur(1.25rem) saturate(130%);
  }

  .hero-contact__cta {
    display: flex !important;
  }

  .hero-contact a {
    display: flex;
    min-height: 5rem;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-right: 0.0625rem solid oklch(90% 0.01 245 / 0.25);
    font-size: var(--text-small);
  }

  .hero-contact a:nth-child(2) span {
    white-space: nowrap;
  }

  .hero-contact a:last-child {
    border-right: 0;
  }

  .hero-contact a svg {
    flex: 0 0 auto;
    color: var(--color-red);
  }

  .hero-contact__cta {
    justify-content: center;
    background: var(--color-red);
    font-size: var(--text-label) !important;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
  }

  .hero-contact__cta svg {
    color: currentColor !important;
  }

  .hero__mobile-actions {
    display: none;
  }

  .vehicle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vehicle-card:last-child {
    grid-column: auto;
  }

  .inventory-proof {
    grid-template-columns: repeat(3, 1fr) 1.25fr;
  }

  .inventory-proof > div {
    border-right: 0.0625rem solid var(--color-line-dark);
    border-bottom: 0;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: var(--space-2xl);
  }

  .process > h3 {
    grid-column: 1 / -1;
  }

  .process ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 0;
  }

  .process li {
    grid-template-columns: max-content minmax(3rem, 6rem) 2.75rem;
    column-gap: var(--space-md);
    justify-content: start;
    background: var(--color-navy-950);
  }

  .process li::after {
    content: "";
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    z-index: 0;
    height: 0.125rem;
    background: var(--color-red);
    transform: scaleX(0.15);
    transform-origin: left;
    transition: transform 0.85s var(--ease-out-expo);
  }

  .process.is-active li::after {
    transform: scaleX(1);
  }

  .process li > * {
    position: relative;
    z-index: 1;
  }

  .process li strong {
    grid-column: 1;
  }

  .process li svg {
    grid-column: 3;
  }

  .process li span {
    grid-column: 1 / -1;
  }

  .process .button {
    width: auto;
    min-width: 17rem;
  }

  .trust-band {
    grid-template-columns: repeat(4, 1fr);
    padding-inline: max(var(--page-gutter), calc((100vw - var(--container)) / 2 + var(--page-gutter)));
  }

  .trust-band > div {
    border-right: 0.0625rem solid var(--color-line-dark);
    border-bottom: 0;
  }

  .trust-band > div:last-of-type {
    border-right: 0;
  }
}

@media (min-width: 73.75rem) {
  .section-with-rail {
    padding-left: var(--rail-width);
  }

  .section-rail {
    position: absolute;
    z-index: 4;
    inset: 0 auto 0 0;
    display: block;
    width: var(--rail-width);
    padding: var(--space-xl) 0;
    border-right: 0.0625rem solid var(--color-line-light);
    text-align: center;
  }

  .dark-section .section-rail {
    border-right-color: var(--color-line-dark);
  }

  .section-rail span {
    position: absolute;
    top: 48%;
    right: -0.0625rem;
    width: 0.125rem;
    height: 2.5rem;
  }

  .hero__index {
    position: absolute;
    z-index: 5;
    bottom: 4.6rem;
    left: var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .hero__index strong {
    display: block;
    width: 3rem;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
  }

  .hero__index span {
    position: relative;
    width: 13rem;
    height: 0.0625rem;
    background: var(--color-line-dark);
  }

  .hero__index i {
    position: absolute;
    top: -0.03125rem;
    left: 18%;
    width: 2.3rem;
    height: 0.125rem;
    background: var(--color-red);
  }

  .contact-grid {
    grid-template-columns: 1.3fr 0.82fr 1fr;
  }

  .contact-form {
    grid-column: auto;
  }

  .site-footer__inner {
    grid-template-columns: 1.45fr repeat(3, 0.8fr) 1.3fr;
    align-items: start;
  }

  .site-footer__legal {
    grid-column: auto;
    padding-top: 0;
    padding-left: var(--space-xl);
    border-top: 0;
    border-left: 0.0625rem solid var(--color-line-dark);
  }
}

@media (min-width: 112rem) {
  :root {
    --page-gutter: 5rem;
  }

  .hero-contact {
    right: max(var(--page-gutter), calc((100vw - var(--container) - var(--rail-width)) / 2 + var(--page-gutter)));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
