/* =============================================================
   Fiestalimo · Fahrzeugwelt
   Erweitert das bestehende Designsystem aus styles.css.
   Nutzt dieselben Variablen (--ink, --ivory, --gold, --container ...).
   styles.css muss zusätzlich eingebunden sein.
   ============================================================= */

/* ---------- Grundlayout ---------- */
.veh-main {
  padding-top: var(--header-height);
}

.veh-section {
  padding: clamp(64px, 8vw, 116px) 0;
}

.veh-section--tight {
  padding: clamp(40px, 5vw, 72px) 0;
}

.veh-eyebrow {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  width: var(--container);
  margin: 0 auto;
  padding-top: clamp(26px, 3vw, 40px);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted-light);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 200ms ease;
}

.breadcrumb a:hover {
  color: var(--gold-dark);
}

.breadcrumb li[aria-current="page"] {
  color: var(--ink);
  font-weight: 640;
}

.breadcrumb .sep {
  color: var(--line);
  user-select: none;
}

/* =============================================================
   ÜBERSICHT (/fahrzeuge/)
   ============================================================= */
.collection-hero {
  padding: clamp(14px, 1.8vw, 28px) 0 clamp(14px, 2vw, 26px);
  background: var(--paper);
}

.collection-hero__inner {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(16px, 2.4vw, 40px);
  margin-inline: auto;
}

.collection-hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.collection-hero__lead {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

.collection-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px;
  margin-top: clamp(26px, 3vw, 36px);
}

.hero-feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.hero-feature__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--gold);
}

.hero-feature__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.3;
}

.hero-feature small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.collection-hero__media {
  position: relative;
}

.collection-hero__media img {
  display: block;
  width: 108%;
  max-width: none;
  height: auto;
  margin-right: -8%;
  /* Weißer Bildhintergrund verschmilzt nahtlos mit der Seite */
  mix-blend-mode: multiply;
}

@media (max-width: 980px) {
  .collection-hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .collection-hero__media {
    max-width: 680px;
    margin-inline: auto;
  }

  .collection-hero__media img {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .collection-hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .collection-hero {
    padding: 14px 0 12px;
  }

  .collection-hero__inner {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto minmax(230px, auto);
    gap: 0;
  }

  .collection-hero__text {
    display: contents;
  }

  .collection-hero .veh-eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 12px;
  }

  .collection-hero h1 {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 16px;
  }

  .collection-hero__lead {
    grid-column: 1;
    grid-row: 3;
    max-width: none;
    margin-bottom: 16px;
  }

  .collection-hero__media {
    grid-column: 1;
    grid-row: 4;
    width: 100vw;
    max-width: 100vw;
    min-height: 230px;
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
    border-radius: 0;
    background-color: #f8f5ef;
  }

  .collection-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    margin: 0;
    object-fit: contain;
    object-position: center;
  }

  .collection-hero__features {
    position: relative;
    top: 12px;
    z-index: 2;
    grid-column: 1;
    grid-row: 4;
    align-self: end;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 8px 8px;
    padding: 11px 4px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    background-color: rgba(255, 253, 249, 0.92);
    box-shadow: 0 12px 30px rgba(18, 15, 11, 0.13);
    backdrop-filter: blur(14px) saturate(135%);
  }

  .collection-hero .hero-feature {
    min-width: 0;
    display: block;
    padding: 1px 7px;
    text-align: center;
  }

  .collection-hero .hero-feature + .hero-feature {
    border-left: 1px solid rgba(11, 11, 10, 0.09);
  }

  .collection-hero .hero-feature__icon {
    display: none;
  }

  .collection-hero .hero-feature strong {
    margin-bottom: 3px;
    font-size: clamp(0.59rem, 2.65vw, 0.69rem);
    line-height: 1.2;
  }

  .collection-hero .hero-feature small {
    font-size: clamp(0.5rem, 2.15vw, 0.59rem);
    line-height: 1.3;
  }
}

.collection {
  padding: clamp(10px, 1.4vw, 18px) 0 clamp(26px, 3.4vw, 46px);
  background: var(--paper);
}

.collection__bar {
  width: var(--container);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto clamp(14px, 1.8vw, 22px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.collection__bar h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 640;
  letter-spacing: -0.01em;
}

.collection__count {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.veh-grid {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
  margin-inline: auto;
}

@media (max-width: 1200px) {
  .veh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Trust-Leiste unter der Kollektion */
.collection-trust {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(18px, 2.2vw, 30px) auto 0;
  padding: clamp(16px, 2vw, 24px) clamp(14px, 2vw, 24px);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 4px clamp(16px, 2.4vw, 34px);
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line-soft);
}

.trust-item__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.trust-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.3;
}

.trust-item small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

@media (max-width: 780px) {
  .collection-trust {
    grid-template-columns: 1fr;
    padding: 6px clamp(20px, 4vw, 28px);
  }

  .trust-item {
    padding: 18px 0;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
}

/* ---------- Fahrzeugkarte ---------- */
.veh-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 380ms var(--ease-premium),
    transform 380ms var(--ease-premium),
    border-color 300ms ease;
}

.veh-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.veh-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3efe9 100%);
}

.veh-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-premium);
}

.veh-card__badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 2px;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.veh-card__badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.veh-card__tag {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  padding: 6px 10px;
  border-radius: 2px;
  background: rgba(11, 11, 10, 0.86);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.veh-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px 20px 17px;
}

.veh-card__cat {
  margin-bottom: 9px;
  color: var(--gold-dark);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.veh-card__name {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 660;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.veh-card__highlight {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.veh-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.72rem;
}

.veh-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.veh-card__meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--gold);
}

.veh-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--line-soft);
}

.veh-card__price {
  color: var(--muted);
  font-size: 0.74rem;
}

.veh-card__price strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 720;
}

.veh-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.71rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.veh-card__cta span {
  transition: transform 320ms var(--ease-premium);
}

/* =============================================================
   DETAILSEITE (fahrzeug.html)
   ============================================================= */
.vd-hero {
  padding: clamp(26px, 3.4vw, 46px) 0 clamp(48px, 6vw, 84px);
  background: var(--paper);
}

.vd-hero__inner {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
  margin-inline: auto;
}

.vd-hero__cat {
  margin-bottom: 17px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vd-hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.055em;
}

.vd-hero__tagline {
  max-width: 460px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
}

.vd-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
}

.vd-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
}

.vd-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.vd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.vd-hero__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: var(--ivory-deep);
  box-shadow: var(--shadow-card);
}

.vd-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 3D-Bühne (Redesign nach Screenshot) ---------- */
.model-stage {
  padding: clamp(46px, 5.5vw, 88px) 0 clamp(48px, 6vw, 92px);
  background: linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%);
}

.model-stage__head {
  width: var(--container);
  max-width: 760px;
  margin: 0 auto clamp(24px, 2.8vw, 38px);
  text-align: center;
}

.model-stage__head h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.95rem, 3.3vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.model-stage__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.model-frame {
  position: relative;
  width: var(--container);
  max-width: 1200px;
  height: clamp(470px, 60vh, 660px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(11, 11, 10, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(130% 92% at 50% 0%, #ffffff 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(180deg, #f9f7f2 0%, #ece5da 100%);
  box-shadow:
    0 34px 90px rgba(18, 15, 11, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

/* Drehteller / Plattform unter dem Fahrzeug */
.model-frame__stage {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: clamp(74px, 15%, 138px);
  width: min(720px, 72%);
  aspect-ratio: 5 / 2;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.4) 54%,
    rgba(255, 255, 255, 0) 72%
  );
  pointer-events: none;
}

.model-frame__stage::after {
  content: "";
  position: absolute;
  inset: 14% 5% 2%;
  border-radius: 50%;
  border: 1px solid rgba(11, 11, 10, 0.05);
}

.model-frame model-viewer {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: transparent;
  --poster-color: transparent;
  --progress-bar-height: 0px;
  --progress-mask: transparent;
}

/* Gemeinsame Panel-Optik */
.mv-fab,
.mv-viewbar__btn,
.mv-dock,
.mv-cams,
.mv-hint {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(11, 11, 10, 0.05);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 32px rgba(18, 15, 11, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

/* Vollbild-Button oben links */
.mv-fab {
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease;
}

.mv-fab svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ansicht-Dropdown oben rechts */
.mv-viewbar {
  position: absolute;
  z-index: 6;
  top: 20px;
  right: 20px;
}

.mv-viewbar__btn {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  border-radius: 13px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 730;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.mv-viewbar__car {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.mv-viewbar__btn svg.chev {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  transition: transform 240ms var(--ease-premium);
}

.mv-viewbar.is-open .mv-viewbar__btn svg.chev {
  transform: rotate(180deg);
}

.mv-viewbar__pop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 196px;
  padding: 7px;
  border: 1px solid rgba(11, 11, 10, 0.06);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 200ms ease,
    transform 240ms var(--ease-premium),
    visibility 200ms ease;
}

.mv-viewbar.is-open .mv-viewbar__pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mv-viewbar__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.mv-viewbar__opt:hover {
  background: var(--ivory);
  color: var(--ink);
}

.mv-viewbar__opt.is-active {
  color: var(--ink);
  font-weight: 640;
}

.mv-viewbar__opt[aria-disabled="true"] {
  color: var(--muted-light);
  cursor: default;
}

.mv-viewbar__opt[aria-disabled="true"]:hover {
  background: transparent;
}

.mv-viewbar__opt small {
  color: var(--muted-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Linke Werkzeugleiste */
.mv-dock {
  top: 50%;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  border-radius: 16px;
  transform: translateY(-50%);
}

.mv-dock__btn {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 66px;
  padding: 13px 6px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.mv-dock__btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mv-dock__btn span {
  font-size: 0.56rem;
  font-weight: 730;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mv-dock__btn.is-active {
  background: var(--ink);
  color: #fff;
}

.mv-dock__btn:not(.is-active):hover {
  background: var(--ivory);
  color: var(--ink);
}

/* Rechte Kamera-Presets */
.mv-cams {
  top: 50%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  border-radius: 16px;
  transform: translateY(-50%);
}

.mv-cams__btn {
  position: relative;
  width: 54px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted-light);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.mv-cams__btn svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mv-cams__btn:hover {
  background: var(--ivory);
  color: var(--ink);
}

.mv-cams__btn.is-active {
  color: var(--ink);
}

.mv-cams__btn.is-active::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 3px;
  background: var(--gold);
}

/* Bedienhinweis unten */
.mv-hint {
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.mv-hint svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ladeindikator */
.model-loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(180deg, #f9f7f2 0%, #ece5da 100%);
  transition: opacity 400ms ease, visibility 400ms ease;
}

.model-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.model-loader__ring {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(11, 11, 10, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: veh-spin 900ms linear infinite;
}

.model-loader__label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 640;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-loader__bar {
  width: 148px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(11, 11, 10, 0.08);
}

.model-loader__bar i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 220ms ease;
}

@keyframes veh-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Fallback bei Ladefehler */
.model-fallback {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  background: linear-gradient(180deg, #f9f7f2 0%, #ece5da 100%);
}

.model-fallback.is-visible {
  display: flex;
}

.model-fallback svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-fallback strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.model-fallback span {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* Vollbild */
.model-frame:fullscreen {
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
}

.model-frame:fullscreen model-viewer {
  height: 100%;
}

/* ---------- Auf einen Blick / Beschreibung ---------- */
.vd-overview {
  padding: clamp(60px, 8vw, 116px) 0;
  background: var(--white);
}

.vd-overview__inner {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 6vw, 92px);
  margin-inline: auto;
}

.vd-overview h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.vd-overview__lead {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.vd-overview__text {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.vd-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vd-occasions span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

/* Spec-Tabelle */
.spec-card {
  padding: 30px 32px;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  background: var(--ivory);
}

.spec-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.02em;
}

.spec-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}

.spec-list li:first-child {
  border-top: 0;
  padding-top: 4px;
}

.spec-list dt,
.spec-list .k {
  color: var(--muted);
  font-size: 0.78rem;
}

.spec-list dd,
.spec-list .v {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 660;
  text-align: right;
}

/* ---------- Ausstattung ---------- */
.vd-features {
  padding: clamp(60px, 8vw, 112px) 0;
  background: var(--ivory);
}

.vd-features__head {
  width: var(--container);
  max-width: 720px;
  margin: 0 auto clamp(30px, 3.6vw, 50px);
}

.vd-features__head h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.vd-features__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.feature-grid {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-inline: auto;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
  background: var(--line-soft);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 26px;
  background: var(--paper);
}

.feature-item__mark {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
}

.feature-item__mark svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Videos ---------- */
.vd-videos {
  padding: clamp(40px, 5vw, 68px) 0;
  background: var(--white);
}

.vd-videos__head,
.vd-gallery__head {
  width: var(--container);
  margin: 0 auto clamp(20px, 2.4vw, 32px);
}

.vd-videos__head h2,
.vd-gallery__head h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.vd-videos__head p,
.vd-gallery__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.video-layout {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 16px;
  height: clamp(280px, 33vw, 360px);
  margin-inline: auto;
}

.video-main {
  height: 100%;
}

.video-sub {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 13px;
  height: 100%;
}

.media-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: var(--ink);
  cursor: pointer;
  text-align: left;
}

.video-main .media-card,
.video-sub .media-card {
  height: 100%;
}

.media-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%),
    #1a1917;
}

.media-card__ph span {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-card__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 250, 247, 0.95);
  transform: translate(-50%, -50%);
  transition: transform 320ms var(--ease-premium), background 260ms ease;
}

.video-sub .media-card__play {
  width: 46px;
  height: 46px;
}

.media-card__play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
  fill: var(--ink);
}

.media-card__cap {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--white);
}

.media-card__cap strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 680;
  letter-spacing: -0.01em;
}

.video-sub .media-card__cap strong {
  font-size: 0.8rem;
}

.media-card__cap small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
}

/* ---------- Galerie ---------- */
.vd-gallery {
  padding: clamp(40px, 5vw, 68px) 0;
  background: var(--ivory);
}

.gallery-grid {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(112px, 13vw, 152px);
  gap: 12px;
  margin-inline: auto;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 0;
  padding: 0;
  background: var(--ivory-deep);
  cursor: pointer;
}

.gallery-cell:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-cell__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(11, 11, 10, 0.02) 0px,
      rgba(11, 11, 10, 0.02) 10px,
      rgba(11, 11, 10, 0.04) 10px,
      rgba(11, 11, 10, 0.04) 20px
    ),
    var(--ivory-deep);
}

.gallery-cell__ph span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.gallery-cell img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-premium);
}

.gallery-cell__zoom {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 250, 247, 0.92);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 260ms ease, transform 300ms var(--ease-premium);
}

.gallery-cell__zoom svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 64px);
  visibility: hidden;
  opacity: 0;
  background: rgba(8, 8, 7, 0.9);
  transition: opacity 320ms ease, visibility 320ms ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox__stage {
  position: relative;
  width: min(1000px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.lightbox__frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.05) 12px,
      rgba(255, 255, 255, 0.05) 24px
    ),
    #171614;
  overflow: hidden;
}

.lightbox__frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
}

.video-modal__frame iframe,
.video-modal__frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;
  background: #000;
}

.lightbox__frame span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 640;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.lightbox__close {
  top: -8px;
  right: -8px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.lightbox__nav {
  top: calc(50% - 26px);
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.lightbox__nav--prev {
  left: -8px;
}

.lightbox__nav--next {
  right: -8px;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---------- Conversion-CTA ---------- */
.vd-cta {
  padding: clamp(38px, 4.5vw, 60px) 0;
  background: var(--ink);
}

.vd-cta__inner {
  width: var(--container);
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.vd-cta__inner .veh-eyebrow {
  color: #d4b37b;
}

.vd-cta h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.vd-cta p {
  max-width: 540px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.vd-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vd-cta .button--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.vd-cta .button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

/* ---------- Weitere Fahrzeuge ---------- */
.related {
  padding: clamp(60px, 8vw, 112px) 0;
  background: var(--paper);
}

.related__head {
  width: var(--container);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto clamp(26px, 3vw, 40px);
}

.related__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.related__head a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.related-grid {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 22px);
  margin-inline: auto;
}

/* ---------- Fehlerzustand ---------- */
.veh-error {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--paper);
}

.veh-error__inner {
  width: var(--container);
  max-width: 520px;
  text-align: center;
}

.veh-error__mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
}

.veh-error__mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.veh-error h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.veh-error p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- gemeinsamer Platzhalter-Marker ---------- */
.media-ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(11, 11, 10, 0.015) 0px,
      rgba(11, 11, 10, 0.015) 11px,
      rgba(11, 11, 10, 0.035) 11px,
      rgba(11, 11, 10, 0.035) 22px
    ),
    var(--ivory-deep);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 640;
  letter-spacing: 0.08em;
}

/* Utility */
.veh-btn-arrow::after {
  content: "→";
}

/* =============================================================
   HOVER (nur fähige Geräte)
   ============================================================= */
@media (hover: hover) and (pointer: fine) {
  .veh-card:hover {
    border-color: var(--line);
    box-shadow: var(--shadow-lift);
    transform: translateY(-5px);
  }

  .veh-card:hover .veh-card__media img {
    transform: scale(1.04);
  }

  .veh-card:hover .veh-card__cta {
    color: var(--gold-dark);
  }

  .veh-card:hover .veh-card__cta span {
    transform: translateX(4px);
  }

  .media-card:hover .media-card__play {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
  }

  .gallery-cell:hover img {
    transform: scale(1.05);
  }

  .gallery-cell:hover .gallery-cell__zoom {
    opacity: 1;
    transform: scale(1);
  }

  .related__head a:hover {
    color: var(--gold-dark);
  }

  .breadcrumb a:hover {
    color: var(--gold-dark);
  }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .vd-hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .vd-hero__media {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  .vd-overview__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .video-main .media-card {
    aspect-ratio: 16 / 9;
  }

  .video-sub {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    height: auto;
  }

  .video-sub .media-card {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 780px) {
  .collection__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .veh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

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

  .gallery-cell:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .model-frame {
    height: clamp(360px, 66vw, 480px);
  }

  .mv-dock__btn {
    width: 56px;
    padding: 10px 4px;
  }

  .mv-cams__btn {
    width: 46px;
    height: 42px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .video-sub {
    grid-template-columns: 1fr;
  }

  .model-frame model-viewer {
    height: clamp(300px, 52vh, 440px);
  }

  .related__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .veh-grid {
    grid-template-columns: 1fr;
  }

  .veh-card__media {
    aspect-ratio: 16 / 10;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .vd-features {
    padding: 42px 0;
  }

  .vd-features__head {
    margin-bottom: 22px;
  }

  .vd-features__head h2 {
    margin-bottom: 9px;
    font-size: 1.65rem;
  }

  .vd-features__head p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .feature-item {
    min-height: 66px;
    gap: 9px;
    padding: 12px 10px;
    border: 1px solid var(--line-soft);
    border-radius: 11px;
  }

  .feature-item__mark {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
  }

  .feature-item__mark svg {
    width: 12px;
    height: 12px;
  }

  .feature-item span {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .vd-hero__actions .button,
  .vd-cta__actions .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: clamp(150px, 50vw, 210px);
  }

  .gallery-cell,
  .gallery-cell:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .model-loader__ring {
    animation: none;
  }

  .veh-card,
  .veh-card__media img,
  .gallery-cell img,
  .media-card__play {
    transition: none;
  }
}

/* =============================================================
   FAHRZEUGSEITEN · MOBILE NAVIGATION WIE LANDINGPAGE
   ============================================================= */
@media (max-width: 1040px) {
  .veh-page .site-header,
  .veh-page .site-header.is-scrolled {
    height: 72px;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-inline: clamp(16px, 4vw, 26px);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 1px 0 rgba(23, 18, 12, 0.08);
  }

  .veh-page .brand {
    margin-right: auto;
  }

  .veh-page .brand img {
    width: auto;
    height: 60px;
    object-fit: contain;
    object-position: left center;
  }

  .veh-page .desktop-nav {
    display: none;
  }

  .veh-page .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .veh-page .nav-actions .phone-link,
  .veh-page .nav-actions .header-cta {
    display: none;
  }

  .veh-page .nav-actions .language-trigger {
    min-width: 92px;
    min-height: 46px;
    height: 46px;
    display: inline-flex;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid rgba(23, 18, 12, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 6px 16px rgba(46, 32, 16, 0.07);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .veh-page .nav-actions .language-trigger .flag,
  .veh-page .language-popover .flag {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  }

  .veh-page .flag--de {
    background-color: #111;
  }

  .veh-page .flag--de::before,
  .veh-page .flag--de::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 33.34%;
    content: "";
  }

  .veh-page .flag--de::before {
    top: 33.33%;
    background-color: #dd0000;
  }

  .veh-page .flag--de::after {
    bottom: 0;
    background-color: #ffce00;
  }

  .veh-page .flag--en {
    background-color: #1f4aa8;
  }

  .veh-page .flag--en::before,
  .veh-page .flag--en::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    background-color: #fff;
    transform: translate(-50%, -50%);
  }

  .veh-page .flag--en::before {
    width: 100%;
    height: 7px;
    box-shadow: inset 0 0 0 2px #c8102e;
  }

  .veh-page .flag--en::after {
    width: 7px;
    height: 100%;
    box-shadow: inset 0 0 0 2px #c8102e;
  }

  .veh-page .menu-button {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(23, 18, 12, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 6px 16px rgba(46, 32, 16, 0.07);
  }

  .veh-page .menu-button span,
  .veh-page .menu-button span:last-child {
    width: 22px;
    height: 2px;
    margin: 0;
    background: var(--ink);
  }

  .veh-page.menu-open .menu-button span:first-child {
    width: 22px;
    transform: translateY(3.5px) rotate(45deg);
  }

  .veh-page.menu-open .menu-button span:last-child {
    width: 22px;
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .veh-page .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px clamp(18px, 5vw, 28px) 18px;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 253, 249, 0.99);
    border-bottom: 1px solid rgba(23, 18, 12, 0.1);
    box-shadow: 0 26px 46px rgba(46, 32, 16, 0.16);
    backdrop-filter: blur(22px) saturate(140%);
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 280ms var(--ease-premium), visibility 200ms;
  }

  .veh-page .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .veh-page .mobile-nav__brand {
    display: none;
  }

  .veh-page .mobile-nav > a:not(.mobile-nav__brand) {
    padding: 13px 2px;
    border-bottom: 1px solid rgba(23, 18, 12, 0.08);
    color: var(--ink);
    font-family: "Manrope", "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .veh-page .mobile-nav__bottom {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
    padding: 0;
  }

  .veh-page .mobile-nav__bottom .phone-link,
  .veh-page .language-menu--mobile {
    display: none;
  }

  .veh-page .mobile-nav__bottom .button {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 0;
    border-radius: 3px;
    color: #fff;
    background: #b9822e;
    box-shadow: none;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }
}
