/* =================================================================
   EXPERT.KFZ — Design System
   Automotive Editorial — Dark / Light Swiss variant via [data-variant]
   ================================================================= */

/* Self-hosted Inter (DSGVO — no Google Fonts CDN). Variable weight 100–900. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-wght-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-wght-italic.woff2") format("woff2");
}

:root {
  /* Brand orange — matches logo #F26B1F. OKLCH hue ~42 for true orange (not red/pink) */
  --orange-h: 42;
  --orange-strength: 0.78;
  --orange: oklch(0.70 0.17 var(--orange-h));
  --orange-deep: oklch(0.60 0.18 var(--orange-h));
  --orange-quiet: oklch(0.74 0.11 var(--orange-h));

  /* (Tone tokens — bg/fg/line — defined below in the dark/light blocks.) */

  /* One humanist sans for everything — headlines + body + labels (Inter). */
  --display: "Inter", system-ui, -apple-system, sans-serif;
  --serif: var(--display); /* legacy alias */
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Inter", system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-fast: 200ms;
  --t-med: 460ms;
  --t-slow: 900ms;
}

/* Tone tokens — applied to root for global variant, AND to sections that
   carry [data-tone] in mixed-variant pages. The same token names exist in
   both palettes so any sub-component reads the right value automatically. */

:root,
[data-tone="dark"] {
  --bg: #0B0B0A;
  --bg-alt: #131310;
  --bg-card: #17150F;
  --line: rgba(245, 242, 236, 0.10);
  --line-strong: rgba(245, 242, 236, 0.22);
  --fg: #F4F1EC;
  --fg-muted: #ADA89E;
  --fg-quiet: #6C6860;
  --fg-faint: rgba(245, 242, 236, 0.45);
}

[data-variant="light"],
[data-tone="light"] {
  --bg: #F4F1EC;
  --bg-alt: #EBE6DE;
  --bg-card: #FFFFFF;
  --line: rgba(11, 11, 10, 0.10);
  --line-strong: rgba(11, 11, 10, 0.22);
  --fg: #14130F;
  --fg-muted: #5C5850;
  --fg-quiet: #8C887F;
  --fg-faint: rgba(11, 11, 10, 0.45);
}

/* Sections with explicit data-tone paint themselves so adjacent dark/light
   blocks read as clean editorial blocks. */
section[data-tone],
footer[data-tone] {
  background: var(--bg);
  color: var(--fg);
}

/* Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* Typography ---------------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}
.eyebrow .dot { color: var(--orange); }

.display {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.035em;
  line-height: 0.92;
  font-size: clamp(48px, 8vw, 132px);
}
[data-variant="light"] .display {
  font-weight: 700;
  letter-spacing: -0.045em;
}

.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 72;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 0;
}
[data-variant="light"] .h2 {
  font-weight: 700;
  letter-spacing: -0.04em;
}

.h3 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 40;
  font-size: clamp(24px, 2.8vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
[data-variant="light"] .h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Accent: bumped weight + orange instead of (synthetic) italic — feels more
   confident with a grotesque, less generic than fake italic. */
.italic {
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.045em;
}
[data-variant="light"] .italic { font-weight: 800; }
.orange { color: var(--orange); }

.lede {
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 56ch;
}

.body-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* Layout primitives --------------------------------------------------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(80px, 12vw, 160px);
}
.section.compact { padding-block: clamp(48px, 8vw, 96px); }
.section.tint { background: var(--bg-alt); }

/* Tighter section padding on tablet + mobile (rest of the responsive spacing
   overrides live at the END of this file so they win over later base rules). */
@media (max-width: 880px) {
  .section { padding-block: 56px; }
  .section.compact { padding-block: 44px; }
}
@media (max-width: 560px) {
  .section { padding-block: 44px; }
  .section.compact { padding-block: 30px; }
}
/* Hairline at the only same-tone touch (Netzwerk dark → FAQ dark) so it reads
   as a deliberate section break rather than one continuous block. */
#faq { border-top: 1px solid var(--line); }

.divider {
  height: 1px;
  background: var(--line);
}

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--orange);
  color: #1A0F08;
}
.btn-primary:hover { background: var(--orange-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--fg); }

.btn-inverse {
  background: var(--fg);
  color: var(--bg);
}
.btn-inverse:hover { background: var(--orange); color: #1A0F08; }

/* Chrome — top bar + burger ----------------------------------------- */
.chrome {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--gutter);   /* trimmed so the doubled logo doesn't bloat the bar */
  pointer-events: none;
}
/* ---- Reusable logo lockup (icon + adaptive text) ------------------- */
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.46em;
  font-family: var(--display);
  line-height: 1;
  color: inherit;            /* EXPERT + subline follow currentColor */
}
.logo-lockup__icon { display: block; height: 2.7em; width: auto; flex: 0 0 auto; }
.logo-lockup__text { display: flex; flex-direction: column; gap: 0.16em; }
.logo-lockup__name {
  font-weight: 800;
  font-size: 1em;
  line-height: 1;
  letter-spacing: -0.012em;
  white-space: nowrap;
  color: currentColor;
}
.logo-lockup__kfz { color: #f87000; }            /* always orange */
.logo-lockup__sub {
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  color: currentColor;
}

/* Header brand logo (top-left, links to start) — white over the dark hero,
   dark (#183257) over a light scrolled chrome. */
.brand-logo { display: inline-flex; align-items: center; font-size: clamp(18px, 2.1vw, 24px); color: #fff; }
.chrome.scrolled[data-chrome="light"] .brand-logo { color: #183257; }
.chrome > * { pointer-events: auto; }

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  mix-blend-mode: difference;
}
.brand-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 1px;
  display: inline-block;
  transform: translateY(1px);
}

.brand-mark .sep { color: var(--orange); }
.brand-mark .sub { opacity: 0.55; font-size: 10px; letter-spacing: 0.22em; }

.chrome.scrolled {
  background: color-mix(in srgb, var(--chrome-bg, #0B0B0A) 78%, transparent);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--chrome-line, rgba(245,242,236,0.10));
}
.chrome.scrolled .brand-mark { mix-blend-mode: normal; color: var(--chrome-fg, #F4F1EC); }
.chrome.scrolled .burger { color: var(--chrome-fg, #F4F1EC); filter: none; }

/* Chrome tone — set by JS based on the section currently behind the header */
.chrome[data-chrome="light"] {
  --chrome-bg: #F4F1EC;
  --chrome-fg: #14130F;
  --chrome-line: rgba(11,11,10,0.10);
}
.chrome[data-chrome="dark"] {
  --chrome-bg: #0B0B0A;
  --chrome-fg: #F4F1EC;
  --chrome-line: rgba(245,242,236,0.10);
}

.burger {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-direction: column;
  cursor: pointer;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.burger:hover { color: var(--orange); transform: scale(1.06); }
.burger i {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--t-fast) var(--ease);
}

/* Burger overlay ----------------------------------------------------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  color: var(--fg);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px var(--gutter) 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.menu.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.menu-logo { display: inline-flex; align-items: center; font-size: clamp(19px, 3vw, 24px); color: #fff; }
.menu-close {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--t-fast) var(--ease);
}
.menu-close:hover { background: var(--orange); color: #1A0F08; }

.menu-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
}
.menu-nav a {
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
  font-weight: 600;
  font-size: 24px;                 /* mobile: text-2xl */
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;             /* keep "Partner-Netzwerk" on one line */
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.6em;
  position: relative;
  transition: color var(--t-fast) var(--ease), padding-left var(--t-med) var(--ease);
}
@media (min-width: 561px)  { .menu-nav a { font-size: 30px; } }  /* tablet: text-3xl */
@media (min-width: 1025px) { .menu-nav a { font-size: 36px; } }  /* desktop: text-4xl */
[data-variant="light"] .menu-nav a {
  font-weight: 700;
  letter-spacing: -0.05em;
}
.menu-nav a .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
  font-weight: 500;
  transform: translateY(-0.7em);
}
.menu-nav a::before {
  content: "";
  position: absolute;
  left: -1.6em;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width var(--t-med) var(--ease);
}
.menu-nav a:hover { color: var(--orange); padding-left: 0.3em; }
.menu-nav a:hover::before { width: 1.2em; }
.menu-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: clamp(22px, 3vw, 40px);
}
.menu-legal a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  transition: color var(--t-fast) var(--ease);
}
.menu-legal a:hover { color: var(--orange); }

.menu-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  align-items: end;
}
.menu-foot .kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 6px;
  display: block;
}
.menu-foot .big { font-size: 18px; white-space: nowrap; }
/* Mobile: stack Anruf / E-Mail / Sitz, phone number on one line */
@media (max-width: 560px) {
  .menu-foot { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}

/* Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  background: #050504;
  color: #F4F1EC;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.hero-cinema {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Readability layer: subtle dark vignette behind the logo, fades in with it */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.14) 45%, rgba(0,0,0,0) 75%);
  opacity: 0;
  transition: opacity 700ms var(--ease);
}
.hero-vignette.is-visible { opacity: 1; }

/* Soft gradient merge from the hero into the dark section below (no hard edge).
   Sits above the video/vignette but below the stats/CTA (z3) so they stay legible. */
.hero-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11,11,10,0) 0%, rgba(11,11,10,0.65) 55%, #0B0B0A 100%);
}

/* Sharp SVG brand logo — centered, above the video/vignette, below the nav */
/* Centre zone: big logo (the focal point) */
.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.hero-logo {
  display: inline-flex;
  color: #fff;
  font-size: clamp(26px, 5.2vw, 54px);
  opacity: 0;
  transition: opacity 700ms var(--ease);
}
.hero-logo.is-visible { opacity: 1; }
.hero-cinema .frame {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1400ms var(--ease), transform 6000ms linear;
}
.hero-cinema .frame.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,4,0.55) 0%, rgba(5,5,4,0) 26%, rgba(5,5,4,0) 60%, rgba(5,5,4,0.78) 100%),
    linear-gradient(90deg, rgba(5,5,4,0.55) 0%, rgba(5,5,4,0) 35%, rgba(5,5,4,0) 70%, rgba(5,5,4,0.35) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 120px var(--gutter) 32px;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }

.hero-headline {
  align-self: end;
  max-width: 1100px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-eyebrow .frame-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-variant-numeric: tabular-nums;
}
.hero-eyebrow .frame-num span { color: var(--orange); }
.hero-eyebrow .line {
  height: 1px;
  flex: 1;
  max-width: 100px;
  background: rgba(255,255,255,0.3);
}
.hero-caption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-headline h1 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 0;
  font-weight: 600;
  text-wrap: balance;
}
.hero-headline h1 em {
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: var(--orange);
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 480px;
  color: rgba(245,242,236,0.78);
  line-height: 1.55;
}

/* Bottom zone: scroll cue (between logo and footer) above the stats/CTA footer */
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vh, 56px);     /* space between scroll cue and footer */
  padding: 0 var(--gutter) calc(28px + env(safe-area-inset-bottom, 0px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms var(--ease);
}
.hero-bottom.is-visible {
  opacity: 1;
  pointer-events: auto;
}
/* Scroll cue centered above the footer */
.hero-bottom .hero-scroll {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  z-index: auto;
  align-self: center;
  align-items: center;
}
.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-progress {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-progress button {
  width: 64px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.hero-progress button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateX(-100%);
  transition: transform var(--t-fast) var(--ease);
}
.hero-progress button.done::after { transform: translateX(0); transition: none; }
.hero-progress button.active::after {
  animation: hero-progress var(--hero-duration, 5200ms) linear forwards;
}
@keyframes hero-progress {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
.hero-foot-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.hero-since {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.58);
  align-self: flex-start;
}
.hero-since__dash {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: rgba(245, 242, 236, 0.45);
}
.hero-quickfacts {
  display: flex;
  justify-content: flex-start;
  gap: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.7);
}
.hero-quickfacts strong {
  display: block;
  font-family: var(--display);
  font-variation-settings: "opsz" 32;
  font-weight: 600;
  font-size: 30px;        /* XL footer numbers */
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;  /* steady width while counting up */
  color: #fff;
  margin-bottom: 4px;
  text-transform: none;
}
/* Mobile: footer stacks — stats stay a compact 3-up row, CTA full width below */
@media (max-width: 640px) {
  .hero-foot { grid-template-columns: 1fr; gap: 16px; }
  .hero-foot-meta { gap: 10px; }
  .hero-since { font-size: 9.5px; letter-spacing: 0.18em; gap: 8px; }
  .hero-since__dash { width: 10px; }
  .hero-quickfacts { gap: 12px; font-size: 10px; letter-spacing: 0.1em; }
  .hero-quickfacts > div { flex: 1; min-width: 0; overflow-wrap: anywhere; }
  .hero-quickfacts strong { font-size: 24px; }
  .hero-bottom { gap: 20px; }
  /* CTA dezenter: kleiner, weniger Padding, nicht wuchtig */
  .hero-foot .btn {
    justify-self: stretch;
    justify-content: center;
    height: 46px;
    padding: 0 18px;
    font-size: 13.5px;
    font-weight: 500;
  }
}
/* Very small phones (iPhone SE 375): compacter so nothing gets clipped */
@media (max-width: 400px) {
  .hero-quickfacts { gap: 8px; font-size: 9px; }
  .hero-quickfacts strong { font-size: 20px; }
  .hero-foot { padding-top: 22px; gap: 14px; }
  .hero-bottom { gap: 14px; }
  .hero-foot .btn { height: 44px; font-size: 13px; }
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  /* button reset */
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  /* text — bolder & larger, readable on the video */
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;          /* comfortable tap/hit area */
  cursor: pointer;
  pointer-events: auto;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.hero-bottom .hero-scroll:hover { opacity: 0.72; transform: translateY(3px); }
.hero-bottom .hero-scroll:focus-visible { outline: 2px solid rgba(255,255,255,0.7); outline-offset: 4px; }
/* Refined downward chevron, gently bobbing */
.hero-scroll .chevron {
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
  animation: scroll-chevron 1.8s var(--ease) infinite;
}
@keyframes scroll-chevron {
  0%, 100% { transform: translateY(-2px); opacity: 0.45; }
  50%      { transform: translateY(4px);  opacity: 1; }
}

/* Stat strip --------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 28px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat .v {
  font-family: var(--display);
  font-variation-settings: "opsz" 64;
  font-weight: 600;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-feature-settings: "tnum" 1;
  margin-bottom: 6px;
}
[data-variant="light"] .stat .v {
  font-weight: 700;
  letter-spacing: -0.045em;
}
.stat .v .unit { color: var(--orange); font-weight: 700; }
.stat .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* Editorial 2-col block ---------------------------------------------- */
.editorial-2 {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: stretch;   /* beide Boxen auf gleiche Höhe (folgt der höheren) */
}
/* Mobile (gestapelt): natürliche Höhen */
@media (max-width: 767px) { .editorial-2 { grid-template-columns: 1fr; } }

/* Zweispaltig (Desktop/Tablet): USP-Box füllt die Spaltenhöhe,
   CTA sitzt am unteren Rand statt Leerraum in der Mitte zu lassen. */
@media (min-width: 768px) {
  .editorial-2 .usp-card { display: flex; flex-direction: column; }
  .editorial-2 .usp-card .usp-cta { align-self: flex-start; }
}

.editorial-2 .left h2 { margin-bottom: 32px; }
.editorial-2 .left .body-text { max-width: 50ch; margin-bottom: 18px; }

.rights-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  background: var(--bg-card);
  position: relative;
}
.rights-card h3 { margin-bottom: 20px; }
.rights-list { display: grid; gap: 12px; }
.rights-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--fg);
}
.rights-list li:last-child { border-bottom: 0; }
.rights-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 1px;
  transform: rotate(45deg) translateY(2px);
  margin-left: 5px;
}

/* USP box + Gebrauchtwagen-Check ------------------------------------- */
.usp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  margin-top: clamp(40px, 6vw, 72px);
}
@media (max-width: 880px) {
  .usp-row { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
}
.usp-card, .check-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-card);
}
.usp-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 224px;          /* ~h-56: füllt Leerraum, sprengt die Box nicht */
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
  margin-top: 22px;
}
.usp-list { list-style: none; display: grid; gap: 14px; margin: 22px 0 0; padding: 0; }
.usp-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
}
.usp-check { width: 20px; height: 20px; color: var(--orange); margin-top: 1px; flex: 0 0 auto; }
.usp-cta { margin-top: 26px; }
.check-card { display: flex; flex-direction: column; align-items: flex-start; }
.check-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  color: var(--orange);
}
.check-card__icon svg { width: 26px; height: 26px; }

/* Gebrauchtwagen-Check als breites Banner über volle Breite */
.check-card--wide {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(32px, 4vw, 56px);
}
.check-card--wide .check-card__main {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 24px);
}
.check-card--wide .check-card__text .body-text { max-width: 62ch; }
.check-card--wide .check-card__cta { flex: 0 0 auto; margin-top: 0; align-self: center; }
@media (max-width: 880px) {
  .check-card--wide { flex-direction: column; align-items: flex-start; gap: 22px; margin-top: 40px; }
  .check-card--wide .check-card__cta { align-self: flex-start; }
}

/* Service grid ------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .service-grid { grid-template-columns: 1fr; } }

.service {
  padding: 36px 28px 40px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--t-fast) var(--ease);
}
.service:hover { background: var(--bg-alt); }
.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.service-icon {
  display: block;
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex: 0 0 auto;
}
.service .idx {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
}
.service .name {
  font-family: var(--display);
  font-variation-settings: "opsz" 28;
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
[data-variant="light"] .service .name {
  font-weight: 700;
  letter-spacing: -0.03em;
}
.service .desc {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.55;
}
/* Mobile only: icon beside the title (not above), description full width.
   display:contents dissolves .service-head so icon + idx become grid items. */
@media (max-width: 560px) {
  .service {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon name"
      "desc desc";
    column-gap: 13px;
    row-gap: 8px;
    align-items: center;
    padding: 22px 22px 24px;
  }
  .service-head { display: contents; }
  .service-icon { grid-area: icon; width: 26px; height: 26px; }
  .service .idx { display: none; }
  .service .name { grid-area: name; margin: 0; }
  .service .desc { grid-area: desc; margin: 0; }
}

/* Process timeline --------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}
.step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--orange);
}
.step .step-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 16px;
}
.step .step-t {
  font-family: var(--display);
  font-variation-settings: "opsz" 28;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
[data-variant="light"] .step .step-t {
  font-weight: 700;
  letter-spacing: -0.035em;
}
.step .step-d {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Vor-Ort section ---------------------------------------------------- */
/* Desktop: text left (heading over body), image right spanning both rows */
.vor-ort {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "head media"
    "body media";
  column-gap: clamp(40px, 6vw, 96px);
  row-gap: 20px;
  align-items: start;
}
.vo-head { grid-area: head; }
.vo-body { grid-area: body; }
.vo-media { grid-area: media; align-self: center; }
.vo-caption { margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; }
.vor-ort-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background-color: var(--bg-card);
}
/* Mobile + Tablet: heading -> (smaller) image -> text; image ~half size */
@media (max-width: 880px) {
  .vor-ort {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "media" "body";
    row-gap: 22px;
  }
  .vo-media { width: 100%; max-width: none; }   /* image as wide as the text block */
  .vor-ort-media { aspect-ratio: 16 / 10; }
}

/* Testimonial-Slider — pure scroll-snap carousel (no external lib) */
.testimonial-slider {
  margin-top: clamp(24px, 3.5vw, 48px);
}
.testimonial-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track > .testimonial {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 720px)  { .testimonial-track > .testimonial { flex-basis: 50%; } }
@media (min-width: 1080px) { .testimonial-track > .testimonial { flex-basis: 33.333%; } }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(20px, 2.5vw, 30px);
}
.slider-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.slider-btn:hover:not(:disabled) {
  background: var(--orange);
  color: #1A0F08;
  border-color: var(--orange);
}
.slider-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 70%;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg);
  opacity: 0.25;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity var(--t-fast) var(--ease), background var(--t-fast) var(--ease), width var(--t-fast) var(--ease), border-radius var(--t-fast) var(--ease);
}
.slider-dot.active {
  opacity: 1;
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}
/* Mobile: kompaktere Slideshow + Karten-Look + kleinere Dots (13 passen so) */
@media (max-width: 720px) {
  #bewertungen { padding-block: 36px; }
  #bewertungen .section-head { margin-bottom: 14px; gap: 14px; }
  .testimonial-slider { margin-top: 14px; }
  .slider-controls { margin-top: 16px; gap: 12px; }
  .slider-btn { width: 36px; height: 36px; }
  .slider-dots { gap: 6px; max-width: 78%; }
  .slider-dot { width: 7px; height: 7px; }
  .slider-dot.active { width: 18px; border-radius: 3px; }
}

/* Google rating chip */
.google-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.google-rating__score {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.google-rating__stars {
  color: var(--orange);
  letter-spacing: 4px;
  font-size: 18px;
  line-height: 1;
}
.google-rating__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.testimonial {
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Desktop/Tablet: vertikale Trennlinie zwischen Karten, erste Karte ohne */
@media (min-width: 720px) {
  .testimonial-track > .testimonial { border-left: 1px solid var(--line); }
  .testimonial-track > .testimonial:first-child { border-left: 0; }
}
/* Mobile: jede Karte als echte umrandete Karte; Inhalt kompakt + mittig,
   kein leerer Bereich zwischen Zitat und Name (flex:1 auf .quote killen, s.u.),
   Track nimmt natürliche Karten-Höhen (align-items: flex-start), damit die
   Karte den Inhalt eng umschließt. */
@media (max-width: 720px) {
  .testimonial-track { align-items: flex-start; }
  .testimonial-track > .testimonial {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    gap: 16px;
    justify-content: center;
  }
}
.testimonial .stars {
  color: var(--orange);
  letter-spacing: 5px;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1;
}
.testimonial .quote {
  font-family: var(--display);
  font-variation-settings: "opsz" 24;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-style: normal;
  flex: 1;
}
/* Mobile-Override (NACH dem flex:1 oben, damit die Cascade gewinnt) */
@media (max-width: 720px) {
  .testimonial .quote { flex: 0 0 auto; font-size: 18px; line-height: 1.4; }
}
[data-variant="light"] .testimonial .quote {
  font-weight: 600;
  letter-spacing: -0.025em;
}
.testimonial .who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.testimonial .who strong {
  display: block;
  font-family: var(--sans);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 4px;
  font-weight: 500;
}

/* Map ---------------------------------------------------------------- */
.map-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .map-wrap { grid-template-columns: 1fr; } }

.map-canvas {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.map-canvas svg { width: 100%; height: 100%; display: block; }
.map-canvas .pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.map-canvas .pin .dot {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 22%, transparent);
  position: relative;
}
.map-canvas .pin .dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--orange) 50%, transparent);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2);   opacity: 0; }
}
.map-canvas .pin.partner .dot {
  background: var(--fg);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--fg) 18%, transparent);
}
.map-canvas .pin.partner .dot::after { display: none; }
.map-canvas .pin .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--fg);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  padding: 3px 7px;
  border-radius: 3px;
}

/* Clickable partner station markers — numbered orange disc + pulse, distinct from city dots */
.map-canvas .station-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 6;
}
.map-canvas .station-pin .station-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #1A0F08;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #14130F;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 30%, transparent), 0 2px 8px rgba(0,0,0,0.45);
  transition: transform var(--t-fast) var(--ease);
}
.map-canvas .station-pin .station-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--orange) 60%, transparent);
  animation: ping 2.4s var(--ease) infinite;
}
.map-canvas .station-pin:hover .station-dot,
.map-canvas .station-pin.active .station-dot,
.map-canvas .station-pin.hover .station-dot { transform: scale(1.15); }
.map-canvas .station-pin:focus-visible { outline: none; }
.map-canvas .station-pin:focus-visible .station-dot { box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 55%, transparent); }
.map-canvas .station-pin .station-tip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  background: #14130F;
  color: #F4F1EC;
  border: 1px solid rgba(245,242,236,0.16);
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease);
}
.map-canvas .station-pin:hover .station-tip,
.map-canvas .station-pin:focus-visible .station-tip,
.map-canvas .station-pin.hover .station-tip { opacity: 1; }

/* Own location markers — ★, bigger, light fill (distinct from orange partner pins) */
.map-canvas .location-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 7;               /* above partner pins (z6) */
}
.map-canvas .location-pin .location-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--orange) 24%, transparent), 0 2px 10px rgba(0,0,0,0.5);
  transition: transform var(--t-fast) var(--ease);
}
.map-canvas .location-pin .location-dot svg { width: 19px; height: 19px; }
.map-canvas .location-pin .location-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--orange) 65%, transparent);
  animation: ping 2.4s var(--ease) infinite;
}
.map-canvas .location-pin:hover .location-dot,
.map-canvas .location-pin.active .location-dot,
.map-canvas .location-pin.hover .location-dot { transform: scale(1.12); }
.map-canvas .location-pin:focus-visible { outline: none; }
.map-canvas .location-pin .station-tip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  background: #14130F;
  color: #F4F1EC;
  border: 1px solid rgba(245,242,236,0.16);
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease);
}
.map-canvas .location-pin:hover .station-tip,
.map-canvas .location-pin:focus-visible .station-tip,
.map-canvas .location-pin.hover .station-tip { opacity: 1; }

/* Stiller ★-Marker: gleicher Look wie HQ, aber komplett ohne Interaktion */
.map-canvas .location-pin.is-mute {
  pointer-events: none;        /* nicht klickbar, kein Hover, kein Tip */
  cursor: default;
}
.map-canvas .location-pin.is-mute .station-tip { display: none; }
.map-canvas .location-pin.is-mute .location-lbl {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  padding: 3px 7px;
  border-radius: 3px;
  opacity: 0.85;
}

/* Side panel: 3 partner stations, click/hover-synced with the map markers */
.station-panel { align-self: start; }
.station-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.station-list-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--fg) 3%, transparent);
  color: var(--fg);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.station-list-item:hover,
.station-list-item.hover,
.station-list-item.active {
  border-color: var(--orange);
  background: color-mix(in srgb, var(--orange) 12%, transparent);
}
.station-list-item.active { transform: translateX(2px); }
.station-list-item .num {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #1A0F08;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}
/* Own-location list items: ★ on a light disc, matching their map markers */
.station-list-item.is-location .num {
  background: #fff;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.station-list-item.is-location .num svg { width: 15px; height: 15px; }
.station-list-item .info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.station-list-item .nm { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.station-list-item .ort {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Station popup — fixed dark modal, overflow-safe on every screen */
.station-backdrop {
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.station-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 95;
  width: min(360px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px 22px;
  background: #14130F;
  color: #F4F1EC;
  border: 1px solid rgba(245,242,236,0.12);
  border-top: 3px solid var(--orange);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.station-popup .station-name {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  padding-right: 30px;
}
.station-popup .station-person { color: var(--orange); font-size: 13px; margin-top: 3px; }
.station-popup .station-addr {
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 14px;
  color: rgba(245,242,236,0.82);
}
.station-popup .station-hint {
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 12px;
  padding-left: 10px;
  border-left: 2px solid var(--orange);
  color: rgba(245,242,236,0.62);
}
.station-popup .station-links {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
}
.station-popup .station-links a { color: var(--orange); text-decoration: none; font-weight: 600; }
.station-popup .station-links a:hover { text-decoration: underline; }
.station-popup .station-links .ico { margin-right: 8px; }
.station-popup .station-links .fallback { font-size: 12.5px; color: rgba(245,242,236,0.6); }
.station-popup .station-links .fallback a { font-weight: 600; }
/* Maps-CTA: orange Pille mit Pin-Icon — klar erkennbar als externer Routen-Link */
.station-popup .station-links .station-maps {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 9px 14px 9px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #1A0F08 !important;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.station-popup .station-links .station-maps:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  text-decoration: none !important;
}
.station-popup .station-links .station-maps svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.station-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(245,242,236,0.08);
  color: #F4F1EC;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.station-close:hover { background: var(--orange); color: #1A0F08; }

/* Einsatzgebiet block — clearly separated from the map + 3 stations above */
.reach-block {
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
/* Regionen-Gruppierung */
.partner-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px) clamp(32px, 5vw, 64px);
  margin-top: 22px;
}
@media (max-width: 720px) { .partner-regions { grid-template-columns: 1fr; gap: 28px; } }
.partner-region__name {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.partner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px 20px;
}
@media (max-width: 420px) { .partner-list { grid-template-columns: 1fr 1fr; } }
.partner-list li {
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-list li .marker {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* FAQ ---------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 16px;
  align-items: baseline;
  padding: 28px 0;
  text-align: left;
}
.faq-q .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--orange);
}
.faq-q .text {
  font-family: var(--display);
  font-variation-settings: "opsz" 28;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}
[data-variant="light"] .faq-q .text {
  font-weight: 700;
  letter-spacing: -0.03em;
}
.faq-q .plus {
  position: relative;
  width: 22px;
  height: 22px;
  align-self: center;
  justify-self: end;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  inset: 50% 0;
  height: 1px;
  margin-top: -0.5px;
}
.faq-q .plus::after { transform: rotate(90deg); transition: transform var(--t-fast) var(--ease); }
.faq-item.open .plus::after { transform: rotate(0deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-med) var(--ease);
}
.faq-a > div {
  overflow: hidden;
  padding: 0 0 0 76px;
  max-width: 65ch;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > div { padding-bottom: 32px; }
.faq-a p { color: var(--fg-muted); font-size: 16px; line-height: 1.6; margin: 0; }

/* Contact form ------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
/* Kontakt: trim the oversized section height so it hugs its content */
#kontakt { padding-block: clamp(48px, 5.5vw, 80px); }
@media (max-width: 880px) {
  #kontakt { padding-block: 48px; }
  .contact-grid { gap: 30px; }
}
@media (max-width: 560px) {
  #kontakt { padding-block: 38px; }
  .contact-grid { gap: 22px; }
  .contact-info .name { margin-top: 22px; }
  .contact-info .role { margin-bottom: 18px; }
}

.contact-info p { color: var(--fg-muted); margin: 0 0 18px; max-width: 42ch; }
.contact-info .name {
  font-family: var(--display);
  font-variation-settings: "opsz" 32;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.03em;
  margin: 32px 0 4px;
}
[data-variant="light"] .contact-info .name {
  font-weight: 700;
  letter-spacing: -0.035em;
}
.contact-info .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 28px;
}
.standorte { margin-bottom: 26px; }
.standorte .eyebrow { display: block; margin-bottom: 12px; }
.standorte .standort {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.standorte .standort strong {
  display: block;
  font-weight: 600;
  color: var(--fg);
}
.contact-info dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 24px;
  margin: 0;
  font-size: 15px;
}
.contact-info dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  align-self: center;
}
.contact-info dd { margin: 0; color: var(--fg); }

.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.field input, .field textarea {
  border: 0;
  background: transparent;
  border-bottom: 1px solid var(--line-strong);
  font: inherit;
  font-size: 17px;
  color: var(--fg);
  padding: 10px 0;
  outline: none;
  font-family: var(--sans);
  transition: border-color var(--t-fast) var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 80px; }

/* Contact form extras --------------------------------------------------- */
.contact-form { display: flex; flex-direction: column; }
/* Honeypot — visually hidden but still submitted */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Slide-to-unlock-Captcha — sprachfrei, primär per Pfeil-Icon erkennbar */
.slide-unlock {
  margin: 18px 0 4px;
}
.slide-unlock__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 10px;
}
.slide-unlock__track {
  position: relative;
  width: 100%;
  height: 52px;                 /* Touch-Fläche ≥ 44 px */
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;           /* damit der Browser den Drag nicht als Scroll deutet */
}
.slide-unlock__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: color-mix(in srgb, var(--orange) 18%, transparent);
  pointer-events: none;
}
.slide-unlock__track.is-solved .slide-unlock__fill {
  background: color-mix(in srgb, var(--orange) 28%, transparent);
}
.slide-unlock__hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.85;
  pointer-events: none;
}
.slide-unlock__hint svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
}
.slide-unlock__handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #1A0F08;
  border: 0;
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 2;
  /* transform wird per inline-style gesetzt */
}
.slide-unlock__handle:active { cursor: grabbing; }
.slide-unlock__track.is-solved .slide-unlock__handle { cursor: default; }
.slide-unlock__handle:focus-visible {
  outline: 2px solid var(--orange-deep, var(--orange));
  outline-offset: 3px;
}
.slide-unlock__handle svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
@media (max-width: 560px) {
  .slide-unlock__track { height: 56px; }
  .slide-unlock__handle { width: 48px; height: 48px; top: 4px; left: 4px; }
  .slide-unlock__hint { font-size: 11.5px; letter-spacing: 0.12em; }
}

/* Datenschutz-Checkbox im Kontaktformular — eigener Namespace,
   darf NICHT mit dem Cookie-Banner kollidieren. */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 4px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-muted);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}
.form-consent a { color: var(--orange); text-decoration: underline; }
.contact-error {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: #e5484d;
}
/* Footer des Kontaktformulars: Microcopy links, Button rechts — klar UNTER
   der Consent-Checkbox-Zeile (margin-top), nicht überlappend. */
.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.contact-actions .btn[disabled] { opacity: 0.6; cursor: progress; }
@media (max-width: 560px) {
  .contact-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .contact-actions .btn { width: 100%; justify-content: center; }
}
.contact-success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--orange) 10%, transparent);
  font-size: 16px;
}
.contact-success__check {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #1A0F08;
  font-weight: 700;
}
.contact-success p { margin: 0; }

/* Legal pages (Impressum / Datenschutz) --------------------------------- */
.legal {
  background: var(--bg);     /* data-tone="light" -> light bg + dark text */
  color: var(--fg);
  padding-block: clamp(104px, 14vh, 150px) clamp(56px, 8vw, 96px);
  min-height: 70vh;
}
.legal-wrap { max-width: 760px; }
.legal-back {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 24px;
  transition: color var(--t-fast) var(--ease);
}
.legal-back:hover { color: var(--orange); }
.legal-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -0.01em;
  margin: 34px 0 10px;
}
.legal p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0 0 14px;
}
.legal a { color: var(--orange); text-decoration: underline; overflow-wrap: anywhere; }
.legal-stand {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
}
@media (max-width: 560px) {
  .legal { padding-block: 92px 48px; }
  .legal h2 { margin-top: 26px; }
}

/* Floating sticky CTA ----------------------------------------------- */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 58px;
  padding: 0 24px 0 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #1A0F08;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 600ms var(--ease), opacity 400ms var(--ease), background var(--t-fast) var(--ease);
  box-shadow: 0 14px 40px -10px color-mix(in srgb, var(--orange) 60%, transparent),
              0 2px 8px rgba(0,0,0,0.25);
}
.sticky-cta.show { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { background: var(--orange-deep); color: #fff; transform: translateY(-3px) scale(1.02); }
.sticky-cta .ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: ring-pulse 2.4s var(--ease) infinite;
}
@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.0); }
  50%      { box-shadow: 0 0 0 10px rgba(0,0,0,0.0); }
}
.sticky-cta .ring::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.4);
  animation: ring-ping 2s ease-out infinite;
}
@keyframes ring-ping {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.sticky-cta .ring svg { width: 14px; height: 14px; position: relative; }

.sticky-cta .num {
  font-family: var(--mono);
  letter-spacing: 0.02em;
  font-size: 13px;
}
.sticky-cta .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  opacity: 0.75;
}

/* Footer ------------------------------------------------------------- */
footer.foot {
  border-top: 1px solid var(--line);
  padding: 56px var(--gutter) 32px;
  background: var(--bg);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.foot-logo {
  font-size: clamp(18px, 2vw, 22px);
  color: #fff;
}
.foot-social { display: flex; gap: 12px; margin-top: 18px; }
.foot-social .soc {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--fg-muted);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.foot-social .soc:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.foot-social .soc svg { width: 18px; height: 18px; display: block; }
.foot-grid .col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-grid .col ul li { padding: 4px 0; font-size: 14px; }
.foot-grid .col ul li a:hover { color: var(--orange); }
.foot-grid .word {
  font-family: var(--display);
  font-variation-settings: "opsz" 56;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
}
[data-variant="light"] .foot-grid .word {
  font-weight: 700;
  letter-spacing: -0.045em;
}
.foot-grid .word .dot { color: var(--orange); }
.foot-grid .tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 10px;
}
.foot-base {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  flex-wrap: wrap;
}

/* Reveal animation --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }

/* Big quote band ---------------------------------------------------- */
.quote-band {
  padding-block: clamp(80px, 12vw, 160px);
  background: var(--bg-alt);
}
.quote-band .quote {
  font-family: var(--display);
  font-variation-settings: "opsz" 88;
  font-weight: 500;
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
[data-variant="light"] .quote-band .quote {
  font-weight: 600;
  letter-spacing: -0.045em;
}
.quote-band .quote em { color: var(--orange); font-style: normal; font-weight: 700; }
.quote-band .attrib {
  display: block;
  text-align: center;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* Section header ----------------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  margin-bottom: clamp(40px, 6vw, 88px);
  align-items: end;
}
@media (max-width: 720px) { .section-head { grid-template-columns: 1fr; } }
.section-head .eyebrow { margin-bottom: 20px; }

/* Kontakt-Section: auf Desktop/Tablet (≥720px) Abstand Headline → Content
   deutlich reduzieren — Mobile bleibt unverändert. */
@media (min-width: 720px) {
  #kontakt .section-head { margin-bottom: clamp(24px, 2.6vw, 36px); }
}

/* Misc utility ------------------------------------------------------- */
.mono { font-family: var(--mono); }
.serif { font-family: var(--serif); }
.text-right { text-align: right; }

/* Hide tweaks panel default scrollbar look-leak when light theme */
[data-variant="light"] .twk-panel { background: rgba(255,255,255,.78); }

/* Reduce motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero-cinema .frame { transition: opacity 600ms ease; transform: none !important; }
  .hero-progress button.active::after { animation: none; transform: translateX(0); }
  .reveal { transition: opacity 200ms ease; transform: none; }
  .map-canvas .pin .dot::after { animation: none; }
  .hero-scroll .chevron { animation: none; }
  .sticky-cta .ring::before { animation: none; }
}

/* ====================================================================
   Responsive spacing overrides — placed LAST so they win over the base
   rules (.section-head / .process / .hero-center / .reach-block) regardless
   of where those are defined earlier in the file.
   ==================================================================== */
@media (max-width: 880px) {
  .hero-center { top: 30%; }                    /* logo into the upper third */
  .section-head { margin-bottom: 30px; }
  .process { margin-top: 16px; gap: 24px; }     /* no double gap under the intro */
}
@media (max-width: 560px) {
  .section-head { margin-bottom: 20px; gap: 18px; }
  .process { margin-top: 10px; gap: 16px; }
  .reach-block { margin-top: 32px; padding-top: 28px; }
}

/* ====================================================================
   Cookie-Consent-Banner — DSGVO. Erscheint beim 1. Besuch unten,
   blockiert NICHT den ganzen Screen. Drei gleichwertige Aktionen
   (Ablehnen / Einstellungen / Akzeptieren), kein Dark-Pattern.
   Eigener Klassen-Namespace `.cookie-consent*` — DARF NICHT mit dem
   Formular-Consent-Checkbox-Label `.consent` kollidieren.
   ==================================================================== */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;        /* nur die Karte selbst klickbar */
}
.cookie-consent-card {
  pointer-events: auto;
  max-width: 720px;
  width: 100%;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45);
}
.cookie-consent-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 12px;
}
.cookie-consent-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg);
}
.cookie-consent-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
/* Gleichwertige Buttons: identische Optik für Ablehnen/Einstellungen/Akzeptieren */
.cookie-consent-btn {
  flex: 1 1 0;
  min-width: 0;
  appearance: none;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.cookie-consent-btn:hover {
  background: var(--orange);
  color: #1A0F08;
  border-color: var(--orange);
}
.cookie-consent-cats {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-consent-cats label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.cookie-consent-cats input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}
.cookie-consent-cats input[disabled] { opacity: 0.7; cursor: not-allowed; }
.cookie-consent-cat-text { display: flex; flex-direction: column; gap: 3px; line-height: 1.4; }
.cookie-consent-cat-text strong { font-weight: 600; font-size: 14px; color: var(--fg); }
.cookie-consent-cat-text em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--fg-muted, var(--fg-faint));
}

/* Mobile: Buttons untereinander, mehr Atemraum */
@media (max-width: 560px) {
  .cookie-consent { left: 10px; right: 10px; bottom: 10px; }
  .cookie-consent-card { padding: 18px 18px 16px; border-radius: 14px; }
  .cookie-consent-actions { gap: 8px; }
  .cookie-consent-btn { flex-basis: 100%; }
}

/* Footer-Link-Button für „Cookie-Einstellungen" — sieht aus wie ein Link,
   nicht wie ein Button (gleichwertig zu Impressum/Datenschutz daneben). */
.link-button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.link-button:hover { color: var(--orange); }
