/* ==========================================================================
   Jaber Taxi — Hameln
   Visitenkarte: Nachtschwarz, Gold, Elfenbeinschrift. Sonst nichts.
   ========================================================================== */

:root {
  /* Diese Seite IST dunkel. Ohne diese Zeile faerbt Androids „Dunkles Design
     fuer Webseiten" die goldenen Flaechen eigenmaechtig dunkelrot um. */
  color-scheme: dark;

  /* Grund — Schwarz #050505 aus Jabers Vorgabe.
     sand-50 ist die Seite, sand-100/200 sind leicht angehobene Flaechen. */
  --sand-50:  #050505;
  --sand-100: #0e0d0b;
  --sand-200: #171512;
  --line:     rgba(212,175,55,.28);
  --line-soft:rgba(212,175,55,.12);

  /* Schrift — helles Elfenbein, gegen den schwarzen Grund geprueft */
  --ink-950: #050505;   /* tiefstes Schwarz: Ruf-Leiste, Fuss, Aufruf, Chip-Grund */
  --ink-900: #faf6ed;   /* Haupttext */
  --ink-700: rgba(250,246,237,.82);
  --ink-500: rgba(250,246,237,.60);

  /* Signal — Metallic Gold #D4AF37 exakt nach Jabers Vorgabe.
     amber-500 traegt dunkle Schrift, amber-800 ist die helle Textvariante. */
  --amber-500: #d4af37;
  --amber-600: #a98332;
  --amber-800: #f7e7a0;   /* helles Gold, exakt aus Jabers Vorlage */
  --amber-100: rgba(212,175,55,.12);
  --wa: #25d366;
  --wa-dark: #1eb257;

  /* Gold-Verlauf fuer den Metallic-Effekt — Stops exakt aus Jabers Vorlage:
     dunkel #8a6515, Gold #d4af37, hell #f7e7a0 */
  --gold-metal:      linear-gradient(120deg, #8a6515, #d4af37, #f7e7a0, #8a6515);
  --gold-metal-text: linear-gradient(110deg, #8a6515 0%, #d4af37 22%, #f7e7a0 43%, #d4af37 62%, #8a6515 100%);

  --white: #ffffff;
  --surface: #0e0d0b;   /* Grund von Karten und Kaesten auf der dunklen Seite */

  /* Schrift */
  --head: "Lexend", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body: "Source Sans 3", "Source Sans Pro", "Segoe UI", system-ui, sans-serif;

  /* Satzspiegel */
  --gut:  clamp(18px, 4.4vw, 76px);
  --wrap: 1240px;

  /* Raster — Dichte 4 von 10, also eher grosszuegig */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 40px;
  --s-5: 64px; --s-6: 96px;

  /* Bewegung — Stufe 5 von 10 */
  --e-out: cubic-bezier(.22,.7,.28,1);
  --e-io:  cubic-bezier(.62,0,.24,1);
  --e-back: cubic-bezier(.34,1.4,.5,1);
  --t-fast: .15s;
  --t-mid:  .28s;
  --t-slow: .5s;

  /* Hoehe der Ruf-Leiste auf dem Telefon, damit der Fussbereich Platz laesst */
  --callbar: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink-900);
  font-family: var(--body);
  font-size: 1.075rem;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--callbar);
}

img, svg { max-width: 100%; display: block; }
.icon { width: 20px; height: 20px; flex: none; }

/* --------------------------------------------------------------- Typografie */

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.9rem); font-weight: 700; letter-spacing: -.03em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.14rem, 1.6vw, 1.36rem); line-height: 1.26; }
h4 { font-size: 1.02rem; line-height: 1.32; font-weight: 600; letter-spacing: -.005em; }

/* Akzentwort in Ueberschriften — Metallic-Gold wie in Jabers Vorlage */
.hl {
  background: var(--gold-metal-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--amber-800);
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hl { color: var(--amber-500); -webkit-text-fill-color: currentColor; }
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-800);
}
.kicker::before {
  content: ""; width: 24px; height: 3px; background: var(--gold-metal); flex: none;
}

.lede {
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  line-height: 1.58; color: var(--ink-700);
}
.prose p { max-width: 68ch; }

/* --------------------------------------------------------------- Satzspiegel */

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
/* Lesespalte. Der Satzspiegel bleibt so breit wie sonst, damit die linke
   Kante mit dem Seitenkopf fluchtet; nur die Zeilenlaenge wird begrenzt.
   Eine zentrierte Spalte saehe unter dem linksbuendigen Kopf unbeabsichtigt
   aus. */
.narrow > * { max-width: 70ch; }

.section { padding: clamp(48px, 6.4vw, 104px) 0; }
.sec-sand   { background: var(--sand-50); }
.sec-sand-2 { background: var(--sand-100); }
.sec-line   { border-top: 1px solid var(--line); }
.sec-dark {
  background: var(--ink-950); color: var(--white);
  --ink-900: #ffffff;
  --ink-700: rgba(255,255,255,.84);
  --ink-500: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.16);
  --amber-800: var(--amber-500);
}

/* --------------------------------------------------------------- Kopfbereich */

.topbar {
  background: var(--ink-950); color: rgba(255,255,255,.82);
  font-size: .88rem;
}
.topbar .container {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 22px; min-height: 38px;
}
.topbar a {
  display: inline-flex; align-items: center; gap: 7px; min-height: 32px;
  text-decoration: none; font-weight: 600; color: var(--amber-500);
}
.topbar a:hover { color: var(--white); }
.topbar .tb-end { margin-left: auto; color: rgba(255,255,255,.62); font-weight: 400; }
@media (max-width: 720px) { .topbar .tb-end { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--sand-50); border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t-mid) var(--e-out);
}
.site-header.is-stuck { box-shadow: 0 6px 20px -16px rgba(14,16,19,.55); }
.hdr { display: flex; align-items: center; gap: var(--s-2); min-height: 72px; }

/* Wortmarke — solange kein Logo geliefert ist, rein typografisch.
   Der gelbe Balken zitiert das Dachzeichen. */
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-sign {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px; padding: 0 9px; background: var(--gold-metal);
  font-family: var(--head); font-weight: 700; font-size: .82rem;
  letter-spacing: .18em; color: var(--ink-950);
}
.brand-name {
  font-family: var(--head); font-weight: 700; font-size: 1.32rem;
  letter-spacing: -.02em; line-height: 1;
  background: var(--gold-metal-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--amber-800);
}
/* Kein Verlaufstext, wenn der Browser background-clip:text nicht kann */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand-name { color: var(--amber-500); -webkit-text-fill-color: currentColor; }
}

.main-nav { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.main-nav a {
  position: relative;
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 13px;
  font-family: var(--head); font-weight: 500; font-size: .98rem;
  color: var(--ink-700); text-decoration: none; white-space: nowrap;
  transition: color var(--t-fast) var(--e-out);
}
.main-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 10px; height: 3px;
  background: var(--gold-metal);
  transform: scaleX(0); transform-origin: left center;
  transition: transform var(--t-mid) var(--e-out);
}
.main-nav a:hover { color: var(--ink-900); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--ink-900); }

.hdr-call { margin-left: 14px; white-space: nowrap; flex: none; }
/* Zwei Klassen, damit die Regel gegen .btn gewinnt — .btn setzt spaeter im
   Stylesheet display auf inline-flex und haette sonst das Ausblenden
   ueberschrieben. Der Menueknopf waere dann aus dem Bild gedraengt worden. */
@media (max-width: 1360px) { .hdr .hdr-call { display: none; } }

.nav-toggle {
  display: none; margin-left: auto;
  width: 48px; height: 48px; padding: 0;
  align-items: center; justify-content: center;
  background: none; border: 2px solid var(--line); cursor: pointer; color: var(--ink-900);
  transition: border-color var(--t-fast) var(--e-out), background var(--t-fast) var(--e-out);
}
.nav-toggle:hover { border-color: var(--ink-900); }
.nav-toggle:active { background: var(--sand-200); }
.nav-toggle span { display: block; width: 21px; height: 2px; background: currentColor; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 21px; height: 2px; background: currentColor;
  transition: transform var(--t-mid) var(--e-out), top var(--t-mid) var(--e-out);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.nav-panel { display: none; border-top: 1px solid var(--line); background: var(--sand-50); padding-bottom: var(--s-2); }
.nav-panel.open { display: block; }
.nav-panel a {
  display: flex; align-items: center; min-height: 52px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--head); font-weight: 500; font-size: 1.08rem;
  color: var(--ink-900); text-decoration: none;
}
.nav-panel a:active { color: var(--amber-800); }
@media (max-width: 1120px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* --------------------------------------------------------------- Schaltflaechen */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px;
  font-family: var(--head); font-weight: 600; font-size: 1.02rem;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: background var(--t-fast) var(--e-out), color var(--t-fast) var(--e-out),
              border-color var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-out);
}
/* Druckzustand — das Skill fuehrt fehlende Rueckmeldung als Fehler */
.btn:active { transform: scale(.97); }
.btn-amber { background: var(--gold-metal); color: var(--ink-950); }
.btn-amber:hover { background: var(--amber-600); }
.btn-wa { background: var(--wa); color: #04240f; border-color: var(--wa); }
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); }
.btn-dark { background: var(--ink-950); color: var(--white); }
.btn-dark:hover { background: var(--ink-700); }
.btn-line { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn-line:hover { background: var(--ink-950); color: var(--white); }
.btn-line-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-line-light:hover { background: var(--white); color: var(--ink-950); border-color: var(--white); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: .94rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-3); }
.btn-row--wide .btn { flex: 1 1 220px; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--amber-800); outline-offset: 3px;
}
.sec-dark :where(a, button):focus-visible, .topbar :where(a):focus-visible,
.callbar :where(a):focus-visible { outline-color: var(--amber-500); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink-950); color: var(--white); padding: 14px 20px; font-weight: 600;
}
.skip:focus { left: 0; }

/* --------------------------------------------------------------- Ruf-Leiste */

/* Auf dem Telefon liegen Anruf und WhatsApp fest am unteren Rand. Wer ein
   Taxi braucht, soll die Nummer nicht suchen muessen. */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: 2px;
  background: var(--ink-950);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -8px 24px -18px rgba(0,0,0,.8);
}
.callbar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 60px; text-decoration: none;
  font-family: var(--head); font-weight: 600; font-size: 1.04rem;
  transition: filter var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-out);
}
.callbar a:active { transform: scale(.97); }
.cb-call { background: var(--gold-metal); color: var(--ink-950); }
.cb-wa   { background: var(--wa); color: #04240f; }
.cb-wa:hover { background: var(--wa-dark); }
@media (max-width: 1120px) {
  .callbar { display: flex; }
  :root { --callbar: 60px; }
}
@media print { .callbar { display: none; } }

/* --------------------------------------------------------------- Bilder */

.plate { position: relative; overflow: hidden; background: var(--sand-200); border: 1px solid var(--line); }
.plate img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plate--wide { aspect-ratio: 16 / 9; }
.plate--32   { aspect-ratio: 3 / 2; }

/* Symbolbild-Marke — die Aufnahmen sind nicht die eigenen Wagen, und das
   soll man sehen, ohne die Bildunterschrift lesen zu muessen. */
.plate .stamp {
  position: absolute; right: 0; bottom: 0; z-index: 1;
  background: var(--ink-950); color: var(--white);
  font-family: var(--head); font-size: .79rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px;
}

figure.figure { margin: 0; }
figure.figure figcaption {
  margin-top: 10px; font-size: .92rem; color: var(--ink-500); line-height: 1.5;
}

/* Vollbreite Bildbahn */
.band { position: relative; overflow: hidden; aspect-ratio: 21 / 8; background: var(--ink-950); }
.band img {
  position: absolute; left: 0; top: -13%;
  width: 100%; height: 126%; object-fit: cover; opacity: .9;
  transform: translateY(var(--par, 0%)); will-change: transform;
}
.band-in {
  position: absolute; inset: auto 0 0 0; padding: clamp(16px, 2.2vw, 30px) 0;
  background: rgba(14,16,19,.84); border-top: 4px solid var(--amber-500);
}
.band-in p {
  margin: 0; color: var(--white); font-family: var(--head); font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.5rem); line-height: 1.22; max-width: 32ch;
}
.band-in .stamp-line {
  display: block; margin-top: 7px; font-family: var(--body); font-weight: 400;
  font-size: .88rem; color: rgba(255,255,255,.6);
}
@media (max-width: 700px) { .band { aspect-ratio: 3 / 2; } }

/* Zweispalter aus Text und Bild */
.spread {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 56px); align-items: center;
}
.spread > * { min-width: 0; }
.spread.rev > figure { order: -1; }
@media (max-width: 900px) {
  .spread { grid-template-columns: 1fr; }
  .spread.rev > figure { order: 0; }
}

/* --------------------------------------------------------------- Kopieren */

.copy-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 14px; }
.copy-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 16px;
  background: transparent; border: 2px solid var(--line); cursor: pointer;
  font-family: var(--head); font-weight: 600; font-size: .94rem; color: var(--ink-700);
  transition: border-color var(--t-fast) var(--e-out), color var(--t-fast) var(--e-out),
              background var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-out);
}
.copy-btn:hover { border-color: var(--ink-900); color: var(--ink-900); }
.copy-btn:active { transform: scale(.97); }
.copy-btn.done { border-color: var(--amber-600); background: var(--amber-100); color: var(--amber-800); }
.copy-btn .icon { width: 17px; height: 17px; }
/* Nur zeigen, wo es hilft: der Zeigerbetrieb ist der Rechner. */
@media (hover: none) and (pointer: coarse) { .copy-row { display: none; } }
.copy-note { font-size: .9rem; color: var(--ink-500); max-width: 46ch; }

/* --------------------------------------------------------------- Titelbereich */

.hero { padding: clamp(40px, 5.6vw, 88px) 0 clamp(32px, 4vw, 60px); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4.4vw, 68px); align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-top: 18px; max-width: 15ch; }
.hero .lede { margin-top: clamp(18px, 2.4vw, 28px); max-width: 50ch; }

/* Die Rufkarte — der wichtigste Baustein der Startseite */
.callcard {
  background: var(--surface); border: 2px solid var(--amber-500);
  padding: clamp(22px, 3vw, 34px);
}
.callcard .cc-label {
  font-family: var(--head); font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500);
}
.callcard .cc-num {
  display: inline-block; margin-top: 10px;
  font-family: var(--head); font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.35rem); letter-spacing: -.02em;
  color: var(--amber-800); text-decoration: none;
  font-variant-numeric: lining-nums tabular-nums;
}
.callcard .cc-num:hover { color: var(--white); }
.callcard .cc-note { margin-top: 12px; font-size: .98rem; color: var(--ink-500); }
.callcard .btn-row { margin-top: var(--s-3); }

/* Kennzahlenband */
.strip {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 3px solid var(--amber-500);
  margin-top: clamp(32px, 4.4vw, 60px);
}
.strip > div { padding: clamp(16px, 2vw, 24px) clamp(10px, 1.6vw, 22px) clamp(16px, 2vw, 24px) 0; }
.strip > div + div { border-left: 1px solid var(--line); padding-left: clamp(14px, 1.8vw, 24px); }
.strip dt {
  font-family: var(--head); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500);
}
.strip dd {
  margin: 7px 0 0; font-family: var(--head); font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--ink-900); line-height: 1.28;
}
@media (max-width: 700px) {
  .strip { grid-template-columns: 1fr; }
  .strip > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
}

/* Seitenkopf der Unterseiten */
.page-head { padding: clamp(34px, 5vw, 72px) 0 clamp(24px, 3vw, 44px); border-bottom: 1px solid var(--line); }
.page-head h1 { margin-top: 16px; max-width: 19ch; }
.page-head .lede { margin-top: 20px; max-width: 62ch; }

.crumbs { font-size: .92rem; color: var(--ink-500); padding-top: 4px; }
.crumbs a { color: inherit; text-decoration: none; display: inline-block; padding: 5px 0; min-height: 24px; }
.crumbs a:hover { color: var(--amber-800); text-decoration: underline; }
.crumbs span { opacity: .5; padding: 0 8px; }

/* --------------------------------------------------------------- Register */

.register { border-top: 1px solid var(--line); margin-top: clamp(28px, 3.6vw, 48px); }
.reg-row {
  position: relative; display: block; text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 30px) 0;
  transition: padding-inline-start var(--t-slow) var(--e-io), color var(--t-mid) var(--e-out);
}
.reg-row::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--ink-950);
  transform: scaleY(0); transform-origin: bottom center;
  transition: transform var(--t-slow) var(--e-io);
}
.reg-row:hover, .reg-row:focus-visible {
  color: var(--white); padding-inline-start: clamp(12px, 1.8vw, 28px);
}
.reg-row:hover::before, .reg-row:focus-visible::before {
  transform: scaleY(1); transform-origin: top center;
}
.reg-in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 54px minmax(0, 1fr) minmax(0, 1.2fr) 40px;
  gap: clamp(12px, 2vw, 28px); align-items: baseline;
  padding-inline-end: clamp(0px, 1.4vw, 20px);
}
.reg-n {
  font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--amber-800);
  font-variant-numeric: lining-nums tabular-nums; transition: color var(--t-mid) var(--e-out);
}
.reg-h {
  font-family: var(--head); font-weight: 600; font-size: clamp(1.16rem, 1.9vw, 1.6rem);
  line-height: 1.16; letter-spacing: -.02em; color: var(--ink-900);
  transition: color var(--t-mid) var(--e-out);
}
.reg-d { font-size: .98rem; line-height: 1.55; color: var(--ink-500); transition: color var(--t-mid) var(--e-out); }
.reg-go { justify-self: end; align-self: center; color: var(--ink-500); transition: color var(--t-mid) var(--e-out); }
.reg-go .icon { width: 24px; height: 24px; transition: transform var(--t-mid) var(--e-out); }
.reg-row:hover .reg-n, .reg-row:focus-visible .reg-n { color: var(--amber-500); }
.reg-row:hover .reg-h, .reg-row:focus-visible .reg-h { color: var(--white); }
.reg-row:hover .reg-d, .reg-row:focus-visible .reg-d { color: rgba(255,255,255,.78); }
.reg-row:hover .reg-go, .reg-row:focus-visible .reg-go { color: var(--amber-500); }
.reg-row:hover .reg-go .icon { transform: translateX(6px); }
@media (max-width: 820px) {
  .reg-in { grid-template-columns: 42px minmax(0, 1fr) 28px; }
  .reg-d { grid-column: 2 / 4; margin-top: 8px; }
}

/* --------------------------------------------------------------- Kennzahlen */

.stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px); margin-top: clamp(30px, 3.6vw, 48px);
}
.stat {
  text-align: center; padding: clamp(28px, 3vw, 42px) 22px;
  background: linear-gradient(160deg, rgba(217,165,43,.10), rgba(255,255,255,.02));
  border: 1px solid var(--line); border-radius: 12px;
}
.stat strong {
  display: block; font-family: var(--head); font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1; color: var(--amber-800);
  font-variant-numeric: lining-nums tabular-nums;
}
.stat span {
  display: block; margin-top: 11px; font-family: var(--head); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; color: var(--white);
}
.stat p { margin-top: 10px; font-size: .93rem; color: rgba(255,255,255,.74); }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Leistungskarten */

.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(14px, 1.8vw, 20px); margin-top: clamp(30px, 3.6vw, 48px);
}
.svc-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform var(--t-mid) var(--e-out), border-color var(--t-mid) var(--e-out),
              box-shadow var(--t-mid) var(--e-out);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 20px 46px rgba(0,0,0,.5); }
.svc-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--e-out); }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,7,6,.7)); }
.svc-num {
  position: absolute; left: 14px; top: 12px; z-index: 1;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(8,7,6,.55); border: 1px solid var(--line); color: var(--amber-800);
  font-family: var(--head); font-weight: 700; font-size: .9rem; backdrop-filter: blur(4px);
}
.svc-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.svc-title { font-family: var(--head); font-weight: 600; font-size: 1.22rem; color: var(--ink-900); }
.svc-teaser { margin-top: 9px; font-size: .95rem; color: var(--ink-700); line-height: 1.55; }
.svc-go { margin-top: auto; padding-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--amber-800); font-family: var(--head); font-weight: 600; font-size: .9rem; }
.svc-go .icon { width: 17px; height: 17px; transition: transform var(--t-mid) var(--e-out); }
.svc-card:hover .svc-go .icon { transform: translateX(5px); }

/* --------------------------------------------------------------- Kartenraster */

.cards {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(28px, 3.6vw, 48px);
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 30px);
  transition: border-color var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-out);
}
.card:hover { border-color: var(--ink-900); }
.card .c-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--gold-metal); color: var(--ink-950);
  font-family: var(--head); font-weight: 700; font-size: .88rem;
  font-variant-numeric: lining-nums tabular-nums;
}
.card h3 { margin: 16px 0 9px; }
.card p { font-size: .98rem; line-height: 1.58; color: var(--ink-700); }
@media (max-width: 940px) { .cards { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Aufzaehlung */

.marks { list-style: none; margin: var(--s-2) 0 0; padding: 0; }
.marks li {
  position: relative; padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line-soft); font-size: 1.02rem; line-height: 1.52;
}
.marks li::before {
  content: ""; position: absolute; left: 0; top: 21px;
  width: 18px; height: 3px; background: var(--gold-metal);
}
.cols-2 { columns: 2; column-gap: clamp(22px, 3vw, 44px); }
.cols-2 > li { break-inside: avoid; }
@media (max-width: 720px) { .cols-2 { columns: 1; } }

/* --------------------------------------------------------------- Textblock */

.blk + .blk { margin-top: clamp(30px, 3.6vw, 52px); }
.blk p { margin-top: 16px; max-width: 68ch; }
.blk .intro { margin-top: 16px; color: var(--ink-700); }

/* --------------------------------------------------------------- Karte */

.map-wrap {
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(16px, 2.4vw, 30px); margin-top: clamp(26px, 3.4vw, 44px);
}
.map-wrap svg { width: 100%; height: auto; }
.map-ring { fill: none; stroke: var(--line); stroke-width: 1; stroke-dasharray: 5 6; }
.map-spoke { stroke: var(--line); stroke-width: 1; }
.map-dot { fill: var(--amber-500); stroke: var(--ink-950); stroke-width: 1.5; }
.map-hub { fill: var(--amber-500); }
.map-label { font-family: var(--body); font-size: 13px; fill: var(--ink-900); }
.map-km    { font-family: var(--body); font-size: 11.5px; fill: var(--ink-500); }
.map-hub-label { font-family: var(--head); font-size: 15px; font-weight: 700; fill: var(--white); }
.map-place { transition: opacity var(--t-fast) var(--e-out); }
.map-wrap:hover .map-place { opacity: .45; }
.map-wrap .map-place:hover { opacity: 1; }
.map-wrap .map-place:hover .map-dot { fill: var(--white); }
.map-legend {
  display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: var(--s-2);
  font-size: .92rem; color: var(--ink-500);
}
@media (max-width: 620px) { .map-wrap { padding: 12px; } .map-label { font-size: 15px; } .map-km { font-size: 13px; } }

/* Google Maps — laedt erst auf Klick (Datenschutz) */
.gmap {
  position: relative; margin-top: clamp(20px, 2.6vw, 34px); min-height: 320px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  display: grid; place-items: center; text-align: center; gap: 12px; padding: 30px;
}
.gmap-load {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer; border: 0;
  background: var(--gold-metal); color: var(--ink-950); padding: 13px 22px; border-radius: 6px;
  font-family: var(--head); font-weight: 700; font-size: .95rem;
  transition: background var(--t-fast) var(--e-out);
}
.gmap-load:hover { background: var(--amber-600); }
.gmap-load .icon { width: 18px; height: 18px; }
.gmap-hint { font-size: .85rem; color: var(--ink-500); max-width: 46ch; }
.gmap.loaded { display: block; padding: 0; min-height: 0; }
.gmap iframe { width: 100%; height: 360px; border: 0; display: block; border-radius: 10px; }

/* Flughafenliste */
.airports { border-top: 1px solid var(--line); margin-top: clamp(24px, 3vw, 40px); }
.air-row {
  display: grid; grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: clamp(12px, 2vw, 26px); align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.air-code {
  font-family: var(--head); font-weight: 700; font-size: .92rem;
  color: var(--ink-950); background: var(--gold-metal);
  padding: 3px 8px; justify-self: start;
}
.air-name { font-family: var(--head); font-weight: 500; font-size: 1.06rem; }
.air-km { font-variant-numeric: lining-nums tabular-nums; color: var(--ink-500); white-space: nowrap; }

/* --------------------------------------------------------------- Fahrzeuge */

.fleet { display: grid; gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(26px, 3.4vw, 44px); }
.fleet { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vehicle {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color var(--t-mid) var(--e-out);
}
.vehicle:hover { border-color: var(--ink-900); }
.vehicle .plate { border: 0; border-bottom: 1px solid var(--line); }
.v-body { padding: clamp(18px, 2.2vw, 26px); display: flex; flex-direction: column; flex: 1; }
.vehicle h3 { margin-bottom: 6px; }
.v-model {
  font-family: var(--head); font-weight: 600; font-size: .95rem; color: var(--ink-900);
}
.v-seats {
  display: inline-block; margin: 10px 0 12px;
  font-family: var(--head); font-size: .84rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--amber-800);
}
.vehicle p { font-size: .97rem; line-height: 1.58; color: var(--ink-700); }
/* Was bestaetigt ist und was nicht, steht an der Karte selbst. */
.v-state { margin-top: auto; padding-top: 16px; }
@media (max-width: 940px) { .fleet { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .fleet { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Kontaktwege */

.ways { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(26px, 3.4vw, 44px); }
.way {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 30px);
  transition: border-color var(--t-mid) var(--e-out);
}
.way:hover { border-color: var(--ink-900); }
.way .w-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; background: var(--gold-metal); color: var(--ink-950);
}
.way .w-ico .icon { width: 24px; height: 24px; }
.way h3 { margin: 16px 0 9px; }
.way p { font-size: .98rem; color: var(--ink-700); line-height: 1.56; }
.way .btn { margin-top: auto; }
.way .btn-row { margin-top: var(--s-3); }
@media (max-width: 940px) { .ways { grid-template-columns: 1fr; } }

/* Nachrichtenvorlage */
.prefill { background: var(--amber-100); border-left: 5px solid var(--amber-500); padding: clamp(20px, 2.4vw, 30px); margin-top: clamp(26px, 3.4vw, 44px); }
.prefill h3 { color: var(--white); }
.prefill p { margin-top: 10px; font-size: .99rem; color: var(--ink-700); }
.prefill ol { margin: var(--s-2) 0 0; padding-left: 1.3em; }
.prefill li { padding: 5px 0; font-size: 1rem; }

/* --------------------------------------------------------------- Angaben */

.info-block { border-top: 1px solid var(--line); }
.info-item { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-item .icon { color: var(--amber-800); margin-top: 3px; }
.info-item h4 {
  font-family: var(--head); font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-500); margin-bottom: 5px;
}
.info-item a { display: inline-flex; align-items: center; min-height: 26px; padding: 3px 0; }
.info-item a:hover { color: var(--amber-800); }

/* --------------------------------------------------------------- Hinweise */

.note {
  border-left: 5px solid var(--ink-950); background: var(--sand-100);
  padding: 18px 20px; font-size: .99rem; line-height: 1.58; color: var(--ink-700);
  margin-top: var(--s-3);
}
.note strong { font-family: var(--head); font-weight: 600; color: var(--ink-900); display: block; margin-bottom: 5px; }
.note--warn { border-left-color: var(--amber-600); background: var(--amber-100); }
.note--legal { border-left-color: var(--amber-600); background: var(--amber-100); }

/* Fehlende Angabe — sichtbar, nicht erfunden */
.pending {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--head); font-size: .9rem; font-weight: 600;
  color: var(--amber-800); background: var(--amber-100);
  border: 1px dashed var(--amber-600); padding: 3px 10px;
}

/* --------------------------------------------------------------- Recht */

.legal { max-width: 74ch; }
.legal h2 { font-family: var(--head); font-size: 1.2rem; font-weight: 600; margin: 34px 0 12px; }
.legal h2:first-of-type { margin-top: 0; }
.legal dl { margin: 0; border-top: 1px solid var(--line); }
.legal dt {
  font-family: var(--head); font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-500); padding-top: 14px;
}
.legal dd { margin: 4px 0 0; padding-bottom: 14px; border-bottom: 1px solid var(--line); }

/* --------------------------------------------------------------- Aufruf */

.cta { background: var(--ink-950); color: var(--white); }
.cta-in {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px); align-items: center;
  padding: clamp(42px, 5.4vw, 80px) 0;
}
@media (max-width: 900px) { .cta-in { grid-template-columns: 1fr; } }
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.82); margin-top: 14px; max-width: 50ch; }
.cta .cta-num {
  display: inline-block; margin-bottom: 6px;
  font-family: var(--head); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -.02em; color: var(--amber-500); text-decoration: none;
  font-variant-numeric: lining-nums tabular-nums;
}
.cta .cta-num:hover { color: var(--white); }

/* --------------------------------------------------------------- Fussbereich */

.site-footer { background: var(--ink-950); color: rgba(255,255,255,.78); padding-top: clamp(40px, 5vw, 72px); }
.site-footer a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--e-out); }
.site-footer a:hover { color: var(--amber-500); }
.foot-grid {
  display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
@media (max-width: 1000px) { .foot-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px)  { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--head); font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul a { display: inline-flex; align-items: center; min-height: 34px; font-size: .99rem; }
.foot-brand .brand-name { color: var(--white); }
.foot-claim {
  font-family: var(--head); font-weight: 600; font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  line-height: 1.24; color: var(--white); margin: 16px 0 0; max-width: 22ch;
}
.foot-addr { margin-top: 16px; font-size: .98rem; line-height: 1.72; }
.foot-addr a { display: inline-flex; align-items: center; min-height: 30px; font-weight: 600; color: var(--amber-500); }
.colophon {
  display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center;
  padding: 18px 0 26px; font-size: .9rem; color: rgba(255,255,255,.55);
}
.colophon .co-end { margin-left: auto; }
.colophon a { display: inline-flex; align-items: center; min-height: 32px; }

.demo-note {
  background: var(--amber-100); color: var(--amber-800);
  font-family: var(--head); font-size: .86rem; font-weight: 500;
  text-align: center; padding: 9px 16px;
}

.to-top {
  position: fixed; right: 18px; bottom: calc(18px + var(--callbar)); z-index: 70;
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--ink-900); border: 2px solid var(--ink-950);
  opacity: 0; visibility: hidden; transform: translateY(8px); cursor: pointer;
  transition: opacity var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-out), visibility var(--t-mid);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:active { transform: scale(.94); }
.to-top .icon { transform: rotate(-90deg); }
@media (max-width: 620px) { .to-top { display: none; } }

/* ==========================================================================
   Bewegung — Stufe 5 von 10. Einblenden, Anheben, gestaffelt.
   Ohne JS ist alles sichtbar.
   ========================================================================== */

.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .44s var(--e-out), transform .44s var(--e-out);
}
/* Gestaffelt, mit dem leichten Ueberschwingen aus der Skill-Empfehlung */
.js .stagger.in > * { animation: pop .42s var(--e-back) backwards; }
.js .stagger.in > *:nth-child(1) { animation-delay: 0ms; }
.js .stagger.in > *:nth-child(2) { animation-delay: 60ms; }
.js .stagger.in > *:nth-child(3) { animation-delay: 120ms; }
.js .stagger.in > *:nth-child(4) { animation-delay: 180ms; }
.js .stagger.in > *:nth-child(5) { animation-delay: 240ms; }
.js .stagger.in > *:nth-child(6) { animation-delay: 300ms; }
.js .stagger.in > *:nth-child(n+7) { animation-delay: 360ms; }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.96); } }

/* Registerzeilen laufen einzeln von links ein */
.js .register .reg-row { opacity: 0; transform: translateX(-10px); }
.js .register .reg-row.in {
  opacity: 1; transform: none;
  transition: opacity .44s var(--e-out), transform .44s var(--e-out),
              padding-inline-start var(--t-slow) var(--e-io), color var(--t-mid) var(--e-out);
}

/* Die Speichen der Karte zeichnen sich, wenn die Karte ins Bild kommt */
.js .map-wrap .map-spoke { stroke-dasharray: 300; stroke-dashoffset: 300; }
.js .map-wrap.in .map-spoke { stroke-dashoffset: 0; transition: stroke-dashoffset 1s var(--e-io); }
.js .map-wrap .map-place { opacity: 0; }
.js .map-wrap.in .map-place { opacity: 1; transition: opacity .5s var(--e-out); }
.js .map-wrap.in .map-place:nth-child(2) { transition-delay: .1s; }
.js .map-wrap.in .map-place:nth-child(3) { transition-delay: .16s; }
.js .map-wrap.in .map-place:nth-child(4) { transition-delay: .22s; }
.js .map-wrap.in .map-place:nth-child(5) { transition-delay: .28s; }
.js .map-wrap.in .map-place:nth-child(6) { transition-delay: .34s; }
.js .map-wrap.in .map-place:nth-child(7) { transition-delay: .4s; }
.js .map-wrap.in .map-place:nth-child(8) { transition-delay: .46s; }

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .js .reveal {
      animation: fade-rise linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 24%;
      opacity: 1; transform: none; transition: none;
    }
    .js .reveal.in { transition: none; }
    .js .hero .reveal, .js .page-head .reveal { animation: none; }
    @keyframes fade-rise { from { opacity: 0; transform: translateY(20px); } }
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.in, .js .stagger.in > *,
  .js .register .reg-row, .js .register .reg-row.in,
  .js .map-wrap .map-place, .js .map-wrap.in .map-place {
    opacity: 1 !important; transform: none !important;
    animation: none !important; transition: none !important;
  }
  .js .map-wrap .map-spoke, .js .map-wrap.in .map-spoke {
    stroke-dashoffset: 0 !important; transition: none !important;
  }
  .btn:active, .callbar a:active, .to-top:active { transform: none; }
  * { scroll-behavior: auto !important; }
}

@media print {
  .topbar, .site-header, .callbar, .to-top, .demo-note { display: none; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .sec-dark, .cta, .site-footer { background: #fff !important; color: #000 !important; }
  .cta .cta-num, .foot-addr a { color: #000 !important; }
}
