/* ============================================================
   AUTOWERK BORNHEIM — Cinematic Redesign
   Inspired by Italian supercar grand-touring brand identities
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg: #000000;
  --surface: #060606;
  --surface-2: #0c0c0c;
  --card: #0e0e0e;
  --card-hover: #161616;
  --border: #1a1a1a;
  --border-strong: #2a2a2a;

  --accent: #E30613;
  --accent-2: #FF1A2A;
  --accent-glow: rgba(227,6,19,.35);

  --text: #F2F2F2;
  --text-muted: #8a8a8a;
  --text-dim: #5a5a5a;
  --text-faint: #2e2e2e;

  --display: "Antonio", "Arial Narrow", Impact, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 0px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-snap: cubic-bezier(.85, 0, .15, 1);
  --t-fast: .25s;
  --t-med: .55s;
  --t-slow: .9s;

  /* hex geometry */
  --hex-clip: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: #000; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
table { border-collapse: collapse; }
::selection { background: var(--accent); color: #fff; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 12px 20px; z-index: 9999;
}
.skip:focus { left: 16px; top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

/* ---------- TYPE ---------- */
.display, h2.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 112px);
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-stroke {
  -webkit-text-stroke: 1.5px var(--text-muted);
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow__bar {
  width: 32px; height: 1px; background: var(--text-muted);
  display: inline-block;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--accent .eyebrow__bar { background: var(--accent); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.kicker__dot {
  width: 6px; height: 6px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding: 6px 0;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.link svg { transition: transform var(--t-fast); }
.link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.link:hover svg { transform: translateX(4px); }
.link--accent { color: var(--accent); border-bottom-color: var(--accent); }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid transparent;
  transition: color var(--t-fast) var(--ease);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.btn__bg {
  position: absolute; inset: 0;
  background: var(--accent);
  z-index: 0;
  transform: translateY(0);
  transition: transform var(--t-med) var(--ease-snap);
}
.btn__label, .btn svg { position: relative; z-index: 1; }
.btn--primary { color: #fff; }
.btn--primary:hover .btn__bg { background: var(--accent-2); transform: translateY(-100%); }
.btn--primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  z-index: 0;
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease-snap);
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover { background: var(--accent-2); }

.btn--ghost {
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost .btn__bg { display: none; }
.btn--ghost:hover { border-color: var(--text); color: var(--text); background: rgba(255,255,255,.04); }
.btn svg { transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- LOGO ---------- */
.logo, a.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.005em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo .logo__a { color: var(--accent); font-size: inherit; }
.logo .logo__b { color: var(--text); font-size: inherit; }
.logo .logo__sub {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--text-muted);
  margin-left: 12px;
  transform: translateY(-2px);
  white-space: nowrap;
}
.logo.logo--lg { font-size: 48px; }
.logo.logo--lg .logo__sub { font-size: 11px; margin-left: 14px; }
.footer .logo.logo--lg { font-size: 48px; }
@media (max-width: 480px) {
  .logo, a.logo { font-size: 18px; }
  .logo .logo__sub { display: none; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
}
.nav__rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  pointer-events: auto;
  transition: background var(--t-med), backdrop-filter var(--t-med), padding var(--t-med);
}
.nav.is-scrolled .nav__rail {
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--pad);
}

.nav__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 10px 16px 10px 18px;
  border: 1px solid var(--border-strong);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav__menu-btn:hover { border-color: var(--accent); }
.nav__menu-bars {
  display: inline-flex; flex-direction: column; gap: 4px;
}
.nav__menu-bars span {
  display: block; width: 18px; height: 1.5px; background: var(--text);
  transition: transform var(--t-fast);
}
.nav__menu-btn[aria-expanded="true"] .nav__menu-bars span:nth-child(1) {
  transform: translateY(2.75px) rotate(45deg);
}
.nav__menu-btn[aria-expanded="true"] .nav__menu-bars span:nth-child(2) {
  transform: translateY(-2.75px) rotate(-45deg);
}

/* ---------- OVERLAY MENU ---------- */
.overlay {
  position: fixed; inset: 0;
  background: #000;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
  display: flex;
  align-items: center;
}
.overlay::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(227,6,19,.18), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(227,6,19,.10), transparent 50%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 80px);
}
.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.overlay__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--pad) 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.overlay__nav { display: flex; flex-direction: column; gap: 4px; }
.overlay__nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--text);
  border-top: 1px solid var(--border);
  transition: color var(--t-fast), padding-left var(--t-med) var(--ease-snap);
}
.overlay__nav a:last-child { border-bottom: 1px solid var(--border); }
.overlay__nav a:hover { color: var(--accent); padding-left: 24px; }
.overlay__num {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--text-muted);
  align-self: flex-start;
  padding-top: 16px;
}
.overlay__name { display: block; }

.overlay__meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 12px;
}
.overlay__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.overlay__value {
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}
a.overlay__value { transition: color var(--t-fast); }
a.overlay__value:hover { color: var(--accent); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 120px var(--pad) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}
.hero__hex {
  position: absolute;
  width: 90vmin; height: 90vmin;
  right: -22vmin; top: 50%;
  transform: translateY(-50%) rotate(30deg);
  background:
    conic-gradient(from 0deg, rgba(227,6,19,.18), rgba(227,6,19,.04), rgba(227,6,19,.18));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  filter: blur(40px);
  opacity: .85;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
}
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  left: 18%; top: 75%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(100px);
  opacity: .55;
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

.hero__chrome {
  position: absolute; inset: 24px;
  pointer-events: none;
  z-index: 2;
}
.hero__corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1.5px solid var(--accent);
}
.hero__corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero__corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero__corner--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero__corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 56px);
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__coords {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--text-muted);
}

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(54px, 13vw, 220px);
  line-height: .86;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin: 0;
}
.hero__line { display: block; }
.hero__line--accent { color: var(--accent); }
.hero__line--small {
  font-size: clamp(20px, 2.6vw, 38px);
  letter-spacing: .35em;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 18px;
  border-top: 1px solid var(--border-strong);
  padding-top: 18px;
  max-width: 16ch;
}
.hero__word--outline {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.hero__lead {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin: 0;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: clamp(16px, 3vw, 32px);
}
.hud-block {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hud-block--wide { grid-column: span 2; }
.hud-block__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--text-dim);
}
.hud-block__value {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot--live {
  background: #14d76e;
  box-shadow: 0 0 10px rgba(20,215,110,.55);
  animation: pulse 1.6s var(--ease) infinite;
}

.hero__brand {
  position: absolute;
  bottom: -3vw;
  right: -4vw;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(140px, 28vw, 480px);
  letter-spacing: -.04em;
  line-height: 1;
  color: rgba(227,6,19,.04);
  -webkit-text-stroke: 1px rgba(227,6,19,.12);
  pointer-events: none;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--surface), transparent); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-x 60s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.marquee__mark {
  color: var(--accent);
  font-size: .55em;
  transform: translateY(-3px);
}
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SECTION ---------- */
.section {
  padding: clamp(96px, 14vw, 200px) 0;
  position: relative;
}
.section__head {
  max-width: 1100px;
  margin: 0 auto clamp(64px, 9vw, 120px);
}
.section__head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section__count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.section__lead {
  color: var(--text-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  max-width: 680px;
  line-height: 1.6;
  margin: 24px 0 0;
}

/* ---------- MANIFEST ---------- */
.manifest {
  padding: clamp(96px, 14vw, 180px) 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.manifest__head { margin-bottom: 56px; }
.manifest__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.manifest__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: .94;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0;
}
.manifest__body { padding-top: 12px; }
.manifest__lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 20px;
}
.manifest__copy {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 32px;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checks li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.checks li:last-child { border-bottom: 1px solid var(--border); }
.checks__num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .15em;
  min-width: 28px;
}

/* ---------- MODULES (manufaktur) ---------- */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.module {
  background: var(--surface);
  padding: 40px 36px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background var(--t-med) var(--ease);
  overflow: hidden;
}
.module::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(227,6,19,.08) 100%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
}
.module:hover { background: var(--card-hover); }
.module:hover::before { opacity: 1; }
.module__rail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.module__num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent);
}
.module__bar {
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}
.module__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.module__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 0;
  flex: 1;
}
.module__icon {
  width: 56px; height: 56px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease);
}
.module:hover .module__icon { transform: rotate(-8deg) scale(1.06); }
.module__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.module__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: auto;
}
.module__specs > div {
  background: var(--card);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.module__specs span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.module__specs strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--text);
}

.manufaktur__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
  padding: 36px 44px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  position: relative;
}
.manufaktur__note::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}
.manufaktur__note-text { display: flex; flex-direction: column; gap: 12px; }
.manufaktur__note p { margin: 0; color: var(--text-muted); font-size: 16px; max-width: 60ch; }

/* ---------- VEHICLES ---------- */
.vehicles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.vehicle {
  background: var(--surface);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--t-med);
  position: relative;
}
.vehicle:hover { background: var(--card-hover); }
.vehicle__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.02em;
}
.vehicle__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--text-dim);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.vehicle__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: .96;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
}
.vehicle__text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.vehicle__stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.vehicle__stats > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}
.vehicle__stats span { color: var(--text-dim); letter-spacing: .12em; text-transform: uppercase; font-size: 10px; align-self: center; }
.vehicle__stats strong {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 64px;
  background: var(--border);
  border: 1px solid var(--border);
}
.services__block {
  background: var(--surface);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.services__num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--accent);
}
.services__block h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: .96;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
}
.services__block p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 8px;
}

.showroom {
  margin-top: 64px;
  position: relative;
  padding: clamp(56px, 8vw, 100px);
  background:
    radial-gradient(ellipse at 75% 40%, rgba(227,6,19,.18), transparent 60%),
    var(--surface);
  overflow: hidden;
}
.showroom__corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--accent);
}
.showroom__corner--tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.showroom__corner--tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.showroom__corner--bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.showroom__corner--br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.showroom__inner {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.showroom h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 78px);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -.015em;
  line-height: .98;
}
.showroom p {
  max-width: 580px;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- TEAM ---------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.member {
  background: var(--surface);
  padding: 56px 40px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background var(--t-med);
  min-height: 460px;
}
.member:hover { background: var(--card-hover); }
.member--center { background: var(--card); }
.member--center::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--accent);
}
.member__index {
  font-family: var(--display);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: .12;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.member__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.5;
}
.member__name {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin: 0;
  line-height: .9;
}
.member__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.member__sig {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ---------- PARTNER ---------- */
.partner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.partner-card {
  background: var(--surface);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--t-med);
  min-height: 200px;
}
.partner-card:hover { background: var(--card-hover); }
.partner-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.partner-card__role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--accent);
  text-transform: uppercase;
}
.partner-card__id {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text-dim);
}
.partner-card__name {
  font-family: var(--display);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1;
}
.partner-card__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: auto;
}

/* ---------- KONTAKT ---------- */
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.kontakt__info {
  background: var(--surface);
  padding: clamp(40px, 4vw, 60px);
}
.kontakt__map {
  background: var(--surface);
  position: relative;
  min-height: 540px;
}
.kontakt__map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.4) brightness(.95);
}
.kontakt__map-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  background: rgba(0,0,0,.85);
  border: 1px solid var(--border-strong);
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--accent);
  text-transform: uppercase;
}

.info-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.info-block:first-child { padding-top: 0; }
.info-block:last-of-type { border-bottom: 0; }
.info-block__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.info-block__value {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -.005em;
  text-transform: uppercase;
}
.info-block__value--link {
  display: inline-block;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: all var(--t-fast);
}
.info-block__value--link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.hours { width: 100%; margin: 0; font-family: var(--body); font-size: 14px; }
.hours td { padding: 5px 24px 5px 0; color: var(--text-muted); letter-spacing: .04em; text-transform: none; font-family: var(--body); }
.hours td:first-child { font-weight: 600; color: var(--text); width: 80px; }

.kontakt__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  font-size: 14px;
  overflow: hidden;
}
.footer__big {
  position: absolute;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(160px, 28vw, 460px);
  letter-spacing: -.04em;
  line-height: 1;
  color: rgba(227,6,19,.045);
  -webkit-text-stroke: 1px rgba(227,6,19,.10);
  pointer-events: none;
  white-space: nowrap;
}
.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
  z-index: 1;
}
.footer__brand .logo--lg { display: inline-flex; }
.footer__claim {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer__h {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer__grid > div a, .footer__grid > div span {
  display: block;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color var(--t-fast);
  font-size: 14px;
}
.footer__grid > div a:hover { color: var(--text); }

.footer__bottom {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: .04em;
}
.footer__links { display: flex; gap: 28px; }
.footer__links a { color: var(--text-muted); transition: color var(--t-fast); }
.footer__links a:hover { color: var(--accent); }

/* ---------- CURSOR ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity var(--t-fast);
  opacity: 0;
  mix-blend-mode: difference;
}
.cursor span {
  display: block;
  width: 100%; height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hot span {
  transform: scale(1.6);
  background: var(--accent);
  border-color: var(--accent);
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1180px) {
  .modules { grid-template-columns: repeat(2, 1fr); }
  .vehicles { grid-template-columns: repeat(2, 1fr); }
  .partner__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
}
@media (max-width: 920px) {
  .hero__hud { grid-template-columns: 1fr 1fr; }
  .hud-block--wide { grid-column: span 2; }
  .hero__bottom { grid-template-columns: 1fr; }
  .manifest__grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .kontakt__map { min-height: 360px; }
  .overlay__inner { grid-template-columns: 1fr; gap: 48px; padding-top: 88px; }
}
@media (max-width: 640px) {
  .modules { grid-template-columns: 1fr; }
  .vehicles { grid-template-columns: 1fr; }
  .partner__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .hero__hud { grid-template-columns: 1fr; }
  .hud-block--wide { grid-column: span 1; }
  .module__head { flex-direction: column; }
  .manufaktur__note { padding: 28px; flex-direction: column; align-items: flex-start; }
  .showroom { padding: 48px 24px; }
  .services__block { padding: 40px 28px; }
  .vehicle { padding: 28px 22px; }
  .member { padding: 40px 28px; min-height: 0; }
  .partner-card { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee__track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* ============================================================
   INTRO LASER OVERLAY
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 9000;
  background: #000;
  display: grid; place-items: center;
  pointer-events: none;
  overflow: hidden;
  animation: introOut 1.2s cubic-bezier(.85,0,.15,1) 2.6s forwards;
}
.intro__laser {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, #ff4858 50%, var(--accent) 70%, transparent 100%);
  box-shadow: 0 0 24px var(--accent), 0 0 80px var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  animation: introLaser 1.4s cubic-bezier(.7,0,.2,1) .15s forwards;
}
.intro__beam {
  position: absolute; left: 50%; top: 50%;
  width: 100vmax; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,6,19,.4), transparent);
  transform: translate(-50%,-50%);
  opacity: 0;
}
.intro__beam--top { animation: introBeamT 1s ease 1.0s forwards; }
.intro__beam--bot { animation: introBeamB 1s ease 1.1s forwards; }
@keyframes introBeamT { 0% {opacity:0; transform: translate(-50%,-50%) translateY(0) scaleX(.2);} 100% {opacity:.6; transform: translate(-50%,-50%) translateY(-80px) scaleX(1);} }
@keyframes introBeamB { 0% {opacity:0; transform: translate(-50%,-50%) translateY(0) scaleX(.2);} 100% {opacity:.6; transform: translate(-50%,-50%) translateY(80px) scaleX(1);} }

.intro__rings { position: absolute; inset: 0; display: grid; place-items: center; }
.intro__rings span {
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid rgba(227,6,19,.5);
  border-radius: 50%;
  opacity: 0;
  animation: introRing 2.4s ease-out forwards;
}
.intro__rings span:nth-child(1) { animation-delay: 1.0s; }
.intro__rings span:nth-child(2) { animation-delay: 1.25s; }
.intro__rings span:nth-child(3) { animation-delay: 1.5s; }
@keyframes introRing {
  0% { opacity: .8; transform: scale(.2); }
  60% { opacity: .4; }
  100% { opacity: 0; transform: scale(8); }
}

.intro__logo {
  position: relative;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 12vw, 180px);
  letter-spacing: .02em;
  line-height: .9;
  opacity: 0;
  animation: introLogo .9s cubic-bezier(.2,.8,.2,1) 1.2s forwards;
  z-index: 2;
}
.intro__logo-a { color: var(--accent); display: inline-block; transform: translateX(20px); }
.intro__logo-b { color: #fff; display: inline-block; transform: translateX(-20px); }
.intro__logo-sub {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: .4em;
  color: var(--text-muted);
  margin-top: 16px;
  opacity: 0;
  animation: introSub .6s ease 1.8s forwards;
}
@keyframes introLogo {
  0% { opacity: 0; filter: blur(20px); letter-spacing: .15em; }
  100% { opacity: 1; filter: blur(0); letter-spacing: .02em; }
}
@keyframes introSub { to { opacity: 1; } }
@keyframes introLaser {
  0% { transform: scaleX(0); opacity: 1; }
  60% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}
@keyframes introOut {
  0% { opacity: 1; clip-path: inset(0 0 0 0); }
  60% { opacity: 1; clip-path: inset(0 0 0 0); }
  100% { opacity: 0; clip-path: inset(50% 0 50% 0); pointer-events: none; visibility: hidden; }
}

.intro__hud {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--text-muted);
  opacity: 0;
  animation: introSub .5s ease 1.6s forwards;
}
.intro__hud-l::before { content: ""; display: inline-block; width: 8px; height: 8px; background: #00ff88; border-radius: 50%; margin-right: 10px; vertical-align: middle; box-shadow: 0 0 12px #00ff88; }
.intro__hud-r { font-variant-numeric: tabular-nums; color: var(--accent); }

.intro--done { display: none; }

/* ============================================================
   FLEET SHOWCASE CAROUSEL
   ============================================================ */
.fleet { padding: clamp(80px,10vw,140px) 0 clamp(60px,8vw,100px); position: relative; }

.fleet__stage {
  position: relative;
  margin-top: clamp(40px, 6vw, 80px);
  overflow: hidden;
  background: linear-gradient(180deg, #050505 0%, #000 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fleet__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fleet__hex {
  position: absolute; inset: -10%;
  background-image:
    linear-gradient(60deg, transparent 49.5%, rgba(255,255,255,.025) 49.5%, rgba(255,255,255,.025) 50.5%, transparent 50.5%),
    linear-gradient(-60deg, transparent 49.5%, rgba(255,255,255,.025) 49.5%, rgba(255,255,255,.025) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,.025) 49.5%, rgba(255,255,255,.025) 50.5%, transparent 50.5%);
  background-size: 60px 60px;
  opacity: .6;
}
.fleet__beam {
  position: absolute;
  left: 50%; top: 50%;
  width: 140%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  transform: translate(-50%,-50%) rotate(-3deg);
}

.fleet__track {
  display: flex;
  width: 200%;
  transition: transform .9s cubic-bezier(.7,0,.2,1);
  will-change: transform;
}
.fleet__slide {
  flex: 0 0 50%;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(48px, 6vw, 88px) var(--pad);
  align-items: center;
  position: relative;
}

.fleet__data { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 2; }

.fleet__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 11px; font-weight: 600;
  letter-spacing: .3em; color: var(--text-muted);
  text-transform: uppercase;
  align-self: flex-start;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
}
.dot--live { width: 8px; height: 8px; border-radius: 50%; background: #00ff88; box-shadow: 0 0 12px #00ff88; animation: pulseLive 1.6s ease-in-out infinite; }
@keyframes pulseLive { 50% { opacity: .4; } }

.fleet__brand {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5em;
  color: var(--accent);
  margin-bottom: 8px;
}
.fleet__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 110px);
  letter-spacing: 0;
  line-height: .9;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
.fleet__variant {
  display: block;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--text-muted);
  margin-top: 12px;
  text-transform: uppercase;
}

.fleet__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.fleet__meta > div {
  background: var(--bg);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.fleet__meta span {
  font-size: 10px; letter-spacing: .3em;
  color: var(--text-dim); text-transform: uppercase;
}
.fleet__meta strong {
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  letter-spacing: .02em;
}

.fleet__price {
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 20px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.fleet__price-label { font-size: 10px; letter-spacing: .3em; color: var(--text-dim); }
.fleet__price-value { font-family: var(--display); font-size: clamp(38px, 4vw, 56px); color: #fff; line-height: 1; }
.fleet__price-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.fleet__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual side */
.fleet__visual {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.fleet__bigtype {
  position: absolute;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(180px, 26vw, 380px);
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  white-space: nowrap;
  z-index: 0;
  top: 40%;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
}
.fleet__car {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.8)) drop-shadow(0 0 80px rgba(227,6,19,.15));
}
.fleet__car svg { display: block; width: 100%; height: auto; }

.fleet__specs {
  position: relative; z-index: 2;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 800px;
}
.fleet__specs > div {
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.fleet__specs span {
  font-size: 9px; letter-spacing: .3em;
  color: var(--text-dim);
}
.fleet__specs strong {
  font-family: var(--display);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: .01em;
}

/* Slide enter animations */
.fleet__slide[data-active="true"] .fleet__name {
  animation: slideInLeft .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.fleet__slide[data-active="true"] .fleet__car {
  animation: slideInCar 1.1s cubic-bezier(.2,.8,.2,1) forwards;
}
.fleet__slide[data-active="true"] .fleet__bigtype {
  animation: slideInType 1.4s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-60px); filter: blur(8px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}
@keyframes slideInCar {
  0% { opacity: 0; transform: translateX(120px) scale(.9); filter: blur(6px); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: drop-shadow(0 30px 60px rgba(0,0,0,.8)) drop-shadow(0 0 80px rgba(227,6,19,.15)); }
}
@keyframes slideInType {
  0% { opacity: 0; transform: translateY(-50%) translateX(80px); }
  100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.car-wheel { animation: spinWheel 1.4s linear infinite; }
@keyframes spinWheel { to { transform: rotate(360deg); } }

/* Controls */
.fleet__controls {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
}
.fleet__btn {
  width: 60px; height: 60px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .3s ease;
}
.fleet__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(0) scale(1.05);
}
.fleet__progress {
  flex: 1; height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.fleet__progress span {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--accent), #ff4858);
  box-shadow: 0 0 10px var(--accent);
  transition: transform .9s cubic-bezier(.7,0,.2,1);
}

.section__count { font-variant-numeric: tabular-nums; }

@media (max-width: 1024px) {
  .fleet__slide { grid-template-columns: 1fr; }
  .fleet__bigtype { font-size: clamp(120px, 30vw, 240px); top: 20%; }
  .fleet__visual { min-height: 360px; }
}
@media (max-width: 640px) {
  .fleet__meta, .fleet__specs { grid-template-columns: repeat(2, 1fr); }
  .fleet__name { font-size: 56px; }
}

/* ============================================================
   ENHANCEMENTS · v2
   - real logo SVG in intro
   - laser scan-line
   - crosshair
   - magnetic buttons
   - nav phone
   - 4-slide fleet
   ============================================================ */

/* INTRO: real logo image + scan line ---------------------------- */
.intro__logo {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.intro__logo-frame {
  position: relative;
  width: clamp(240px, 50vw, 720px);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* start: hidden via clip, then sweep reveals from left to right */
  clip-path: inset(0 100% 0 0);
  animation: introLogoReveal 1.6s cubic-bezier(.7,0,.2,1) 1.0s forwards;
}
.intro__logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(227,6,19,.35));
}
.intro__logo-scan {
  position: absolute;
  top: -10%; bottom: -10%;
  left: 0; width: 4px;
  background: linear-gradient(180deg, transparent, var(--accent) 30%, #fff 50%, var(--accent) 70%, transparent);
  box-shadow: 0 0 20px var(--accent), 0 0 60px var(--accent), 0 0 120px var(--accent);
  opacity: 0;
  animation: introScan 1.6s cubic-bezier(.7,0,.2,1) 1.0s forwards;
  pointer-events: none;
}
@keyframes introLogoReveal {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes introScan {
  0%   { left: 0; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* hide the legacy text lockup, we use the real logo now */
.intro__logo-a, .intro__logo-b { display: none !important; }

/* CROSSHAIR markers around logo --------------------------------- */
.intro__crosshair {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(280px, 56vw, 800px);
  height: clamp(180px, 36vw, 480px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  animation: introCross .6s ease 2.0s forwards;
}
.intro__crosshair span {
  position: absolute;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.intro__crosshair-l { left: 0; top: 50%; width: 32px; height: 1px; transform: translateY(-50%); }
.intro__crosshair-r { right: 0; top: 50%; width: 32px; height: 1px; transform: translateY(-50%); }
.intro__crosshair-t { top: 0; left: 50%; width: 1px; height: 32px; transform: translateX(-50%); }
.intro__crosshair-b { bottom: 0; left: 50%; width: 1px; height: 32px; transform: translateX(-50%); }
@keyframes introCross { to { opacity: 1; } }

/* HUD enhancements ---------------------------------------------- */
.intro__hud {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  font-variant-numeric: tabular-nums;
}
.intro__hud-c {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--text-dim);
  text-align: center;
  text-transform: uppercase;
}
.intro__hud-l, .intro__hud-r { display: inline-flex; align-items: center; gap: 10px; }
.intro__hud-r { justify-self: end; }
.intro__hud-dot {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 12px #00ff88;
  animation: huddot 1s ease infinite;
}
@keyframes huddot { 50% { opacity: .35; } }
/* override the legacy ::before green dot (we use a real span now) */
.intro__hud-l::before { display: none !important; }

/* NAV: telephone CTA between logo and menu ---------------------- */
.nav__rail {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.nav__brand { grid-column: 1; }
.nav__phone {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text);
  padding: 8px 14px;
  border: 1px solid var(--border);
  transition: all var(--t-fast);
  font-variant-numeric: tabular-nums;
}
.nav__phone:hover { border-color: var(--accent); color: var(--accent); }
.nav__menu-btn { grid-column: 3; }
@media (max-width: 760px) {
  .nav__phone span { display: none; }
  .nav__phone { padding: 8px; }
}
@media (max-width: 480px) {
  .nav__phone { display: none; }
}

/* MAGNETIC button helper (JS sets transform) -------------------- */
[data-magnetic] {
  will-change: transform;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
[data-magnetic].is-magnetic-out {
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

/* FLEET: support 4 slides (track is 400% wide) ------------------ */
.fleet__track { width: 400% !important; }
.fleet__slide { width: 25% !important; }
.fleet__progress span { width: 25% !important; }

/* HERO REVEAL prep (GSAP overrides) ----------------------------- */
.hero__inner > * { will-change: transform, opacity; }
.hero__title .hero__word {
  display: inline-block;
  overflow: visible;
}

/* CURSOR refinement --------------------------------------------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .25s ease;
}
.cursor.is-visible { opacity: 1; }
.cursor span {
  display: block;
  width: 100%; height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease, border-color .25s ease;
}
.cursor.is-hot span {
  transform: scale(2.4);
  background: var(--accent);
  border-color: var(--accent);
}
@media (hover: none) { .cursor { display: none; } }

/* Lenis smooth-scroll setup ------------------------------------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* Reveal: a more cinematic clip-up ------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: shorter intro logo */
@media (max-width: 640px) {
  .intro__logo-frame { width: 80vw; }
  .intro__crosshair { width: 90vw; height: 50vw; }
}

/* ============================================================
   v3 · GRAULICH + REAL CAR PHOTOS + INTRO TEXT LOGO
   ============================================================ */

/* TOKEN OVERRIDES ----------------------------------------------- */
:root {
  --bg: #14161a;          /* concrete-dark grey */
  --surface: #1c1f24;
  --surface-2: #23262d;
  --card: #1f2228;
  --card-hover: #282b32;
  --border: #2a2d34;
  --border-strong: #3a3d44;
  --text-faint: #3a3d44;
}
body { background: var(--bg); }
html { background: var(--bg); }

/* HERO bg adjustment for grey base ------------------------------ */
.hero__bg {
  background:
    radial-gradient(ellipse at 18% 75%, rgba(227,6,19,.20), transparent 55%),
    radial-gradient(ellipse at 78% 10%, rgba(120,130,150,.10), transparent 60%),
    var(--bg) !important;
}

/* INTRO: stays black for cinematic contrast --------------------- */
.intro { background: #000; }
.intro__logo-frame--text {
  position: relative;
  width: clamp(280px, 60vw, 900px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  /* logo wipes in from left as the laser scans */
  clip-path: inset(0 100% 0 0);
  animation: introLogoReveal 1.6s cubic-bezier(.7,0,.2,1) 1.0s forwards;
  aspect-ratio: auto !important;
}
.intro__logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  filter: drop-shadow(0 0 28px rgba(227,6,19,.4));
}
.intro__logo-frame--text .intro__logo-a {
  color: var(--accent) !important;
  display: inline-block !important;
  transform: none !important;
}
.intro__logo-frame--text .intro__logo-b {
  color: #fff !important;
  display: inline-block !important;
  transform: none !important;
}
.intro__logo-bornheim {
  font-family: var(--body);
  font-size: clamp(11px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: .55em;
  color: #fff;
  margin-top: 6px;
  align-self: end;
  text-transform: uppercase;
  padding-right: clamp(20px, 5vw, 80px);
  /* push to align under "WERK" right side */
  margin-left: auto;
}
.intro__logo-frame .intro__logo-scan {
  height: 100%;
  top: 0;
  bottom: auto;
}

/* FLEET: photo treatment + cinematic per-slide tone ------------- */
.fleet__visual { position: relative; overflow: visible; min-height: 520px; }
.fleet__photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: grid;
  place-items: center;
  z-index: 2;
  perspective: 1200px;
}
.fleet__photo img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55)) drop-shadow(0 0 80px rgba(0,0,0,.3));
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
  transform: translateZ(0) scale(1);
  z-index: 2;
}
.fleet__photo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, rgba(227,6,19,.28), transparent 60%);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.fleet__slide[data-active="true"] .fleet__photo-glow { opacity: 1; }

/* per-slide tone ------------------------------------------------ */
.fleet__slide[data-tone="orange"] .fleet__photo-glow {
  background: radial-gradient(circle at 50% 55%, rgba(255,140,30,.42), transparent 62%);
}
.fleet__slide[data-tone="dark"] .fleet__photo-glow {
  background: radial-gradient(circle at 50% 55%, rgba(180,200,255,.18), transparent 62%);
}

/* per-slide stage atmosphere ------------------------------------ */
.fleet__stage {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.025), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #0e1014 50%, var(--bg) 100%);
  transition: background .9s ease;
}

/* fleet hover: subtle scale ------------------------------------- */
.fleet__photo:hover img {
  transform: translateZ(0) scale(1.02) rotateY(-1deg);
}

/* Bigger price typography --------------------------------------- */
.fleet__price-value {
  font-size: clamp(48px, 5vw, 88px) !important;
  letter-spacing: -.02em !important;
  line-height: 1 !important;
}
.fleet__price {
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 24px 0;
}

/* Bigger model name --------------------------------------------- */
.fleet__name {
  font-size: clamp(54px, 6.5vw, 112px) !important;
  line-height: .9 !important;
  letter-spacing: -.025em !important;
}
.fleet__brand { color: var(--accent) !important; }

/* Big background type behind car -------------------------------- */
.fleet__bigtype {
  font-size: clamp(140px, 22vw, 360px) !important;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  color: transparent;
  letter-spacing: -.04em !important;
  z-index: 1;
  white-space: nowrap;
  user-select: none;
}

/* Fleet stage cinematic frame ----------------------------------- */
.fleet__stage::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--accent), transparent);
  transform: translateX(-50%);
  z-index: 5;
  opacity: .8;
}

/* Bring fleet pricing/data style up to premium ------------------ */
.fleet__data { padding-right: clamp(24px, 3vw, 48px); }
.fleet__meta div span { font-size: 9px; letter-spacing: .35em; }
.fleet__meta div strong { font-size: 16px; font-weight: 600; }
.fleet__specs {
  border-top: 1px solid var(--border-strong);
  padding-top: 22px;
  margin-top: 8px;
}
.fleet__specs div span { font-size: 9px; letter-spacing: .35em; color: var(--text-dim); }
.fleet__specs div strong { color: var(--accent) !important; font-size: 22px; font-weight: 700; }

/* Fleet btn glow on active slide -------------------------------- */
.fleet__slide[data-active="true"] .btn--primary { box-shadow: 0 0 30px rgba(227,6,19,.35); }

/* Container card-like surfaces, slightly above bg --------------- */
.module, .vehicle, .partner-card, .member, .services__block { background: var(--surface) !important; }
.module:hover, .vehicle:hover, .partner-card:hover, .member:hover { background: var(--card-hover) !important; }
.kontakt__info, .kontakt__map { background: var(--surface) !important; }
.manufaktur__note { background: var(--surface-2) !important; }

/* Footer slightly darker than body ------------------------------ */
.footer { background: #0d0e11; }

/* Marquee: subtle on grey --------------------------------------- */
.marquee {
  background: var(--surface);
  border-top-color: var(--border);
  border-bottom-color: var(--border);
}
.marquee::before { background: linear-gradient(to right, var(--surface), transparent); }
.marquee::after { background: linear-gradient(to left, var(--surface), transparent); }

/* Manufaktur big bg label tone --------------------------------- */
.hero__brand { color: rgba(255,255,255,.03) !important; }
.footer__big { color: rgba(255,255,255,.03) !important; }

/* Smooth slide transition between data + visual ----------------- */
.fleet__slide { transition: opacity .6s ease; }
.fleet__slide:not([data-active="true"]) { opacity: .35; }

/* Mobile fleet adjustments -------------------------------------- */
@media (max-width: 1024px) {
  .fleet__visual { min-height: 360px; }
  .fleet__photo img { max-height: 360px; }
  .fleet__price-value { font-size: clamp(44px, 8vw, 64px) !important; }
}
@media (max-width: 640px) {
  .fleet__visual { min-height: 280px; }
  .fleet__photo img { max-height: 280px; }
}


/* ============================================================
   v4 · BAI JAMJUREE · HERO VIDEO · FLEET MANUAL · BOOKING BLOCK
   ============================================================ */

/* Display font swap to Bai Jamjuree --------------------------- */
:root {
  --display: "Bai Jamjuree", "Inter", -apple-system, sans-serif;
}
.display, h2.display, .hero__title, .hero__name, .fleet__name,
.module__title, .vehicle__title, .team__name, .partner-card__name,
.member__name, .footer__big, .hero__brand,
.intro__logo-text, .overlay__nav a {
  font-family: var(--display) !important;
}
.fleet__price-value, .booking__title, .hero__claim-line,
.fleet__brand, .fleet__variant, .fleet__price-label,
.eyebrow, .kicker, .nav__menu-btn, .footer__h, .info-block__label,
.section__count, .partner-card__role, .partner-card__id,
.fleet__tag, .hud-block__label, .vehicle__num, .module__num,
.team__num, .checks__num, .services__num, .vehicle__category,
.member__index, .member__role {
  font-family: "Bai Jamjuree", "Inter", sans-serif !important;
}
/* keep Inter for body copy & menus */
body { font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; }
.intro__logo-sub, .intro__hud-l, .intro__hud-c, .intro__hud-r,
.hero__lead, .hero__coords, .hud-block__value, .module__text,
.vehicle__text, .team__text, .member__text, .partner-card__desc,
.section__lead, .manifest__copy, .manifest__lead,
.kontakt__map-tag, .booking__lead, .info-block__value,
.fleet__price-sub, .module__specs div span, .module__specs div strong,
.fleet__meta div span, .fleet__meta div strong,
.fleet__specs div span, .fleet__specs div strong,
.vehicle__stats div span, .vehicle__stats div strong,
.member__sig, .footer__cols a, .footer__cols span,
.footer__bottom, .footer__claim {
  font-family: "Inter", -apple-system, sans-serif !important;
}

/* HERO -------------------------------------------------------- */
.hero--video { padding: 96px var(--pad) 80px; min-height: 100vh; min-height: 100dvh; overflow: hidden; }
.hero--video .hero__bg, .hero__hex, .hero__grid, .hero__glow { display: none !important; }
.hero__media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  filter: brightness(.45) contrast(1.05) saturate(.95);
  z-index: 0;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(227,6,19,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 35%, rgba(20,22,26,.85) 80%, var(--bg) 100%);
  z-index: 1;
}
.hero--video .hero__noise {
  position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .04; pointer-events: none;
}
.hero__centerstage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(20px, 4vw, 48px) 0;
}
.hero__logo {
  width: clamp(280px, 60vw, 920px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(227,6,19,.3)) drop-shadow(0 0 120px rgba(0,0,0,.6));
  user-select: none;
  pointer-events: none;
}
.hero__claim {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.hero__claim-line {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 38px);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}
.hero__claim-line--small {
  font-weight: 400;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: .35em;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.btn--xl {
  padding: 22px 40px !important;
  font-size: 13px !important;
  letter-spacing: .28em !important;
}
.hero__hud {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  padding-top: 32px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.hud-block__phone { color: var(--accent) !important; font-variant-numeric: tabular-nums; }
.hud-block__phone:hover { color: var(--accent-2) !important; }

/* hide legacy hero brand watermark on video hero --------------- */
.hero--video .hero__brand { display: none; }

/* INTRO logo: keep AUTO red + WERK white but Bai Jamjuree ----- */
.intro__logo-text { font-family: "Bai Jamjuree", sans-serif !important; font-weight: 700; }

/* FLEET v4 — manual, info upfront, photo top ------------------ */
.fleet__stage { padding: 0; }
.fleet__slide {
  display: flex !important;
  flex-direction: column;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 64px);
  width: 50% !important; /* 2-slide track at 200% */
}
.fleet__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.fleet__head .fleet__tag { margin-bottom: 4px; }
.fleet__head .fleet__brand {
  font-family: "Bai Jamjuree", sans-serif !important;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4em;
}
.fleet__head .fleet__name {
  font-family: var(--display) !important;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin: 0;
}
.fleet__head .fleet__variant {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.fleet__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.fleet__photo {
  position: relative;
  min-height: clamp(320px, 38vw, 520px);
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.fleet__photo img {
  width: 100%;
  height: auto;
  max-height: clamp(320px, 40vw, 540px);
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.55));
  z-index: 2;
  position: relative;
}
.fleet__photo .fleet__bigtype {
  position: absolute;
  inset: auto 0 -8% 0;
  text-align: center;
  font-family: var(--display) !important;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  color: transparent;
  letter-spacing: -.04em;
  z-index: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.fleet__sidecar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px;
}
.fleet__price {
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 20px 0;
  display: grid;
  gap: 4px;
}
.fleet__price-label, .fleet__price-sub {
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.fleet__price-value {
  font-family: var(--display) !important;
  font-size: clamp(36px, 4vw, 60px) !important;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1;
}
.fleet__specs, .fleet__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.fleet__specs > div, .fleet__meta > div {
  background: var(--surface);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fleet__specs div span, .fleet__meta div span {
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.fleet__specs div strong { color: var(--accent) !important; font-size: 18px; font-weight: 700; }
.fleet__meta div strong { color: var(--text); font-size: 14px; font-weight: 600; }
.fleet__sidecar .fleet__actions { display: flex; flex-direction: column; gap: 10px; }
.fleet__sidecar .btn { width: 100%; justify-content: center; }
.fleet__btn-next { font-family: "Bai Jamjuree", sans-serif !important; }

/* track: 2 slides, 200% wide --------------------------------- */
.fleet__track { width: 200% !important; }
.fleet__progress span { width: 50% !important; }

/* visible state ---------------------------------------------- */
.fleet__slide:not([data-active="true"]) { opacity: 1; }
.fleet__slide { transition: transform .9s cubic-bezier(.7,0,.2,1); }

/* big controls bar at the bottom ----------------------------- */
.fleet__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  height: 60px;
  width: auto;
  min-width: 100px;
}
.fleet__btn-label { font-family: "Bai Jamjuree", sans-serif; font-weight: 600; letter-spacing: .25em; font-size: 11px; }

/* mobile fleet ----------------------------------------------- */
@media (max-width: 1024px) {
  .fleet__grid { grid-template-columns: 1fr; }
  .fleet__photo .fleet__bigtype { font-size: clamp(80px, 22vw, 140px); }
}

/* BOOKING block --------------------------------------------- */
.booking {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(227,6,19,.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(180,200,255,.04), transparent 60%),
    linear-gradient(180deg, #0d0e11 0%, #131418 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.booking__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 80px);
  border: 1px solid rgba(227,6,19,.25);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(227,6,19,.10), transparent 60%),
    rgba(255,255,255,.015);
  backdrop-filter: blur(10px);
}
.booking__corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1.5px solid var(--accent);
}
.booking__corner--tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.booking__corner--tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.booking__corner--bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.booking__corner--br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.booking__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 80px);
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
  display: grid;
  gap: 4px;
}
.booking__lead {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}
.booking__hud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
}
.booking__hud span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.booking__hud strong {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* logo nav: bigger, sharper --------------------------------- */
.logo .logo__a { font-family: "Bai Jamjuree", sans-serif !important; font-weight: 700; }
.logo .logo__b { font-family: "Bai Jamjuree", sans-serif !important; font-weight: 700; }
.logo .logo__sub { font-family: "Bai Jamjuree", sans-serif !important; }

/* mobile hero -------------------------------------------------- */
@media (max-width: 720px) {
  .hero__logo { width: 88vw; }
  .hero__claim-line { font-size: 22px; }
  .hero__hud { padding-top: 20px; gap: 16px 28px; }
  .booking__title { font-size: clamp(28px, 8vw, 44px); }
  .booking__inner { padding: 36px 22px; }
}

/* ============================================================
   v5 · ANIMATION SNIPPETS + SIDE-INDICATOR
   ============================================================ */

/* ---------- Word-Reveal Mask (Snippet 2) ---------- */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.05;
  padding-bottom: .12em;
  margin-bottom: -.12em;
}
.word-mask > .word-inner {
  display: inline-block;
  will-change: transform, opacity;
}
.word-mask + .word-mask { margin-left: .25em; }

/* ---------- Ken-Burns (Snippet 3) ---------- */
@keyframes kenburns-photo {
  0%   { transform: translate3d(0, 0, 0) scale(1.00); }
  50%  { transform: translate3d(-1.2%, -0.8%, 0) scale(1.045); }
  100% { transform: translate3d(0.8%, 0.6%, 0) scale(1.02); }
}
@keyframes kenburns-map {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  50%  { transform: scale(1.07) translate3d(-0.6%, -0.4%, 0); }
  100% { transform: scale(1.05) translate3d(0.4%, 0.3%, 0); }
}
.fleet__photo img {
  animation: kenburns-photo 22s ease-in-out infinite alternate;
  will-change: transform;
}
.fleet__photo:hover img { animation-play-state: paused; }
.kontakt__map iframe {
  animation: kenburns-map 28s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: reduce) {
  .fleet__photo img,
  .kontakt__map iframe { animation: none; }
}

/* ---------- Marquee JS-driven (Snippet 4) ---------- */
.marquee__track {
  animation: none !important; /* JS now drives it */
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { transform: none !important; }
}

/* ---------- Tilt cards (Snippet 5) ---------- */
.module, .vehicle, .partner-card, .member {
  transform-style: preserve-3d;
  will-change: transform;
}
.module > *, .vehicle > *, .partner-card > *, .member > * {
  transform: translateZ(0);
}

/* ---------- Sticky/Pinned Heads (Snippet 6) ---------- */
.section__head { position: relative; }
.section__head.is-pinned {
  z-index: 5;
}
.section__head.is-pinned::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: .35;
  pointer-events: none;
}

/* ============================================================
   SIDE-INDICATOR / Section-Tracker (custom)
   ============================================================ */
.side-indicator {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
  font-family: "Bai Jamjuree", sans-serif;
  opacity: 0;
  transition: opacity .6s ease;
}
.side-indicator.is-ready { opacity: 1; }
.side-indicator__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.side-indicator__list li { display: block; }
.side-indicator__list a {
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
}
.side-indicator__num {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  width: 22px;
  text-align: right;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .35s ease, transform .35s ease, color .35s ease;
}
.side-indicator__name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .4s ease, transform .4s ease, color .35s ease;
}
.side-indicator__dot {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid var(--text-dim);
  border-radius: 50%;
  position: relative;
  transition: all .4s cubic-bezier(.7,0,.2,1);
}
.side-indicator__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color .4s ease;
}
.side-indicator__list a:hover .side-indicator__num,
.side-indicator__list a:hover .side-indicator__name {
  opacity: .6;
  transform: translateX(0);
}
.side-indicator__list a.is-current .side-indicator__num,
.side-indicator__list a.is-current .side-indicator__name {
  opacity: 1;
  transform: translateX(0);
  color: var(--text);
}
.side-indicator__list a.is-current .side-indicator__num { color: var(--accent); }
.side-indicator__list a.is-current .side-indicator__dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.side-indicator__list a.is-current .side-indicator__dot::after {
  border-color: rgba(227,6,19,.45);
}

.side-indicator__progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.05);
  z-index: 110;
  pointer-events: none;
}
.side-indicator__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent);
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: transform .15s linear;
}

.side-chapter {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 80;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Bai Jamjuree", sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
}
.side-chapter.is-ready { opacity: 1; transform: translateY(0); }
.side-chapter__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.side-chapter__name {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.side-chapter__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.side-chapter__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--text);
  text-transform: uppercase;
}

/* hide on mobile, redundant with menu button */
@media (max-width: 880px) {
  .side-indicator { display: none; }
  .side-chapter   { display: none; }
}

/* hide while overlay menu open */
.overlay.is-open ~ .side-indicator,
.overlay.is-open ~ .side-chapter { opacity: 0 !important; transition: opacity .2s ease; }

/* ============================================================
   v6 · BUG-FIX BATCH (post 3-agent audit)
   ============================================================ */

/* Magnetic via CSS-Variablen (kein style.transform-conflict) -- */
[data-magnetic] {
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
[data-magnetic].is-magnetic-out {
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

/* Cursor-Fix: exclusion blend + sichtbarer hot-state ----------- */
.cursor { mix-blend-mode: exclusion; }
.cursor.is-hot { mix-blend-mode: normal; }
.cursor.is-hot span {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,.4);
}

/* Hero fallback: poster als CSS-bg, Filter NUR auf Video ------- */
.hero__media {
  background: linear-gradient(rgba(20,22,26,.6), rgba(20,22,26,.85)),
              url(/img/video/hero-poster.jpg) center/cover #14161a;
}
.hero__video {
  filter: brightness(.55) contrast(1.05) saturate(.95);
}

/* Side-Chapter ab 1180px sichtbar (sonst Tablet-Overlap) ------- */
@media (max-width: 1180px) {
  .side-indicator, .side-chapter { display: none !important; }
}
@media (min-width: 1181px) {
  .side-indicator, .side-chapter { display: flex; }
}

/* Intro: while running it should accept clicks (durch-clicken sperren) */
.intro { pointer-events: auto; }
.intro--done { pointer-events: none; display: none; }

/* :focus-visible - Tastatur-Navigation sichtbar (WCAG 2.4.7) --- */
:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
* { -webkit-tap-highlight-color: rgba(227,6,19,.18); }

/* Counter: tabular-nums damit Zahlen nicht zucken ------------- */
.fleet__specs strong, [data-counter], .fleet__price-value {
  font-variant-numeric: tabular-nums;
}

/* Slide-Active-Inactive: kein opacity-Flash mehr ------------- */
.fleet__slide:not([data-active="true"]) { opacity: 1 !important; }

/* HUD-Block: Telefon mehr Atmung ----------------------------- */
.hud-block__phone { letter-spacing: .15em; font-weight: 700; }

/* Trust badge for fleet slides ------------------------------- */
.fleet__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,.02);
  padding: 8px 14px;
  margin-bottom: 10px;
}
.fleet__trust::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* History/Carfax disclosure block per slide ------------------ */
.fleet__history {
  margin-top: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 6px;
}
.fleet__history > div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.fleet__history > div span:first-child {
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 9px;
}
.fleet__history > div span:last-child { color: var(--text); font-weight: 500; }

/* EU-Lieferung-Block ---------------------------------------- */
.export {
  margin: 80px auto 0;
  max-width: var(--container);
  padding: 0 var(--pad);
}
.export__inner {
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(227,6,19,.06), transparent 60%),
    var(--surface);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .export__inner { grid-template-columns: 1fr; } }
.export h3 {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.export__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.export__list li {
  background: var(--surface);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}
.export__list li strong {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.export__list li span { color: var(--text); }

/* Trust-Block in partner section --------------------------- */
.partner-card a, a.partner-card {
  text-decoration: none;
  display: block;
  height: 100%;
}
.partner-card[data-link]:hover { background: var(--card-hover) !important; cursor: pointer; }

/* HUD-Reduktion: nur 2 Hud-Blocks im Hero --------------- */
.hero__hud--lite {
  gap: clamp(20px, 3vw, 48px);
}

/* ============================================================
   v7 · SHOWROOM + GUTACHTENfit-TRUST + STANDORT-PHOTOS
   ============================================================ */

/* Manifest strip (Eröffnungs-Bild als Vollbreit-Übergang) ---- */
.manifest__strip {
  margin: clamp(48px, 6vw, 88px) 0 0;
  position: relative;
  overflow: hidden;
}
.manifest__strip img {
  width: 100%;
  height: clamp(280px, 38vw, 460px);
  object-fit: cover;
  object-position: center 60%;
  display: block;
  filter: brightness(.78) contrast(1.05) saturate(.95);
}
.manifest__strip-tag {
  position: absolute;
  bottom: 18px; left: clamp(20px, 4vw, 40px);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .35em;
  color: #fff;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* SHOWROOM-SECTION (Drohne Innen + Lounge) ------------------- */
.showroom-sec__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 32px;
}
@media (max-width: 880px) { .showroom-sec__grid { grid-template-columns: 1fr; } }
.showroom-sec__main, .showroom-sec__side {
  margin: 0;
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.showroom-sec__main img, .showroom-sec__side img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.showroom-sec__main img { min-height: clamp(360px, 48vw, 620px); }
.showroom-sec__side img { min-height: clamp(280px, 38vw, 620px); object-position: center 35%; }
.showroom-sec__main:hover img,
.showroom-sec__side:hover img { transform: scale(1.03); }
.showroom-sec__main figcaption,
.showroom-sec__side figcaption {
  position: absolute;
  left: 18px; bottom: 14px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.6);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.08);
}
.showroom-sec__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: 0;
}
@media (max-width: 720px) { .showroom-sec__stats { grid-template-columns: repeat(2, 1fr); } }
.showroom-sec__stats > div {
  background: var(--surface);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.showroom-sec__stats > div span {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.showroom-sec__stats > div strong {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--text);
}

/* GEPRÜFT (GUTACHTENfit Trust-Section) ---------------------- */
.geprueft {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(227,6,19,.06), transparent 55%),
    var(--bg);
}
.geprueft__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 8px;
}
@media (max-width: 880px) { .geprueft__steps { grid-template-columns: 1fr; } }
.geprueft__step {
  background: var(--surface);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background var(--t-med);
}
.geprueft__step:hover { background: var(--card-hover); }
.geprueft__num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: .25;
  letter-spacing: -.02em;
}
.geprueft__step h3 {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
}
.geprueft__step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Split-Panel: Was wird geprüft + Partner-Card */
.geprueft__split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 1024px) { .geprueft__split { grid-template-columns: 1fr; } }

.geprueft__check {
  background: var(--surface);
  padding: clamp(28px, 3.5vw, 48px);
}
.geprueft__check .eyebrow { margin-bottom: 22px; }
.geprueft__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.geprueft__list li {
  background: var(--surface-2);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: baseline;
}
@media (max-width: 720px) { .geprueft__list li { grid-template-columns: 1fr; gap: 4px; } }
.geprueft__list li strong {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text);
}
.geprueft__list li span {
  font-size: 14px;
  color: var(--text-muted);
}

.geprueft__partner {
  background:
    linear-gradient(160deg, rgba(227,6,19,.10), transparent 70%),
    var(--surface-2);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 2px solid var(--accent);
}
.geprueft__partner-head { display: grid; gap: 6px; }
.geprueft__partner-label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.geprueft__partner-name {
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.geprueft__partner-name::first-letter,
.geprueft__partner-name { /* "GUTACHTENfit" — fit-Suffix optisch unterscheiden */ }
.geprueft__partner-sub {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.geprueft__trust {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 1px;
  background: var(--border);
}
.geprueft__trust li {
  background: rgba(0,0,0,.18);
  padding: 14px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
}
.geprueft__trust li strong {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
}
.geprueft__trust li span {
  font-size: 13px;
  color: var(--text-muted);
}

.geprueft__note {
  margin-top: 36px;
  padding: 22px 26px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,.015);
  font-style: italic;
}

/* Kontakt-Map+Photo Combo ----------------------------------- */
.kontakt__map--with-photo {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  position: relative;
  min-height: 480px;
}
.kontakt__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.kontakt__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 240px;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.kontakt__photo:hover img { transform: scale(1.025); }
.kontakt__photo figcaption {
  position: absolute;
  bottom: 12px; left: 16px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.6);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.08);
}
.kontakt__map-frame {
  position: relative;
  background: var(--surface);
  min-height: 240px;
}
.kontakt__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.4);
}
.kontakt__map-frame .kontakt__map-tag {
  position: absolute;
  top: 12px; left: 16px;
  z-index: 2;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
}

/* ============================================================
   v8 · CINEMATIC HERO + SECTION POLISH + MICRO ANIMATIONS
   ============================================================ */

/* HERO v8 — cinematic redesign ------------------------------- */
.hero--cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero--cinematic .hero__inner {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(120px, 14vh, 180px) clamp(20px, 4vw, 56px) clamp(120px, 14vh, 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 4vw, 48px);
}
.hero--cinematic .hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.hero--cinematic .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.42) contrast(1.18) saturate(1.1) sepia(.10);
  transform: scale(1.04);
  animation: heroDriftZoom 30s ease-in-out infinite alternate;
}
@keyframes heroDriftZoom {
  0%   { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.10) translate3d(-1.2%, -0.6%, 0); }
}
.hero--cinematic .hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(227,6,19,.22), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 30%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.92) 100%);
  z-index: 2;
}
.hero--cinematic .hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.hero--cinematic .hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/></svg>");
  opacity: .055;
  z-index: 4;
  pointer-events: none;
  animation: grainShift 6s steps(8) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-2%,1%); }
  40%  { transform: translate(1%,-2%); }
  60%  { transform: translate(-1%,2%); }
  80%  { transform: translate(2%,-1%); }
  100% { transform: translate(0,0); }
}

/* Letterbox bars */
.hero__letterbox {
  position: absolute;
  left: 0; right: 0;
  height: clamp(56px, 7vh, 96px);
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to bottom, #000, rgba(0,0,0,0));
}
.hero__letterbox--top { top: 0; }
.hero__letterbox--bottom { bottom: 0; transform: scaleY(-1); }

/* Top bar */
.hero__topbar {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  left: 0; right: 0;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 56px);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text);
}
.hero__topbar-est { color: var(--text-muted); }
.hero__topbar-live { display: inline-flex; align-items: center; gap: 8px; font-variant-numeric: tabular-nums; }
.hero__topbar-dot {
  width: 7px; height: 7px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 1.6s ease infinite;
}
.hero__topbar-coords { color: var(--text-muted); font-variant-numeric: tabular-nums; }
@media (max-width: 720px) {
  .hero__topbar { font-size: 9px; }
  .hero__topbar-est, .hero__topbar-coords { display: none; }
  .hero__topbar { justify-content: center; }
}

/* Logo wrap with rings */
.hero__logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero--cinematic .hero__logo {
  position: relative;
  z-index: 2;
  width: clamp(280px, 52vw, 780px);
  height: auto;
  filter: drop-shadow(0 0 70px rgba(227,6,19,.42)) drop-shadow(0 0 140px rgba(0,0,0,.7));
  user-select: none;
  pointer-events: none;
}
.hero__rings {
  position: absolute;
  inset: -12% -8%;
  z-index: 1;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.hero__rings span {
  position: absolute;
  border: 1px solid rgba(227,6,19,.18);
  border-radius: 50%;
  animation: ringPulse 6s cubic-bezier(.7,0,.2,1) infinite;
  width: 100%; height: 60%;
  aspect-ratio: 2/1;
}
.hero__rings span:nth-child(1) { animation-delay: 0s;   width:  90%; height: 54%; }
.hero__rings span:nth-child(2) { animation-delay: 1.6s; width: 110%; height: 64%; border-color: rgba(227,6,19,.10); }
.hero__rings span:nth-child(3) { animation-delay: 3.2s; width: 130%; height: 74%; border-color: rgba(227,6,19,.06); }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: .35; }
}

/* Headline stack */
.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero__headline-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__headline-bar { width: 24px; height: 1px; background: var(--accent); display: inline-block; }
.hero__headline-main {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 72px);
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  color: var(--text);
}
.hero__headline-main .hero__line { display: inline-block; }
.hero__line--stroke {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent !important;
}

/* Hero actions */
.hero--cinematic .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* Live Showroom Ticker (bottom strip) */
.hero__ticker {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 clamp(20px, 4vw, 56px) clamp(28px, 4vh, 48px);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text);
}
.hero__ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  background: rgba(0,0,0,.55);
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: 10px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-right: 18px;
  flex-shrink: 0;
}
.hero__ticker-track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__ticker-track > * { flex-shrink: 0; }
.hero__ticker-track a { color: var(--text); transition: color .25s; }
.hero__ticker-track a:hover { color: var(--accent); }
.hero__ticker-brand { color: var(--accent); font-weight: 700; letter-spacing: .25em; margin-right: 8px; }
.hero__ticker-price { color: var(--text-muted); font-variant-numeric: tabular-nums; font-weight: 500; }
.hero__ticker-sep { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; opacity: .8; }
.hero__ticker-meta { color: var(--text-muted); font-weight: 400; letter-spacing: .1em; text-transform: uppercase; font-size: 11px; }
@media (max-width: 720px) {
  .hero__ticker { padding-bottom: 80px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__ticker-track { font-size: 11px; gap: 12px; flex-wrap: wrap; white-space: normal; }
  .hero__ticker-meta { display: none; }
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 96px;
  right: clamp(20px, 4vw, 56px);
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  color: var(--text-muted);
  text-transform: uppercase;
  pointer-events: auto;
  transition: color .3s;
}
.hero__scroll:hover { color: var(--accent); }
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 14px;
  background: var(--text);
  animation: scrollDot 2.2s cubic-bezier(.7,0,.2,1) infinite;
}
@keyframes scrollDot {
  0%   { top: -14px; opacity: 0; }
  20%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 60px; opacity: 0; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
}

/* Hide legacy hero elements that we're not using anymore */
.hero--cinematic .hero__chrome,
.hero--cinematic .hero__brand,
.hero--cinematic .hero__top,
.hero--cinematic .hero__hud,
.hero--cinematic .hero__claim,
.hero--cinematic .hero__bg,
.hero--cinematic .hero__corner { display: none !important; }

/* ============================================================
   SECTION-POLISH: subtle dividers + bg shifts
   ============================================================ */
.section,
.manifest,
.geprueft,
.showroom-sec,
.fleet,
.fahrzeuge,
.team,
.partner,
.kontakt {
  position: relative;
}
.section::before,
.manifest::before,
.geprueft::before,
.showroom-sec::before,
.fleet::before,
.fahrzeuge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(227,6,19,.25), transparent);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  animation: dividerFade 1.2s ease forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 30%;
}
@keyframes dividerFade {
  0%   { opacity: 0; height: 20px; }
  100% { opacity: 1; height: 80px; }
}

/* Soft section background tint shifts (very subtle) */
.manifest    { background: linear-gradient(180deg, var(--bg) 0%, #16181c 100%); }
.showroom-sec { background: #16181c; }
.section.manufaktur { background: linear-gradient(180deg, #16181c 0%, var(--bg) 100%); }
.fleet        { background: var(--bg); }
.geprueft     { background: linear-gradient(180deg, var(--bg) 0%, #131519 100%); }
.fahrzeuge    { background: #131519; }
.team         { background: linear-gradient(180deg, #131519 0%, var(--bg) 100%); }

/* ============================================================
   MICRO-ANIMATIONS
   ============================================================ */

/* Card hover-glow on premium cards (red border highlight) */
.module, .vehicle, .partner-card, .member, .geprueft__step {
  position: relative;
}
.module::after, .vehicle::after, .partner-card::after, .member::after, .geprueft__step::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color .35s ease, box-shadow .35s ease;
  z-index: 4;
}
.module:hover::after, .vehicle:hover::after, .partner-card:hover::after,
.member:hover::after, .geprueft__step:hover::after {
  border-color: rgba(227,6,19,.4);
  box-shadow: inset 0 0 32px rgba(227,6,19,.06);
}

/* Image reveal on showroom + standort photos (clip-path) */
.showroom-sec__main, .showroom-sec__side,
.kontakt__photo, .manifest__strip {
  --reveal-progress: 1;
  clip-path: inset(0 calc((1 - var(--reveal-progress)) * 100%) 0 0);
  transition: clip-path 1.4s cubic-bezier(.7,0,.2,1);
}
.showroom-sec__main.is-revealed, .showroom-sec__side.is-revealed,
.kontakt__photo.is-revealed, .manifest__strip.is-revealed {
  --reveal-progress: 1;
  clip-path: inset(0 0 0 0);
}
.showroom-sec__main:not(.is-revealed),
.showroom-sec__side:not(.is-revealed),
.kontakt__photo:not(.is-revealed),
.manifest__strip:not(.is-revealed) { clip-path: inset(0 100% 0 0); }

/* Hero micro: actions extra glow on hover */
.hero--cinematic .btn--primary:hover {
  box-shadow: 0 0 40px rgba(227,6,19,.55), 0 0 80px rgba(227,6,19,.25);
}

/* GUTACHTENfit partner-card pulse highlight */
.geprueft__partner {
  position: relative;
  overflow: hidden;
}
.geprueft__partner::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  pointer-events: none;
  opacity: .6;
}
.geprueft__partner::after {
  content: "";
  position: absolute;
  bottom: -2px; right: -2px;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  pointer-events: none;
  opacity: .6;
}

/* Pulse on .dot elements globally */
.dot {
  animation: pulse 2s ease infinite;
}

/* Smoothing für fleet-specs counter und prices --------------- */
.fleet__price-value { transition: color .35s; }
.fleet__slide[data-active="true"] .fleet__price-value { color: var(--text); }

/* Scroll progress in side-indicator stronger glow */
.side-indicator__progress span {
  background: linear-gradient(90deg, var(--accent), #ff5566 50%, var(--accent));
  background-size: 200% 100%;
  animation: progressGlow 3s ease infinite;
}
@keyframes progressGlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Mobile hero polish */
@media (max-width: 720px) {
  .hero--cinematic .hero__inner {
    padding: 100px 20px 200px;
    gap: 24px;
  }
  .hero--cinematic .hero__logo { width: 80vw; }
  .hero__rings { display: none; }
  .hero__letterbox { height: 40px; }
  .hero__headline-main { font-size: 26px; }
}

/* ============================================================
   v9 · BILDER PROMINENT — Editorial-Strip + Aerial-Galerie + Showroom-Triple
   ============================================================ */

/* EDITORIAL STRIP — voll-bleed Showroom-Hero unter Hero ------ */
.editorial-strip {
  position: relative;
  width: 100%;
  height: clamp(480px, 70vh, 760px);
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 0;
}
.editorial-strip__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.editorial-strip__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transform: scale(1.06);
  animation: editorialZoom 22s ease-in-out infinite alternate;
}
@keyframes editorialZoom {
  0%   { transform: scale(1.06) translate3d(0,0,0); }
  100% { transform: scale(1.14) translate3d(-1.5%, -.5%, 0); }
}
.editorial-strip__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 30%, rgba(0,0,0,.55) 80%),
    linear-gradient(180deg, rgba(20,22,26,.55) 0%, rgba(20,22,26,.30) 40%, rgba(20,22,26,.85) 100%);
  z-index: 2;
}
.editorial-strip__overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  color: var(--text);
}
.editorial-strip__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
}
.editorial-strip__bar { width: 32px; height: 1px; background: var(--accent); display: inline-block; }
.editorial-strip__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 120px);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.editorial-strip__title .text-stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.85);
  color: transparent;
}
.editorial-strip__meta {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 4vw, 56px);
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.editorial-strip__meta > div { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.editorial-strip__meta span {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.editorial-strip__meta strong {
  font-family: var(--display);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--text);
}
@media (max-width: 880px) {
  .editorial-strip { height: clamp(420px, 60vh, 560px); }
  .editorial-strip__meta { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* SHOWROOM-Section: 3-cell grid (main + side + bottom) ------ */
.showroom-sec__grid--triple {
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 1fr 0.6fr;
  grid-template-areas:
    "main side"
    "main bottom";
}
@media (max-width: 880px) {
  .showroom-sec__grid--triple {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "main" "side" "bottom";
  }
}
.showroom-sec__main { grid-area: main; }
.showroom-sec__side { grid-area: side; }
.showroom-sec__bottom { grid-area: bottom; margin: 0; position: relative; background: var(--surface); overflow: hidden; }
.showroom-sec__bottom img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  min-height: 260px;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.showroom-sec__bottom:hover img { transform: scale(1.04); }
.showroom-sec__bottom figcaption {
  position: absolute;
  left: 18px; bottom: 14px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.6);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.08);
}

/* MANIFEST-STRIP Bild größer, dramatischer ------------------ */
.manifest__strip { margin-top: clamp(56px, 8vw, 100px); }
.manifest__strip img {
  height: clamp(360px, 50vw, 580px);
  filter: brightness(.82) contrast(1.08) saturate(1.05);
  transform: scale(1.04);
  animation: editorialZoom 30s ease-in-out infinite alternate;
}
.manifest__strip-tag {
  font-size: 12px;
  letter-spacing: .4em;
  padding: 10px 18px;
  bottom: 24px;
  left: clamp(20px, 4vw, 56px);
}

/* AERIAL-GALERIE — Mosaic mit asymmetrischem Grid ----------- */
.gallery-aerial {
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 120px);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(227,6,19,.08), transparent 60%),
    var(--bg);
  position: relative;
}
.gallery-aerial__head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.gallery-aerial__head .eyebrow { justify-content: center; margin-bottom: 20px; }
.gallery-aerial__head .display { font-size: clamp(36px, 5vw, 88px); margin: 0 0 22px; }
.gallery-aerial__head .section__lead { max-width: 640px; margin: 0 auto; }

.gallery-aerial__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: clamp(280px, 40vw, 480px) clamp(220px, 30vw, 360px);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery-aerial__cell {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  grid-column: span 2;
}
.gallery-aerial__cell--big { grid-column: span 4; grid-row: span 1; }
.gallery-aerial__cell--wide { grid-column: span 4; }
.gallery-aerial__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .8s ease;
  filter: brightness(.85) saturate(.95);
}
.gallery-aerial__cell:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.05);
}
.gallery-aerial__cell figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.55);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gallery-aerial__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .gallery-aerial__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }
  .gallery-aerial__cell { grid-column: span 2; min-height: 220px; }
  .gallery-aerial__cell--big { grid-column: span 4; min-height: 320px; }
  .gallery-aerial__cell--wide { grid-column: span 4; min-height: 240px; }
}
@media (max-width: 640px) {
  .gallery-aerial__grid { grid-template-columns: 1fr; }
  .gallery-aerial__cell, .gallery-aerial__cell--big, .gallery-aerial__cell--wide { grid-column: span 1; min-height: 240px; }
}

/* Image-reveal extension — gallery cells reveal too --------- */
.gallery-aerial__cell:not(.is-revealed) { clip-path: inset(0 0 100% 0); }
.gallery-aerial__cell {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.4s cubic-bezier(.7,0,.2,1);
}
.gallery-aerial__cell.is-revealed { clip-path: inset(0 0 0 0); }

/* SHOWROOM Bilder größer + dramatischer ------------- */
.showroom-sec__main img { min-height: clamp(420px, 56vw, 720px); }
.showroom-sec__side img { min-height: clamp(280px, 32vw, 400px); }
.showroom-sec__bottom img { min-height: clamp(220px, 22vw, 280px); }

/* Manifest-Strip dramatic-tag */
.manifest__strip-tag {
  font-family: "Bai Jamjuree", sans-serif;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(227,6,19,.4);
}

/* ============================================================
   v10 · Team-Namen-Update, 6-Vehicles-Grid, 3-Services-Grid,
          Partner-Logos echte Bilder, 7 Partner statt 6
   ============================================================ */

/* Vehicles: 6 Kategorien → 3×2-Grid statt 4×1 */
.vehicles {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 1024px) {
  .vehicles { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .vehicles { grid-template-columns: 1fr !important; }
}

/* Services: 3 statt 2 */
.services--triple {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 1024px) {
  .services--triple { grid-template-columns: 1fr !important; }
}

/* Partner-Card mit Logo-Bild */
.partner-card {
  display: flex !important;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px !important;
}
.partner-card__logo {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6px;
}
.partner-card__logo img {
  max-height: 110px;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1) saturate(0.95);
  transition: filter .35s ease, transform .35s ease;
}
/* Santander: 5.8:1 Wortmarke — niedriger + breiter, damit Fläche optisch matched */
.partner-card__logo img[src*="santander"] {
  max-height: 64px;
  max-width: 280px;
}
.partner-card:hover .partner-card__logo img {
  filter: brightness(1.08) saturate(1.1);
  transform: scale(1.02);
}
.partner-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "Bai Jamjuree", sans-serif;
}
.partner-card__role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.partner-card__id {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.partner-card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -.005em;
  line-height: 1;
  color: var(--text);
}
.partner-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* 7 Partner: 4 oben, 3 unten (in 12-col Grid: 3-3-3-3 / dann 4-4-4) */
.partner__grid--seven {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 1px !important;
}
.partner__grid--seven > * {
  grid-column: span 3;
}
.partner__grid--seven > *:nth-child(5) { grid-column: span 4; }
.partner__grid--seven > *:nth-child(6) { grid-column: span 4; }
.partner__grid--seven > *:nth-child(7) { grid-column: span 4; }

@media (max-width: 1024px) {
  .partner__grid--seven { grid-template-columns: repeat(2, 1fr) !important; }
  .partner__grid--seven > *,
  .partner__grid--seven > *:nth-child(5),
  .partner__grid--seven > *:nth-child(6),
  .partner__grid--seven > *:nth-child(7) {
    grid-column: span 1 !important;
  }
}
@media (max-width: 640px) {
  .partner__grid--seven { grid-template-columns: 1fr !important; }
}

/* Member: längere Namen mit <br> brauchen mehr Atmung */
.member__name { line-height: .95; }

/* Vehicle.title: "NEU-WAGEN" / "NUTZ-FAHRZEUGE" wirken korrekt */
.vehicle__title { line-height: .92; }

/* ============================================================
   v12 · MARKEN · INSTAGRAM · WHATSAPP · PARALLAX-HELPERS
   ============================================================ */

/* MARKEN SECTION (full-bleed mit Marken-Wand) ----------------- */
.marken {
  position: relative;
  height: clamp(520px, 80vh, 880px);
  overflow: hidden;
  margin: 0;
}
.marken__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
}
.marken__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transform: scale(1.08);
}
.marken__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 25%, rgba(0,0,0,.65) 90%),
    linear-gradient(180deg, rgba(20,22,26,.45) 0%, rgba(20,22,26,.25) 35%, rgba(20,22,26,.85) 100%);
  pointer-events: none;
}
.marken__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(20px, 4vw, 64px);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.marken__title {
  font-size: clamp(40px, 6.5vw, 96px) !important;
  margin: 0 !important;
  text-shadow: 0 6px 40px rgba(0,0,0,.65);
}
.marken__lead {
  max-width: 720px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  margin: 0;
}

/* INSTAGRAM FEED ---------------------------------------------- */
.instagram {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(227,6,19,.05), transparent 60%),
    var(--bg);
}
.instagram__handle {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color .3s ease;
}
.instagram__handle:hover { color: var(--accent-2); }
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .instagram__grid { grid-template-columns: 1fr; }
}
.instagram__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  display: block;
}
.instagram__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  filter: brightness(.92) saturate(.92);
}
.instagram__item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.instagram__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px 18px 16px 18px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.instagram__item:hover .instagram__caption {
  opacity: 1;
  transform: translateY(0);
}
.instagram__cta {
  text-align: center;
  margin-top: 40px;
}

/* INSTAGRAM LIGHTBOX ----------------------------------------- */
.ig-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px clamp(20px, 8vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ig-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.ig-lightbox__content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.ig-lightbox__img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
  display: block;
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
}
.ig-lightbox__caption {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .15em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  max-width: 600px;
}
.ig-lightbox__link {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--accent);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}
.ig-lightbox__link:hover { color: var(--accent-2); border-color: var(--accent-2); }
.ig-lightbox__close,
.ig-lightbox__prev,
.ig-lightbox__next {
  position: absolute;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
  z-index: 2;
}
.ig-lightbox__close:hover,
.ig-lightbox__prev:hover,
.ig-lightbox__next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.ig-lightbox__close { top: 20px; right: 20px; }
.ig-lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.ig-lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .ig-lightbox__prev, .ig-lightbox__next { display: none; }
}

/* WHATSAPP FLOATING BUTTON ------------------------------------ */
.wa-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  height: 52px;
  width: 52px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  border: 0.5px solid rgba(255,255,255,.7);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: width .45s cubic-bezier(.2,.7,.2,1), padding .45s cubic-bezier(.2,.7,.2,1), opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  white-space: nowrap;
  font-family: "Bai Jamjuree", sans-serif;
}
.wa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
  opacity: 0;
  animation: waPulse 8s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 6% { opacity: 0; transform: scale(1); }
  10%    { opacity: .8; transform: scale(1); }
  16%    { opacity: 0; transform: scale(1.35); }
  100%   { opacity: 0; transform: scale(1.35); }
}
.wa-btn__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
}
.wa-btn__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding-right: 18px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.wa-btn:hover,
.wa-btn:focus-visible {
  width: 300px;
  padding-right: 0;
  background: #075E54;
  border-color: rgba(255,255,255,.85);
  transform: translateY(-1px);
}
.wa-btn:hover .wa-btn__label,
.wa-btn:focus-visible .wa-btn__label {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.85);
}
@media (max-width: 768px) {
  .wa-btn { right: 16px; bottom: 16px; width: 44px; height: 44px; }
  .wa-btn .wa-btn__icon { width: 44px; height: 44px; }
  .wa-btn:hover, .wa-btn:focus-visible { width: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-btn { transition: opacity .2s ease; }
  .wa-btn::before { animation: none; display: none; }
}

/* Parallax helpers (will-change) ------------------------------ */
[data-parallax], [data-speed] {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  [data-parallax], [data-speed] { transform: none !important; }
}

/* Mobile: alle Parallax-Effekte deutlich sanfter --------------- */
@media (max-width: 768px) {
  .editorial-strip__media,
  .marken__media,
  .manifest__strip {
    transform: none !important;
  }
}

/* ============================================================
   v13 · HERO TREATMENT + NAV-TOOLS (MUTE + LANG)
   ============================================================ */

/* Stronger Vignette + Cyan/Orange Split Overlay -------------- */
.hero--cinematic .hero__vignette {
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, transparent 30%, rgba(0,0,0,.65) 95%);
}
.hero__split {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(135deg,
      rgba(0,150,200,.10) 0%,
      transparent 35%,
      transparent 60%,
      rgba(255,140,30,.10) 100%);
  mix-blend-mode: overlay;
}
.hero--cinematic .hero__grain {
  opacity: .07;
}

/* Hero video shows poster until canplaythrough ---------------- */
.hero__video {
  opacity: 0;
  transition: opacity .8s ease;
}
.hero__video.is-ready {
  opacity: 1;
}

/* NAV-Tools container ---------------------------------------- */
.nav__tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  grid-column: 2;
  justify-self: center;
}
.nav__phone { grid-column: auto; }

/* Mute-Toggle ------------------------------------------------ */
.nav__mute {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all .25s ease;
}
.nav__mute:hover { border-color: var(--accent); color: var(--accent); }
.nav__mute[aria-pressed="true"] .nav__mute-on { display: none !important; }
.nav__mute[aria-pressed="true"] .nav__mute-off { display: block !important; }

/* Lang-Switcher ---------------------------------------------- */
.nav__lang {
  position: relative;
}
.nav__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .25s ease;
}
.nav__lang-btn:hover { border-color: var(--accent); }
.nav__lang-flag { font-size: 14px; line-height: 1; }
.nav__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(0,0,0,.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 180px;
  z-index: 102;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.nav__lang.is-open .nav__lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__lang-menu li { margin: 0; }
.nav__lang-menu button {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.nav__lang-menu button:hover { background: rgba(227,6,19,.18); color: var(--accent); }
.nav__lang-menu button[aria-selected="true"] { color: var(--accent); }
.nav__lang-menu button span { font-size: 16px; }

/* Marken Disclaimer kleiner --------------------------------- */
.marken__disclaimer {
  max-width: 720px;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
  margin: 12px 0 0;
  font-style: italic;
}

@media (max-width: 880px) {
  .nav__tools { gap: 6px; }
  .nav__phone { padding: 8px 10px; }
  .nav__phone span { display: none; }
  .nav__mute, .nav__lang-btn { height: 32px; }
  .nav__mute { width: 32px; }
  .nav__lang-btn { padding: 0 8px; font-size: 10px; }
}
@media (max-width: 480px) {
  .nav__phone { display: none; }
}

/* ============================================================
   v14 · HERO TOPBAR WEG · LOGO FULLY VISIBLE
   ============================================================ */

/* Logo im Intro IMMER vollständig sichtbar — kein clip-path-Reveal */
.intro__logo-frame--text {
  clip-path: none !important;
  animation: introLogoFade 1.0s ease-out .3s both !important;
}
@keyframes introLogoFade {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
/* Scan-Linie dezenter machen, läuft NACH dem Logo-Reveal */
.intro__logo-frame .intro__logo-scan {
  animation-delay: 1.5s;
  opacity: .5;
}
/* Crosshair-Marker weiter weg vom Logo damit es nicht abgeschnitten wirkt */
.intro__crosshair {
  width: clamp(340px, 70vw, 980px) !important;
  height: clamp(220px, 44vw, 560px) !important;
}

/* Hero-Padding wieder anpassen jetzt wo topbar weg ist */
.hero--cinematic .hero__inner {
  padding-top: clamp(80px, 12vh, 140px) !important;
}

/* ============================================================
   v15 · CONTACT — MAP + LIVE-CARD + 4-STEP BOOKING
   ============================================================ */

.contact { padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px); }
.contact__container { margin-top: clamp(40px, 6vw, 80px); }

/* SPLIT 55/45 */
.contact__split {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(36px, 4vw, 56px);
  align-items: stretch;
}
@media (max-width: 1024px) { .contact__split { grid-template-columns: 1fr; } }

/* LEFT SIDE */
.contact__left { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.contact__map-wrap {
  position: relative;
  min-height: clamp(420px, 60vh, 620px);
  border: 1px solid var(--border);
  background: #0d0e11;
  overflow: hidden;
}
.contact__map { position: absolute; inset: 0; }
.contact__map .maplibregl-ctrl-attrib,
.contact__map .maplibregl-ctrl-bottom-right { display: none !important; }

/* Map Buttons (top-right floating) */
.contact__map-tools {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  display: flex;
  gap: 6px;
}
.contact__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .25s ease;
}
.contact__map-btn:hover { border-color: var(--accent); color: var(--accent); }
.contact__map-btn svg { stroke: currentColor; }

/* Custom Marker */
.contact__marker {
  position: relative;
  width: 48px; height: 48px;
  cursor: pointer;
}
.contact__marker-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: .4;
  animation: markerPulse 2s ease-out infinite;
}
@keyframes markerPulse {
  0%   { transform: scale(.5); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.contact__marker-pin {
  position: absolute;
  inset: 8px;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
}
.contact__marker-pin::after { content: "A"; }
@media (prefers-reduced-motion: reduce) { .contact__marker-pulse { animation: none; } }

/* GLASSMORPHIC LIVE CARD */
.contact__card {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 4;
  max-width: 380px;
  padding: 22px 24px;
  background: rgba(0,0,0,.85);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #fff;
}
@media (max-width: 640px) {
  .contact__card { position: relative; bottom: auto; left: auto; max-width: 100%; margin: 0; }
}

.contact__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.contact__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: statusBreath 2s ease-in-out infinite;
}
.contact__status-dot[data-state="open"] { background: #00ff88; box-shadow: 0 0 10px #00ff88; }
.contact__status-dot[data-state="amber"] { background: #ffb84d; box-shadow: 0 0 10px #ffb84d; }
.contact__status-dot[data-state="closed"] { background: #888; box-shadow: none; }
@keyframes statusBreath { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }

.contact__addr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 13px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.85);
}
.contact__addr strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.005em;
  color: #fff;
  margin-bottom: 4px;
}

.contact__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.contact__quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.18);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: all .25s ease;
}
.contact__quick-btn:hover { background: var(--accent); border-color: var(--accent); }
.contact__quick-btn--wa:hover { background: #25D366; border-color: #25D366; color: #000; }

.contact__hours {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact__hours > div {
  display: flex;
  justify-content: space-between;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.contact__hours > div > span:first-child { font-weight: 600; }
.contact__hours > div.is-today { color: #fff; }
.contact__hours > div.is-today > span:first-child { color: var(--accent); }

/* MICRO-CARDS */
.contact__micros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .contact__micros { grid-template-columns: 1fr; } }
.contact__micro {
  background: var(--surface);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: background .25s ease;
}
.contact__micro:hover { background: var(--card-hover); }
.contact__micro svg { color: var(--accent); }
.contact__micro strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--text);
}
.contact__micro span {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* RIGHT SIDE: Form-Shell */
.contact__right { min-width: 0; }
.contact__form-shell {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.08);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Progress Indicator */
.contact__progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}
.contact__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: all .35s ease;
  flex-shrink: 0;
}
.contact__dot.is-active { background: #fff; box-shadow: 0 0 8px rgba(255,255,255,.5); transform: scale(1.2); }
.contact__dot.is-done { background: rgba(255,255,255,.5); }
.contact__dot-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.12);
}
.contact__progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 14px 0 28px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact__step-num { color: var(--accent); }
.contact__step-title { color: #fff; }

/* Step Animation */
.contact__form { position: relative; flex: 1; }
.contact__step {
  display: none;
  animation: stepIn .4s cubic-bezier(.2,.7,.2,1);
}
.contact__step.is-active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.contact__step-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: #fff;
}

/* Topic-Cards 2x2 (Step 1) */
.contact__topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) { .contact__topics { grid-template-columns: 1fr; } }
.contact__topic {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  font-family: "Bai Jamjuree", sans-serif;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
  text-align: left;
}
.contact__topic:hover, .contact__topic:focus-visible {
  border-color: #fff;
  background: rgba(255,255,255,.04);
  transform: scale(1.02);
}
.contact__topic.is-selected {
  border-color: var(--accent);
  background: rgba(227,6,19,.08);
}
.contact__topic svg { color: rgba(255,255,255,.5); transition: color .3s; }
.contact__topic:hover svg, .contact__topic.is-selected svg { color: var(--accent); }
.contact__topic-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.contact__topic-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
  color: rgba(255,255,255,.5);
  text-transform: none;
}

/* Floating-Label Inputs */
.contact__field {
  position: relative;
  margin-bottom: 18px;
}
.contact__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
@media (max-width: 480px) { .contact__field-row { grid-template-columns: 1fr; } }
.contact__field-row .contact__field { margin-bottom: 0; }
.contact__field input,
.contact__field select,
.contact__field textarea,
.contact__step2-content input,
.contact__step2-content select,
.contact__step2-content textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 18px 0 8px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  outline: none;
  border-radius: 0;
  transition: border-color .25s ease;
}
.contact__field textarea, .contact__step2-content textarea {
  resize: vertical;
  min-height: 80px;
}
.contact__field select { appearance: none; -webkit-appearance: none; }
.contact__field label,
.contact__step2-content label[for] {
  position: absolute;
  left: 0;
  top: 18px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  pointer-events: none;
  transition: all .25s ease;
}
.contact__field input:focus + label,
.contact__field input:not(:placeholder-shown) + label,
.contact__field textarea:focus + label,
.contact__field textarea:not(:placeholder-shown) + label,
.contact__field select:focus + label,
.contact__field select:not([value=""]):valid + label {
  top: 0;
  font-size: 9px;
  color: var(--accent);
}
.contact__field::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .35s cubic-bezier(.2,.7,.2,1);
}
.contact__field:focus-within::after { width: 100%; }

/* Chips (Veredelung) */
.contact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.contact__chips button {
  padding: 9px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.contact__chips button:hover { border-color: #fff; color: #fff; }
.contact__chips button.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Custom Date-Picker */
.contact__date { margin-bottom: 18px; }
.contact__date-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0 14px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
}
.contact__date-head button {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.15);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  display: grid;
  place-items: center;
  transition: all .25s;
}
.contact__date-head button:hover { border-color: var(--accent); color: var(--accent); }
.contact__date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.contact__date-grid > span {
  text-align: center;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 6px 0;
}
.contact__date-cell {
  padding: 10px 0;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255,255,255,.85);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.contact__date-cell:hover:not(.is-disabled) { background: rgba(255,255,255,.06); }
.contact__date-cell.is-today { border-color: rgba(255,255,255,.4); }
.contact__date-cell.is-selected { background: #fff; color: #000; font-weight: 700; }
.contact__date-cell.is-disabled { color: rgba(255,255,255,.18); cursor: not-allowed; }

/* Time Slots */
.contact__time { margin-bottom: 18px; }
.contact__time-label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contact__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.contact__slot {
  padding: 9px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .25s;
  font-variant-numeric: tabular-nums;
}
.contact__slot:hover { border-color: #fff; }
.contact__slot.is-selected { background: #fff; color: #000; border-color: #fff; font-weight: 700; }
.contact__no-slots {
  padding: 14px;
  background: rgba(255,255,255,.04);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .1em;
}

/* Flexible Toggle */
.contact__flexible {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  cursor: pointer;
}
.contact__flexible input { accent-color: var(--accent); }
.contact__flexible-text {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 12px 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  outline: none;
  border-radius: 0;
  resize: vertical;
  min-height: 60px;
  margin-bottom: 14px;
}

/* Radio-Pills (Step 4) */
.contact__prefer {
  border: 0;
  padding: 0;
  margin: 18px 0;
}
.contact__prefer legend {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding: 0;
}
.contact__prefer > label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 6px;
  margin-bottom: 6px;
  transition: all .25s;
}
.contact__prefer > label:has(input:checked) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.contact__prefer input { display: none; }

/* Consent-Checkbox */
.contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
}
.contact__consent input { accent-color: var(--accent); margin-top: 3px; }
.contact__consent a { color: var(--accent); text-decoration: underline; }

/* Nav (prev/next) */
.contact__nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 28px;
}
.contact__nav .btn { padding: 14px 22px !important; font-size: 11px !important; }
.contact__submit { flex: 1; }

/* Honeypot — invisible */
.contact__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

/* Success State */
.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 32px 0;
  animation: stepIn .5s ease-out;
}
.contact__check {
  color: var(--accent);
  margin-bottom: 8px;
}
.contact__check svg circle, .contact__check svg path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawCheck 1.2s cubic-bezier(.5,0,.5,1) .15s forwards;
}
.contact__check svg path { animation-delay: .8s; animation-duration: .6s; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.contact__success h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.contact__success p {
  max-width: 420px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
}
.contact__success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .contact__step, .contact__success, .contact__check svg circle, .contact__check svg path {
    animation: none !important;
  }
  .contact__check svg circle, .contact__check svg path { stroke-dashoffset: 0; }
}

/* MapLibre overrides */
.maplibregl-canvas { outline: none; }
.maplibregl-ctrl-group { border: 1px solid rgba(255,255,255,.18) !important; background: rgba(0,0,0,.6) !important; }
.maplibregl-ctrl-group button { background-color: transparent !important; }
.maplibregl-ctrl-group button:hover { background-color: rgba(255,255,255,.1) !important; }
.maplibregl-ctrl-group button + button { border-top-color: rgba(255,255,255,.12) !important; }
.maplibregl-ctrl-zoom-in span, .maplibregl-ctrl-zoom-out span { filter: invert(1); }

/* Toast (für Map-Share, Form-Validation) */
.contact__toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 22px;
  background: rgba(0,0,0,.92);
  border: 1px solid var(--accent);
  color: #fff;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.contact__toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   v16 · INTRO v2 — Logo voll sichtbar, cinematic, 2.8s
   ============================================================ */

/* Override alte intro Styles */
.intro.intro--v2 {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  background: #000;
  overflow: hidden;
  animation: introV2Out .9s cubic-bezier(.7,0,.2,1) 2.2s forwards;
  pointer-events: auto;
}
.intro.intro--v2.intro--done { display: none !important; }
.intro--v2 .intro__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(227,6,19,.18) 0%, rgba(227,6,19,.08) 25%, transparent 60%),
    #000;
  opacity: 0;
  animation: introV2Bg 1.2s ease-out .1s forwards;
}
@keyframes introV2Bg {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.intro--v2 .intro__sweep {
  position: absolute;
  top: 50%;
  left: -10%;
  right: -10%;
  height: 2px;
  transform: translateY(-50%) scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(227,6,19,.6) 30%,
    #fff 50%,
    rgba(227,6,19,.6) 70%,
    transparent 100%);
  box-shadow: 0 0 24px rgba(227,6,19,.7), 0 0 48px rgba(227,6,19,.3);
  animation: introV2Sweep 1.2s cubic-bezier(.7,0,.2,1) forwards;
}
@keyframes introV2Sweep {
  0%   { transform: translateY(-50%) scaleX(0); opacity: 0; }
  20%  { opacity: 1; }
  60%  { transform: translateY(-50%) scaleX(1); opacity: 1; }
  100% { transform: translateY(-50%) scaleX(1); opacity: 0; }
}

.intro--v2 .intro__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  padding: 0 clamp(20px, 5vw, 60px);
  text-align: center;
  width: 100%;
  max-width: 1600px;
}

/* Logo Lockup — voll sichtbar, kein Clipping */
.intro--v2 .intro__lockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
  filter: drop-shadow(0 0 40px rgba(227,6,19,.4));
  opacity: 0;
  transform: scale(.94) translateY(8px);
  animation: introV2Logo 1.2s cubic-bezier(.2,.7,.2,1) .55s forwards;
}
@keyframes introV2Logo {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.intro--v2 .intro__word {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-size: clamp(56px, 11vw, 168px);
}
.intro--v2 .intro__a { color: var(--accent); }
.intro--v2 .intro__b { color: #fff; }

/* BORNHEIM unter WERK (rechts ausgerichtet, klein, wie im echten Logo) */
.intro--v2 .intro__bornheim {
  display: block;
  width: 100%;
  font-size: clamp(11px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: .55em;
  color: #fff;
  text-align: right;
  margin-top: -.15em;
  padding-right: clamp(0px, 1vw, 12px);
}

/* Roter Glow-Streifen unter dem Logo (Original-Logo-Element) */
.intro--v2 .intro__line {
  width: clamp(180px, 32vw, 520px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(227,6,19,.4) 25%,
    rgba(227,6,19,1) 50%,
    rgba(227,6,19,.4) 75%,
    transparent 100%);
  box-shadow: 0 0 24px rgba(227,6,19,.85), 0 0 48px rgba(227,6,19,.4);
  opacity: 0;
  transform: scaleX(0);
  animation: introV2Line .9s cubic-bezier(.7,0,.2,1) 1.1s forwards;
}
@keyframes introV2Line {
  to { opacity: 1; transform: scaleX(1); }
}

/* Claim "PASSION FÜR PERFORMANCE" */
.intro--v2 .intro__claim {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: .45em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  animation: introV2Claim .9s ease-out 1.55s forwards;
}
@keyframes introV2Claim {
  to { opacity: 1; transform: translateY(0); }
}

/* Exit */
@keyframes introV2Out {
  0%   { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 0; transform: scale(1.04); filter: blur(4px); visibility: hidden; }
}

/* Mobile-Adjustments */
@media (max-width: 600px) {
  .intro--v2 .intro__word { font-size: clamp(40px, 13vw, 80px); letter-spacing: -.02em; }
  .intro--v2 .intro__bornheim { font-size: 10px; letter-spacing: .4em; padding-right: 0; }
  .intro--v2 .intro__claim { font-size: 10px; letter-spacing: .3em; }
  .intro--v2 .intro__line { width: 60%; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .intro.intro--v2 { animation: none; }
  .intro.intro--v2 .intro__lockup,
  .intro.intro--v2 .intro__line,
  .intro.intro--v2 .intro__claim,
  .intro.intro--v2 .intro__sweep,
  .intro.intro--v2 .intro__bg { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   v17 · HERO TRIPTYCH (3 Videos nebeneinander, keine schwarzen Bars)
   ============================================================ */
.hero__triptych {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 0;
  overflow: hidden;
}
.hero__video--col {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative !important;
  inset: auto !important;
  transform: scale(1.04);
  animation: heroDriftZoom 32s ease-in-out infinite alternate;
}
.hero__video--col[data-offset="6"] { animation-delay: -10s; }
.hero__video--col[data-offset="12"] { animation-delay: -20s; }

/* Subtile vertikale Trennlinien für Triptychon-Look */
.hero__seam {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__seam--1 { left: 33.333%; }
.hero__seam--2 { left: 66.667%; }

@media (max-width: 768px) {
  /* Auf Mobile: nur 1 Video sichtbar, anderen ausblenden */
  .hero__triptych { grid-template-columns: 1fr; }
  .hero__video--col[data-offset="6"],
  .hero__video--col[data-offset="12"],
  .hero__seam { display: none; }
}

/* ============================================================
   v18 · TRIPTYCH FIX — Spezifizität erhöhen, garantiert 3 Spalten
   ============================================================ */
.hero--cinematic .hero__media--triptych { position: absolute; inset: 0; }
.hero--cinematic .hero__triptych {
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  z-index: 0 !important;
  overflow: hidden !important;
}
.hero--cinematic .hero__triptych .hero__video--col,
.hero--cinematic .hero__video.hero__video--col {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 40% !important;
  display: block !important;
  opacity: 1 !important;
  filter: brightness(.45) contrast(1.18) saturate(1.1) sepia(.10) !important;
  transform: scale(1.04);
  will-change: transform;
}
.hero--cinematic .hero__seam {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 1px !important;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,0) 100%) !important;
  z-index: 3 !important;
  pointer-events: none !important;
}
.hero--cinematic .hero__seam--1 { left: 33.333% !important; }
.hero--cinematic .hero__seam--2 { left: 66.667% !important; }

/* Veil + Vignette + Grain + Split sollen ÜBER alle 3 Videos liegen */
.hero--cinematic .hero__veil,
.hero--cinematic .hero__vignette,
.hero--cinematic .hero__grain,
.hero--cinematic .hero__split {
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
}

@media (max-width: 768px) {
  .hero--cinematic .hero__triptych { grid-template-columns: 1fr !important; }
  .hero--cinematic .hero__video--col[data-offset="6"],
  .hero--cinematic .hero__video--col[data-offset="12"],
  .hero--cinematic .hero__seam { display: none !important; }
}

/* ============================================
   HERO FULL-BLEED ASYMMETRIC TRIPTYCH v=24
   3 panels füllen das ganze Hero: klein | GROSS | klein
   Kein Gap, kein Padding, kein Background-Bereich sichtbar.
   ============================================ */

.hero--cinematic .hero__media--asym {
  background: #000;
}

.hero--cinematic .hero__asym {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 2.6fr 1fr;
  gap: 0;
  padding: 0;
  z-index: 0;
}

.hero--cinematic .hero__panel {
  position: relative;
  overflow: hidden;
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  flex: initial;
  transform: none;
  opacity: 0;
  transition: opacity 1.1s ease 0.2s;
}

.hero--cinematic .hero__panel.is-ready { opacity: 1; }

.hero--cinematic .hero__panel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.62) contrast(1.2) saturate(1.05) sepia(.05);
}

/* Center panel sits slightly above so its hairline overlaps cleanly */
.hero--cinematic .hero__panel--center { z-index: 1; }

/* Center wirkt durch Helligkeit dominanter, Seiten leicht entsättigt */
.hero--cinematic .hero__panel--center .hero__panel-video {
  filter: brightness(.72) contrast(1.18) saturate(1.08);
}
.hero--cinematic .hero__panel--left  .hero__panel-video,
.hero--cinematic .hero__panel--right .hero__panel-video {
  filter: brightness(.5) contrast(1.22) saturate(.9) sepia(.1);
}

/* Subtile vertikale Trenn-Hairlines zwischen den Panels */
.hero--cinematic .hero__panel--left  { box-shadow: inset -1px 0 0 rgba(255,255,255,.06); }
.hero--cinematic .hero__panel--right { box-shadow: inset  1px 0 0 rgba(255,255,255,.06); }

/* Tablet: Mitte etwas weniger dominant */
@media (max-width: 1024px) {
  .hero--cinematic .hero__asym {
    grid-template-columns: 1fr 2.2fr 1fr;
  }
}

/* Mobile: gestapelt — klein | GROSS | klein vertikal */
@media (max-width: 720px) {
  .hero--cinematic .hero__asym {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2.4fr 1fr;
  }
  .hero--cinematic .hero__panel--left  { box-shadow: inset 0 -1px 0 rgba(255,255,255,.06); }
  .hero--cinematic .hero__panel--right { box-shadow: inset 0  1px 0 rgba(255,255,255,.06); }
}

/* Hero-Content muss über dem Triptych liegen */
.hero--cinematic .hero__inner,
.hero--cinematic .hero__headline,
.hero--cinematic .hero__logo-wrap,
.hero--cinematic .hero__ctas,
.hero--cinematic .hero__scroll {
  position: relative;
  z-index: 5;
}

/* Veil dunkler für bessere Lesbarkeit über den panels */
.hero--cinematic .hero__media--asym .hero__veil {
  background: radial-gradient(ellipse at center, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 85%);
  z-index: 3;
}
.hero--cinematic .hero__media--asym .hero__vignette { z-index: 3; }
.hero--cinematic .hero__media--asym .hero__grain    { z-index: 4; }

/* ===================================================
   FLEET — Aktueller Bestand (Sprint 2)
   Dynamisch befüllt aus /data/inserate.json via /js/fleet-renderer.js
   =================================================== */

.fleet--grid {
  background: linear-gradient(180deg, #0a0a0c 0%, #060607 100%);
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

/* Grid container */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}

@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .fleet-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Card */
.fleet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0e0e12;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: #f5f5f5;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
  cursor: pointer;
}

.fleet-card:hover,
.fleet-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(255, 255, 255, 0.04);
  outline: none;
}

/* Media (Bild) */
.fleet-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0c;
}

.fleet-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: brightness(0.92) contrast(1.05);
}

.fleet-card:hover .fleet-card__img,
.fleet-card:focus-visible .fleet-card__img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.08);
}

/* Brand-Badge oben links auf Foto */
.fleet-card__brand {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

/* Image-Count-Badge unten rechts */
.fleet-card__imgcount {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Status-Badge (verfügbar / reserviert) */
.fleet-card__status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.fleet-card__status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
}

/* Body */
.fleet-card__body {
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.fleet-card__model {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.fleet-card__variant {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fleet-card__price {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-card__price-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* Specs-Zeile */
.fleet-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fleet-card__spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fleet-card__spec-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.fleet-card__spec-value {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

/* Skeleton (Loading) */
.fleet-card--skeleton {
  pointer-events: none;
  cursor: default;
}

.fleet-card--skeleton .fleet-card__media {
  background: linear-gradient(90deg, #0a0a0c 0%, #18181b 50%, #0a0a0c 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.fleet-card--skeleton .fleet-card__body { gap: 10px; }

.sk {
  background: linear-gradient(90deg, #18181b 0%, #2a2a30 50%, #18181b 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
  border-radius: 2px;
}

.sk--line { height: 14px; width: 100%; }
.sk--short { width: 60%; }
.sk--price { height: 24px; width: 40%; margin-top: 12px; }

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state */
.fleet-empty {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(40px, 6vw, 80px) 20px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
}

.fleet-empty__icon {
  display: block;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fleet-empty__title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}

.fleet-empty__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* CTA Button (Alle Fahrzeuge ansehen) */
.fleet-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 64px);
}

.fleet-cta .btn--lg {
  padding: 18px 36px;
  font-size: 14px;
}

