/* RECA Handels-GmbH — base styles */

:root {
  /* Anthracite (near-black, cool) */
  --ink-900: oklch(0.16 0.008 250);
  --ink-800: oklch(0.22 0.008 250);
  --ink-700: oklch(0.30 0.008 250);
  --ink-600: oklch(0.42 0.007 250);
  --ink-500: oklch(0.55 0.005 250);
  --ink-400: oklch(0.68 0.005 250);
  --ink-300: oklch(0.82 0.004 250);
  --ink-200: oklch(0.90 0.003 250);
  --ink-150: oklch(0.94 0.003 250);
  --ink-100: oklch(0.97 0.003 80);
  --ink-50:  oklch(0.985 0.002 80);

  /* Accent (default: Dunkelblau) — overridden by Tweaks */
  --accent:        oklch(0.45 0.07 245);
  --accent-soft:   oklch(0.92 0.02 245);
  --accent-strong: oklch(0.32 0.08 245);

  /* Logo accent red */
  --reca-red: oklch(0.55 0.21 27);

  /* Spacing (density-aware) */
  --pad-x: clamp(20px, 4.5vw, 80px);
  --section-y: 100px;
  --section-y-sm: 64px;
  --gap: 24px;

  /* Type */
  --font-sans: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, monospace;

  --radius: 9px;
  --maxw: 1600px;

  /* Seitenweite Grund-Skalierung — wirkt wie Browser-Zoom,
     damit die Seite übersichtlicher / weniger gedrängt wirkt.
     Höher = gesamte Seite (inkl. Schrift) proportional größer & besser lesbar. */
  --page-zoom: 1.0;
}

.density-compact {
  --section-y: 60px;
  --section-y-sm: 40px;
  --gap: 16px;
}
.density-spacious {
  --section-y: 120px;
  --section-y-sm: 76px;
  --gap: 32px;
}

* { box-sizing: border-box; }

html {
  zoom: var(--page-zoom);
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
  scrollbar-gutter: stable;
  background: var(--ink-100);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#root { min-height: 100vh; }

/* Breitbild-Rahmung: unscharfes, dunkles Hallen-Bild in den Seitenrändern.
   Greift erst, wenn das Fenster breiter ist als die Inhaltsspalte (1600px) —
   auf Laptops bleibt alles unverändert. --showroom-bg: eigenes Hallenfoto eintragen. */
:root {
  --showroom-bg: url("https://images.unsplash.com/photo-1565043666747-69f6646db940?auto=format&fit=crop&w=2200&q=70");
}
.site-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; background: var(--ink-900);
}
.site-backdrop::before {
  content: ""; position: absolute; inset: -40px;
  background: var(--showroom-bg) center/cover no-repeat;
  filter: blur(17px) brightness(0.72) saturate(0.92);
  transform: scale(1.08);
}
.site-backdrop::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.2 0.01 250 / 0.4), oklch(0.13 0.008 250 / 0.62));
}
.page-shell {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--ink-100);
}
/* Sektionen, die trotz Rahmung über die volle Fensterbreite laufen sollen
   (z. B. der Startseiten-Hero — Bild bis zum rechten Bildschirmrand). */
.full-bleed {
  position: relative;
  width: calc(100vw / var(--page-zoom));
  left: auto;
  right: auto;
  margin-left: calc(50% - 50vw / var(--page-zoom));
  margin-right: 0;
}
@media (min-width: 1601px) {
  .site-backdrop { display: block; }
  .page-shell { box-shadow: 0 0 70px 10px oklch(0.06 0.008 250 / 0.6); }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: white; }

/* CTA strip — soft background photo slot */
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, oklch(0.22 0.008 250), oklch(0.14 0.008 250)); }
.cta-bg::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, oklch(1 0 0 / 0.045) 0 2px, transparent 2px 22px); }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, oklch(0.14 0.008 250 / 0.9), oklch(0.14 0.008 250 / 0.5)); }
.cta-bg-hint { position: absolute; right: var(--pad-x); bottom: 16px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); }

/* Rental partner (AMS Rent a Guard) */
.rental-partner {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 40px;
  padding: 22px;
  border: 1px solid var(--ink-200);
  background: var(--ink-100);
  border-radius: var(--radius);
  transition: border-color 0.18s ease;
}
.rental-partner:hover { border-color: var(--ink-900); }
.rental-partner-logo { width: 150px; }
.rental-partner-kicker { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.rental-partner-name { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-900); }
.rental-partner-desc { color: var(--ink-700); font-size: 14px; line-height: 1.55; margin: 6px 0 10px; max-width: 52ch; }
.rental-partner-link { font-size: 11px; letter-spacing: 0.06em; color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) { .rental-partner { grid-template-columns: 1fr; } .rental-partner-logo { width: 180px; } }

/* mobile.de live inventory embed */
.mobile-embed { margin-bottom: 48px; }
.mobile-embed-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.mobile-embed-head .mono { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-600); }
.mobile-embed-link { font-size: 11px; letter-spacing: 0.06em; color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.mobile-embed-note { margin-top: 10px; font-size: 11px; letter-spacing: 0.03em; color: var(--ink-500); max-width: 70ch; line-height: 1.5; }

/* Rental references */
.rental-refs {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-200);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ref-tile {
  aspect-ratio: 3 / 2;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  text-align: center;
}
.ref-tile-name { font-family: var(--font-sans); font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-800); }
.ref-tile-hint { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); }
@media (max-width: 820px) { .rental-refs { grid-template-columns: 1fr; gap: 28px; } }

/* History collage background (About → Unternehmen) */
.ab-company-hero { position: relative; overflow: hidden; }
.ab-company-hero { padding-top: 96px; padding-bottom: 96px;
  width: calc(100vw / var(--page-zoom));
  margin-left: calc(50% - 50vw / var(--page-zoom));
  margin-right: 0;
  border-bottom: 1px solid var(--ink-200); }
.collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 0; padding: 0;
  filter: grayscale(0.4) contrast(0.92) brightness(1.16) blur(3.5px);
  transform-origin: 50% 42%;
  animation: collageDrift 46s ease-in-out infinite alternate;
}
@keyframes collageDrift {
  from { transform: scale(1.05) translate(-1.2%, -0.6%); }
  to   { transform: scale(1.11) translate(1.4%, 0.8%); }
}
.collage-cell {
  background: var(--ink-200);
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
@media (prefers-reduced-motion: reduce) {
  .collage { animation: none; transform: none; }
}
/* Dunkle Variante des Bild-Heros (Sonderschutzfahrzeuge) */
.ab-company-hero-dark { background: var(--ink-900); color: var(--ink-50); border-bottom-color: oklch(1 0 0 / 0.1); }
.ab-company-hero-dark .hero-rule-head { color: var(--ink-50); }
.ab-company-hero-dark .hero-statement { color: var(--ink-200); }
.collage-dark .collage-cell { background-color: var(--ink-900); }
.collage.collage-dark {
  filter: grayscale(0.55) contrast(0.95) brightness(0.5) blur(3.5px);
}
.collage-dark .collage-veil {
  background: linear-gradient(100deg,
    oklch(0.16 0.008 255 / 0.93) 0%,
    oklch(0.16 0.008 255 / 0.78) 48%,
    oklch(0.16 0.008 255 / 0.6) 100%);
}
.collage-dark .collage-hint { color: var(--ink-400); }
/* RECA Guard Logo-Karte im Sonderschutz-Hero — in RECA-Guard-Optik (Stahl/Platin) */
.guard-launch {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding: 17px 26px;
  border: 1px solid oklch(0.8 0.02 250 / 0.22);
  border-radius: 3px;
  background:
    linear-gradient(180deg, oklch(0.26 0.012 250) 0%, oklch(0.205 0.01 250) 100%);
  box-shadow: 0 18px 44px -26px oklch(0 0 0 / 0.7), inset 0 1px 0 oklch(0.8 0.02 250 / 0.12);
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.guard-launch:hover {
  border-color: oklch(0.8 0.02 250 / 0.42);
  box-shadow: 0 26px 56px -26px oklch(0 0 0 / 0.78), inset 0 1px 0 oklch(0.8 0.02 250 / 0.18);
  transform: translateY(-3px);
}
.guard-launch-lock {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding-right: 24px;
  border-right: 1px solid oklch(0.8 0.02 250 / 0.2);
}
.special-hero-right { display: flex; flex-direction: column; align-items: flex-start; }
.special-hero-right .guard-launch { margin-top: 32px; }
.guard-launch .nav-guard-word { color: var(--ink-50); font-size: 21px; }
.guard-launch .nav-guard-tag { color: oklch(0.8 0.02 250); font-size: 13px; letter-spacing: 0.02em; }
.guard-launch-text { display: flex; flex-direction: column; gap: 5px; }
.guard-launch-title { font-size: 15px; font-weight: 600; color: var(--ink-50); letter-spacing: -0.01em; white-space: nowrap; }
.guard-launch-sub { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.72 0.02 250); white-space: nowrap; }
.guard-launch svg { color: oklch(0.8 0.02 250); flex: 0 0 auto; transition: color 0.18s ease, transform 0.18s ease; }
.guard-launch:hover svg { color: oklch(0.9 0.018 250); transform: translate(2px, -2px); }
@media (max-width: 520px) {
  .guard-launch { gap: 16px; padding: 14px 16px; }
  .guard-launch-lock { padding-right: 16px; }
}
.collage-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    oklch(0.985 0 0 / 0.66) 0%,
    oklch(0.985 0 0 / 0.40) 32%,
    oklch(0.985 0 0 / 0.38) 66%,
    oklch(0.985 0 0 / 0.64) 100%);
}
.collage-hint {
  position: absolute; right: var(--pad-x); bottom: 14px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-500);
}
.used-hero-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
@media (max-width: 820px) {
  .used-hero-grid { grid-template-columns: 1fr; gap: 28px; }
}
/* PointList mit feinen, nach links/rechts auslaufenden Trennlinien zwischen den Punkten */
.point-list-divided > li { padding: 15px 0; position: relative; }
.point-list-divided > li:first-child { padding-top: 0; }
.point-list-divided > li:last-child { padding-bottom: 0; }
.point-list-divided > li + li::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0, var(--ink-300) 12%, var(--ink-300) 88%, transparent 100%);
}
/* Cinematic home hero — fit the first screen (no cut-off) */
.hero-cinematic { height: calc(100svh / var(--page-zoom)); min-height: 600px; display: flex; flex-direction: column; overflow: hidden; }
.hero-cinematic > .container:first-of-type { flex: 0 0 auto; }
.hero-cinematic .hero-media { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; }
.hero-cinematic .hero-photo-wrap { flex: 1 1 auto; min-height: 0; overflow: hidden; border-radius: var(--radius); }
.hero-cinematic .hero-photo-wrap > *,
.hero-cinematic .hero-photo-wrap .ph,
.hero-cinematic .hero-photo-wrap img {
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover;
}
@media (max-width: 760px) {
  .hero-cinematic { height: auto; min-height: 0; }
  .hero-cinematic .hero-photo-wrap > *,
  .hero-cinematic .hero-photo-wrap .ph,
  .hero-cinematic .hero-photo-wrap img { aspect-ratio: 16/10 !important; height: auto !important; }
}

/* Subtle scroll-reveal (driven by reveal.js) */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); will-change: opacity, transform; }
  .reveal.in { opacity: 1; transform: none; }
}

/* Hero-Überschrift mit rotem Strich — voll nach links auslaufend (Über uns & Gebrauchtwagen) */
.hero-rule-block {
  display: inline-block;
  position: relative;
}
.hero-rule-head {
  display: block;
  margin: 0;
}
.hero-rule {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  left: calc(-1 * max(var(--pad-x), (100vw - var(--maxw)) / 2 + var(--pad-x)));
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(270deg,
    var(--reca-red) 0%,
    color-mix(in oklch, var(--reca-red), transparent 55%) 42%,
    transparent 100%);
}
.hero-statement { margin: 0; }
/* Sonderschutz-Hero: linke Spalte nur so breit wie der Titel, Untertitel bekommt den Rest — passt so in zwei Zeilen */
.ab-company-hero-dark .used-hero-grid { grid-template-columns: max-content minmax(0, 1fr); gap: 56px; }

/* RECA Guard Logo als Band-Titel (statt „Spezialisiert") — gestapeltes Markenlogo + rote Linie */
.special-guard-band .chapter-band-title { overflow: visible; }
.special-guard-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.special-guard-logo .nav-guard-word {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  color: var(--ink-900);
  padding-right: 14px;
}
.special-guard-logo .nav-guard-tag {
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.22em;
  color: var(--ink-600);
  line-height: 1;
}
.special-guard-logo .brand-slash {
  width: 0.7em;
  height: 0.165em;
  right: 0.05em;
  bottom: 0.305em;
}

/* ===== Peek-Galerie (durchblätterbare Bilder mit Vor/Zurück-Anschnitt + Bildunterschrift) ===== */
.peek-section {
  padding: 0;
}
.peek-section .container {
  max-width: none;
  width: 100%;
  padding: 0;
}
.peek-gallery {
  position: relative;
  background: var(--ink-900);
  border: 0;
  border-radius: 0;
  padding: 56px 0 44px;
  overflow: hidden;
}
.peek-viewport { position: relative; overflow: hidden; }
.peek-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.1, 1);
  will-change: transform;
}
.peek-slide {
  flex: 0 0 auto;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}
.peek-slide .peek-img { width: 100%; height: 100%; border-radius: 2px; }
/* Variante "contain": feste 16/10-Box, Bild komplett sichtbar (Hoch-/Querformat), kleiner */
.peek-gallery-contain .peek-slide { aspect-ratio: 16 / 10; }
.peek-gallery-contain .peek-slide .peek-img {
  border-radius: 4px; background: transparent;
}
.peek-gallery-contain .peek-slide.is-active .peek-img { box-shadow: none; outline: none; }
.peek-slide.is-peek {
  opacity: 0.38;
  transform: scale(0.9);
  filter: grayscale(0.5) brightness(0.8);
}
.peek-slide.is-peek:hover { opacity: 0.6; }
.peek-slide.is-active {
  opacity: 1;
  transform: scale(1);
  cursor: default;
}
.peek-slide.is-active .peek-img {
  box-shadow: 0 24px 60px oklch(0 0 0 / 0.5);
  outline: 1px solid oklch(1 0 0 / 0.08);
}
.peek-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1; padding-bottom: 3px;
  color: #fff; cursor: pointer;
  background: oklch(0.18 0.006 255 / 0.78);
  border: 1px solid oklch(1 0 0 / 0.18);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}
.peek-arrow:hover { background: oklch(0.24 0.006 255 / 0.92); border-color: oklch(1 0 0 / 0.34); }
.peek-arrow:active { transform: translateY(-50%) scale(0.94); }
.peek-prev { left: clamp(10px, 2vw, 22px); }
.peek-next { right: clamp(10px, 2vw, 22px); }
.peek-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 22px auto 0;
  padding: 0 clamp(20px, 4vw, 48px);
}
.peek-counter { color: var(--ink-500); font-size: 12px; letter-spacing: 0.14em; white-space: nowrap; }
.peek-counter i { font-style: normal; opacity: 0.5; margin: 0 2px; }
.peek-cap {
  text-align: center;
  color: oklch(0.92 0.004 255);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  padding: 6px 14px;
  border-radius: 4px;
  outline: none;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  cursor: text;
}
.peek-cap:hover { background: oklch(1 0 0 / 0.04); }
.peek-cap:focus { background: oklch(1 0 0 / 0.06); box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.14); }
.peek-cap:empty::before { content: attr(data-ph); color: oklch(0.6 0.004 255); }
.peek-dots { display: flex; gap: 6px; justify-content: flex-end; }
.peek-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: oklch(1 0 0 / 0.22); cursor: pointer; padding: 0; border: 0;
  transition: background 0.16s ease, transform 0.16s ease;
}
.peek-dot:hover { background: oklch(1 0 0 / 0.4); }
.peek-dot.on { background: var(--reca-red); transform: scale(1.2); }

/* Light variant (Über uns) — keeps full-bleed but on a cream background */
.peek-gallery-light { background: var(--ink-50); }
.peek-gallery-light .peek-slide.is-active .peek-img {
  box-shadow: 0 24px 60px oklch(0 0 0 / 0.22);
  outline: 1px solid oklch(0 0 0 / 0.06);
}
.peek-gallery-light .peek-arrow {
  color: var(--ink-900);
  background: oklch(1 0 0 / 0.82);
  border: 1px solid oklch(0 0 0 / 0.12);
}
.peek-gallery-light .peek-arrow:hover { background: #fff; border-color: oklch(0 0 0 / 0.26); }
.peek-gallery-light .peek-cap { color: var(--ink-800); }
.peek-gallery-light .peek-cap:hover { background: oklch(0 0 0 / 0.04); }
.peek-gallery-light .peek-cap:focus { background: oklch(0 0 0 / 0.05); box-shadow: inset 0 0 0 1px oklch(0 0 0 / 0.12); }
.peek-gallery-light .peek-cap:empty::before { color: var(--ink-500); }
.peek-gallery-light .peek-dot { background: oklch(0 0 0 / 0.18); }
.peek-gallery-light .peek-dot:hover { background: oklch(0 0 0 / 0.4); }
@media (max-width: 640px) {
  .peek-footer { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .peek-counter { text-align: center; }
  .peek-dots { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .peek-track, .peek-slide, .peek-arrow { transition: none; }
}

/* Softer edges (warm, less technical) */
.btn,
.field input, .field select, .field textarea,
.gchip, .chip,
.ph, .vehicle-card img,
.compare-card, .doc-block, .papers-card, .gesuch-form, .gesuch-done,
.partner-card, .contact-ankauf-redirect, .gesuch-cta,
.team-vcard, .team-qr-btn, .team-qr-pop,
.papers-zoom-btn img, .papers-figure img, .map-ph, .map-ph iframe {
  border-radius: var(--radius);
}
.vehicle-card img, .ph { border-radius: var(--radius); }

/* Typography */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-600);
  font-weight: 500;
}
.eyebrow-accent { color: var(--accent); }

/* Auftakt-Marker für Seiten-Kopfzeilen: kurze Linie vor der Vorzeile */
.eyebrow-lead {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-lead::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex: 0 0 auto;
}

/* Kapitel-Auftakt innerhalb einer Seite: klarer Akzent-Tick links,
   Haarlinie die nach rechts weich ausläuft (sanfter Übergang). */
.chapter-divider {
  position: relative;
  height: 1px;
  margin-bottom: 48px;
  background: linear-gradient(90deg, var(--ink-300) 0%, var(--ink-200) 42%, transparent 100%);
}
.chapter-divider::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--accent);
}
.chapter-divider.on-dark {
  background: linear-gradient(90deg, oklch(1 0 0 / 0.22) 0%, oklch(1 0 0 / 0.1) 42%, transparent 100%);
}

/* Kapitel-Auftakt (Vorschlag 6): Akzent-Punkt · Name · Linie nach rechts,
   die sich beim Hereinscrollen von links aufbauen. Dynamisch & fließend. */
.chapter-band {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 38px calc(-1 * var(--pad-x));
  padding: 0;
}
/* Showroom-Abschnitt (hell) */
.chapter-band-rule-left {
  flex: 0 0 auto;
  width: calc(var(--pad-x) - 18px);
  height: 2px;
  background: linear-gradient(270deg, var(--reca-red) 0%, color-mix(in oklch, var(--reca-red), transparent 55%) 42%, transparent 100%);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1) 0.15s;
}
.chapter-band-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); flex: 0 0 auto;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.chapter-band-num {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--ink-500); flex: 0 0 auto;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(.2,.8,.2,1) 0.1s;
}
.chapter-band-title {
  font-family: var(--font-sans);
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 600; letter-spacing: -0.015em;
  line-height: 1.1; white-space: nowrap;
  color: var(--ink-900); flex: 0 0 auto;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(.2,.8,.2,1) 0.1s;
}
.chapter-band-rule {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, var(--reca-red) 0%, color-mix(in oklch, var(--reca-red), transparent 55%) 42%, transparent 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1) 0.15s;
}
.chapter-band.in .chapter-band-dot { transform: scale(1); }
.chapter-band.in .chapter-band-num,
.chapter-band.in .chapter-band-title { opacity: 1; transform: none; }
.chapter-band.in .chapter-band-rule { transform: scaleX(1); }
.chapter-band.in .chapter-band-rule-left { transform: scaleX(1); }

/* Variante ohne roten Strich (z. B. Kapitel „Geschichte") */
.chapter-band.band-norule { gap: 0; margin-left: 0; }
.chapter-band.band-norule .chapter-band-rule,
.chapter-band.band-norule .chapter-band-rule-left { display: none; }
.chapter-band.band-norule .chapter-band-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: normal;
}

/* Gestapelte Variante: Titel zweizeilig, rote Linie auf der zweiten Zeile */
.chapter-band.band-stacked { align-items: center; }
.chapter-band.band-stacked .chapter-band-title {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: normal;
  line-height: 1.14;
  row-gap: 2px;
}
/* Mittlere Zeile bekommt die rote Linie direkt hinter dem Text */
.chapter-band.band-stacked .cb-line-rule {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 14px;
}
.chapter-band.band-stacked .cb-line-rule .cb-text { flex: 0 0 auto; }

/* Kein Vorab-Verstecken bei Druck / reduzierter Bewegung */
@media (prefers-reduced-motion: reduce) {
  .chapter-band-dot, .chapter-band-num, .chapter-band-title { opacity: 1; transform: none; transition: none; }
  .chapter-band-rule, .chapter-band-rule-left { transform: scaleX(1); transition: none; }
}
@media print {
  .chapter-band-dot, .chapter-band-num, .chapter-band-title { opacity: 1; transform: none; }
  .chapter-band-rule, .chapter-band-rule-left { transform: scaleX(1); }
}

/* Druck-Kopf/-Fuß nur im Ausdruck sichtbar */
.vdetail-print-head, .vdetail-print-foot { display: none; }

/* Sauberer Ausdruck der Fahrzeug-Detailseite */
@media print {
  @page { margin: 14mm 14mm 16mm; }
  .nav, .footer, .vdetail-bar, .wa-fab, .wa-wrap, .vdetail-actions, .vg-arrow, .vg-dots { display: none !important; }
  html, body { background: #fff !important; }
  .site-backdrop { display: none !important; }
  .page-shell { box-shadow: none !important; }
  .vdetail-page { padding: 0 !important; }
  .vdetail-page .container { max-width: none !important; padding: 0 !important; }

  /* Kopfzeile mit RECA-Logo */
  .vdetail-print-head {
    display: flex !important; align-items: flex-end; justify-content: space-between;
    padding-bottom: 10px; margin-bottom: 18px;
    border-bottom: 2px solid #111;
  }
  .vdp-brand { display: flex; align-items: baseline; gap: 9px; }
  .vdp-word {
    position: relative; display: inline-block;
    font-family: var(--font-sans); font-weight: 800; font-style: italic;
    font-size: 26px; line-height: 1; letter-spacing: -0.045em; color: #111; padding-right: 0.16em;
  }
  .vdp-word .brand-slash { position: absolute; width: 0.7em; height: 0.165em; right: 0.05em; bottom: 0.305em; background: var(--reca-red); transform: skewX(-22deg); }
  .vdp-sub { font-family: var(--font-sans); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #444; }
  .vdp-head-meta { text-align: right; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: #555; line-height: 1.5; }

  /* Inserat-Korpus — einspaltig im normalen Blockfluss (paginiert zuverlässig
     über mehrere Seiten; Flex/Grid würde den Inhalt abschneiden). */
  .vdetail {
    border: 0 !important; border-radius: 0 !important; background: #fff !important;
    overflow: visible !important;
    display: block !important;
  }
  .vdetail-gallery { display: block !important; background: #fff !important; }
  .vdetail-info { display: block !important; padding: 0 !important; }
  /* order zurücksetzen → natürliche DOM-Reihenfolge: Bild, Daten, Preis, Beschreibung */
  .vdetail-info .vd-grp-head,
  .vdetail-info .vd-grp-specs,
  .vdetail-info .vd-grp-price,
  .vdetail-info .vd-grp-desc,
  .vdetail-info .vd-grp-equip { order: 0 !important; }
  .vd-grp { break-inside: avoid; margin-bottom: 14px; }
  .vd-grp-desc, .vd-grp-equip { break-inside: auto; }

  .vdetail-main { aspect-ratio: 16 / 9 !important; max-height: 8.5cm; border: 1px solid #ddd; margin-bottom: 8px; }
  .vdetail-main img { object-fit: cover !important; }
  /* kleine Bilder darunter */
  .vdetail-thumbs { display: flex !important; flex-wrap: wrap; gap: 5px !important; padding: 0 0 12px !important; margin-bottom: 14px; border-bottom: 1px solid #ddd; background: #fff !important; overflow: visible !important; }
  .vdetail-thumb { flex: 0 0 auto !important; width: 2.5cm !important; height: 1.8cm !important; border: 1px solid #ccc !important; }
  .vdetail-thumb.on { border-color: var(--reca-red) !important; }
  .vdetail-stock { color: #888 !important; margin-bottom: 6px !important; }
  .vdetail-title { font-size: 22px !important; margin: 0 0 2px !important; }
  .vehicle-trim { margin-bottom: 8px !important; }
  .vd-grp-price { padding: 9px 0 !important; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
  .vdetail-price { font-size: 23px !important; color: #111 !important; }
  .vdetail-price-sub { margin-bottom: 0 !important; color: #666 !important; }
  .vdetail-section-label { color: #888 !important; margin: 0 0 8px !important; }
  .vdetail-specs { grid-template-columns: 1fr 1fr !important; }
  .vdetail-specs dt { color: #555 !important; }
  .vdetail-specs dd, .vdetail-desc, .vdetail-equip li { color: #111 !important; }
  .vdetail-specs > div { padding: 6px 0 !important; }
  .vdetail-desc { font-size: 12.5px !important; line-height: 1.55 !important; }
  .vdetail-equip { columns: 2; column-gap: 24px; }
  .vdetail-equip li { font-size: 11.5px !important; break-inside: avoid; }

  /* Fußzeile mit Kontakt */
  .vdetail-print-foot {
    display: grid !important; grid-template-columns: auto auto 1fr; gap: 26px;
    margin-top: 22px; padding-top: 10px; border-top: 1px solid #bbb;
    font-family: var(--font-sans); font-size: 11px; color: #222;
  }
  .vdp-foot-col { display: flex; flex-direction: column; gap: 2px; }
  .vdp-foot-label { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #999; }

  a[href]:after { content: "" !important; }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.h-xl { font-size: clamp(36px, 4.5vw, 64px); letter-spacing: -0.03em; }
.h-lg { font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.022em; }
.h-md { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.018em; }
.h-sm { font-size: 18px; letter-spacing: -0.012em; font-weight: 500; }

p { margin: 0; text-wrap: pretty; }
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 56ch;
}
/* Gebrauchtwagen-Untertitel: auf Desktop eine Zeile (feste Größe, kein Hochskalieren),
   auf schmalen Fenstern normaler Umbruch. */
.used-sub-oneline { font-size: 17px; }
@media (min-width: 1280px) {
  .used-sub-oneline { white-space: nowrap; }
}
.muted { color: var(--ink-600); }
.tiny { font-size: 12px; }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* Layout */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding-top: calc(var(--section-y) * 0.55); padding-bottom: calc(var(--section-y) * 0.55); }

hr.rule {
  border: 0;
  border-top: 1px solid var(--ink-200);
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: all 0.18s ease;
  background: transparent;
  color: var(--ink-900);
  cursor: pointer;
}
.btn-primary {
  background: var(--ink-900);
  color: var(--ink-50);
}
.btn-primary:hover { background: var(--accent-strong); }

.btn-ghost {
  border: 1px solid var(--ink-300);
  color: var(--ink-900);
}
.btn-ghost:hover { border-color: var(--ink-900); background: var(--ink-900); color: var(--ink-50); }

.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--ink-900);
}
.btn-light:hover { background: white; }

.btn-text {
  padding: 8px 0;
  color: var(--ink-900);
  border-bottom: 1px solid var(--ink-900);
  border-radius: 0;
}
.btn-text:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Inventory pager */
.pager {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.pager-count {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-600);
}
.pager-actions {
  display: flex;
  gap: 12px;
}

/* Centered page-number navigation */
.pager-centered {
  justify-content: center;
  gap: 8px;
  border-top: 0;
  padding-top: 0;
}
.pager-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--ink-300);
  color: var(--ink-800);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pager-btn:hover:not(:disabled) {
  border-color: var(--ink-800);
  background: var(--ink-100);
}
.pager-btn.on {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}
.pager-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.pager-arrow {
  font-size: 20px;
  line-height: 1;
}

.btn .arr { transition: transform 0.18s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* Form controls */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-900);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-300);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.15s ease;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--accent); }

.field textarea {
  min-height: 96px;
  resize: vertical;
  font-family: inherit;
}
.field-hint {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-500);
  margin-top: 2px;
}

/* License-plate schematic (Kennzeichen comparison) */
.plate {
  display: flex;
  align-items: stretch;
  height: 76px;
  border: 1.5px solid var(--ink-900);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
  max-width: 320px;
  box-shadow: 0 1px 0 var(--ink-300);
}
.plate-eu {
  width: 34px;
  background: #003399;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0 6px;
  flex-shrink: 0;
}
.plate-stars { font-size: 11px; line-height: 1; color: #ffcc00; }
.plate-d { font-size: 12px; font-weight: 700; font-family: var(--font-sans); }
.plate-num {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #111;
}
.plate-date {
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
}
.plate-date.red { background: #c41818; }
.plate-date.yellow { background: #f2c200; color: #111; }

/* VR protection-class table */
.vr-row {
  display: grid;
  grid-template-columns: 84px 1.2fr 1.3fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-200);
  align-items: baseline;
}
.vr-head { padding: 10px 0; }

/* ===== Special-protection page layout ===== */
.special-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 62px;
}
.special-head .lede { max-width: 62ch; }
.special-block { margin-bottom: 76px; }
.special-block:last-child { margin-bottom: 0; }
.special-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: 14px;
}
.special-note {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.6;
  max-width: 72ch;
  margin-bottom: 28px;
}
.vr-table { border-top: 1.5px solid var(--ink-900); }
.vr-col-head { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-600); }
.vr-class {
  font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.vr-weapon { color: var(--ink-800); font-size: 14px; }
.vr-ammo { color: var(--ink-600); font-size: 12.5px; }
.vr-hot { background: var(--accent-soft); box-shadow: inset 3px 0 0 var(--accent); }
.vr-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: var(--accent);
  padding: 2px 7px;
}
.special-legend {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--ink-600);
  margin: 14px 0 20px;
}
.vr-legend-swatch {
  width: 26px; height: 14px; flex: 0 0 auto;
  background: var(--accent-soft);
  box-shadow: inset 3px 0 0 var(--accent);
}
.special-source {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--ink-200);
  padding-top: 14px;
}
.special-source .mono { font-size: 11px; letter-spacing: 0.04em; color: var(--ink-500); }
.special-pdf-link { font-size: 11px; letter-spacing: 0.08em; color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* VPAM official table (image + S-Class highlight) */
.vpam-figure { margin: 0 0 18px; }
.vpam-zoom {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: zoom-in; position: relative; line-height: 0;
}
.vpam-zoom img { width: 100%; height: auto; display: block; border: 1px solid var(--ink-300); }
.vpam-hot {
  position: absolute;
  left: 0.6%; top: 62.9%; width: 98.8%; height: 10.4%;
  border: 2.5px solid var(--accent);
  background: oklch(0.45 0.07 245 / 0.16);
  pointer-events: none;
}
.vpam-hot-tag {
  position: absolute; top: -12px; left: 12px;
  background: var(--accent); color: #fff;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; white-space: nowrap; line-height: 1.4;
}
.vpam-caption {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 12px; font-size: 12.5px; color: var(--ink-600);
}
.vpam-legend-swatch {
  width: 26px; height: 14px; flex: 0 0 auto;
  background: oklch(0.45 0.07 245 / 0.16);
  border: 2px solid var(--accent);
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card { border: 1px solid var(--ink-200); padding: 24px; background: var(--ink-50); }
.compare-sub { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.specials-block { border-top: 1px solid var(--ink-200); padding-top: 44px; }
.specials-grid { display: flex; flex-direction: column; gap: 52px; }
.img-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.img-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

/* Fahrzeugschein annotations (colour-coded) */
.fz-annotated { position: relative; }
.fz-box {
  position: absolute;
  border: 2.5px solid currentColor;
  border-radius: 3px;
  box-sizing: border-box;
  pointer-events: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.fz-box-fin { color: #2563EB; left: 33.2%; top: 20.9%; width: 22.2%; height: 4.8%; }
.fz-box-ez  { color: #E8702A; left: 33.2%; top: 14.2%; width: 12%;   height: 4.8%; }
.fz-box-halter { color: #1F8A5B; left: 40.8%; top: 19.0%; width: 18%; height: 3.0%; }
.fz-badge {
  position: absolute; top: -11px; left: -11px;
  width: 21px; height: 21px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: white; background: currentColor;
}
.fz-badge::after { content: attr(data-n); }
.fz-box-fin .fz-badge, .fz-box-ez .fz-badge { color: #fff; }
.fz-box-fin .fz-badge { background: #2563EB; }
.fz-box-ez .fz-badge { background: #E8702A; }
.fz-box-halter .fz-badge { background: #1F8A5B; }
.papers-card:has(.qa-fin:hover) .fz-box-fin,
.papers-card:has(.qa-ez:hover) .fz-box-ez,
.papers-card:has(.qa-halter:hover) .fz-box-halter {
  box-shadow: 0 0 0 4px oklch(1 0 0 / 0.7), 0 0 16px 3px currentColor;
  transform: scale(1.05);
}
/* Labelled tag on the colour box — names the highlighted field, in its colour */
.fz-box-tag {
  position: absolute;
  left: -2.5px;
  bottom: calc(100% + 9px);
  padding: 5px 10px 6px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1;
  color: #fff;
  box-shadow: 0 6px 20px oklch(0 0 0 / 0.4);
}
.fz-box-tag::after {
  content: "";
  position: absolute;
  top: 100%; left: 16px;
  border: 6px solid transparent;
  border-top-color: inherit;
}
.fz-box-ez .fz-box-tag { background: #E8702A; }
.fz-box-ez .fz-box-tag::after { border-top-color: #E8702A; }
.fz-box-fin .fz-box-tag { background: #2563EB; }
.fz-box-fin .fz-box-tag::after { border-top-color: #2563EB; }
.fz-box-halter .fz-box-tag { background: #1F8A5B; }
.fz-box-halter .fz-box-tag::after { border-top-color: #1F8A5B; }

.papers-lightbox-fig { position: relative; display: inline-block; line-height: 0; }
.papers-lightbox-fig img { max-width: 96vw; max-height: 92vh; width: auto; height: auto; display: block; border: 1px solid oklch(1 0 0 / 0.15); }

/* Q&A colour markers */
.papers-qa-item dt { display: flex; align-items: center; gap: 10px; }
.qa-marker {
  flex: 0 0 auto;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: white;
}
.qa-fin .qa-marker { background: #2563EB; }
.qa-ez .qa-marker { background: #E8702A; }
.qa-halter .qa-marker { background: #1F8A5B; }
.qa-none .qa-marker { background: var(--ink-300); color: var(--ink-700); }
.qa-fin, .qa-ez, .qa-halter { transition: background 0.18s ease; border-radius: 4px; }
.qa-fin:hover { background: oklch(0.55 0.18 264 / 0.08); }
.qa-ez:hover { background: oklch(0.66 0.16 50 / 0.10); }
.qa-halter:hover { background: oklch(0.6 0.13 155 / 0.10); }

/* Teil II — Fahrzeugbrief block */
.papers-body-brief {
  grid-template-columns: 1fr 360px;
  align-items: start;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--ink-200);
}
.papers-lightbox-brief { display: inline-block; }
.papers-lightbox-brief img { max-height: 92vh; width: auto; max-width: 96vw; }

@media (max-width: 860px) {
  .special-head { grid-template-columns: 1fr; gap: 28px; }
  .specials-grid { gap: 40px; }
}

/* ===== Suchauftrag (Fahrzeug-Gesuch) ===== */
.gesuch-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 26px 30px;
  border: 1px solid var(--ink-200);
  background: #fff;
  box-shadow: 0 16px 50px oklch(0.16 0.008 250 / 0.07), 0 3px 12px oklch(0.16 0.008 250 / 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.gesuch-cta:hover {
  transform: translateY(-4px);
  border-color: var(--ink-300);
  box-shadow: 0 26px 60px oklch(0.16 0.008 250 / 0.13), 0 6px 18px oklch(0.16 0.008 250 / 0.06);
}
.gesuch-cta-text { max-width: 62ch; }
.gesuch-cta-eyebrow {
  display: block;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-900); margin-bottom: 8px;
}
.gesuch-cta-text p { color: var(--ink-700); font-size: 15px; line-height: 1.55; }
.gesuch-cta-btn {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--ink-200);
  color: var(--ink-900);
  border-radius: 999px;
  box-shadow: 0 8px 20px -14px oklch(0 0 0 / 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.gesuch-cta-btn svg { transition: transform 0.18s ease; }
.gesuch-cta:hover .gesuch-cta-btn,
.gesuch-cta-btn:hover {
  background: var(--reca-red);
  border-color: var(--reca-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px color-mix(in oklch, var(--reca-red), transparent 22%);
}
.gesuch-cta:hover .gesuch-cta-btn svg,
.gesuch-cta-btn:hover svg { transform: translateX(3px); }
.gesuch-close {
  background: none; border: 0; cursor: pointer;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-400); padding: 0;
}
.gesuch-close:hover { color: var(--ink-100); }

/* Suchauftrag als Overlay (öffnet wie ein Inserat) */
/* Suchauftrag-Overlay im gleichen Look wie das Ankaufformular: weiße Karte,
   zentriert, auf 92vh begrenzt mit innerem Scroll. */
.gesuch-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: oklch(0.16 0.008 250 / 0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; overflow: hidden;
  animation: gesuchOverlayIn 0.2s ease;
}
.gesuch-modal {
  position: relative;
  width: 100%; max-width: min(1160px, 95vw);
  max-height: 92vh; overflow-y: auto;
  margin: auto;
  background: #fff; color: var(--ink-900);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 38px clamp(22px, 4vw, 56px) 40px;
  box-shadow: 0 40px 120px oklch(0 0 0 / 0.5);
  animation: gesuchModalIn 0.26s cubic-bezier(.2,.8,.2,1);
}
.gesuch-modal .gesuch-head { margin-bottom: 24px; padding-right: 48px; }
@keyframes gesuchOverlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gesuchModalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .gesuch-overlay, .gesuch-modal { animation: none; }
}
@media (max-width: 760px) {
  .gesuch-modal { padding: 30px 22px 32px; }
  .gesuch-modal .gesuch-head { padding-right: 36px; }
}
.gesuch-head {
  display: block;
  margin-bottom: 24px;
}
.gesuch-form, .gesuch-done {
  background: transparent;
  color: var(--ink-900);
  padding: 0;
}
.gesuch-sec { padding-top: 32px; margin-top: 32px; border-top: 1px solid var(--ink-200); }
.gesuch-sec:first-child { padding-top: 0; margin-top: 0; border-top: 0; }
.gesuch-sec-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.gesuch-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.gesuch-other { margin-top: 10px; }
.gesuch-budget { display: flex; align-items: baseline; gap: 12px; }
.gesuch-budget input { flex: 1; min-width: 0; }
.gesuch-dash { color: var(--ink-500); }
.gesuch-radio { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 6px; }
.gesuch-colors { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.gesuch-sub {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-600); margin-bottom: 12px;
}
.gesuch-hint { color: var(--ink-600); font-size: 14px; line-height: 1.55; margin-bottom: 18px; max-width: 64ch; }
.gchips { display: flex; flex-wrap: wrap; gap: 8px; }
.gchip {
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 9px 15px;
  border: 1px solid var(--ink-300);
  background: transparent;
  color: var(--ink-800);
  cursor: pointer;
  transition: all 0.15s ease;
  border-radius: 0;
}
.gchip:hover:not(:disabled) { border-color: var(--ink-900); }
.gchip.on { background: var(--ink-900); border-color: var(--ink-900); color: var(--ink-50); }
.gchip.taboo.on { background: oklch(0.52 0.2 25); border-color: oklch(0.52 0.2 25); color: white; }
.gchip:disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.gesuch-equip-other { margin-top: 18px; width: 100%; }
.gesuch-consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--ink-700);
  margin: 26px 0 28px;
}
.gesuch-consent input { margin-top: 3px; }
.gesuch-submit { justify-content: center; }
@media (max-width: 860px) {
  .gesuch-form, .gesuch-done { padding: 0; }
  .gesuch-fields { grid-template-columns: 1fr; }
  .gesuch-colors { grid-template-columns: 1fr; gap: 24px; }
  .gesuch-cta { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px; }
}

/* Placeholder image */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      oklch(0.30 0.008 250) 0px,
      oklch(0.30 0.008 250) 1px,
      oklch(0.27 0.008 250) 1px,
      oklch(0.27 0.008 250) 14px);
  color: oklch(0.78 0.005 250);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ph-light {
  background:
    repeating-linear-gradient(135deg,
      oklch(0.92 0.004 250) 0px,
      oklch(0.92 0.004 250) 1px,
      oklch(0.95 0.003 250) 1px,
      oklch(0.95 0.003 250) 14px);
  color: oklch(0.42 0.005 250);
}
.ph-label {
  background: oklch(0.18 0.008 250 / 0.78);
  color: var(--ink-100);
  padding: 6px 10px;
  border: 1px solid oklch(1 0 0 / 0.12);
}
.ph-light .ph-label {
  background: oklch(1 0 0 / 0.9);
  color: var(--ink-900);
  border-color: var(--ink-300);
}

/* Hero rotation */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  background: var(--ink-800);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), transform 12s ease-out;
  transform: scale(1.04);
  pointer-events: none;
}
.hero-photo.active {
  opacity: 1;
  transform: scale(1.0);
  pointer-events: auto;
}
.hero-photo > div { width: 100%; height: 100%; }

.hero-dots {
  display: flex;
  gap: 4px;
  align-items: stretch;
}
.hero-dot {
  background: transparent;
  border: 0;
  padding: 8px 14px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 92px;
  border-top: 1px solid var(--ink-300);
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  color: var(--ink-900);
}
.hero-dot:hover { opacity: 0.85; }
.hero-dot.active { opacity: 1; border-top-color: var(--ink-900); }
.hero-dot-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-600);
}
.hero-dot-label {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  line-height: 1.15;
}
.hero-dot-label em {
  font-style: normal;
  color: var(--ink-600);
}
.hero-dot-bar {
  display: none;
}

.hero-dots-dark .hero-dot {
  color: var(--ink-200);
  border-top-color: oklch(1 0 0 / 0.15);
}
.hero-dots-dark .hero-dot.active { border-top-color: var(--ink-50); color: var(--ink-50); }
.hero-dots-dark .hero-dot-num { color: var(--ink-400); }
.hero-dots-dark .hero-dot-label em { color: var(--ink-400); }
.page-enter {
  animation: pageIn 0.4s ease;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.97 0.003 80 / 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0;
}
.nav::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0, oklch(1 0 0 / 0.5) 30%, oklch(1 0 0 / 0.5) 70%, transparent 100%);
}
.nav-dark::after {
  background: linear-gradient(90deg, transparent 0, oklch(1 0 0 / 0.16) 18%, oklch(1 0 0 / 0.16) 82%, transparent 100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 32px;
}
.nav-dark {
  background: oklch(0.16 0.008 250 / 0.58);
  color: var(--ink-100);
}
.nav-dark .nav-link { color: var(--ink-200); }
.nav-dark .nav-link:hover { color: var(--ink-50); }
.nav-dark .nav-link.active { color: var(--ink-50); }
.nav-dark .nav-link.active::after { background: linear-gradient(90deg, transparent 0%, var(--reca-red) 25%, var(--reca-red) 75%, transparent 100%); }

.brand {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex: none;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-id { display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; }
.brand-line {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-600);
  line-height: 1;
  padding-left: 1px;
}
.nav-dark .brand-line { color: var(--ink-300); }
.brand-word {
  position: relative;
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-style: italic;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink-900);
  padding-right: 0.16em;
}
.nav-dark .brand-word { color: var(--ink-50); }
.brand-slash {
  position: absolute;
  right: 0.05em;
  bottom: 0.305em;
  width: 0.7em;
  height: 0.165em;
  background: var(--reca-red);
  transform: skewX(-22deg);
  border-radius: 0.5px;
}
.brand-sub {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-600);
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid var(--ink-300);
}
.footer-word {
  font-size: 32px;
  color: var(--ink-50);
  margin-bottom: 18px;
}
.nav-dark .brand-sub { color: var(--ink-400); border-left-color: oklch(1 0 0 / 0.15); }

/* Footer brand lockup — RECA / Automobile │ Handels-GmbH · seit 1979 */
.footer-brand { display: inline-flex; align-items: stretch; gap: 14px; margin-bottom: 18px; }
.footer-brand-since-lk { flex-direction: column; align-items: stretch; gap: 11px; }
.footer-brand-since-lk .footer-brand-rule { height: 1.5px; background: var(--ink-50); border-radius: 2px; }
.footer-light .footer-brand-since-lk .footer-brand-rule { background: var(--ink-900); }
.footer-brand-since-lk .footer-brand-since { align-self: flex-end; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--reca-red); }
.footer-brand-id { display: inline-flex; flex-direction: row; align-items: baseline; gap: 11px; }
.footer-brand-id .footer-word { margin-bottom: 0; }
.footer-brand-line {
  font-family: var(--font-sans); font-weight: 500; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-400); line-height: 1;
}
.footer-brand-sub {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap; color: var(--ink-500);
  padding-left: 16px; border-left: 1px solid oklch(1 0 0 / 0.16);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 16.5px;
  color: var(--ink-700);
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-link:hover { color: var(--ink-900); }
.nav-link.active { color: var(--ink-900); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--reca-red) 25%, var(--reca-red) 75%, transparent 100%);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Cross-link to RECA Guard — stacked "RECA / Guard" + arrow, subtle */
.nav-guard {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-500);
  opacity: 0.92;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.nav-guard:hover { opacity: 1; }
.nav-guard-lock { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.nav-guard-word {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 800;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink-900);
  padding-right: 0.16em;
}
.nav-guard-tag {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-600);
  line-height: 1;
}
.nav-guard svg { color: var(--ink-400); }
.nav-guard:hover .nav-guard-word,
.nav-guard:hover .nav-guard-tag,
.nav-guard:hover svg { color: var(--ink-900); }
.nav-guard-div { width: 1px; height: 30px; background: var(--ink-200); flex: 0 0 auto; }
/* dark nav */
.nav-dark .nav-guard-word { color: var(--ink-50); }
.nav-dark .nav-guard-tag { color: var(--ink-300); }
.nav-dark .nav-guard svg { color: var(--ink-400); }
.nav-dark .nav-guard:hover .nav-guard-word,
.nav-dark .nav-guard:hover .nav-guard-tag,
.nav-dark .nav-guard:hover svg { color: var(--ink-50); }
.nav-dark .nav-guard-div { background: oklch(1 0 0 / 0.15); }

/* Header contact (phone + email) — compact icon buttons */
.nav-contact { display: flex; flex-direction: row; gap: 8px; align-items: center; }
.nav-contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 1px solid var(--ink-300); border-radius: 999px;
  color: var(--ink-700); transition: all 0.15s ease;
}
.nav-contact-icon:hover { border-color: var(--ink-900); background: var(--ink-900); color: var(--ink-50); }
.nav-dark .nav-contact-icon { border-color: oklch(1 0 0 / 0.2); color: var(--ink-200); }
.nav-dark .nav-contact-icon:hover { border-color: var(--ink-50); background: var(--ink-50); color: var(--ink-900); }

/* Compact language dropdown */
.lang-menu { position: relative; }
.lang-menu-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--ink-300); border-radius: 999px; background: transparent;
  color: var(--ink-700); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 7px 11px; cursor: pointer; transition: all 0.15s ease;
}
.lang-menu-btn:hover { border-color: var(--ink-900); color: var(--ink-900); }
.lang-menu-backdrop { position: fixed; inset: 0; z-index: 69; }
.lang-menu-pop {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 70;
  background: oklch(0.97 0.003 80 / 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--ink-200);
  box-shadow: 0 16px 34px oklch(0 0 0 / 0.12); padding: 4px; min-width: 62px;
  display: flex; flex-direction: column; gap: 2px; animation: ddIn 0.16s ease;
}
.lang-menu-pop button {
  background: transparent; border: 0; text-align: left; cursor: pointer; border-radius: 2px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-700); padding: 8px 12px;
}
.lang-menu-pop button:hover { background: var(--ink-150); color: var(--ink-900); }
.lang-menu-pop button.active { background: var(--ink-900); color: var(--ink-50); }
.lang-menu-pop button { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lang-flag {
  width: 16px; height: 11px; flex: none;
  border-radius: 2px;
  box-shadow: 0 0 0 1px oklch(0 0 0 / 0.12);
  display: inline-block; vertical-align: middle;
}
.nav-dark .lang-flag, .lang-menu-dark .lang-flag { box-shadow: 0 0 0 1px oklch(1 0 0 / 0.25); }
.nav-dark .lang-menu-btn { border-color: oklch(1 0 0 / 0.2); color: var(--ink-200); }
.nav-dark .lang-menu-btn:hover { border-color: var(--ink-50); color: var(--ink-50); }

/* Guard link inside the mobile menu */
.nav-mobile-guard {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 0 4px;
}
.nav-mobile-guard .nav-guard-word { font-size: 18px; color: var(--ink-900); }
.nav-dark .nav-mobile-guard .nav-guard-word { color: var(--ink-50); }
.nav-mobile-guard .nav-guard-tag { font-size: 15px; }

/* Dropdown */
.nav-item { position: relative; }
/* Invisible hover bridge: fills the full 96px nav height (link is only 32px,
   centred) and the 28px gaps between items, so the cursor never crosses a
   "dead" zone that would close the menu. */
.nav-item::before {
  content: "";
  position: absolute;
  top: -32px;
  bottom: -32px;
  left: -14px;
  right: -14px;
  z-index: 0;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 32px);
  left: -20px;
  min-width: 320px;
  background: oklch(0.97 0.01 80 / 0.82);
  -webkit-backdrop-filter: blur(50px) saturate(1.8);
  backdrop-filter: blur(50px) saturate(1.8);
  border: 1px solid var(--ink-200);
  border-top: 0;
  box-shadow: 0 24px 48px oklch(0 0 0 / 0.08);
  padding: 8px;
  z-index: 60;
  animation: ddIn 0.18s ease;
}
.nav-dropdown-dark {
  background: oklch(0.16 0.012 250 / 0.84);
  border-color: oklch(1 0 0 / 0.10);
}
@keyframes ddIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dd-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 0 14px;
  min-height: 62px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.12s ease;
  border-radius: 1px;
  position: relative;
}
/* Feine Trennlinie zwischen Dropdown-Punkten — kräftig genug, um auf jedem Display
   (auch bei fraktionalem Pixel-Raster) zuverlässig und gleichmäßig zu erscheinen. */
.nav-dd-sep {
  flex: 0 0 auto;
  height: 1px;
  margin: 0 10px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0, oklch(0 0 0 / 0.5) 12%, oklch(0 0 0 / 0.5) 88%, transparent 100%);
}
.nav-dropdown-dark .nav-dd-sep {
  background: linear-gradient(90deg, transparent 0, oklch(1 0 0 / 0.68) 12%, oklch(1 0 0 / 0.68) 88%, transparent 100%);
}
.nav-dd-item:hover { background: var(--ink-150); }
.nav-dropdown-dark .nav-dd-item:hover { background: oklch(1 0 0 / 0.05); }
.nav-dd-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-900);
}
.nav-dropdown-dark .nav-dd-label { color: var(--ink-50); }
.nav-dd-label .arr { opacity: 0.3; transition: opacity 0.15s, transform 0.15s; }
.nav-dd-item:hover .nav-dd-label .arr { opacity: 1; transform: translateX(2px); }
.nav-dd-desc {
  font-size: 12px;
  color: var(--ink-600);
  letter-spacing: 0.005em;
}
.nav-dropdown-dark .nav-dd-desc { color: var(--ink-400); }

/* RECA Guard cross-link inside the Sonderschutz dropdown — RECA-Guard-Optik (Stahl/Platin) */
.nav-dd-guard {
  margin-top: 10px;
  padding: 13px 15px;
  border: 1px solid oklch(0.8 0.02 250 / 0.28);
  border-radius: 0;
  background: linear-gradient(180deg, oklch(0.26 0.012 250) 0%, oklch(0.205 0.01 250) 100%);
  box-shadow: 0 12px 30px -22px oklch(0 0 0 / 0.7), inset 0 1px 0 oklch(0.8 0.02 250 / 0.12);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.nav-dd-guard:hover {
  border-color: oklch(0.8 0.02 250 / 0.5);
  box-shadow: 0 16px 36px -22px oklch(0 0 0 / 0.78), inset 0 1px 0 oklch(0.8 0.02 250 / 0.18);
}
.nav-dropdown-dark .nav-dd-guard {
  border-color: oklch(0.8 0.02 250 / 0.28);
  background: linear-gradient(180deg, oklch(0.26 0.012 250) 0%, oklch(0.205 0.01 250) 100%);
}
.nav-dropdown-dark .nav-dd-guard:hover { border-color: oklch(0.8 0.02 250 / 0.5); background: linear-gradient(180deg, oklch(0.26 0.012 250) 0%, oklch(0.205 0.01 250) 100%); }
.nav-dd-guard .nav-guard-lock { flex-direction: row; align-items: baseline; gap: 5px; }
.nav-dd-guard .nav-guard-word { font-size: 15px; color: var(--ink-50); }
.nav-dd-guard .nav-guard-tag { font-size: 13px; color: oklch(0.8 0.02 250); }
.nav-dd-guard .nav-dd-label { color: var(--ink-50); }
.nav-dd-guard .nav-dd-label svg { color: oklch(0.8 0.02 250); }
.nav-dd-guard:hover .nav-dd-label svg { color: oklch(0.9 0.018 250); }
.nav-dd-guard .nav-dd-desc { color: oklch(0.7 0.015 250); }
.nav-mobile-sub-guard { border-top: 1px solid var(--ink-200); margin-top: 6px; padding-top: 14px; }
.nav-mobile-sub-guard .nav-guard-lock { flex-direction: row; align-items: baseline; gap: 5px; }
.nav-mobile-sub-guard .nav-guard-word { font-size: 16px; }
.nav-mobile-sub-guard .nav-guard-tag { font-size: 14px; }

.lang-toggle {
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--ink-300);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: var(--ink-600);
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.lang-toggle button.active {
  background: var(--ink-900);
  color: var(--ink-50);
}
.nav-dark .lang-toggle { border-color: oklch(1 0 0 / 0.18); }
.nav-dark .lang-toggle button { color: var(--ink-300); }
.nav-dark .lang-toggle button.active { background: var(--ink-50); color: var(--ink-900); }

.nav-phone {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  white-space: nowrap;
}
.nav-dark .nav-phone { color: var(--ink-200); }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: oklch(0.16 0.008 250 / 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink-300);
  padding: 80px 0 32px;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0, oklch(1 0 0 / 0.16) 18%, oklch(1 0 0 / 0.16) 82%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-100);
  margin-bottom: 22px;
  font-weight: 500;
  height: 42px;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
/* Footer-Navigationsspalten mit Logo in der ersten Zeile (RECA Automobile / RECA Guard) */
.footer-navcol-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
  height: 42px;
  margin-bottom: 22px;
  line-height: 1;
}
.footer-navcol-logo .footer-navcol-tag,
.footer-navcol-logo .nav-guard-tag { line-height: 1; font-size: 12px; }
.footer-navcol-logo .footer-word,
.footer-navcol-logo .nav-guard-word { font-size: 21px; line-height: 1; }
.footer-navcol-logo .footer-word .brand-slash,
.footer-navcol-logo .nav-guard-word .brand-slash { width: 0.7em; height: 0.165em; }
.footer-navcol-tag {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.footer-navcol-logo-guard .nav-guard-word { font-size: 21px; }
.footer-navcol-logo-guard .nav-guard-tag { font-size: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid > * { min-width: 0; }
.footer a { font-size: 14px; color: var(--ink-300); transition: color 0.15s ease; }
.footer a:hover { color: var(--ink-50); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-500);
}
.footer-brand-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-400);
  margin-top: 16px;
  max-width: 32ch;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 0;
}
.footer-contact-label { margin: 0 0 5px; }
/* Standort-Band: Öffnungszeiten · Kontakt · Adresse gleichmäßig, Karte füllt den Rest */
.footer-locale {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 56px;
  align-items: start;
  padding: 44px 0 8px;
}
.footer-ib-block { padding: 0; }
.footer-ib-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-ib-ico { display: inline-flex; color: var(--reca-red); }
.footer-ib-addr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-400);
}
.footer-ib-addr-name { color: var(--ink-50); font-weight: 500; }
.footer-map {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 196px;
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: 12px;
  overflow: hidden;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: none;
}
.footer-map-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.2s ease;
}
.footer-map:hover .footer-map-overlay { background: oklch(1 0 0 / 0.05); }
.footer-contact-ico { display: inline-flex; color: var(--ink-900); flex: none; }
@media (max-width: 920px) {
  .footer-locale { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; width: 100%; min-height: 220px; }
}
@media (max-width: 540px) {
  .footer-locale { grid-template-columns: 1fr; gap: 32px; }
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-100);
  width: fit-content;
}
.footer-contact a:hover { color: var(--ink-50); }
.footer-contact-addr {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 2px;
}

/* Öffnungszeiten in der Fußzeile — Basis = dunkle Startseiten-Fußzeile */
.footer-hours { margin-top: 26px; }
.footer-hours-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-hours-rows { display: flex; flex-direction: column; }
.footer-hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
}
.footer-hours-row:first-child { padding-top: 0; }
.footer-hours-day { font-size: 14px; color: var(--ink-50); }
.footer-hours-time { font-size: 13px; color: var(--ink-400); white-space: nowrap; }
.footer-hours-note {
  margin-top: 13px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-400);
  max-width: 32ch;
}

/* Weiße Fußzeile mit schwarzer Schrift und schwarzer, auslaufender Trennlinie oben.
   Die Startseite behält die dunkle, transparente Variante (.footer ohne .footer-light). */
.footer-light {
  background: #ffffff;
  color: var(--ink-900);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.footer-light::before { height: 1px; background: linear-gradient(90deg, transparent 0, oklch(0 0 0 / 0.62) 50%, transparent 100%); }
.footer-light .footer-grid { border-bottom-color: var(--ink-200); }
.footer-light h4 { color: var(--ink-900); }
.footer-light a { color: var(--ink-800); }
.footer-light a:hover { color: var(--ink-900); }
.footer-light .footer-bottom { color: var(--ink-600); }
.footer-light .footer-brand-text { color: var(--ink-600); }
.footer-light .footer-word { color: var(--ink-900); }
.footer-light .footer-navcol-tag { color: var(--ink-600); }
.footer-light .footer-brand-line { color: var(--ink-600); }
.footer-light .footer-brand-sub { color: var(--ink-600); border-left-color: var(--ink-300); }
.footer-light .footer-contact a { color: var(--ink-900); }
.footer-light .footer-contact a:hover { color: var(--accent); }
.footer-light .footer-contact-addr { color: var(--ink-600); }
.footer-light .footer-infobox { border-color: var(--ink-200); }
.footer-light .footer-ib-block + .footer-ib-block { border-top-color: var(--ink-200); }
.footer-light .footer-ib-label { color: var(--ink-500); }
.footer-light .footer-ib-addr { color: var(--ink-600); }
.footer-light .footer-ib-addr-name { color: var(--ink-900); }
.footer-light .footer-hours-label { color: var(--ink-500); }
.footer-light .footer-hours-day { color: var(--ink-900); }
.footer-light .footer-hours-time { color: var(--ink-600); }
.footer-light .footer-hours-row { border-bottom-color: var(--ink-200); }
.footer-light .footer-hours-note { color: var(--ink-600); }
.footer-light .footer-map { border-color: var(--ink-200); }
.footer-light .footer-map iframe { filter: none; }
.footer-light .footer-map:hover .footer-map-overlay { background: oklch(0 0 0 / 0.05); }

/* Ankaufsformular — helle, weiße Karte mit weichem Übergang zum Hintergrund */
.ankauf-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.akf-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .ankauf-layout { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 560px) {
  .akf-fields { grid-template-columns: 1fr; gap: 18px; }
}
/* Anliegen-Zeile (Verkauf/Inzahlungnahme): feste Zeilenhöhe, damit das Einblenden
   des Wunschfahrzeug-Feldes die darunter liegenden Felder NICHT nach unten schiebt. */
.akf-intent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 24px;
}
@media (max-width: 560px) {
  .akf-intent { grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
}
.ankauf-form {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: 0 16px 50px oklch(0.16 0.008 250 / 0.07), 0 3px 12px oklch(0.16 0.008 250 / 0.04);
  position: relative;
}
.ankauf-fs-btn {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  color: var(--ink-600);
  cursor: pointer;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.ankauf-fs-btn:hover { color: var(--ink-900); border-color: var(--ink-400); background: #fff; transform: translateY(-1px); }
/* Form buttons: subtle hover lift, keep current colour */
.ankauf-form .btn { transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease; }
.ankauf-form .btn-primary:hover { background: var(--ink-900); transform: translateY(-2px); box-shadow: 0 12px 24px -12px oklch(0 0 0 / 0.5); }
.ankauf-form .btn-ghost:hover { background: transparent; color: var(--ink-900); border-color: var(--ink-500); transform: translateY(-2px); box-shadow: 0 10px 20px -12px oklch(0 0 0 / 0.32); }
.ankauf-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: oklch(0.16 0.008 250 / 0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; overflow: hidden;
  animation: ankaufOverlayIn 0.2s ease;
}
/* Vollbild: deutlich größeres Formular, das aber immer auf den Bildschirm
   passt (max. 92vh) – statt der ganzen Seite scrollt notfalls nur das
   Formular selbst. Auf normalen Desktops passt alles ohne Scrollen. */
.ankauf-form-modal {
  width: 100%;
  max-width: min(1160px, 95vw);
  max-height: 92vh;
  overflow-y: auto;
  margin: auto;
  padding: 38px 56px 40px;
  box-shadow: 0 40px 120px oklch(0 0 0 / 0.5);
  animation: ankaufModalIn 0.26s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* Vollbild: dreispaltiges, ruhiges Raster – etwas mehr Luft für Übersicht,
   passt aber weiterhin ohne Scrollen auf den Schirm. */
.ankauf-form-modal .akf-fields { grid-template-columns: repeat(3, 1fr); gap: 17px 30px; }
/* Einzelne Felder füllen je eine Spalte; nur mehrzeilige Felder (Notiz) bleiben voll. */
.ankauf-form-modal .akf-fields > .field { grid-column: auto !important; }
.ankauf-form-modal .akf-fields > .field:has(textarea) { grid-column: 1 / -1 !important; }
/* „Wo finde ich das?"-Link bricht um statt in die Nachbarspalte zu ragen. */
.ankauf-form-modal .field-label { flex-wrap: wrap; row-gap: 2px; }
.ankauf-form-modal .field-help { margin-left: auto; }
/* Anliegen-Zeile: gleicher Spaltenabstand, klare Trennung vom Fahrzeug-Block. */
.ankauf-form-modal .akf-intent { gap: 17px 30px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--ink-200); }
.ankauf-form-modal .eyebrow { font-size: 16px !important; margin-bottom: 8px !important; }
.ankauf-form-modal > p { font-size: 16px; margin-bottom: 22px !important; }
.ankauf-form-modal .field label,
.ankauf-form-modal .field-label { font-size: 14px; }
.ankauf-form-modal .field input,
.ankauf-form-modal .field select,
.ankauf-form-modal .field textarea { font-size: 16px; }
.ankauf-form-modal .field textarea { min-height: 80px; }
.ankauf-form-modal .steps { font-size: 14px; margin-bottom: 26px; }
.ankauf-form-modal .akf-intent + .akf-fields { margin-top: 0; }
.ankauf-form-modal .akf-fields + div { margin-top: 26px !important; }
@media (max-width: 1040px) {
  .ankauf-form-modal .akf-fields { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ankauf-form-modal { padding: 28px 22px; }
  .ankauf-form-modal .akf-fields { grid-template-columns: 1fr; }
}
/* Vollbild am Handy: kein horizontales Verschieben, alles passt in die Breite */
.ankauf-form-modal { overflow-x: hidden; }
.ankauf-form-modal .field { min-width: 0; }
.ankauf-form-modal .field input,
.ankauf-form-modal .field select,
.ankauf-form-modal .field textarea { width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box; }
.ankauf-form-modal .steps { min-width: 0; }
.ankauf-form-modal .steps .step { min-width: 0; }
@media (max-width: 680px) {
  .ankauf-overlay { padding: 8px; }
  .ankauf-form-modal { padding: 20px 16px; max-width: 100%; max-height: 100%; }
  .ankauf-form-modal .akf-fields,
  .ankauf-form-modal .akf-intent { grid-template-columns: 1fr !important; gap: 16px; }
  .ankauf-form-modal .steps { gap: 0; font-size: 12px; }
  .ankauf-form-modal .steps .step { padding-left: 4px; padding-right: 4px; }
}
body.modal-open-hide-nav { overflow: hidden; }
body.modal-open-hide-nav .nav,
body.modal-open-hide-nav .wa-fab { display: none !important; }
@keyframes ankaufOverlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ankaufModalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .ankauf-overlay, .ankauf-form-modal { animation: none; }
}
@media (max-width: 560px) {
  .ankauf-form { padding: 26px 22px; }
  .ankauf-overlay { padding: 16px 12px; }
}
/* ── Aufbereitungs-Anfrage (Service-Modal) ── */
.aufb-inq { max-width: 640px; }
.aufb-group { margin-bottom: 26px; }
.aufb-label {
  font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-800); margin-bottom: 12px; font-weight: 600;
}
.aufb-hint {
  text-transform: none; letter-spacing: 0; font-weight: 400;
  color: var(--ink-500); font-size: 12px; margin-left: 6px;
}
.aufb-services { display: flex; flex-direction: column; gap: 10px; }
.aufb-service {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  padding: 14px 16px; border: 1px solid var(--ink-200); background: #fff;
  cursor: pointer; transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
  font: inherit; color: inherit;
}
.aufb-service:hover { border-color: var(--ink-400); transform: translateY(-1px); }
.aufb-service.on { border-color: var(--accent); background: var(--ink-50); }
.aufb-check {
  flex: 0 0 auto; width: 20px; height: 20px; border: 1.5px solid var(--ink-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #fff; background: transparent; transition: all 0.16s ease;
}
.aufb-service.on .aufb-check { background: var(--accent); border-color: var(--accent); }
.aufb-service-main { flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.aufb-service-name { font-size: 15px; color: var(--ink-900); font-weight: 500; }
.aufb-service-desc { font-size: 12.5px; color: var(--ink-600); line-height: 1.4; }
.aufb-service-price {
  flex: 0 0 auto; font-size: 14px; color: var(--ink-900);
  letter-spacing: 0.04em; align-self: flex-start; padding-top: 1px;
}
@media (max-width: 560px) {
  .aufb-service { gap: 10px; padding: 12px 13px; }
  .aufb-service-name { font-size: 14px; }
}
.ankauf-tips-faq { margin-top: 40px; }
.ankauf-tips-list { list-style: none; margin: 0; padding: 0; }
.ankauf-tips-list li { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--ink-200); }
.ankauf-tips-list li:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.ankauf-tips-k { display: block; font-weight: 600; font-size: 15px; color: var(--ink-900); margin-bottom: 6px; }
.ankauf-tips-list p { color: var(--ink-700); font-size: 14px; line-height: 1.6; margin: 0; }

/* Cards */
.vehicle-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.25s ease;
}
.vehicle-card:hover { transform: translateY(-2px); }
.vehicle-card .ph {
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
}
.vehicle-card:hover .ph::after {
  content: "";
  position: absolute; inset: 0;
  background: oklch(0.18 0.008 250 / 0.15);
}
.vehicle-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.vehicle-name { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.vehicle-trim { font-size: 13px; color: var(--ink-600); margin-top: 2px; }
.team-langs { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.team-lang {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-600);
  border: 1px solid var(--ink-200);
  border-radius: 3px;
  padding: 2px 6px;
  line-height: 1.3;
}
.vehicle-price-wrap { text-align: right; flex: 0 0 auto; }
.vehicle-price-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--ink-500);
  margin-top: 3px;
  white-space: nowrap;
}
.vehicle-price { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em; }
.vehicle-price-net {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  margin-top: 3px;
  white-space: nowrap;
}
.field-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.field-help {
  background: none; border: 0; cursor: pointer; padding: 0;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--accent); text-decoration: underline; text-underline-offset: 2px;
  white-space: nowrap;
}
.field-help:hover { color: var(--accent-strong); }
.vehicle-legal {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--ink-150);
  font-size: 10px;
  line-height: 1.45;
  color: var(--ink-500);
}
.vehicle-specs {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.vehicle-specs span { display: inline-flex; gap: 6px; }

/* ── Dark "Aktueller Bestand" section on the home page ── */
.selected-dark .chapter-band-title { color: var(--ink-50); }
.selected-dark .h-xl { color: var(--ink-50); }
.selected-dark .btn-text { color: var(--ink-50); border-bottom-color: oklch(1 0 0 / 0.45); }
.selected-dark .btn-text:hover { color: var(--reca-red); border-bottom-color: var(--reca-red); }
.selected-dark .vehicle-name { color: var(--ink-50); }
.selected-dark .vehicle-name span { color: oklch(0.72 0.006 255) !important; }
.selected-dark .vehicle-trim { color: oklch(0.66 0.006 255); }
.selected-dark .vehicle-price { color: var(--ink-50); }
.selected-dark .vehicle-price-net { color: oklch(0.72 0.006 255); }
.selected-dark .vehicle-price-sub { color: oklch(0.6 0.006 255); }
.selected-dark .vehicle-specs { color: oklch(0.68 0.006 255); }
.selected-dark .vehicle-legal { color: oklch(0.5 0.006 255); border-top-color: oklch(1 0 0 / 0.12); }

/* Filter chips */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ink-300);
  background: transparent;
  font-size: 12.5px;
  color: var(--ink-700);
  border-radius: 999px;
  font-family: var(--font-sans);
  transition: all 0.15s ease;
  cursor: pointer;
}
.chip:hover { border-color: var(--ink-900); color: var(--ink-900); }
.chip.active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--ink-50);
}
.chip .count {
  font-family: var(--font-mono);
  font-size: 10.5px;
  opacity: 0.6;
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Upload zone */
.upload-zone {
  border: 1px dashed var(--ink-300);
  padding: 32px;
  text-align: center;
  background: var(--ink-50);
  transition: all 0.18s ease;
  cursor: pointer;
}
.upload-zone:hover, .upload-zone.dragging {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.upload-icon {
  width: 36px; height: 36px;
  margin: 0 auto 12px;
  border: 1px solid var(--ink-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--ink-600);
}
.upload-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.thumb {
  aspect-ratio: 4/3;
  background: var(--ink-200);
  position: relative;
  overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-x {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px;
  background: oklch(0 0 0 / 0.6);
  color: white;
  border: 0;
  border-radius: 50%;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* Steps */
.steps {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.step {
  flex: 1;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  border-right: 1px solid var(--ink-200);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 14px;
  transition: color 0.2s ease;
}
.step:last-child { border-right: 0; }
.step.active { color: var(--ink-900); font-weight: 600; }
.step.done { color: var(--ink-500); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  transition: transform 0.2s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.2s ease, background 0.2s ease;
}
.step.active .step-num { background: var(--ink-900); color: var(--ink-50); border-color: var(--ink-900); transform: scale(1.28); box-shadow: 0 0 0 4px oklch(0.16 0.008 250 / 0.1); }
.step.done .step-num { background: var(--ink-400); color: var(--ink-50); border-color: var(--ink-400); }

/* Google reviews */
.g-reviews-card {
  border: 1px solid var(--ink-200);
  padding: 24px;
  background: var(--ink-50);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.g-reviews-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.g-reviews-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-400);
  text-transform: none;
}
.g-reviews-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.g-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: oklch(0.62 0.17 145);
  box-shadow: 0 0 0 3px oklch(0.62 0.17 145 / 0.18);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.rev-source-note {
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-500);
  font-style: italic;
}
.rev-sources {
  display: flex;
  flex-direction: column;
}
.rev-source {
  padding: 18px 0;
  border-top: 1px solid var(--ink-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rev-source:first-child { border-top: 0; padding-top: 0; }
.rev-source:last-child { padding-bottom: 0; }
.rev-source-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.rev-source-top .g-reviews-live { margin-right: auto; }
.rev-source-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rev-mark-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.rev-mobile-mark {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.rev-mobile-de { color: #FF6600; }
.g-reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.g-reviews-num {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
}
.g-reviews-count {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-600);
}
.g-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.g-reviews-link.strong { color: var(--ink-900); }
.g-reviews-link:hover { color: var(--accent); }

/* Footer variant */
.g-reviews-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.g-reviews-footer-score {
  display: grid;
  grid-template-columns: 82px 80px 1fr;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-400);
  white-space: nowrap;
}
.g-reviews-footer-score:hover { color: var(--ink-100); }
.g-reviews-footer .rev-mobile-mark { font-size: 13px; color: var(--ink-200); }
.g-reviews-footer .rev-mark-label { display: none; }
.g-reviews-footer-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-200);
  padding-bottom: 4px;
  border-bottom: 1px solid oklch(1 0 0 / 0.22);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.g-reviews-footer-cta:hover {
  color: var(--ink-100);
  border-bottom-color: var(--ink-100);
}
.g-reviews-footer-cta .arr { transition: transform 0.18s ease; }
.g-reviews-footer-cta:hover .arr { transform: translateX(3px); }

/* Contact → Ankauf redirect */
.contact-ankauf-redirect {
  border: 1px solid var(--ink-200);
  background: var(--ink-50);
  padding: 36px 40px;
  animation: pageIn 0.3s ease;
}

/* Papers info card (Ankauf) */
.papers-card {
  margin-top: 64px;
  border: 1px solid var(--ink-200);
  background: var(--ink-50);
  padding: 40px 44px;
}
.papers-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.papers-toggle .papers-title { margin: 0; }
.papers-toggle-ico {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  color: var(--ink-700);
  border: 1px solid var(--ink-300);
  border-radius: 50%;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.papers-toggle:hover .papers-toggle-ico { color: var(--accent); border-color: var(--accent); }
.papers-card:has(.papers-body) .papers-title { margin-bottom: 0; }
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin-bottom: 28px;
}
.papers-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}
.papers-figure {
  margin: 0;
}
.papers-zoom-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
}
.papers-zoom-btn img {
  width: 100%;
  height: auto;
  border: 1px solid var(--ink-300);
  display: block;
  background: white;
}
.papers-zoom-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.18 0.008 250 / 0.82);
  color: white;
  transition: background 0.18s ease;
}
.papers-zoom-btn:hover .papers-zoom-badge { background: var(--ink-900); }
.papers-figure figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-500);
}
.papers-zoom-hint { color: var(--accent); }

/* Lightbox */
.papers-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: oklch(0.12 0.008 250 / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  cursor: zoom-out;
  animation: pageIn 0.2s ease;
}
.papers-lightbox img {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border: 1px solid oklch(1 0 0 / 0.15);
  box-shadow: 0 20px 60px oklch(0 0 0 / 0.5);
  cursor: default;
}
.papers-lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.papers-lightbox-close:hover { opacity: 1; }
.papers-qa {
  margin: 0;
  border-top: 1px solid var(--ink-200);
}
.papers-qa-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-200);
}
.papers-qa-item dt {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 5px;
}
.papers-qa-item dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
}
.papers-diff {
  margin-top: 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-600);
}
@media (max-width: 860px) {
  .papers-body { grid-template-columns: 1fr; gap: 28px; }
  .papers-body-brief { grid-template-columns: 1fr; }
  .papers-figure-brief { max-width: 360px; }
}

/* Document checklist + inline link */
.inline-link {
  color: var(--ink-900);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--ink-300);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.inline-link:hover { color: var(--accent); text-decoration-color: var(--accent); }
.doc-block {
  border: 1px solid var(--ink-200);
  background: var(--ink-100);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.doc-block-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.doc-block-heading {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 6px;
}
.doc-block-note { color: var(--ink-600); font-size: 13px; margin-bottom: 16px; }

/* Ausklappbares Dokumenten-Panel */
.doc-block-collapsible {
  padding: 0; overflow: hidden;
  background: #fff;
  border: 1px solid var(--ink-200);
  box-shadow: 0 16px 50px oklch(0.16 0.008 250 / 0.07), 0 3px 12px oklch(0.16 0.008 250 / 0.04);
  margin-top: 36px;
}
.doc-block-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 26px 32px;
  font: inherit; color: inherit;
}
.doc-block-collapsible .doc-block-heading { margin: 0; }
.doc-block-ico {
  flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--ink-300);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-700);
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1), color 0.15s ease, border-color 0.15s ease;
}
.doc-block-toggle:hover .doc-block-ico { color: var(--accent); border-color: var(--accent); }
.doc-block-collapsible.open .doc-block-ico { transform: rotate(180deg); }
.doc-block-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s cubic-bezier(.2,.8,.2,1);
}
.doc-block-collapsible.open .doc-block-body { grid-template-rows: 1fr; }
.doc-block-body-inner { overflow: hidden; min-height: 0; }
.doc-block-collapsible .doc-block-note { padding: 2px 32px 0; }
.doc-block-collapsible .doc-list { padding: 0 32px 28px; }
@media (prefers-reduced-motion: reduce) {
  .doc-block-body { transition: none; }
  .doc-block-ico { transition: color 0.15s ease, border-color 0.15s ease; }
}
@media (max-width: 900px) { .doc-list-2col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .doc-list-2col { grid-template-columns: 1fr; } }
.doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.doc-list-2col { grid-template-columns: repeat(3, 1fr); gap: 10px; }
.doc-list-3col { grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 900px) { .doc-list-3col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .doc-list-3col { grid-template-columns: 1fr; } }
.doc-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
}
.doc-check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.doc-body { font-size: 14.5px; line-height: 1.5; }
.doc-body strong { color: var(--ink-900); font-weight: 600; }
.doc-optional {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-600);
  border: 1px solid var(--ink-300);
  padding: 1px 7px;
  vertical-align: middle;
}
.doc-desc { display: block; color: var(--ink-600); font-size: 13.5px; margin-top: 2px; }
.doc-link {
  display: inline-block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 700px) {
  .doc-list-2col { grid-template-columns: 1fr; }
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.partner-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 240px;
  padding: 30px;
  background: oklch(1 0 0);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  color: var(--ink-900);
  box-shadow: 0 14px 34px -24px oklch(0 0 0 / 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.partner-card:hover {
  border-color: var(--ink-300);
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -24px oklch(0 0 0 / 0.36);
}
/* Large cards span the full row (P.+W. light, AMS dark) */
.partner-card.large { grid-column: span 3; min-height: 300px; }
.partner-card.large .partner-name { font-size: 26px; }
.partner-card.large .partner-desc { font-size: 15px; max-width: 52ch; }
/* Dark guard-look card */
.partner-card.dark {
  background: oklch(0.165 0.006 255);
  border-color: oklch(1 0 0 / 0.10);
  color: var(--ink-50);
  box-shadow: 0 12px 34px -22px oklch(0 0 0 / 0.6);
}
.partner-card.dark .partner-role { color: oklch(0.62 0.006 255); }
.partner-card.dark .partner-org { color: oklch(0.7 0.006 255); }
.partner-card.dark .partner-desc { color: oklch(0.75 0.006 255); }
.partner-card.dark .partner-link { color: var(--ink-50); }
.partner-card.dark:hover {
  border-color: oklch(1 0 0 / 0.22);
  box-shadow: 0 24px 50px -22px oklch(0 0 0 / 0.7);
}
/* Unscharfer Hallen-Hintergrund hinter jeder Partner-Box (wie die Geschäftsbereich-Karten) */
.partner-card { position: relative; overflow: hidden; isolation: isolate; }
.partner-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--showroom-bg) center/cover no-repeat;
  transform: scale(1.14); filter: blur(9px) brightness(1.12) grayscale(0.18);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.partner-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(165deg, oklch(0.985 0 0 / 0.85) 0%, oklch(0.985 0 0 / 0.93) 100%);
}
.partner-card > * { position: relative; z-index: 1; }
.partner-card:hover::before { transform: scale(1.22); }
.partner-card.dark::before { filter: blur(9px) brightness(0.46) grayscale(0.3); }
.partner-card.dark::after { background: linear-gradient(165deg, oklch(0.17 0.006 255 / 0.82) 0%, oklch(0.15 0.006 255 / 0.92) 100%); }
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card, .partner-card.large { grid-column: auto; }
}
.partner-role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
  transition: color 0.18s ease;
}
.partner-name {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.partner-org {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  margin-top: 6px;
}
.partner-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
}
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-900);
  transition: color 0.18s ease, gap 0.18s ease;
}
.partner-card:hover .partner-link { color: var(--reca-red); gap: 11px; }
.partner-card:hover .partner-role { color: var(--reca-red); }

/* Map placeholder */
.map-ph {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, oklch(0.94 0.005 240) 0%, oklch(0.88 0.008 220) 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-200);
}
.map-ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, oklch(0.82 0.01 230) 1px, transparent 1px),
    linear-gradient(0deg, oklch(0.82 0.01 230) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
}
.map-pin {
  position: absolute;
  top: 50%; left: 52%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.map-pin-dot {
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 12px oklch(0 0 0 / 0.2);
}
.map-pin-label {
  margin-top: 8px;
  background: white;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px oklch(0 0 0 / 0.1);
}

/* Team */
.team-group { margin-bottom: 56px; }
.team-group:last-child { margin-bottom: 0; }
.team-group-plain {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 18px; flex-wrap: wrap;
  padding-bottom: 14px; margin-bottom: 28px;
  border-bottom: 1px solid var(--ink-200);
}
.team-group-label {
  font-family: var(--font-sans) !important;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink-900);
}
.team-group-mobile {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  color: #fff; text-decoration: none; white-space: nowrap;
  background: var(--reca-red); padding: 7px 14px; border-radius: 999px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.team-group-mobile svg { transition: transform 0.15s ease; }
.team-group-mobile:hover { filter: brightness(1.08); transform: translateY(-1px); }
.team-group-mobile:hover svg { transform: translate(2px, -2px); }
/* Team-Gruppenmarke: neues RECA Handels-GmbH Lockup (größer, mit Since 1979) */
.team-group-brand {
  display: flex; flex-direction: column; align-items: stretch; gap: 13px;
  margin-bottom: 30px;
}
.team-group-brand .tg-top { display: flex; align-items: baseline; gap: 14px; }
.tg-word {
  position: relative; display: inline-block;
  font-family: var(--font-sans); font-weight: 800; font-style: italic;
  font-size: 38px; line-height: 1; letter-spacing: -0.045em;
  color: var(--ink-900); padding-right: 0.16em;
}
.team-group-brand .brand-slash { width: 0.7em; height: 0.165em; right: 0.05em; bottom: 0.305em; }
.tg-firm {
  font-family: var(--font-sans); font-weight: 500; font-size: 22px;
  letter-spacing: 0.005em; color: var(--ink-900);
}
.tg-rule { height: 1.5px; background: var(--ink-900); border-radius: 2px; }
.tg-since {
  align-self: flex-end;
  font-family: var(--font-mono); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--reca-red);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.team-card .ph {
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
}
.team-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.team-direct {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-200);
}
.team-direct-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-700);
  text-decoration: none;
  transition: color 0.15s ease;
}
.team-direct-row svg { color: var(--ink-500); flex: 0 0 auto; transition: color 0.15s ease; }
.team-direct-row:hover { color: var(--ink-900); }
.team-direct-row:hover svg { color: var(--ink-900); }
.team-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.team-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.team-qr img {
  width: 56px;
  height: 56px;
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  background: #fff;
  padding: 3px;
}
.team-qr-hint {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.team-vcard {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  border: 1px solid var(--ink-300);
  padding: 8px 12px;
  transition: all 0.15s ease;
}
.team-vcard:hover { border-color: var(--ink-900); background: var(--ink-900); color: var(--ink-50); }
.team-qr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--ink-300);
  background: transparent;
  color: var(--ink-700);
  cursor: pointer;
  flex: 0 0 auto;
  transition: all 0.15s ease;
}
.team-qr-btn:hover, .team-qr-btn.on { border-color: var(--ink-900); color: var(--ink-900); }
.team-qr-btn.on { background: var(--ink-100); }
.team-qr-pop {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--ink-200);
  background: var(--ink-50);
}
.team-qr-pop img { display: block; width: 168px; height: 168px; }
.team-qr-pop .mono {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-600);
  max-width: 14ch;
  line-height: 1.5;
}

/* Heritage statement */
.heritage {
  position: relative;
  overflow: hidden;
  background: var(--ink-50);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  padding: var(--section-y) 0;
}
.heritage-watermark {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(200px, 30vw, 440px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.heritage-statement {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  max-width: 20ch;
  margin: 0 0 28px;
}
.heritage-body {
  color: var(--ink-700);
  font-size: 17px;
  max-width: 52ch;
  margin: 0;
}

/* Showroom (About) */
.showroom-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.showroom-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 16px;
}
/* Clickable showroom gallery (Hof / Innen / Außen / Video) */
.showroom-gal {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  grid-template-areas: "tabs stage" "foot foot";
  gap: 14px;
  background: oklch(0.165 0.006 255);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 28px 64px -38px oklch(0 0 0 / 0.6);
}
.showroom-gal-stage {
  position: relative;
  grid-area: stage;
  align-self: stretch;
  min-height: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-900);
}
.showroom-gal-stage > .showroom-gal-media { width: 100% !important; height: 100% !important; }
.showroom-gal-stage img,
.showroom-gal-stage video { width: 100%; height: 100%; object-fit: contain !important; aspect-ratio: auto !important; display: block; }
.showroom-gal-cap {
  position: absolute; left: 14px; top: 14px; z-index: 3;
  font-size: 13px; letter-spacing: 0.05em;
  color: #fff; background: oklch(0.16 0.008 250 / 0.66);
  padding: 6px 12px; border-radius: 6px;
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
.showroom-gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: oklch(1 0 0 / 0.7); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1; cursor: pointer;
  opacity: 0.42; transition: opacity 0.18s ease, background 0.15s ease;
}
.showroom-gal-stage:hover .showroom-gal-arrow { opacity: 0.82; }
.showroom-gal-arrow:hover { opacity: 1; background: #fff; }
.showroom-gal-arrow.prev { left: 14px; }
.showroom-gal-arrow.next { right: 14px; }
.showroom-gal-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; gap: 7px;
}
.showroom-gal-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: oklch(1 0 0 / 0.42); transition: background 0.15s ease, transform 0.15s ease;
}
.showroom-gal-dots button.on { background: var(--reca-red); transform: scale(1.2); }
.showroom-gal-tabs { grid-area: tabs; display: flex; flex-direction: column; gap: 12px; }
.showroom-gal-tab { display: flex; flex-direction: column; gap: 8px; background: none; border: 0; padding: 0; cursor: pointer; text-align: left; }
.showroom-gal-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: var(--ink-800) center / cover no-repeat;
  border: 2px solid transparent;
  transition: border-color 0.18s ease;
  display: flex; align-items: center; justify-content: center;
}
.showroom-gal-tab.on .showroom-gal-thumb { border-color: var(--reca-red); }
.showroom-gal-tab:hover .showroom-gal-thumb { border-color: oklch(1 0 0 / 0.4); }
.showroom-gal-count {
  position: absolute; top: 8px; right: 8px;
  font-size: 10px; letter-spacing: 0.04em;
  background: oklch(0.12 0.008 250 / 0.82); color: #fff;
  padding: 2px 8px; border-radius: 999px;
}
.showroom-gal-thumbarrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 24px; height: 24px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: oklch(1 0 0 / 0.62); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; line-height: 1;
  opacity: 0.5; transition: opacity 0.15s ease, background 0.15s ease;
}
.showroom-gal-thumb:hover .showroom-gal-thumbarrow { opacity: 0.95; }
.showroom-gal-thumbarrow:hover { opacity: 1; background: #fff; }
.showroom-gal-thumbarrow.prev { left: 5px; }
.showroom-gal-thumbarrow.next { right: 5px; }
.showroom-gal-play {
  width: 36px; height: 36px; border-radius: 50%;
  background: oklch(1 0 0 / 0.92); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; padding-left: 2px;
}
.showroom-gal-tablabel { font-size: 14.5px; letter-spacing: 0.03em; color: oklch(0.72 0.006 255); }
.showroom-gal-tab.on .showroom-gal-tablabel { color: #fff; font-weight: 600; }
@media (max-width: 640px) { .showroom-gal-tabs { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
.showroom-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
/* Footer im selben (dunklen) Galerie-Kasten — nur durch eine Linie getrennt */
.showroom-galfoot {
  grid-area: foot;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  margin-top: 4px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.showroom-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.showroom-point {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: oklch(0.82 0.006 255);
  line-height: 1.45;
}
/* dezenter roter Strich statt blauem Haken */
.showroom-tick {
  flex: none;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--reca-red);
  transform: translateY(-4px);
}
.sgf-label {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.62 0.006 255);
  margin-bottom: 16px;
}
.sgf-addr { display: flex; flex-direction: column; gap: 2px; }
.sgf-addr div { font-size: 15px; line-height: 1.7; color: oklch(0.72 0.006 255); }
.sgf-addr .sgf-addr-name { color: #fff; }
.showroom-map { margin-top: 12px; }
.showroom-map iframe {
  width: 100%;
  height: 120px;
  border: 0;
  display: block;
  border-radius: 10px;
  filter: grayscale(0.25) contrast(0.95);
}
.showroom-route {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: oklch(0.8 0.05 28);
  text-decoration: none;
  transition: color 0.15s ease;
}
.showroom-route:hover { color: var(--reca-red); }
.sgf-hours { display: flex; flex-direction: column; }
.sgf-hour-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.sgf-hour-row:first-child { padding-top: 0; }
.sgf-hour-day { font-size: 16px; color: #fff; }
.sgf-hour-time { font-size: 15px; color: oklch(0.74 0.006 255); white-space: nowrap; }
.sgf-hours-note {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
  max-width: 32ch;
}
@media (max-width: 860px) {
  .showroom-head { grid-template-columns: 1fr; gap: 28px; }
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-galfoot { grid-template-columns: 1fr; gap: 32px; }
  .showroom-gal { grid-template-columns: 1fr; grid-template-areas: "stage" "tabs" "foot"; }
  .showroom-gal-tabs { flex-direction: row; }
  .showroom-gal-stage { min-height: 220px; }
}

/* Timeline — continuous, alternating */
.wpath {
  position: relative;
  min-height: 720px;
  margin-top: 4px;
}
.wpath-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 5px 7px oklch(0.2 0.03 250 / 0.22));
}
.wnode {
  position: absolute;
  transform: translate(-50%, -6px);
  width: 166px;
  opacity: calc(0.6 + var(--d, 5) * 0.08);
  transition: opacity 0.35s ease;
  z-index: 1;
}
.wnode:hover { opacity: 1; z-index: 5; }
.wdot {
  display: block;
  width: calc(11px + var(--d, 5) * 1.1px);
  height: calc(11px + var(--d, 5) * 1.1px);
  border-radius: 50%;
  background: var(--ink-50);
  border: 2.5px solid var(--accent);
  margin: 0 auto 14px;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease, background 0.3s ease;
}
.wnode:last-child .wdot { background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }
.wnode:hover .wdot { transform: scale(1.35); box-shadow: 0 0 0 6px var(--accent-soft); background: var(--accent); }
.wcard { text-align: center; }
.wera { margin-bottom: 10px; }
.wera-num {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: calc(21px + var(--d, 5) * 1.7px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink-400);
  transition: color 0.3s ease;
}
.wnode:hover .wera-num { color: var(--accent); }
.wera-place {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.wphoto {
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
  filter: saturate(calc(45% + var(--d, 5) * 11%));
  transition: filter 0.3s ease;
}
.wnode:hover .wphoto { filter: saturate(100%); }
.wtitle {
  font-family: var(--font-sans);
  font-size: calc(14px + var(--d, 5) * 0.5px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink-900);
  transition: color 0.2s ease;
}
.wnode:hover .wtitle { color: var(--accent-strong); }
.wtext {
  color: var(--ink-700);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 980px) {
  .wpath { min-height: 0; display: flex; flex-direction: column; gap: 30px; }
  .wpath-svg { display: none; }
  .wnode { position: static; transform: none; width: auto; opacity: 1; filter: none; }
  .wnode .wdot { display: none; }
  .wcard { text-align: left; max-width: 520px; }
  .wphoto { max-width: 320px; }
  .wtext { -webkit-line-clamp: unset; }
}
@media (prefers-reduced-motion: reduce) {
  .wnode, .wdot, .wera-num, .wtitle, .wphoto { transition: none; }
}

/* ============ Interactive timeline (light section, dark board) ============ */
.tl2 { background: var(--ink-50); color: var(--ink-900); overflow: hidden; position: relative; }
.tl2-board {
  position: relative;
  background: var(--ink-900);
  color: var(--ink-50);
  border-radius: 16px;
  padding: 46px 44px 38px;
  overflow: hidden;
}
.tl2-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.tl2-story {
  max-width: 64ch;
  font-size: clamp(16.5px, 1.45vw, 19px);
  line-height: 1.62;
  color: var(--ink-700);
  text-wrap: pretty;
  margin: 0;
}
.tl2-note {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  text-align: right;
  max-width: 28ch;
  flex: 0 0 auto;
}

/* Year rail (top) with progress — red only up to where you've walked */
.tl2-rail {
  position: relative;
  height: 58px;
  margin-bottom: 46px;
}
.tl2-rail-line {
  position: absolute;
  left: 14px; right: 14px; top: 6px;
  height: 2px; border-radius: 2px;
  background: oklch(0.32 0.008 255);
}
.tl2-rail-prog {
  position: absolute;
  left: 14px; top: 6px;
  height: 2px; border-radius: 2px;
  background: var(--reca-red);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.1, 1);
}
.tl2-marker {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.tl2-marker-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: oklch(0.34 0.008 255);
  box-shadow: 0 0 0 4px var(--ink-900);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.tl2-marker.is-walked .tl2-marker-dot { background: var(--reca-red); }
.tl2-marker.is-active .tl2-marker-dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 4px var(--ink-900), 0 0 0 7px color-mix(in oklch, var(--reca-red), transparent 60%);
}
.tl2-marker-year {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: oklch(0.5 0.006 255);
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}
.tl2-marker.is-walked .tl2-marker-year { color: oklch(0.82 0.006 255); }
.tl2-marker:hover .tl2-marker-year { color: var(--ink-50); }
.tl2-marker.is-active .tl2-marker-year { color: var(--ink-50); transform: scale(1.06); }

/* Horizontal card carousel — swipe left/right, text under each photo */
.tl2-stage { position: relative; display: flex; align-items: center; gap: 14px; }
.tl2-cards {
  position: relative;
  flex: 1;
  height: 720px;
  overflow: hidden;
}
.tl2-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(780px, 92%);
  margin-left: calc(min(780px, 92%) / -2);
  opacity: 0.12;
  filter: blur(4px) saturate(0.25) brightness(1.1) contrast(0.82);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.1, 1), opacity 0.55s ease, filter 0.55s ease;
  cursor: pointer;
}
.tl2-card.is-active { cursor: default; opacity: 1; filter: none; }
.tl2-card-media { border-radius: 10px; overflow: hidden; box-shadow: 0 24px 60px -28px oklch(0 0 0 / 0.8); }
/* 4-Bild-Galerie (2×2) für einen Timeline-Punkt */
.tl2-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  border-radius: 10px; overflow: hidden;
}
.tl2-gallery-cell {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 8px;
  background: oklch(0.22 0.006 250);
  box-shadow: 0 18px 44px -26px oklch(0 0 0 / 0.8);
}
.tl2-gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tl2-card-photo { display: block; aspect-ratio: 16/10; background: oklch(0.22 0.006 250); }
.tl2-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px) { .tl2-gallery { gap: 7px; } }
.tl2-card-body { margin-top: 22px; text-align: center; }
.tl2-card-era {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--reca-red);
}
.tl2-card-place { color: oklch(0.58 0.006 255); }
.tl2-card-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-50);
  margin-top: 10px;
}
.tl2-card-text {
  color: oklch(0.72 0.006 255);
  font-size: 15px;
  line-height: 1.6;
  margin: 12px auto 0;
  max-width: 46ch;
}
.tl2-nav {
  flex: 0 0 auto;
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1; padding-bottom: 3px;
  color: var(--ink-50);
  cursor: pointer;
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.18);
  transition: background 0.16s ease, border-color 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
}
.tl2-nav:hover { background: var(--reca-red); border-color: var(--reca-red); }
.tl2-nav:active { transform: scale(0.94); }
.tl2-nav:disabled { opacity: 0.28; cursor: default; }
.tl2-nav:disabled:hover { background: oklch(1 0 0 / 0.08); border-color: oklch(1 0 0 / 0.18); }
.tl2-counter {
  text-align: center;
  margin-top: 26px;
  color: oklch(0.55 0.006 255);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.tl2-counter i { font-style: normal; opacity: 0.5; margin: 0 4px; }
@media (max-width: 760px) {
  .tl2-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .tl2-note { text-align: left; }
  .tl2-marker-year { font-size: 12px; }
  /* Jahres-Marker am Handy überschneiden sich → Labels ausblenden, nur Punkte als Fortschritt */
  .tl2-rail { height: 16px; margin-bottom: 26px; }
  .tl2-marker-year { display: none; }
  .tl2-marker-dot { width: 11px; height: 11px; }
  .tl2-stage { gap: 6px; }
  .tl2-cards { height: auto; min-height: 420px; }
  /* Am Handy nur die aktive Karte zeigen — voll breit, großes Bild, Text darunter */
  .tl2-card {
    position: relative; top: auto; left: auto;
    width: 100%; margin-left: 0;
    display: none;
    transform: none !important; opacity: 1 !important; filter: none !important;
  }
  .tl2-card.is-active { display: block; }
  .tl2-card-media, .tl2-card-photo, .tl2-gallery { border-radius: 8px; }
  .tl2-gallery { gap: 8px; }
  .tl2-card-body { margin-top: 16px; }
  .tl2-card-title { font-size: 20px; }
  .tl2-card-text { font-size: 14.5px; }
  .tl2-nav { width: 42px; height: 42px; }
  .tl2-counter { margin-top: 18px; }
}

/* Detail strip (mono key-value rows) */
.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink-200);
}
.spec-table > div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-200);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.spec-table > div:nth-child(odd) { padding-right: 32px; }
.spec-table > div:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--ink-200); }
.spec-table .spec-k { color: var(--ink-600); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.spec-table .spec-v { color: var(--ink-900); }

/* Admin */
.admin-gate {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.admin-gate-card {
  width: min(420px, 100%);
  text-align: center;
  background: oklch(1 0 0 / 0.7);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 40px 36px 36px;
}
.admin-gate-lock {
  width: 52px; height: 52px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--ink-50);
}
.admin-gate-title { font-size: 24px; letter-spacing: -0.015em; margin: 0 0 8px; }
.admin-gate-sub { color: var(--ink-600); font-size: 14.5px; line-height: 1.55; margin: 0 0 24px; }
.admin-gate-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid var(--ink-300);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-900);
  transition: border-color 0.15s ease;
}
.admin-gate-input:focus { outline: none; border-color: var(--ink-900); }
.admin-gate-err { color: oklch(0.55 0.2 25); font-size: 13px; margin-top: 10px; }
.admin-gate-btn { width: 100%; justify-content: center; margin-top: 18px; }

.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ink-200);
  margin-top: 40px;
}
.admin-tab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 16px 24px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-500);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.admin-tab:hover { color: var(--ink-800); }
.admin-tab.active {
  color: var(--ink-900);
  border-bottom-color: var(--ink-900);
}
.admin-tab .mono {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.admin-tab.active .mono { color: var(--accent); }
.admin-tab-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--ink-150);
  color: var(--ink-700);
  border-radius: 999px;
}
.admin-tab.active .admin-tab-count { background: var(--ink-900); color: var(--ink-50); }
.admin-tab-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: oklch(0.92 0.06 145);
  color: oklch(0.32 0.10 145);
  border-radius: 999px;
}

.admin-source-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  background: oklch(0.92 0.06 145);
  color: oklch(0.32 0.10 145);
  margin-left: 8px;
  border-radius: 999px;
  vertical-align: middle;
}

.admin-table {
  border-top: 1px solid var(--ink-200);
  margin-top: 0;
}
.admin-row {
  display: grid;
  grid-template-columns: 88px 2fr 1fr 1fr 1fr 1fr 1.6fr;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-200);
  font-size: 14px;
}
.admin-row.admin-header {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-600);
  padding: 12px 0;
  font-weight: 500;
}
.admin-thumb {
  width: 88px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink-200);
}
.admin-act {
  background: transparent;
  border: 1px solid var(--ink-300);
  padding: 7px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-700);
  cursor: pointer;
  transition: all 0.15s ease;
}
.admin-act:hover { border-color: var(--ink-900); color: var(--ink-900); }
.admin-del:hover { border-color: oklch(0.5 0.18 25); color: oklch(0.5 0.18 25); }

@media (max-width: 1100px) {
  .admin-row { grid-template-columns: 64px 1.6fr 1fr 1fr 1.6fr; gap: 12px; }
  .admin-row > div:nth-child(3), .admin-row > div:nth-child(4) { display: none; }
}

/* Sync card */
.sync-card {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  padding: 32px;
}
.sync-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-200);
}
.sync-pulse {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.sync-pulse.ok { background: oklch(0.92 0.06 145); }
.sync-pulse.off { background: oklch(0.92 0.06 25); }
.sync-pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: oklch(0.55 0.16 145);
}
.sync-pulse.off .sync-pulse-dot { background: oklch(0.55 0.18 25); }
.sync-pulse.ok::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid oklch(0.55 0.16 145);
  opacity: 0;
  animation: pulseRing 2.4s infinite ease-out;
}
.sync-pulse.syncing::after {
  animation-duration: 0.9s;
}
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.sync-progress {
  padding-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-200);
  margin-bottom: -1px;
}
.sync-progress-bar {
  height: 3px;
  background: var(--ink-200);
  overflow: hidden;
  position: relative;
}
.sync-progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.35s ease;
}

.sync-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 28px;
  gap: 0;
}
.sync-meta > div {
  padding-right: 28px;
  border-right: 1px solid var(--ink-200);
}
.sync-meta > div:last-child { border-right: 0; padding-right: 0; padding-left: 28px; }
.sync-meta > div:nth-child(n+2) { padding-left: 28px; }
.sync-meta-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: 10px;
}
.sync-meta-val {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.sync-meta-val.mono { font-family: var(--font-mono); font-size: 16px; }

.sync-settings {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-200);
}

/* Switch */
.switch {
  width: 44px; height: 24px;
  border-radius: 999px;
  border: 0;
  background: var(--ink-300);
  position: relative;
  cursor: pointer;
  transition: background 0.18s ease;
  padding: 0;
}
.switch.on { background: var(--accent); }
.switch-knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: left 0.18s ease;
  box-shadow: 0 2px 4px oklch(0 0 0 / 0.1);
}
.switch.on .switch-knob { left: 22px; }

/* Sync stats */
.sync-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink-200);
  border-left: 1px solid var(--ink-200);
}
.sync-stat {
  padding: 24px;
  border-right: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.sync-stat-val {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.sync-stat-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-600);
}

/* Sync history */
.sync-history {
  border-top: 1px solid var(--ink-200);
}
.sync-entry {
  display: grid;
  grid-template-columns: 24px 120px auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-200);
}
.sync-entry-marker {
  display: flex; align-items: center; justify-content: center;
}
.sync-entry-marker span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: oklch(0.55 0.16 145);
  display: block;
}
.sync-entry.status-warning .sync-entry-marker span {
  background: oklch(0.65 0.14 60);
}
.sync-entry.status-error .sync-entry-marker span {
  background: oklch(0.55 0.18 25);
}
.sync-entry-changes {
  display: flex;
  gap: 6px;
}
.sync-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 2px;
  min-width: 32px;
  text-align: center;
}
.tag-add { background: oklch(0.92 0.06 145); color: oklch(0.32 0.12 145); }
.tag-upd { background: var(--ink-150); color: var(--ink-700); }
.tag-rem { background: oklch(0.94 0.04 25); color: oklch(0.45 0.14 25); }
.sync-entry-note {
  font-size: 13px;
  color: var(--ink-700);
}
.values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.value-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--ink-200);
}
.value-cell:last-child { border-right: 0; }
.value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Mobile nav */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--ink-300);
  border-radius: var(--radius); cursor: pointer; padding: 0;
}
.nav-dark .nav-burger { border-color: oklch(1 0 0 / 0.25); }
.nav-burger-ico { display: flex; flex-direction: column; gap: 4px; width: 18px; }
.nav-burger-ico i { display: block; height: 1.6px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-burger-ico.open i:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-burger-ico.open i:nth-child(2) { opacity: 0; }
.nav-burger-ico.open i:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }
.nav-mobile {
  border-top: 1px solid var(--ink-200);
  background: var(--ink-100);
  padding: 8px var(--pad-x) 32px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  animation: navMobileIn 0.22s ease;
}
@keyframes navMobileIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav-dark .nav-mobile { background: oklch(0.16 0.008 250); border-top-color: oklch(1 0 0 / 0.1); }
.nav-mobile-group { border-bottom: 1px solid var(--ink-200); }
.nav-dark .nav-mobile-group { border-bottom-color: oklch(1 0 0 / 0.08); }
.nav-mobile-row { display: flex; align-items: center; justify-content: space-between; }
.nav-mobile-link {
  display: block; flex: 1;
  font-family: var(--font-sans); font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900); padding: 16px 0;
}
.nav-dark .nav-mobile-link { color: var(--ink-50); }
.nav-mobile-link.active { color: var(--accent); }
.nav-mobile-toggle {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  color: var(--ink-500);
  transition: transform 0.22s cubic-bezier(.2,.7,.3,1), color 0.15s ease;
}
.nav-dark .nav-mobile-toggle { color: var(--ink-400); }
.nav-mobile-group.expanded .nav-mobile-toggle { transform: rotate(180deg); color: var(--accent); }
.nav-mobile-subs {
  display: flex; flex-direction: column;
  padding: 2px 0 14px 14px;
  border-left: 2px solid var(--ink-200);
  margin: 0 0 14px 2px;
  animation: navSubIn 0.2s ease;
}
.nav-dark .nav-mobile-subs { border-left-color: oklch(1 0 0 / 0.12); }
@keyframes navSubIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.nav-mobile-sub { display: block; padding: 11px 0; }
.nav-mobile-sub-label { display: block; font-size: 16px; font-weight: 500; color: var(--ink-800); }
.nav-dark .nav-mobile-sub-label { color: var(--ink-100); }
.nav-mobile-sub-desc { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 2px; }
.nav-mobile-sub:hover .nav-mobile-sub-label, .nav-mobile-sub:active .nav-mobile-sub-label { color: var(--accent); }
.nav-mobile-phone {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px; font-size: 15px; color: var(--ink-700);
}
.nav-dark .nav-mobile-phone { color: var(--ink-300); }
.nav-mobile-phone svg { color: var(--accent); }

/* Guard-style contact block + cross-link + CTA */
.nav-mobile-contact {
  display: flex; flex-direction: column; gap: 12px;
  padding: 20px 0 6px;
}
.nav-mobile-contact a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink-700); text-decoration: none;
  transition: color 0.15s ease;
}
.nav-mobile-contact a svg { color: var(--ink-500); flex: 0 0 auto; transition: color 0.15s ease; }
.nav-mobile-contact a:hover { color: var(--ink-900); }
.nav-mobile-contact a:hover svg { color: var(--ink-900); }
.nav-dark .nav-mobile-contact a { color: var(--ink-300); }
.nav-dark .nav-mobile-contact a svg { color: var(--ink-400); }
.nav-dark .nav-mobile-contact a:hover { color: var(--ink-50); }
.nav-mobile-cross {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 0; text-decoration: none; color: var(--ink-900);
}
.nav-dark .nav-mobile-cross { color: var(--ink-50); }
.nav-mobile-cross .nav-guard-word { font-size: 18px; }
.nav-mobile-cross .nav-guard-tag { font-size: 15px; }
.nav-mobile-cross svg { color: var(--ink-500); }
.nav-mobile-cta {
  display: flex; align-items: center; justify-content: center;
  margin-top: 16px; padding: 16px 22px;
  background: var(--ink-900); color: var(--ink-50);
  border-radius: var(--radius); font-size: 15px; font-weight: 500;
  text-decoration: none; transition: background 0.18s ease;
}
.nav-mobile-cta:hover { background: var(--accent-strong); }
.nav-dark .nav-mobile-cta { background: var(--ink-50); color: var(--ink-900); }

@media (max-width: 1180px) {
  .brand-sub { display: none; }
  .nav-phone { display: none; }
  .nav-contact, .nav-guard-div { display: none; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-guard, .nav-guard-div, .nav-contact { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-strip { grid-template-columns: 1fr 1fr; }
  .value-cell:nth-child(2) { border-right: 0; }
  .spec-table { grid-template-columns: 1fr; }
  .spec-table > div:nth-child(even) { padding-left: 0; border-left: 0; }
  .spec-table > div:nth-child(odd) { padding-right: 0; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}
/* Softer section seams (flowing transitions between coloured bands) */
main section[style*="var(--ink-50)"] {
  position: relative;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}
main section[style*="var(--ink-50)"]::before,
main section[style*="var(--ink-50)"]::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, var(--ink-200) 22%, var(--ink-200) 78%, transparent 100%);
  pointer-events: none;
}
main section[style*="var(--ink-50)"]::before { top: 0; }
main section[style*="var(--ink-50)"]::after { bottom: 0; }

/* Bestand + Suchauftrag gehören zusammen — keine Naht dazwischen */
#used-inventory::after,
#used-gesuch::before { display: none !important; }

/* Einheitliche, weich auslaufende Trennlinie (wie auf der Startseite) */
.seam-t, .seam-b { position: relative; }
.seam-t::before, .seam-b::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent 0, var(--ink-200) 18%, var(--ink-200) 82%, transparent 100%);
}
.seam-t::before { top: 0; }
.seam-b::after { bottom: 0; }

/* Finanzierung — rote Trennlinie unten: beginnt bündig am rechten Ende und läuft nach links farblich aus */
.fin-bottom-rule {
  height: 2px;
  margin-top: 80px;
  background: linear-gradient(90deg, transparent 0%, color-mix(in oklch, var(--reca-red), transparent 62%) 52%, var(--reca-red) 100%);
}

/* Mobile + iPad portrait: collapse inline multi-column grids to one column */
@media (max-width: 820px) {
  main [style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 28px !important; }
  .hero-photo-wrap { margin-left: 0 !important; margin-right: 0 !important; }
}
@media (max-width: 860px) {
  .split-2col { grid-template-columns: 1fr !important; gap: 28px !important; }
  .compare-grid { grid-template-columns: 1fr !important; }
  .trade-grid { grid-template-columns: 1fr !important; }
  .special-inquiry-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
}
@media (max-width: 520px) {
  .plates-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}
@media (max-width: 640px) {
  .vr-row { grid-template-columns: 72px 1fr; }
  .vr-row > div:nth-child(3) { display: none; }
  .img-grid-2 { grid-template-columns: 1fr !important; }
  .img-grid-3 { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .g-reviews-footer-score { white-space: normal; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ============================================================
   Startseite — "Showroom" Hero + Bestand-zuerst (Konzept C)
   ============================================================ */
.sh-hero { display: grid; grid-template-columns: 1fr 1.12fr; min-height: 560px; }
.sh-hero-left {
  background: var(--ink-900); color: var(--ink-50);
  padding: 64px var(--pad-x) 56px; display: flex; flex-direction: column;
}
.sh-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-400); }
.sh-h1 { font-size: clamp(38px, 4vw, 56px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 600; color: var(--ink-50); margin: 22px 0 0; max-width: 14ch; }
.sh-sub { font-size: 17px; color: var(--ink-300); margin-top: 20px; max-width: 44ch; line-height: 1.55; }
.sh-search { margin-top: auto; padding-top: 40px; }
.sh-search-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; }
.sh-field {
  background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: var(--radius); padding: 6px 8px 6px 14px; color: var(--ink-100);
  display: flex; flex-direction: column; gap: 3px; justify-content: center;
}
.sh-field label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); padding-left: 1px; }
.sh-field select {
  background: transparent; border: 0; color: var(--ink-50); font-family: var(--font-sans);
  font-size: 14px; padding: 0 1px 2px; cursor: pointer; outline: none; width: 100%;
}
.sh-field select option { color: #111; }
.sh-go {
  background: var(--accent); color: #fff; border: 0; border-radius: var(--radius);
  padding: 0 24px; font-size: 14px; font-weight: 600; font-family: var(--font-sans);
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer; transition: background 0.16s ease;
}
.sh-go:hover { background: var(--accent-strong); }
.sh-chips { display: flex; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
.sh-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-300); }
.sh-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.sh-chip .dot.live { background: oklch(0.72 0.17 145); box-shadow: 0 0 0 3px oklch(0.72 0.17 145 / 0.2); }

.sh-hero-right { position: relative; overflow: hidden; background: var(--ink-800); min-height: 360px; }
.sh-hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-hero-tag {
  position: absolute; left: 22px; bottom: 22px;
  background: oklch(0.16 0.008 250 / 0.72); color: var(--ink-50);
  padding: 11px 15px; border-radius: var(--radius); backdrop-filter: blur(8px);
  border: 1px solid oklch(1 0 0 / 0.1);
}
.sh-hero-tag .nm { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.sh-hero-tag .pr { font-family: var(--font-mono); font-size: 12px; color: var(--ink-300); margin-top: 3px; }

/* Bestand-Sektion */
.sh-inv-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sh-inv-count { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); }
.sh-filterbar { display: flex; gap: 8px; flex-wrap: wrap; padding: 22px 0 0; }
.sh-fc {
  padding: 9px 17px; border-radius: 999px; border: 1px solid var(--ink-300);
  font-size: 13px; color: var(--ink-700); background: transparent; cursor: pointer;
  font-family: var(--font-sans); transition: all 0.15s ease;
}
.sh-fc:hover { border-color: var(--ink-600); color: var(--ink-900); }
.sh-fc.active { background: var(--ink-900); color: var(--ink-50); border-color: var(--ink-900); }

/* Standort-Strip */
.sh-strip { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.sh-strip .lhs { font-size: 19px; font-weight: 600; max-width: 42ch; letter-spacing: -0.01em; line-height: 1.35; }
.sh-strip .rhs { display: flex; gap: 36px; }
.sh-strip .item .lb { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); }
.sh-strip .item .v { font-size: 14px; margin-top: 5px; color: var(--ink-800); }

@media (max-width: 1024px) {
  .sh-hero { grid-template-columns: 1fr; }
  .sh-hero-right { min-height: 300px; order: -1; }
}
@media (max-width: 600px) {
  .sh-search-row { grid-template-columns: 1fr 1fr; }
  .sh-go { grid-column: 1 / -1; padding: 13px; justify-content: center; }
  .sh-strip .rhs { gap: 24px; }
}

/* ── Showroom-Hero (neu): links kuratiertes Raster, rechts aktives Inserat groß ── */
.shx {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  min-height: 600px; background: var(--ink-900);
}
.shx-left {
  background: var(--ink-900); color: var(--ink-50);
  padding: 40px var(--pad-x) 40px; display: flex; flex-direction: column;
  border-right: 1px solid oklch(1 0 0 / 0.08); min-width: 0;
}
.shx-left-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; }
.shx-left-head .shx-eyebrow {
  font-family: var(--font-sans); font-size: clamp(22px, 2.4vw, 32px); font-weight: 600;
  letter-spacing: -0.01em; text-transform: none; color: var(--ink-50); gap: 14px;
}
.shx-left-head .shx-eyebrow::before { width: 34px; height: 2px; }
.shx-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: oklch(0.72 0.005 250); display: inline-flex; align-items: center; gap: 10px;
}
.shx-eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--reca-red); }
.shx-eyebrow.on-dark { color: oklch(0.86 0.004 250); }
.shx-count { font-family: var(--font-mono); font-size: 13px; color: oklch(0.6 0.005 250); }
/* Echte Gebrauchtwagen-Kacheln (2×2), Text fürs dunkle Panel aufgehellt */
.shx-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 18px; align-content: start; }
.shx-card { position: relative; border-radius: 6px; transition: transform 0.2s ease; }
.shx-card.is-active::after {
  content: ""; position: absolute; inset: -7px; border: 2px solid var(--reca-red); border-radius: 9px; pointer-events: none;
}
.shx-left .vehicle-card { cursor: pointer; }
.shx-left .vehicle-name { color: var(--ink-50); }
.shx-left .vehicle-name span { color: oklch(0.62 0.005 250) !important; }
.shx-left .vehicle-trim { color: oklch(0.6 0.005 250); }
.shx-left .vehicle-price { color: var(--ink-50); }
.shx-left .vehicle-price-net { color: oklch(0.72 0.04 145); }
.shx-left .vehicle-price-sub { color: oklch(0.58 0.005 250); }
.shx-left .vehicle-specs { color: oklch(0.74 0.005 250); }
.shx-left .vehicle-specs span { color: inherit; }
.shx-left .vehicle-legal { display: none; }
/* Kompaktere Kacheln, damit der Hero ~eine Bildschirmhöhe bleibt */
.shx { min-height: auto; }
.shx-left { padding-top: 30px; padding-bottom: 30px; }
.shx-cards { gap: 16px 16px; }
.shx-left .vehicle-card > div:first-child { margin-bottom: 10px !important; }
.shx-left .vg { aspect-ratio: 4 / 3 !important; height: auto !important; border-radius: 4px; overflow: hidden; background: oklch(0.2 0.006 250); }
.shx-left .vg-frame, .shx-left .vg-img { height: 100% !important; }
.shx-left .vg-img { object-fit: cover !important; }
.shx-left .vg-dots, .shx-left .vg-arrow { display: none !important; }
.shx-left .vg-count { font-size: 9px; padding: 2px 6px; }
.shx-left .vehicle-meta { margin: 0; }
.shx-left .vehicle-name { font-size: 14px; }
.shx-left .vehicle-trim { font-size: 11px; margin-top: 1px; }
.shx-left .vehicle-price { font-size: 15px; }
.shx-left .vehicle-price-net, .shx-left .vehicle-price-sub { font-size: 10px; }
.shx-left .vehicle-specs { font-size: 10px; gap: 4px 5px; margin-top: 7px; }
.shx-left .vehicle-meta-click { gap: 10px; }
.shx-card.is-active::after { inset: -5px; border-radius: 8px; }
.shx-pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 24px; }
.shx-pager-arrow {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid oklch(1 0 0 / 0.2);
  background: transparent; color: var(--ink-50); cursor: pointer; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background 0.18s ease, border-color 0.18s ease;
}
.shx-pager-arrow:hover { background: var(--reca-red); border-color: var(--reca-red); }
.shx-pager-dots { display: inline-flex; gap: 8px; }
.shx-pager-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: oklch(1 0 0 / 0.28); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.shx-pager-dot.on { background: var(--reca-red); transform: scale(1.25); }

/* Showroom-Hero exakt eine Bildschirmhöhe — NUR Desktop. Mobil normale Kacheln. */
@media (min-width: 1025px) {
  .shx { height: calc(100svh / var(--page-zoom) - 96px); min-height: 520px; }
  .shx-left { overflow: hidden; }
  .shx-cards { flex: 1 1 auto; min-height: 0; grid-template-rows: 1fr 1fr; }
  .shx-card { min-height: 0; }
  .shx-left .vehicle-card { display: flex; flex-direction: column; height: 100%; }
  .shx-left .vehicle-card > div:first-child { flex: 1 1 auto; min-height: 0; margin-bottom: 8px !important; }
  .shx-left .vg { height: 100% !important; aspect-ratio: auto !important; }
  .shx-pager { flex: 0 0 auto; margin-top: 14px; }
}


.shx-right { position: relative; overflow: hidden; background: var(--ink-800); min-height: 360px; }
.shx-stage { position: absolute; inset: 0; }
.shx-big {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; transform: scale(1.06); transition: opacity 1s ease, transform 6s ease;
}
.shx-big.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.shx-big-ph { background: linear-gradient(135deg, var(--ink-700), var(--ink-900)); }
.shx-stage-grad {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, oklch(0.1 0.006 250 / 0.78) 0%, transparent 46%),
              linear-gradient(105deg, oklch(0.1 0.006 250 / 0.34) 0%, transparent 40%);
}
.shx-stage-hit { position: absolute; inset: 0; z-index: 3; background: transparent; border: 0; padding: 0; cursor: pointer; }
.shx-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid oklch(1 0 0 / 0.28);
  background: oklch(0.12 0.006 250 / 0.5); backdrop-filter: blur(6px);
  color: var(--ink-50); font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.shx-arrow:hover { background: var(--reca-red); border-color: var(--reca-red); }
.shx-arrow.prev { left: 18px; }
.shx-arrow.next { right: 18px; }
.shx-arrow.prev:hover { transform: translateY(-50%) translateX(-2px); }
.shx-arrow.next:hover { transform: translateY(-50%) translateX(2px); }
.shx-tag { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; padding: 30px var(--pad-x) 30px; pointer-events: none; }
.shx-tag-head, .shx-tag-nm, .shx-tag-pr { pointer-events: auto; }
.shx-cta, .shx-dot { pointer-events: auto; }
.shx-tag-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 16px; }
.shx-dots { display: inline-flex; gap: 7px; flex-wrap: wrap; }
.shx-dot { width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: oklch(1 0 0 / 0.32); transition: background 0.25s ease, transform 0.25s ease; }
.shx-dot.on { background: var(--reca-red); transform: scale(1.25); }
.shx-tag-nm { font-size: clamp(24px, 3vw, 38px); font-weight: 600; letter-spacing: -0.02em; color: var(--ink-50); line-height: 1.05; }
.shx-tag-trim { font-weight: 400; color: oklch(0.74 0.006 250); font-size: 0.6em; letter-spacing: 0; }
.shx-tag-pr { font-family: var(--font-mono); font-size: 14px; color: oklch(0.82 0.006 250); margin-top: 8px; }
.shx-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; pointer-events: auto; }
.shx-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; font-size: 14px; font-weight: 500; font-family: var(--font-sans);
  background: var(--ink-50); color: var(--ink-900); border: 0; border-radius: 2px; cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.shx-cta-ghost { background: transparent; color: var(--ink-50); border: 1px solid oklch(1 0 0 / 0.34); }
.shx-cta-ghost:hover { background: oklch(1 0 0 / 0.1); color: var(--ink-50); }
.shx-cta svg { transition: transform 0.18s ease; }
.shx-cta:hover { background: var(--reca-red); color: #fff; }
.shx-cta:hover svg { transform: translateX(3px); }
@media (max-width: 1024px) {
  .shx { grid-template-columns: 1fr; }
  .shx-right { min-height: 300px; max-height: 44svh; order: -1; }
  .shx-left { border-right: 0; border-top: 1px solid oklch(1 0 0 / 0.08); padding-top: 26px; padding-bottom: 30px; }
  .shx-tag { padding-top: 22px; padding-bottom: 22px; }
  .shx-ctas { margin-top: 16px; }
  /* Am Handy: Inserate als Zeilen (Bild links, Infos, Preis rechts) — 3 übereinander */
  .shx-cards.shx-rows { display: flex; flex-direction: column; gap: 10px; }
  .shx-card { max-width: 460px; margin: 0 auto; width: 100%; }
  .shx-card.is-active::after { inset: -4px; }
  .shx-row {
    display: grid; grid-template-columns: 78px 1fr auto; align-items: center; gap: 13px;
    width: 100%; padding: 8px; text-align: left; cursor: pointer;
    background: oklch(0.2 0.006 250); border: 1px solid oklch(1 0 0 / 0.09); border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .shx-row-img { width: 78px; height: 56px; border-radius: 4px; overflow: hidden; background: oklch(0.26 0.006 250); flex: 0 0 auto; }
  .shx-row-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .shx-row-ph { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, oklch(0.3 0.006 250), oklch(0.2 0.006 250)); }
  .shx-row-main { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
  .shx-row-nm { font-size: 14px; font-weight: 600; color: var(--ink-50); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .shx-row-nm i { font-style: normal; color: oklch(0.66 0.005 250); font-weight: 500; }
  .shx-row-specs { font-family: var(--font-mono); font-size: 11px; color: oklch(0.7 0.005 250); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .shx-row-pr { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: oklch(0.84 0.05 25); white-space: nowrap; }
  .shx-row.is-active { border-color: var(--reca-red); background: oklch(0.22 0.01 25); }
  /* Ken-Burns-Zoom des großen Bildes am Handy abschalten (kein "Wachsen" beim Scrollen) */
  .shx-big, .shx-big.is-active { transform: none !important; transition: opacity 0.6s ease !important; }
}
@media (max-width: 600px) {
  .shx-tag-nm { font-size: 22px; }
  .shx-tag-pr { font-size: 12.5px; }
  .shx-ctas { width: 100%; }
  .shx-cta { flex: 1 1 auto; justify-content: center; padding: 12px 14px; font-size: 13px; }
  .shx-left-head .shx-eyebrow { font-size: 10px; }
}

/* Pillar cross-links (Bestand / RECA Guard) */
.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--accent);
  cursor: pointer;
  transition: gap 0.18s ease, opacity 0.18s ease;
}
.pillar-cta svg { transition: transform 0.18s ease; }
.pillar-cta:hover { gap: 13px; }
.pillar-cta-guard {
  align-items: baseline;
  gap: 8px;
  color: var(--ink-900);
}
.pillar-cta-guard .nav-guard-lock { flex-direction: row; align-items: baseline; gap: 6px; }
.pillar-cta-guard .nav-guard-word { font-size: 22px; }
.pillar-cta-guard .nav-guard-tag { font-size: 17px; }
.pillar-cta-guard svg { color: var(--ink-500); align-self: center; }
.pillar-cta-guard:hover svg { color: var(--ink-900); }

/* ── Home: Zwei Kernbereiche (Gebrauchtwagen / Sonderschutz) ── */
.home-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: stretch;
}
.home-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 38px 36px;
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
/* Blurred showroom-hall backdrop behind each card */
.home-area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--showroom-bg) center/cover no-repeat;
  transform: scale(1.14);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.home-area::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-area > * { position: relative; z-index: 1; }
.home-area:hover::before { transform: scale(1.2); }
.home-area-used::before { filter: blur(9px) brightness(1.12) grayscale(0.18); }
.home-area-used::after { background: linear-gradient(165deg, oklch(0.985 0 0 / 0.82) 0%, oklch(0.985 0 0 / 0.9) 100%); }
.home-area-guard::before { filter: blur(9px) brightness(0.46) grayscale(0.3); }
.home-area-guard::after { background: linear-gradient(165deg, oklch(0.17 0.006 255 / 0.8) 0%, oklch(0.15 0.006 255 / 0.9) 100%); }
.home-area h3 { margin: 0; }
.home-area p { font-size: 15.5px; line-height: 1.6; max-width: 44ch; }
.home-area .pillar-cta,
.home-area .ba-guard-cta { margin-top: auto; padding-top: 6px; }
.home-area-used {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  box-shadow: 0 10px 30px -22px oklch(0 0 0 / 0.4);
}
.home-area-used p { color: var(--ink-700); }
.home-area-used:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -24px oklch(0 0 0 / 0.36);
}
.home-area-guard {
  background: oklch(0.165 0.006 255);
  border: 1px solid oklch(1 0 0 / 0.10);
  box-shadow: 0 12px 34px -22px oklch(0 0 0 / 0.6);
}
.home-area-guard h3 { color: oklch(0.95 0.004 255); }
.home-area-guard p { color: oklch(0.73 0.006 255); }
.home-area-guard:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -22px oklch(0 0 0 / 0.7);
}

/* Red pill CTA buttons inside the home areas */
.btn-reca {
  background: var(--reca-red);
  color: #fff;
  border-color: var(--reca-red);
  border-radius: 999px;
  padding: 13px 24px;
  box-shadow: 0 10px 24px -14px color-mix(in oklch, var(--reca-red), transparent 30%);
}
.btn-reca:hover {
  background: oklch(0.49 0.21 27);
  border-color: oklch(0.49 0.21 27);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -12px color-mix(in oklch, var(--reca-red), transparent 22%);
}
.btn-reca svg { transition: transform 0.18s ease; }
.btn-reca:hover svg { transform: translateX(3px); }
.home-area-btn { margin-top: auto; align-self: flex-start; }

/* White CTA that turns red on hover */
.btn-lightreca {
  background: rgba(255,255,255,0.95);
  color: var(--ink-900);
  border-color: transparent;
  border-radius: 999px;
  padding: 13px 24px;
  box-shadow: 0 10px 24px -16px oklch(0 0 0 / 0.5);
}
.btn-lightreca:hover {
  background: var(--reca-red);
  border-color: var(--reca-red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -12px color-mix(in oklch, var(--reca-red), transparent 22%);
}
.btn-lightreca svg { transition: transform 0.18s ease; }
.btn-lightreca:hover svg { transform: translateX(3px); }
/* RECA Guard Stahl/Platin-Button */
.btn-guardsteel {
  background: oklch(0.8 0.02 250);
  color: oklch(0.17 0.01 250);
  border: 1px solid oklch(0.8 0.02 250);
  font-weight: 600;
}
.btn-guardsteel:hover { background: oklch(0.9 0.018 250); border-color: oklch(0.9 0.018 250); }
.btn-guardsteel svg { transition: transform 0.18s ease; }
.btn-guardsteel:hover svg { transform: translate(2px, -2px); }
@media (max-width: 720px) {
  .home-areas { grid-template-columns: 1fr; }
}
.home-areas-head {
  margin-bottom: 56px;
}
.home-areas-title {
  margin-top: 22px;
  max-width: 18ch;
}
.home-area-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.home-area-top h3 { margin: 0; }
.home-area-logo { gap: 3px; margin-top: 4px; }
.home-area-logo .nav-guard-word { font-size: 19px; }
.home-area-logo .nav-guard-tag { font-size: 11px; }
.home-area-logo .brand-slash { width: 0.7em; height: 0.165em; right: 0.05em; bottom: 0.305em; }
.home-area-used .home-area-logo .nav-guard-word { color: var(--ink-900); }
.home-area-used .home-area-logo .nav-guard-tag { color: var(--ink-600); }
.home-area-guard .home-area-logo .nav-guard-word { color: var(--ink-50); }
.home-area-guard .home-area-logo .nav-guard-tag { color: oklch(0.78 0.006 255); }
/* Zusatzleistungen line */
.home-area-extra {
  margin-top: -4px;
  font-size: 13.5px;
  line-height: 1.55;
}
.home-area-extra-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-right: 9px;
}
.home-area-used .home-area-extra { color: var(--ink-600); }
.home-area-used .home-area-extra-label { color: var(--reca-red); }
.home-area-guard .home-area-extra { color: oklch(0.66 0.006 255); }
.home-area-guard .home-area-extra-label { color: oklch(0.62 0.16 27); }
@media (max-width: 760px) {
  .home-areas-head { margin-bottom: 44px; }
}

/* ── Unternehmensstruktur (RECA Handels-GmbH › Automobile / Guard) ── */
.ba-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.ba-tag {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink-700);
}
.ba-logo-lg .ba-tag { font-size: 21px; }

.ba2-intro {
  margin-top: 20px;
  max-width: 66ch;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-700);
  text-wrap: pretty;
}
.ba2 { margin-top: 8px; }

/* Dachgesellschaft */
.ba2-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 38px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: calc(var(--radius) * 0.8);
  box-shadow: 0 14px 34px -26px oklch(0 0 0 / 0.5);
}
.ba2-parent-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* Verbinder Dach › zwei Bereiche */
.ba2-connector { position: relative; height: 46px; width: 100%; }
.ba2-connector span {
  position: absolute;
  background: color-mix(in oklch, var(--reca-red), transparent 50%);
  border-radius: 2px;
}
.ba2-stem { top: 0; left: 50%; width: 2px; height: 18px; transform: translateX(-50%); }
.ba2-hbar { top: 16px; left: 25%; right: 25%; height: 2px; }
.ba2-drop { top: 16px; width: 2px; height: 30px; transform: translateX(-1px); }
.ba2-drop-l { left: 25%; }
.ba2-drop-r { left: 75%; }

/* Zwei Bereiche */
.ba2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap, 32px);
  align-items: stretch;
}
.ba2-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 34px 34px 32px;
  border-radius: 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(.2,.8,.2,1), box-shadow 0.22s ease;
}
.ba2-card:hover { transform: translateY(-3px); }
.ba2-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-200);
}
.ba2-card-title { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin: 0; }
.ba2-card-body { font-size: 15px; line-height: 1.6; margin: 0; max-width: 46ch; }
.ba2-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.ba2-points {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ba2-points li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.ba2-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--reca-red);
}
.ba2-cta { margin-top: auto; align-self: flex-start; }
/* Kontakt — Angaben (Direkt · Öffnungszeiten · Standort) in einer Box */
.contact-infobox {
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  overflow: hidden;
  background: oklch(1 0 0 / 0.5);
}
.contact-ib-block { padding: 22px 24px; }
.contact-ib-block + .contact-ib-block { border-top: 1px solid var(--ink-200); }
.contact-ib-ico { display: inline-flex; color: var(--ink-900); flex: none; }
.contact-ib-map {
  display: block;
  position: relative;
  margin-top: 16px;
  height: 190px;
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  overflow: hidden;
}
.contact-ib-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Gebrauchte Kompletträder — Produktkarten im Reifenangebot */
.wheel-wrap { }
.wheel-note { color: var(--ink-600); font-size: 15px; line-height: 1.6; margin: 0 0 32px; max-width: 64ch; }
.wheel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wheel-card {
  display: flex;
  flex-direction: column;
  background: oklch(1 0 0 / 0.6);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.wheel-card:focus-visible { outline: 2px solid var(--reca-red); outline-offset: 2px; }
.wheel-card:hover {
  border-color: var(--ink-300);
  box-shadow: 0 20px 44px -28px oklch(0 0 0 / 0.4);
  transform: translateY(-3px);
}
.wheel-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, oklch(0.93 0.004 250) 0%, oklch(0.88 0.005 250) 100%);
  color: var(--ink-400);
}
.wheel-card-ico { opacity: 0.8; }
.wheel-season {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  color: #fff;
  background: var(--ink-700);
}
.wheel-season-winter { background: oklch(0.5 0.1 240); }
.wheel-season-sommer { background: oklch(0.62 0.14 50); }
.wheel-season-ganzjahr { background: oklch(0.5 0.1 155); }
.wheel-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.wheel-card-size { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-900); }
.wheel-card-brand { font-size: 13.5px; color: var(--ink-600); margin-bottom: 16px; }
.wheel-card-specs { margin: 0 0 18px; padding: 0; display: grid; gap: 0; }
.wheel-card-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--ink-200);
}
.wheel-card-specs dt { margin: 0; font-size: 12.5px; color: var(--ink-500); }
.wheel-card-specs dd { margin: 0; font-size: 13px; color: var(--ink-900); text-align: right; }
.wheel-card-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ink-200);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.wheel-card-tag { font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-500); text-transform: uppercase; }
.wheel-card-buy { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.wheel-card-price { font-size: 19px; font-weight: 600; color: var(--ink-900); }
.wheel-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--reca-red);
  text-decoration: none;
  white-space: nowrap;
}
.wheel-card-cta svg { transition: transform 0.15s ease; }
.wheel-card-cta:hover svg { transform: translateX(3px); }
@media (max-width: 900px) {
  .wheel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wheel-grid { grid-template-columns: 1fr; }
}

/* Komplettrad-Detail als Popup (wie Ankaufsformular) */
.wheel-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: oklch(0.16 0.008 250 / 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: wheelModalIn 0.18s ease;
}
@keyframes wheelModalIn { from { opacity: 0; } to { opacity: 1; } }
.wheel-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 40px 90px -30px oklch(0 0 0 / 0.6);
}
.wheel-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.85);
  color: var(--ink-800);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.wheel-modal-close:hover { background: #fff; color: var(--ink-900); }
.wheel-modal-media {
  position: relative;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 42%, oklch(0.93 0.004 250) 0%, oklch(0.87 0.005 250) 100%);
  color: var(--ink-400);
}
.wheel-modal-body { padding: 26px 30px 30px; }
.wheel-modal-head { margin-bottom: 22px; }
.wheel-modal-size { font-size: 28px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink-900); }
.wheel-modal-brand { font-size: 15px; color: var(--ink-600); margin-top: 2px; }
.wheel-modal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 8px;
}
.wheel-modal-glabel {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--reca-red);
  margin-bottom: 10px;
}
.wheel-modal-specs { margin: 0; padding: 0; }
.wheel-modal-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--ink-200);
}
.wheel-modal-specs dt { margin: 0; font-size: 13px; color: var(--ink-500); }
.wheel-modal-specs dd { margin: 0; font-size: 13.5px; color: var(--ink-900); text-align: right; font-weight: 500; }
.wheel-modal-meta { margin-top: 18px; }
.wheel-modal-foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.wheel-modal-price { font-size: 26px; font-weight: 600; color: var(--ink-900); }
@media (max-width: 560px) {
  .wheel-modal-cols { grid-template-columns: 1fr; gap: 18px; }
  .wheel-modal-body { padding: 22px 20px 24px; }
}
/* Komplettrad — Bilder, Galerie, Mischbereifungs-Tag */
.wheel-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wheel-card-count {
  position: absolute; bottom: 10px; right: 10px;
  font-size: 10.5px; color: #fff;
  background: oklch(0.16 0.008 250 / 0.7);
  padding: 3px 7px; border-radius: 4px;
}
.wheel-stagger-tag {
  display: inline-block;
  margin-left: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--reca-red);
  border: 1px solid color-mix(in oklch, var(--reca-red), transparent 60%);
  border-radius: 4px;
  padding: 2px 6px;
  vertical-align: middle;
}
.wheel-gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wheel-gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: 0;
  background: oklch(1 0 0 / 0.88); color: var(--ink-900);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.wheel-gallery-nav:hover { background: #fff; }
.wheel-gallery-prev { left: 12px; }
.wheel-gallery-next { right: 12px; }
.wheel-gallery-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.wheel-gallery-dots span { width: 7px; height: 7px; border-radius: 50%; background: oklch(1 0 0 / 0.5); }
.wheel-gallery-dots span.on { background: #fff; }
.wheel-modal-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Admin — Komplettrad-Editor */
.admin-row-wheel { grid-template-columns: 88px 2fr 1fr 1.4fr 1fr 1.6fr; }
.weditor { max-width: 860px; }
.weditor-group-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--reca-red); margin: 26px 0 14px;
}
.weditor-group-label:first-child { margin-top: 0; }
.weditor .akf-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.weditor-mixed {
  display: flex; align-items: center; gap: 10px;
  margin: 26px 0 6px; padding: 14px 16px;
  border: 1px solid var(--ink-200); border-radius: 8px;
  background: oklch(1 0 0 / 0.5); cursor: pointer; font-size: 14px;
}
.weditor-mixed input { width: 17px; height: 17px; accent-color: var(--reca-red); }
.weditor-axles { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.weditor-axle .akf-fields { grid-template-columns: 1fr; }
.weditor-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.weditor-photo {
  position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--ink-200); background: var(--ink-100);
}
.weditor-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.weditor-photo-cover {
  position: absolute; top: 8px; left: 8px;
  font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--reca-red); color: #fff; padding: 2px 6px; border-radius: 3px;
}
.weditor-photo-acts {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-between;
  background: oklch(0.16 0.008 250 / 0.72);
}
.weditor-photo-acts button {
  flex: 1; background: transparent; border: 0; color: #fff;
  font-size: 16px; padding: 6px 0; cursor: pointer;
}
.weditor-photo-acts button:disabled { opacity: 0.3; cursor: default; }
.weditor-photo-del { color: oklch(0.7 0.18 25) !important; }
.weditor-photo-add {
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  border: 1px dashed var(--ink-300); border-radius: 8px;
  background: transparent; cursor: pointer; color: var(--ink-600);
  font-size: 13px; text-align: center; padding: 10px;
}
.weditor-photo-add:hover { border-color: var(--ink-900); color: var(--ink-900); }
.weditor-photo-hint { font-size: 11px; color: var(--ink-500); }
.weditor-actions {
  display: flex; gap: 12px; justify-content: flex-end;
  margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--ink-200);
}
@media (max-width: 720px) {
  .weditor .akf-fields { grid-template-columns: 1fr 1fr; }
  .weditor-axles { grid-template-columns: 1fr; }
}

/* Inserat drucken — nur das offene Popup drucken */
@media print {
  html { zoom: 1 !important; }
  body * { visibility: hidden !important; }
  .wheel-modal-overlay, .wheel-modal-overlay * { visibility: visible !important; }
  .wheel-modal-overlay {
    position: absolute !important; inset: 0 !important;
    background: #fff !important; backdrop-filter: none !important;
    display: block !important; padding: 0 !important;
  }
  .wheel-modal {
    box-shadow: none !important; max-height: none !important;
    width: 100% !important; border-radius: 0 !important; overflow: visible !important;
  }
  .wheel-modal-close, .wheel-modal-actions, .wheel-gallery-nav, .wheel-gallery-dots { display: none !important; }
}
/* Reifen-Anfrageformular im Reifenangebot */
.tire-form {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--ink-200);
}
.tire-form-head { margin-bottom: 28px; }
.tire-form-title { font-size: clamp(20px, 1.9vw, 26px); letter-spacing: -0.015em; margin: 0 0 8px; }
.tire-form-intro { color: var(--ink-600); font-size: 15px; margin: 0; max-width: 56ch; }
.tire-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  max-width: 720px;
}
.tire-form-grid .field.full { grid-column: 1 / -1; }
.tire-form-done {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tire-form-check { color: var(--reca-red); display: inline-flex; flex: none; }
.tire-form-done p { margin: 0; font-size: 16px; color: var(--ink-800); }
@media (max-width: 560px) {
  .tire-form-grid { grid-template-columns: 1fr; }
}
/* Unscharfer Hallen-Hintergrund hinter jeder Karte (wie Startseiten-Kacheln) */
.ba2-card { position: relative; overflow: hidden; isolation: isolate; }
.ba2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--showroom-bg) center/cover no-repeat;
  transform: scale(1.14);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.ba2-card::after { content: ""; position: absolute; inset: 0; z-index: 0; }
.ba2-card > * { position: relative; z-index: 1; }
.ba2-card:hover::before { transform: scale(1.2); }
.ba2-card-auto::before { filter: blur(9px) brightness(1.12) grayscale(0.18); }
.ba2-card-auto::after { background: linear-gradient(165deg, oklch(0.985 0 0 / 0.84) 0%, oklch(0.985 0 0 / 0.92) 100%); }
.ba2-card-guard::before { filter: blur(9px) brightness(0.46) grayscale(0.3); }
.ba2-card-guard::after { background: linear-gradient(165deg, oklch(0.17 0.006 255 / 0.82) 0%, oklch(0.15 0.006 255 / 0.92) 100%); }

/* Heller Bereich — RECA Automobile */
.ba2-card-auto {
  background: oklch(1 0 0 / 0.45);
  border: 1px solid color-mix(in oklch, var(--ink-300), transparent 45%);
  box-shadow: 0 20px 50px -34px oklch(0 0 0 / 0.32);
}
.ba2-card-auto:hover { box-shadow: 0 30px 64px -34px oklch(0 0 0 / 0.42); }
.ba2-card-auto .ba2-card-title { color: var(--ink-900); }
.ba2-card-auto .ba2-card-body { color: var(--ink-700); }
.ba2-card-auto .ba2-points li { color: var(--ink-700); }
.ba2-card-auto .ba2-role {
  color: var(--reca-red);
  background: color-mix(in oklch, var(--reca-red), transparent 90%);
}

/* Dunkler Bereich — RECA Guard (wie Startseiten-Kachel) */
.ba2-card-guard {
  background: oklch(0.165 0.006 255);
  border: 1px solid oklch(1 0 0 / 0.08);
  box-shadow: 0 20px 54px -32px oklch(0 0 0 / 0.62);
}
.ba2-card-guard:hover { box-shadow: 0 32px 70px -32px oklch(0 0 0 / 0.74); }
.ba2-card-guard .ba2-card-head { border-bottom-color: oklch(1 0 0 / 0.12); }
.ba2-card-guard .brand-word { color: var(--ink-50); }
.ba2-card-guard .ba-tag { color: oklch(0.82 0.006 255); }
.ba2-card-guard .ba2-card-title { color: oklch(0.96 0.004 255); }
.ba2-card-guard .ba2-card-body { color: oklch(0.74 0.006 255); }
.ba2-card-guard .ba2-points li { color: oklch(0.74 0.006 255); }
.ba2-card-guard .ba2-points li::before { background: var(--reca-red); }
.ba2-card-guard .ba2-role { color: oklch(0.82 0.02 250); background: oklch(1 0 0 / 0.08); }

@media (max-width: 860px) {
  .ba2-intro { font-size: 16px; }
  .ba2-grid { grid-template-columns: 1fr; gap: 22px; }
  .ba2-connector { height: 28px; }
  .ba2-hbar, .ba2-drop-r { display: none; }
  .ba2-stem { height: 13px; }
  .ba2-drop { top: 13px; height: 15px; }
  .ba2-drop-l { left: 50%; }
  .ba2-card { padding: 26px 24px; }
}

/* ===== Fahrzeug-Galerie (Hover-Durchklicken) ===== */
.vg { position: relative; cursor: pointer; }
.vg-frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-800); }
.vg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vg-tag { position: absolute; top: 12px; left: 12px; z-index: 3; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; background: oklch(0.16 0.008 250 / 0.82); color: #fff; padding: 4px 8px; border-radius: 4px; }
.vg-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: oklch(1 0 0 / 0.86); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; transition: opacity 0.18s ease, background 0.15s ease; z-index: 3;
}
.vg-prev { left: 10px; } .vg-next { right: 10px; }
.vg:hover .vg-arrow, .vdetail-main:hover .vg-arrow { opacity: 1; }
.vg-arrow:hover { background: #fff; }
.vg-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.vg-dots span { width: 6px; height: 6px; border-radius: 50%; background: oklch(1 0 0 / 0.5); transition: background 0.15s ease; }
.vg-dots span.on { background: #fff; }
.vg-count { position: absolute; bottom: 10px; right: 12px; z-index: 3; font-family: var(--font-mono); font-size: 11px; color: #fff; background: oklch(0.16 0.008 250 / 0.6); padding: 2px 7px; border-radius: 4px; }
.vehicle-meta-click { cursor: pointer; }

/* ===== Ansicht-Umschalter (Kachel / Liste) ===== */
.view-toggle { display: inline-flex; border: 1px solid var(--ink-300); border-radius: 0; overflow: hidden; }
.view-toggle button { background: transparent; border: 0; padding: 8px 11px; cursor: pointer; color: var(--ink-500); display: flex; align-items: center; transition: background 0.15s ease, color 0.15s ease; }
.view-toggle button + button { border-left: 1px solid var(--ink-300); }
.view-toggle button.on { background: var(--ink-900); color: #fff; }

/* Hinweis Besichtigung & Probefahrt (Gebrauchtwagen) — ausklappbar */
.used-testdrive {
  max-width: 72ch;
  margin-bottom: 34px;
  background: oklch(1 0 0 / 0.5);
  border: 1px solid var(--ink-200);
  border-left: 3px solid var(--reca-red);
  border-radius: 12px;
  overflow: hidden;
}
.used-testdrive-head {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.used-testdrive-ico { flex: none; display: inline-flex; color: var(--reca-red); }
.used-testdrive-label {
  flex: 1;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.used-testdrive-chev {
  flex: none;
  display: inline-flex;
  color: var(--ink-500);
  transition: transform 0.25s ease;
}
.used-testdrive.open .used-testdrive-chev { transform: rotate(180deg); }
.used-testdrive-body {
  overflow: hidden;
  animation: usedTdIn 0.28s ease;
}
@keyframes usedTdIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.used-testdrive-body > p {
  margin: 0;
  padding: 2px 20px 18px 51px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-500);
  text-wrap: pretty;
}
@media (max-width: 560px) {
  .used-testdrive-head { padding: 14px 16px; }
  .used-testdrive-body > p { padding-left: 16px; padding-right: 16px; }
}

/* Finanzierung — aufklappbare FAQ-Boxen */
.fin-faq {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fin-acc {
  background: oklch(1 0 0 / 0.6);
  border: 1px solid var(--ink-200);
  border-left: 3px solid var(--reca-red);
  border-radius: 10px;
  overflow: hidden;
}
.fin-acc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink-900);
}
.fin-acc-q {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.fin-acc-chev {
  flex: none;
  display: inline-flex;
  color: var(--ink-900);
  transition: transform 0.25s ease;
}
.fin-acc.open .fin-acc-chev { transform: rotate(180deg); }
.fin-acc-body {
  padding: 0 22px 24px;
  animation: usedTdIn 0.28s ease;
}
.fin-acc-text {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 60ch;
  text-wrap: pretty;
}
.fin-acc-text-sub { margin-top: 26px; }
.fin-influences {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.fin-influences li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-800);
}
.fin-influences li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 13px;
  height: 2px;
  background: var(--reca-red);
}
.fin-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}
.fin-docs-col {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 18px 20px;
}
.fin-docs-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--reca-red);
  margin-bottom: 14px;
}
.fin-docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fin-docs-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-700);
  text-wrap: pretty;
}
.fin-docs-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-400);
}
@media (max-width: 620px) {
  .fin-docs-grid { grid-template-columns: 1fr; }
  .fin-acc-head { padding: 16px 18px; }
  .fin-acc-body { padding: 0 18px 20px; }
}

/* Filter — Kategorien immer sichtbar, Optionen pro Kategorie ausklappbar */
.used-filterbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.filter-group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.filter-group-label {
  flex: none;
  min-width: 110px;
  padding-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.filter-group-main { flex: 1; min-width: 0; }
.filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: oklch(1 0 0 / 0.6);
  border: 1px solid var(--ink-300);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  color: var(--ink-800);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.filter-trigger:hover { border-color: var(--ink-900); color: var(--ink-900); }
.filter-trigger.set {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--ink-50);
}
.filter-trigger-chev { flex: none; transition: transform 0.22s ease; }
.filter-trigger.open .filter-trigger-chev { transform: rotate(180deg); }
.filter-group-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  animation: usedTdIn 0.2s ease;
}
@media (max-width: 560px) {
  .filter-group { flex-direction: column; gap: 8px; }
  .filter-group-label { padding-top: 0; }
}

/* Filter-Leiste: auf schmalen Screens sauber umbrechen statt überlappen */
.filter-controls { flex-wrap: wrap; row-gap: 10px; }
@media (max-width: 720px) {
  .filter-row { align-items: flex-start; gap: 14px; }
  .filter-controls { width: 100%; justify-content: flex-start; }
  .filter-controls select { flex: 1 1 auto; min-width: 0; }
}

/* ===== Listenansicht ===== */
.vlist { display: flex; flex-direction: column; }
.vlist-row { display: grid; grid-template-columns: 340px 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--ink-200); align-items: start; }
.vlist-row:first-child { padding-top: 0; }
.vlist-main { display: flex; flex-direction: column; gap: 14px; }
.vlist-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.vlist-specs { display: flex; flex-wrap: wrap; gap: 8px 20px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-600); }
.vlist-specs b { color: var(--ink-900); font-weight: 500; }
.vlist-desc { color: var(--ink-700); font-size: 14.5px; line-height: 1.6; max-width: 70ch; }
.vlist-more { align-self: flex-start; background: transparent; border: 0; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--accent); }
.vlist-more:hover { gap: 11px; transition: gap 0.15s ease; }

/* ===== Detail-Inserat (Vollseite) ===== */
.vdetail-page { padding-bottom: 80px; }
.vdetail-bar { position: sticky; top: 88px; z-index: 30; background: var(--ink-100); border-bottom: 1px solid var(--ink-200); padding: 14px 0; margin-bottom: 36px; }
.vdetail-back { display: inline-flex; align-items: center; gap: 9px; background: none; border: 0; padding: 6px 4px; cursor: pointer; font-family: var(--font-sans); font-size: 14px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink-700); transition: color 0.15s ease, gap 0.15s ease; }
.vdetail-back:hover { color: var(--ink-900); gap: 12px; }
.vdetail-back svg { color: var(--accent); }
.vdetail { position: relative; background: var(--ink-50); width: 100%; display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; border: 1px solid var(--ink-200); border-radius: 4px; overflow: hidden; }
.vdetail-gallery { background: var(--ink-800); display: flex; flex-direction: column; }
.vdetail-main { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.vdetail-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vdetail-thumbs { display: flex; gap: 8px; padding: 12px; overflow-x: auto; background: var(--ink-900); }
.vdetail-thumb { flex: 0 0 84px; height: 62px; border: 2px solid transparent; padding: 0; background: var(--ink-700); cursor: pointer; overflow: hidden; }
.vdetail-thumb.on { border-color: #fff; }
/* Klick auf das große Bild → Vollbild-Lightbox */
.vdetail-main-zoomable { cursor: zoom-in; }
.vdetail-zoom-hint {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  width: 34px; height: 34px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: oklch(0.16 0.008 250 / 0.55); color: #fff;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0.8; transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}
.vdetail-main-zoomable:hover .vdetail-zoom-hint { opacity: 1; transform: scale(1.06); }
.vdetail-lightbox {
  position: fixed; inset: 0; z-index: 4000;
  touch-action: none; overscroll-behavior: contain;
  background: oklch(0.12 0.01 250 / 0.94);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: ankaufOverlayIn 0.2s ease;
}
.vdetail-lightbox-stage { display: flex; align-items: center; justify-content: center; }
.vdetail-lightbox-img {
  max-width: 94vw; max-height: 88vh; width: auto; height: auto;
  object-fit: contain; box-shadow: 0 30px 80px oklch(0 0 0 / 0.6);
}
.vdetail-lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 2;
  width: 44px; height: 44px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: oklch(1 0 0 / 0.1); border: 1px solid oklch(1 0 0 / 0.22);
  color: #fff; cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease;
}
.vdetail-lightbox-close:hover { background: oklch(1 0 0 / 0.2); border-color: oklch(1 0 0 / 0.45); }
.vdetail-lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: oklch(1 0 0 / 0.1); border: 1px solid oklch(1 0 0 / 0.22);
  color: #fff; cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease;
}
.vdetail-lightbox-arrow:hover { background: oklch(1 0 0 / 0.2); border-color: oklch(1 0 0 / 0.5); }
.vdetail-lightbox-arrow.prev { left: 24px; }
.vdetail-lightbox-arrow.next { right: 24px; }
.vdetail-lightbox-count {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: oklch(1 0 0 / 0.82); font-size: 12px; letter-spacing: 0.08em;
  background: oklch(0 0 0 / 0.35); padding: 6px 13px; border-radius: 999px;
}
@media (max-width: 560px) {
  .vdetail-lightbox { padding: 14px; }
  .vdetail-lightbox-arrow { width: 42px; height: 42px; }
  .vdetail-lightbox-arrow.prev { left: 10px; }
  .vdetail-lightbox-arrow.next { right: 10px; }
  .vdetail-lightbox-close { top: 12px; right: 14px; }
}
.vdetail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vdetail-info { padding: 40px 38px; display: flex; flex-direction: column; }
.vdetail-gallery-data { background: var(--ink-50); padding: 30px 32px 34px; flex: 1; }
.vdetail-gallery-data .vdetail-specs dt { font-weight: 700; }
.vdetail-gallery-data .vdetail-section-label { font-weight: 700; color: var(--ink-900); }
.vdetail-gallery-data .vdetail-price-sub { margin-bottom: 16px; }
.vdetail-gallery-data .vdetail-section-label { margin-top: 8px; }
.vdetail-info .vd-grp-desc .vdetail-section-label { margin-top: 0; }
.vdetail-info .vd-grp-head  { order: 1; }
.vdetail-info .vd-grp-price { order: 2; }
.vdetail-info .vd-grp-specs { order: 3; }
.vdetail-info .vd-grp-desc  { order: 4; }
.vdetail-info .vd-grp-equip { order: 5; }
.vdetail-info .vdetail-actions { order: 6; }
.vdetail-print { cursor: pointer; }
.vdetail-stock { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.vdetail-title { font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 4px; }
.vdetail-title span { color: var(--ink-600); }
.vdetail-price { font-family: var(--font-mono); font-size: 26px; letter-spacing: 0.01em; color: var(--ink-900); }
.vdetail-price-sub { font-family: var(--font-mono); font-size: 12px; color: var(--ink-600); margin-bottom: 26px; }
.vdetail-section-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); margin: 26px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--ink-200); }
.vdetail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; }
.vdetail-specs > div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--ink-200); }
.vdetail-specs > div:nth-child(odd) { padding-right: 26px; }
.vdetail-specs > div:nth-child(even) { padding-left: 26px; border-left: 1px solid var(--ink-200); }
.vdetail-specs dt { color: var(--ink-600); font-size: 13.5px; }
.vdetail-specs dd { margin: 0; font-family: var(--font-mono); font-size: 13px; color: var(--ink-900); text-align: right; }
.vdetail-desc { color: var(--ink-700); font-size: 14.5px; line-height: 1.65; }
.vdetail-equip { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.vdetail-equip li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink-800); }
.vdetail-equip svg { color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.vdetail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

@media (max-width: 860px) {
  .vlist-row { grid-template-columns: 1fr; gap: 18px; }
  .vdetail { grid-template-columns: 1fr; }
  .vdetail-info { padding: 28px 22px; }
  .vdetail-specs, .vdetail-equip { grid-template-columns: 1fr; }
  .vdetail-specs > div:nth-child(odd) { padding-right: 0; }
  .vdetail-specs > div:nth-child(even) { padding-left: 0; border-left: 0; }
}

/* WhatsApp — schwebender Kontakt-Button */
.wa-fab {
  position: fixed;
  right: clamp(16px, 2.4vw, 32px);
  bottom: clamp(16px, 2.4vw, 32px);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 0;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.22), 0 2px 6px oklch(0 0 0 / 0.16);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow .18s ease, transform .18s ease;
}
.wa-fab:hover { box-shadow: 0 12px 32px oklch(0 0 0 / 0.28), 0 3px 8px oklch(0 0 0 / 0.2); transform: translateY(-1px); }
.wa-fab:active { transform: translateY(0); }
.wa-fab-ico {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-fab-label {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  padding-left: 0;
  transition: max-width .26s ease, opacity .2s ease, padding-left .26s ease;
}
.wa-fab:hover .wa-fab-label,
.wa-fab:focus-visible .wa-fab-label {
  max-width: 220px;
  opacity: 1;
  padding-left: 20px;
}
@media (max-width: 600px) {
  .wa-fab { height: 54px; }
  .wa-fab-ico { flex-basis: 54px; width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab, .wa-fab-label { transition: none; }
}