/* =========================================================
   FABY TRADING — Stylesheet (Entwurf, Phase 1)
   Dunkel / Anthrazit + Weiß + Gold als einziger Akzent
   Fonts: Clash Display (Display) · Manrope (Body)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg:            #0A0A0B;
  --bg-soft:       #0E0E11;
  --surface:       #141417;
  --surface-2:     #17171C;
  --line:          rgba(255,255,255,.08);
  --line-2:        rgba(255,255,255,.14);

  --text:          #F3F1EC;
  --text-2:        #B6B4AF;
  --muted:         #83818B;

  --gold:          #C9A24B;
  --gold-hi:       #EFD79A;
  --gold-2:        #B0842F;
  --grad-gold:     linear-gradient(140deg, #F3DCA0 0%, #C9A24B 46%, #A67C31 100%);

  --font-display:  "Clash Display", "Manrope", system-ui, sans-serif;
  --font-body:     "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease:          cubic-bezier(.32,.72,0,1);
  --ease-out:      cubic-bezier(.16,1,.3,1);

  --r-card:        20px;
  --r-lg:          26px;
  --r-sm:          12px;

  --header-h:      72px;
  --maxw:          1240px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; }

/* ---------- Grain-Overlay ---------- */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(72px, 11vw, 140px); }
.muted { color: var(--muted); font-style: normal; }
.gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.ico { width: 1.15em; height: 1.15em; flex: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-hi);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(201,162,75,.28);
  background: rgba(201,162,75,.06);
}

.section-title { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.06; letter-spacing: -.02em; margin-top: 16px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: clamp(36px, 5vw, 64px); flex-wrap: wrap; }
.section-head.center { justify-content: center; text-align: center; }
.section-intro { max-width: 400px; color: var(--text-2); font-size: 1rem; }

.panel {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 30px 60px -42px rgba(0,0,0,.85);
}

/* ---------- Placeholder-Blöcke ---------- */
.ph {
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #15151A, #0C0C0F);
  border: 1px dashed rgba(201,162,75,.26);
  color: var(--muted);
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px);
}
.ph::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 999px;
  background: radial-gradient(circle, rgba(201,162,75,.13), transparent 68%);
  filter: blur(4px);
}
.ph-tag {
  position: relative; z-index: 1;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-hi);
  background: rgba(10,10,11,.55); border: 1px solid rgba(201,162,75,.3);
  padding: 6px 12px; border-radius: 999px;
}

/* ---------- Echte Bilder (Phase 3) ---------- */
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Hero-Video (Phase A): Desktop 16:9 / Mobile Hochformat */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-video--mobile { display: none; }
@media (max-width: 640px) {
  .hero-video--desktop { display: none; }
  .hero-video--mobile { display: block; }
}
.vehicle-media, .about-media, .shot { overflow: hidden; }
.vehicle-media img, .about-media img, .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vehicle-media img { transition: transform .8s var(--ease); }
.vehicle-card:hover .vehicle-media img { transform: scale(1.04); }
.shot img { transform: scale(1.05); will-change: transform; } /* Parallax-Reserve; JS setzt translateY */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; line-height: 1;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .5s var(--ease), background .4s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--sm { padding: 9px 15px; font-size: .82rem; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

.btn--gold { background: var(--grad-gold); color: #1B1508; box-shadow: 0 8px 26px -12px rgba(201,162,75,.65), inset 0 1px 0 rgba(255,255,255,.4); }
.btn--gold:hover { box-shadow: 0 14px 36px -10px rgba(201,162,75,.8), inset 0 1px 0 rgba(255,255,255,.5); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.3); }
.btn--outline-gold { background: transparent; color: var(--gold-hi); border-color: rgba(201,162,75,.5); }
.btn--outline-gold:hover { background: rgba(201,162,75,.1); border-color: var(--gold); }

.btn-ico {
  width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(0,0,0,.16); transition: transform .5s var(--ease);
}
.btn--ghost .btn-ico { background: rgba(255,255,255,.1); }
.btn-ico .ico { width: 15px; height: 15px; }
.btn:hover .btn-ico { transform: translate(2px, -2px); }

/* ---------- Draft-Bar ---------- */
.draft-bar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(90deg, rgba(201,162,75,.14), rgba(201,162,75,.05));
  border-bottom: 1px solid rgba(201,162,75,.2);
  color: var(--gold-hi); font-size: .76rem; letter-spacing: .01em;
  padding: 8px 16px; text-align: center;
}
.draft-bar strong { color: #fff; }
.draft-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 10px var(--gold); flex: none; }

/* ---------- Header (Nav-Container: border-radius 0) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.site-header.scrolled { background: rgba(10,10,11,.92); border-bottom-color: var(--line-2); }
.header-inner {
  position: relative;
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
  max-width: var(--maxw); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { height: 38px; width: auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: .02em; color: var(--text); }
.brand-word i { font-style: normal; font-size: .6rem; letter-spacing: .4em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }

.nav { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 4px; }
.nav a {
  position: relative; padding: 8px 14px; border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--text); }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-toggle {
  display: none; position: relative; width: 44px; height: 44px; margin-left: auto;
  border: 1px solid var(--line-2); border-radius: 12px; background: rgba(255,255,255,.03);
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1.7px; border-radius: 2px; background: var(--text);
  transition: transform .4s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
  padding: 0 clamp(28px, 8vw, 64px);
  background: rgba(8,8,10,.94);
  backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 8vw, 2.6rem);
  color: var(--text); letter-spacing: -.01em;
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: calc(var(--d) * 55ms);
}
.mobile-cta { display: flex; flex-direction: column; gap: 12px; opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out) .33s, transform .6s var(--ease-out) .33s; }
.mobile-menu.open .mobile-nav a,
.mobile-menu.open .mobile-cta { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 90vh, 920px);
  display: flex; align-items: flex-end;
  border-bottom: 1px solid var(--line);
}
.hero-bg { position: absolute; inset: 0; border: none; border-radius: 0; }
.hero-bg::after { width: 420px; height: 420px; }
.hero-bg .ph-tag { position: absolute; top: 96px; right: 24px; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.15) 32%, rgba(10,10,11,.9) 100%),
    radial-gradient(130% 90% at 15% 95%, rgba(201,162,75,.16), transparent 58%);
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: clamp(56px, 10vh, 120px); max-width: 820px; }
.hero-title { font-size: clamp(2.6rem, 6.4vw, 5.4rem); line-height: 1.02; letter-spacing: -.025em; margin-top: 20px; }
.hero-lead { margin-top: 22px; max-width: 580px; font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--text-2); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; z-index: 2; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.hero-scroll .ico { width: 18px; height: 18px; animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- Cinema: Der Weg des Fahrzeugs (3 Akte) ---------- */
.cinema { position: relative; background: #060607; border-bottom: 1px solid var(--line); }
.cinema-title { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.04; letter-spacing: -.02em; margin-top: 14px; }

/* Desktop-Scrub-Stage (per Media-Query eingeschaltet) */
.cinema-stage { display: none; position: relative; }
.cinema.is-live .cinema-stage { height: 360vh; }
.cinema-sticky { position: relative; overflow: hidden; height: 100vh; min-height: 560px; display: grid; place-items: center; background: radial-gradient(90% 120% at 50% 40%, #121016, #060607); }
.cinema.is-live .cinema-sticky { position: sticky; top: 0; }
.cinema-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .6s var(--ease); }
.cinema-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.cinema.is-live .cinema-canvas { display: block; }
.cinema.is-live .cinema-poster { opacity: 0; }
.cinema-veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(6,6,7,.86) 0%, rgba(6,6,7,.4) 46%, rgba(6,6,7,.08) 100%); }
.cinema-acts { position: absolute; inset: 0; z-index: 2; }
.cinema-act { position: absolute; left: clamp(20px, 6vw, 90px); top: 50%; transform: translateY(-42%); max-width: 480px; opacity: 0; transition: opacity .6s var(--ease), transform .6s var(--ease); pointer-events: none; }
.cinema-act.active { opacity: 1; transform: translateY(-50%); }
.cinema-act p { margin-top: 14px; color: var(--text-2); font-size: 1.05rem; }
.cinema-cue { position: absolute; z-index: 3; bottom: 26px; left: 50%; transform: translateX(-50%); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

/* Mobile / Touch / reduced-motion: echte Akt-Videos als Kapitel */
.cinema-chapters { display: block; }
.cinema-chapter { position: relative; overflow: hidden; height: 82vh; min-height: 440px; display: grid; place-items: end start; }
.cinema-chapter + .cinema-chapter { border-top: 1px solid var(--line); }
.cinema-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cinema-chapter .cinema-veil { background: linear-gradient(0deg, rgba(6,6,7,.92) 0%, rgba(6,6,7,.2) 55%, rgba(6,6,7,.45) 100%); }
.cinema-chapter-text { position: relative; z-index: 2; padding: clamp(24px, 6vw, 48px); max-width: 540px; }

@media (min-width: 1024px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cinema-stage { display: block; }
  .cinema-chapters { display: none; }
}

/* ---------- Marken-Leiste ---------- */
.brands { padding-block: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.brands-label { text-align: center; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.brands-row { display: flex; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.brands-track { display: flex; align-items: center; width: max-content; flex: none; will-change: transform; animation: brand-marquee 45s linear infinite; }
.brands-row:hover .brands-track { animation-play-state: paused; }
.brand-logo { height: 26px; width: auto; flex: none; margin-right: clamp(40px, 6vw, 76px); opacity: .48; filter: grayscale(1); transition: opacity .4s var(--ease); }
.brand-logo:hover { opacity: .95; }
@keyframes brand-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .brands-row { -webkit-mask: none; mask: none; justify-content: center; }
}

/* ---------- Kundenstimmen (Endlos-Band) ---------- */
.reviews { overflow: hidden; }
.reviews-viewport {
  margin-top: clamp(34px, 5vw, 60px); overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews-track { display: flex; width: max-content; cursor: grab; touch-action: pan-y; will-change: transform; }
.reviews-track.dragging { cursor: grabbing; }
.review-card {
  flex: none; width: min(84vw, 380px); margin-right: 20px; padding: 28px 26px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 30px 60px -42px rgba(0,0,0,.85);
  user-select: none; -webkit-user-select: none;
}
.review-stars { color: var(--gold-hi); letter-spacing: 3px; font-size: .95rem; }
.review-quote { margin: 15px 0 22px; color: var(--text); font-size: 1.02rem; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: #14100A; background: var(--grad-gold); flex: none; }
.review-meta { display: flex; flex-direction: column; line-height: 1.3; }
.review-meta b { color: var(--text); font-weight: 600; }
.review-meta i { font-style: normal; color: var(--muted); font-size: .85rem; margin-top: 2px; }
@media (prefers-reduced-motion: reduce) {
  .reviews-viewport { overflow-x: auto; -webkit-mask: none; mask: none; }
  .reviews-track { transform: none !important; }
}

/* ---------- Über uns ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-text p { margin-top: 18px; color: var(--text-2); max-width: 52ch; }
.about-actions { margin-top: 30px; }
.about-media { aspect-ratio: 4/3; border-radius: var(--r-lg); min-height: 280px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(52px, 6vw, 84px); padding-top: clamp(34px, 4vw, 48px); border-top: 1px solid var(--line); }
.stat-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 4vw, 3.1rem); line-height: 1; color: var(--text); }
.stat-num .gold { -webkit-text-fill-color: transparent; }
.stat-label { display: block; margin-top: 12px; color: var(--text-2); font-size: .9rem; }
.stat-label em { color: var(--muted); font-style: normal; font-size: .82em; }

/* ---------- Fahrzeuge ---------- */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: clamp(18px, 2vw, 26px); perspective: 1200px; }
.vehicle-card { overflow: hidden; transform-style: preserve-3d; transition: transform .6s var(--ease), border-color .5s var(--ease), box-shadow .6s var(--ease); }
.vehicle-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.35); box-shadow: 0 40px 70px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(201,162,75,.12); }
.vehicle-media { aspect-ratio: 16/10; border: none; border-bottom: 1px solid var(--line); border-radius: 0; }
.badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-hi); background: rgba(10,10,11,.7); border: 1px solid rgba(201,162,75,.35); padding: 4px 9px; border-radius: 999px; }
.vehicle-body { padding: 22px 22px 24px; }
.vehicle-name { font-size: 1.22rem; font-weight: 600; letter-spacing: -.01em; }
.vehicle-name .muted { font-size: .72rem; letter-spacing: 0; }
.vehicle-price { margin-top: 8px; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--gold-hi); }
.vehicle-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin: 18px 0; padding-top: 16px; border-top: 1px solid var(--line); }
.vehicle-specs dt { font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.vehicle-specs dd { margin-top: 3px; color: var(--text); font-weight: 500; font-size: .95rem; }
.vehicle-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--gold-hi); transition: gap .4s var(--ease); }
.vehicle-link .ico { width: 16px; height: 16px; }
.vehicle-link:hover { gap: 12px; }

/* ---------- Leistungen ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.service-card { padding: 30px 26px 32px; transition: transform .6s var(--ease), border-color .5s var(--ease); }
.service-card:hover { transform: translateY(-5px); border-color: rgba(201,162,75,.3); }
.service-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: var(--gold-hi); background: rgba(201,162,75,.08); border: 1px solid rgba(201,162,75,.22); margin-bottom: 20px; }
.service-ico .ico { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.service-card p { color: var(--text-2); font-size: .94rem; }

/* ---------- Warum FABY ---------- */
.why { background: var(--bg-soft); border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); }
.why-item { position: relative; padding-left: 2px; }
.why-ico { width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center; color: var(--gold-hi); background: rgba(201,162,75,.07); border: 1px solid rgba(201,162,75,.22); margin-bottom: 18px; }
.why-ico .ico { width: 23px; height: 23px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 9px; }
.why-item p { color: var(--text-2); font-size: .92rem; }

/* ---------- Showroom ---------- */
.showroom-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.shot { border-radius: var(--r-card); border-style: solid; border-color: var(--line); }
.shot--big { grid-column: span 2; grid-row: span 2; }
.shot--wide { grid-column: span 4; }

/* ---------- Kontakt ---------- */
.contact { position: relative; overflow: hidden; background: linear-gradient(180deg, #0C0C10, #0A0A0B); }
.contact::before {
  content: ""; position: absolute; z-index: 0; inset: 0;
  background: radial-gradient(70% 60% at 85% 15%, rgba(201,162,75,.12), transparent 60%);
  pointer-events: none;
}
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-info p { margin-top: 18px; color: var(--text-2); max-width: 46ch; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.contact-list { list-style: none; padding: 0; margin-top: 34px; display: grid; gap: 15px; }
.contact-list li { display: flex; align-items: center; gap: 13px; color: var(--text-2); font-size: .96rem; }
.contact-list .ico { width: 20px; height: 20px; color: var(--gold-hi); flex: none; }
.contact-list em { color: var(--muted); font-style: normal; }

.contact-form-wrap { padding: 28px 26px 30px; }
.contact-form .form-note { font-size: .78rem; color: var(--muted); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.contact-form label { display: block; margin-bottom: 15px; font-size: .84rem; color: var(--text-2); }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 8px; padding: 12px 14px; font: inherit; font-size: .95rem; color: var(--text);
  background: rgba(255,255,255,.03); border: 1px solid var(--line-2); border-radius: 12px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(201,162,75,.05); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: #08080A; border-top: 1px solid var(--line); padding-top: clamp(52px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-tag { color: var(--text-2); font-size: .92rem; max-width: 30ch; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi); margin-bottom: 6px; }
.footer-col a, .footer-col span { color: var(--text-2); font-size: .92rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-col em { color: var(--muted); font-style: normal; font-size: .82em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

/* ---------- Floating Kontakt-Buttons (Anruf + WhatsApp) ---------- */
.fab-stack { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 58px; height: 58px; border-radius: 999px; display: grid; place-items: center; transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s var(--ease), border-color .4s var(--ease); }
.fab .ico { width: 28px; height: 28px; }
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab--whatsapp { background: var(--grad-gold); color: #14100A; box-shadow: 0 14px 34px -10px rgba(201,162,75,.7), inset 0 1px 0 rgba(255,255,255,.4); }
.fab--whatsapp:hover { box-shadow: 0 20px 44px -10px rgba(201,162,75,.85); }
.fab--call { background: rgba(20,20,24,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: var(--gold-hi); border: 1px solid rgba(201,162,75,.5); box-shadow: 0 12px 30px -12px rgba(0,0,0,.8); }
.fab--call:hover { border-color: var(--gold); background: rgba(30,30,34,.9); }

/* ---------- Scroll-Reveal (nur mit JS aktiv; ohne JS bleibt alles sichtbar) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), filter .8s var(--ease-out); }
html.js [data-reveal].in-view { opacity: 1; transform: none; filter: none; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .section-head { align-items: flex-start; }
  .showroom-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .shot--big { grid-column: span 2; grid-row: span 1; }
  .shot--wide { grid-column: span 2; }
}

@media (max-width: 560px) {
  .service-grid, .why-grid, .vehicle-grid, .delivered-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .showroom-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .shot--big, .shot--wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .draft-bar { font-size: .7rem; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-scroll .ico { animation: none; }
}

/* ============ AUSGELIEFERTE FAHRZEUGE (Referenz-Galerie) + Lightbox ============ */
.delivered-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.delivered-card { position: relative; display: block; overflow: hidden; aspect-ratio: 3/2; border: 1px solid var(--line); background: #111; cursor: zoom-in; }
.delivered-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.delivered-card:hover img { transform: scale(1.05); }
.delivered-card:hover { border-color: rgba(201,162,75,.35); }
.delivered-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.delivered-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px 14px 12px; font-family: var(--font-display); font-weight: 500; font-size: .98rem; color: #fff; background: linear-gradient(to top, rgba(5,5,6,.9), rgba(5,5,6,0)); pointer-events: none; }
.delivered .badge { border-radius: 999px; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: clamp(16px, 5vw, 64px); background: rgba(5,5,6,.93); opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.open { opacity: 1; }
.lightbox img { max-width: 100%; max-height: 88vh; border: 1px solid var(--line); box-shadow: 0 40px 90px -30px #000; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(201,162,75,.4); background: rgba(10,10,11,.72); color: var(--gold-hi); font-size: 1.5rem; line-height: 1; cursor: pointer; transition: border-color .3s, color .3s; }
.lightbox-close:hover { border-color: var(--gold); color: #fff; }
@media (prefers-reduced-motion: reduce) { .lightbox { transition: none; } }

/* ============ CONTENT-SEITEN (Unterseiten SEO) ============ */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(48px, 9vw, 104px)); padding-bottom: clamp(40px, 7vw, 80px); border-bottom: 1px solid var(--line); background: radial-gradient(120% 150% at 82% 0%, #16111b 0%, var(--bg) 56%); }
.page-hero .container { max-width: 960px; }
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.7rem); line-height: 1.04; letter-spacing: -.01em; margin-top: 16px; }
.page-hero .lead { margin-top: 20px; color: var(--text-2); font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 66ch; }
.page-hero .hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

.crumbs { font-size: .82rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-hi); }
.crumbs [aria-current] { color: var(--text-2); }
.crumbs .sep { opacity: .45; }

.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.05em; }
.prose p, .prose li { color: var(--text-2); font-size: 1.05rem; line-height: 1.75; }
.prose h2 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); color: var(--text); margin-top: 1.7em; line-height: 1.15; }
.prose h3 { font-size: 1.24rem; color: var(--text); margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-top: .5em; }
.prose li::marker { color: var(--gold); }
.prose a { color: var(--gold-hi); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(201,162,75,.5); }
.prose a:hover { text-decoration-color: var(--gold-hi); }
.prose strong { color: var(--text); font-weight: 600; }

.cta-band { border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(40px, 7vw, 72px); }
.cta-band h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); max-width: 22ch; line-height: 1.1; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.link-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 28px; }
.link-card { display: block; border: 1px solid var(--line); padding: 22px; background: var(--bg-soft); transition: border-color .4s var(--ease), transform .4s var(--ease); }
.link-card:hover { border-color: rgba(201,162,75,.4); transform: translateY(-4px); }
.link-card h3 { font-size: 1.1rem; color: var(--text); }
.link-card p { color: var(--muted); font-size: .92rem; margin-top: 6px; }
.link-card .ico { color: var(--gold); width: 20px; height: 20px; margin-top: 12px; }

.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--text); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0 22px; color: var(--text-2); line-height: 1.7; max-width: 66ch; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
.facts > div { background: var(--bg); padding: 16px 18px; }
.facts dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin-top: 4px; color: var(--text); font-weight: 500; }

.badge--sold { position: static; display: inline-block; }

/* ============ 20K-UPGRADE: Bild-Hero, Step-Flow, Feature-Rows, Regionen, Trust, Filter ============ */
.page-hero.has-image { overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.page-hero.has-image::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,11,.62) 0%, rgba(10,10,11,.82) 60%, var(--bg) 100%); }
.page-hero.has-image .container { position: relative; z-index: 2; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; counter-reset: s; }
.step { position: relative; border: 1px solid var(--line); background: var(--bg-soft); padding: 26px 22px 24px; transition: border-color .4s var(--ease), transform .4s var(--ease); }
.step:hover { border-color: rgba(201,162,75,.4); transform: translateY(-4px); }
.step .step-n { font-family: var(--font-display); font-size: .8rem; letter-spacing: .1em; color: var(--gold); }
.step .step-ico { display: inline-grid; place-items: center; width: 46px; height: 46px; margin: 10px 0 14px; border: 1px solid rgba(201,162,75,.3); border-radius: 999px; color: var(--gold-hi); }
.step .step-ico .ico { width: 22px; height: 22px; }
.step h3 { font-size: 1.12rem; color: var(--text); }
.step p { margin-top: 8px; color: var(--text-2); font-size: .96rem; line-height: 1.6; }

.feature-rows { display: flex; flex-direction: column; gap: clamp(28px, 5vw, 64px); }
.feature-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.feature-row:nth-child(even) .feature-media { order: 2; }
.feature-media { position: relative; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.feature-row:hover .feature-media img { transform: scale(1.05); }
.feature-text .eyebrow { margin-bottom: 12px; }
.feature-text h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text); line-height: 1.12; }
.feature-text p { margin-top: 14px; color: var(--text-2); line-height: 1.7; max-width: 46ch; }

.region-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.region-card { overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); transition: border-color .4s var(--ease), transform .4s var(--ease); }
.region-card:hover { border-color: rgba(201,162,75,.4); transform: translateY(-4px); }
.region-card .region-media { aspect-ratio: 16/9; overflow: hidden; }
.region-card .region-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.region-card:hover .region-media img { transform: scale(1.06); }
.region-card .region-body { padding: 18px 18px 20px; }
.region-card h3 { font-size: 1.08rem; color: var(--text); }
.region-card p { margin-top: 6px; color: var(--text-2); font-size: .93rem; line-height: 1.6; }

.trust-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.trust-item { background: var(--bg); padding: 26px 22px; display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ico { width: 26px; height: 26px; color: var(--gold); flex: none; margin-top: 2px; }
.trust-item h3 { font-size: 1rem; color: var(--text); }
.trust-item p { margin-top: 4px; color: var(--muted); font-size: .88rem; line-height: 1.5; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip { border: 1px solid rgba(201,162,75,.32); color: var(--gold-hi); padding: 8px 16px; border-radius: 999px; font-size: .9rem; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn { border: 1px solid var(--line); color: var(--text-2); padding: 9px 18px; border-radius: 999px; font-size: .9rem; font-weight: 500; transition: all .3s var(--ease); }
.filter-btn:hover { border-color: rgba(201,162,75,.4); color: var(--text); }
.filter-btn.active { background: var(--grad-gold); color: #1a1205; border-color: transparent; }
.vehicle-tile.is-hidden { display: none; }

@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-media { order: 0; }
}

/* ============ GEO-Direktantwort (zitierfaehiger Kernfakt) ============ */
.key-answer { border: 1px solid rgba(201,162,75,.35); border-left: 3px solid var(--gold); background: linear-gradient(135deg, rgba(201,162,75,.07), transparent 60%); padding: clamp(20px, 3vw, 30px) clamp(22px, 3.5vw, 36px); max-width: 820px; }
.key-answer h2 { font-size: 1.05rem; letter-spacing: .02em; color: var(--gold-hi); }
.key-answer p { margin-top: 10px; color: var(--text); font-size: 1.08rem; line-height: 1.7; }
