/* ============================================================
   MISCHFASSUNG – Ergänzung zu style.css

   Die Live-Seite bleibt die Basis und behält style.css. Diese
   Datei bringt nur die Bausteine mit, die aus dem neuen Entwurf
   übernommen wurden: Bühne, Bewertungen mit Kennzahl, Erfolge-
   Streifen, Theoriezeiten, Landkreiskarte, Fahrstunden-Banderole,
   Bergen-Block und die Kurz-FAQ.

   Bewusst NICHT enthalten: globale Regeln für body, Überschriften,
   .container, .section und .btn – die gehören weiter style.css,
   damit die übernommenen Live-Abschnitte unverändert aussehen.
   ============================================================ */

/* ============================================================
   NEUE STARTSEITE – Fahrschule Lange  (Testfassung)

   Eigenständiges Stylesheet, bewusst OHNE style.css.
   Grundgedanke: ruhig, redaktionell, wenig Effekt.

   Drei Regeln, die das ganze Blatt tragen:
   1. Grün ist Signalfarbe – Handlung und Kennzahl. Sonst nichts.
   2. Ein Kartentyp, ein Rahmen, ein Radius.
   3. Alle Abstände aus einer 4px-Skala, keine krummen Werte.
   ============================================================ */

:root {
  /* Farben ---------------------------------------------------- */
  --tinte:        #0d0d0d;
  --tinte-70:     #45454a;
  --tinte-45:     #74747c;
  --papier:       #ffffff;
  --papier-warm:  #f6f6f2;
  --linie:        #e3e3dc;
  --linie-dunkel: rgba(255,255,255,0.14);

  /* Direkt aus logo-transparent.png ausgelesen:
     Grün #20F600 (29.747 Bildpunkte), Orange #F25F1C (5.675).
     Das Logo-Grün hat auf Weiß nur 1,47:1 Kontrast – als Textfarbe
     unbrauchbar. Deshalb zwei abgeleitete Stufen aus derselben Farbe. */
  --signal:       #20f600;   /* Logo-Grün – nur Flächen, dunkler Text darauf (13,2:1) */
  --signal-dunkel:#1cd800;   /* Hover */
  --signal-tief:  #118200;   /* Text – haelt 4,5:1 auch auf den warmen Flaechen */
  --warm:         #f25f1c;   /* Logo-Orange – Flächen */
  --warm-tief:    #c04c16;   /* Logo-Orange als Text – ebenfalls auf allen Flaechen */
  --stern:        #f5a623;

  /* Abstände (4px-Raster) -------------------------------------- */
  --r1: .25rem;  --r2: .5rem;   --r3: .75rem;  --r4: 1rem;
  --r5: 1.5rem;  --r6: 2rem;    --r7: 3rem;    --r8: 4rem;
  --r9: 6rem;    --r10: 8rem;

  /* Schrift ---------------------------------------------------- */
  --schrift:  'DM Sans VF', 'DM Sans', system-ui, sans-serif;
  --display:  'Barlow Condensed', 'DM Sans', sans-serif;

  --t-mikro: .72rem;
  --t-klein: .875rem;
  --t-basis: 1rem;
  --t-lead:  clamp(1rem, 1.5vw, 1.28rem);
  --t-h3:    clamp(1.15rem, 2.2vw, 1.6rem);
  --t-h2:    clamp(1.6rem, 6.2vw, 4.4rem);
  --t-h1:    clamp(1.95rem, 8.2vw, 6.6rem);

  --radius:      14px;
  --radius-voll: 999px;
  --bahn:        1180px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

/* Nur für Screenreader */
.nur-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Bahn / Abschnitt -------------------------------------------- */
.bahn      { max-width: var(--bahn); margin: 0 auto; padding: 0 var(--r5); }
.bahn--eng { max-width: 780px; }

.tafel        { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.tafel--warm  { background: var(--papier-warm); }
.tafel--tinte { background: var(--tinte); color: var(--papier); }
.tafel--schmal{ padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* Abschnittskopf – überall gleich aufgebaut -------------------- */
.kopf { max-width: 620px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.kopf--mitte { margin-left: auto; margin-right: auto; text-align: center; }

/* Abschnittsmarke: Nummer + Wort, wie eine Kapitelzeile im Magazin.
   Die Nummer gibt der Seite eine Ordnung, die man beim Scrollen spuert. */
.marke {
  display: flex; align-items: center; gap: var(--r3);
  font-size: var(--t-mikro); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tinte-45); margin-bottom: var(--r4);
}
.kopf--mitte .marke { justify-content: center; }
.marke b {
  font-family: var(--display); font-size: 1.6rem; font-weight: 900;
  letter-spacing: 0; color: var(--signal-tief); line-height: 1;
}
.marke::after {
  content: ''; flex: 1; max-width: 90px; height: 2px;
  background: repeating-linear-gradient(to right, var(--linie) 0 8px, transparent 8px 16px);
}
.kopf--mitte .marke::after { max-width: 60px; }
.tafel--tinte .marke { color: rgba(255,255,255,.5); }
.tafel--tinte .marke b { color: var(--signal); }
.tafel--tinte .marke::after { background: repeating-linear-gradient(to right, rgba(255,255,255,.3) 0 8px, transparent 8px 16px); }

.titel {
  font-family: var(--display); font-weight: 900;
  font-size: var(--t-h2); line-height: .98;
  letter-spacing: -.035em; text-wrap: balance;
}
.titel em { font-style: normal; color: var(--signal-tief); }
.tafel--tinte .titel em { color: var(--signal); }

.vorspann {
  margin-top: var(--r4); font-size: var(--t-lead);
  color: var(--tinte-70); line-height: 1.7; text-wrap: pretty;
}
.tafel--tinte .vorspann { color: rgba(255,255,255,.62); }

/* Knöpfe – genau drei Stufen ---------------------------------- */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--r2);
  padding: .85rem 1.6rem; border-radius: var(--radius-voll);
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background-color .18s, border-color .18s, color .18s, transform .18s;
}
.knopf:hover { transform: translateY(-2px); }
.knopf--gross { padding: 1rem 2rem; font-size: 1.02rem; }

.knopf--haupt { background: var(--signal); color: #072b00; border-color: var(--signal); }
.knopf--haupt:hover { background: var(--signal-dunkel); border-color: var(--signal-dunkel); }

.knopf--rand { border-color: var(--tinte); color: var(--tinte); }
.knopf--rand:hover { background: var(--tinte); color: var(--papier); }

.knopf--hell { border-color: rgba(255,255,255,.4); color: var(--papier); }
.knopf--hell:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.75); }

.textlink {
  display: inline-flex; align-items: center; gap: var(--r2);
  font-weight: 700; font-size: var(--t-klein); color: var(--signal-tief);
  border-bottom: 2px solid transparent; transition: border-color .18s;
}
.textlink:hover { border-color: var(--signal); }

/* Icons -------------------------------------------------------- */
.ic { width: 1.15em; height: 1.15em; flex: none; vertical-align: -.18em; }
.ic--gr { width: 1.6em; height: 1.6em; }
.sterne { display: inline-flex; gap: .1em; color: var(--stern); line-height: 1; }
.sterne .ic { width: 1em; height: 1em; vertical-align: 0; }

/* ============================================================
   KOPFLEISTE
   ============================================================ */
.kopfleiste {
  position: sticky; top: 0; z-index: 900;
  background: rgba(13,13,13,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--linie-dunkel);
}
.kopfleiste__innen {
  display: flex; align-items: center; justify-content: space-between; gap: var(--r5);
  height: 68px;
}
.kopfleiste__logo img { height: 34px; width: auto; }
.kopfleiste__menue { display: flex; align-items: center; gap: var(--r6); }
.kopfleiste__menue a {
  color: rgba(255,255,255,.78); font-size: var(--t-klein); font-weight: 600;
  transition: color .18s;
}
.kopfleiste__menue a:hover { color: var(--papier); }
.kopfleiste__burger { display: none; background: none; border: 0; color: var(--papier); padding: var(--r2); cursor: pointer; }

@media (max-width: 860px) {
  .kopfleiste__menue { display: none; }
  .kopfleiste__burger { display: inline-flex; }
  .kopfleiste__menue--offen {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; left: 0; right: 0; top: 68px;
    background: rgba(13,13,13,.97); border-bottom: 1px solid var(--linie-dunkel);
    padding: var(--r3) var(--r5) var(--r5);
  }
  .kopfleiste__menue--offen a { padding: var(--r3) 0; border-bottom: 1px solid var(--linie-dunkel); font-size: 1rem; }
  .kopfleiste__menue--offen .knopf { margin-top: var(--r4); }
}

/* ============================================================
   BÜHNE (Hero)
   ============================================================ */
.buehne {
  position: relative; background: var(--tinte); color: var(--papier);
  overflow: hidden;
  /* Bewusst keine volle Höhe: der nächste Abschnitt muss sichtbar
     hereinragen, sonst hält man den ersten Schirm für die ganze Seite. */
  min-height: 78vh; min-height: 78svh;
  display: flex; align-items: center;
}
.buehne__bild {
  position: absolute; inset: 0;
  background: url('../assets/hintergruende/tiguan-hero.jpg') center 42% / cover no-repeat;
  opacity: .34;
}
.buehne__schleier {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,.96) 0%, rgba(13,13,13,.78) 46%, rgba(13,13,13,.55) 100%);
}
.buehne .bahn { position: relative; z-index: 2; padding-top: var(--r8); padding-bottom: var(--r8); }
.buehne__inhalt { max-width: 660px; }

.buehne__ort {
  display: inline-flex; align-items: center; gap: var(--r2);
  font-size: var(--t-mikro); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--signal);
  margin-bottom: var(--r5);
}
.buehne__titel {
  font-family: var(--display); font-weight: 900;
  font-size: var(--t-h1); line-height: .93; letter-spacing: -.045em;
}
.buehne__titel span { color: var(--signal); }
.buehne__text {
  margin-top: var(--r5); font-size: var(--t-lead);
  color: rgba(255,255,255,.7); line-height: 1.65; max-width: 46ch;
}
.buehne__aktionen { display: flex; flex-wrap: wrap; gap: var(--r3); margin-top: var(--r6); }

.buehne__belege {
  display: flex; flex-wrap: wrap; gap: var(--r5) var(--r6);
  margin-top: var(--r7); padding-top: var(--r5);
  border-top: 1px solid var(--linie-dunkel);
}
.beleg__wert {
  display: flex; align-items: center; gap: var(--r2);
  font-family: var(--display); font-weight: 900; font-size: 1.5rem;
  line-height: 1; letter-spacing: -.02em;
}
.beleg__was {
  display: block; margin-top: .3rem;
  font-size: var(--t-mikro); letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 600;
}

/* ============================================================
   ZEITEN – wann kann ich anfangen
   ============================================================ */
.zeiten { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: var(--r3); }
.zeit {
  border: 1px solid var(--linie); border-radius: var(--radius);
  padding: var(--r4) var(--r5); background: var(--papier);
}
.zeit--bald { border-color: var(--signal); box-shadow: 0 0 0 1px var(--signal) inset; }
.zeit__ort { font-family: var(--display); font-weight: 800; font-size: var(--t-h3); letter-spacing: -.01em; }
.zeit__wann { margin-top: var(--r1); font-weight: 700; font-size: var(--t-klein); color: var(--signal-tief); }
.zeit__detail { margin-top: var(--r1); font-size: var(--t-klein); color: var(--tinte-45); }

/* ============================================================
   ERFOLGE – echte Fahrschüler
   ============================================================ */
.erfolg__streifen {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: clamp(148px, 19vw, 210px);
  gap: var(--r3); overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: var(--r3); scrollbar-width: none;
}
.erfolg__streifen::-webkit-scrollbar { display: none; }
.erfolg__bild {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius); scroll-snap-align: start;
  background: #1c1c1c;
  transition: transform .25s;
}
.erfolg__bild:hover { transform: translateY(-4px); }

/* ============================================================
   STIMMEN – Bewertungen
   ============================================================ */
.stimmen { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--r4); }
.stimme {
  border: 1px solid var(--linie); border-radius: var(--radius);
  padding: var(--r5); background: var(--papier);
  display: flex; flex-direction: column; gap: var(--r3);
}
.stimme__text { flex: 1; line-height: 1.7; color: var(--tinte); }
.stimme__wer {
  font-size: var(--t-klein); font-weight: 700; color: var(--tinte-45);
  padding-top: var(--r3); border-top: 1px solid var(--linie);
}

/* ============================================================
   ABLAUF – der echte Weg
   ============================================================ */
.ablauf { display: grid; gap: var(--r5); counter-reset: schritt; list-style: none; }
@media (min-width: 860px) { .ablauf { grid-template-columns: repeat(4, 1fr); gap: var(--r4); } }

.schritt { position: relative; padding-top: var(--r6); }
.schritt::before {
  counter-increment: schritt; content: counter(schritt);
  position: absolute; top: 0; left: 0;
  font-family: var(--display); font-weight: 900; font-size: 1.05rem;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--signal); color: #072b00;
}
/* Verbindungslinie zwischen den Schritten */
@media (min-width: 860px) {
  .schritt::after {
    content: ''; position: absolute; top: 17px; left: 42px; right: -8px; height: 2px;
    background: repeating-linear-gradient(to right, var(--linie) 0 6px, transparent 6px 12px);
  }
  .schritt:last-child::after { display: none; }
}
.schritt__titel { font-family: var(--display); font-weight: 800; font-size: var(--t-h3); margin-bottom: var(--r2); }
.schritt__text  { color: var(--tinte-70); font-size: var(--t-klein); line-height: 1.7; }

/* ============================================================
   KLASSEN
   ============================================================ */
/* Klassen rein typografisch. Die Kuerzel SIND die Grafik – gezeichnete
   Fahrzeug-Symbole wirkten daneben nur billig. */
.klassen { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; border-top: 1px solid var(--linie); }
.klasse {
  display: block; position: relative;
  padding: var(--r6) var(--r4) var(--r5);
  border-bottom: 1px solid var(--linie); border-right: 1px solid var(--linie);
  background: transparent; transition: background-color .2s;
}
.klasse:hover { background: var(--papier); }
.klasse:hover .klasse__kuerzel { color: var(--signal-tief); }
.klasse__kuerzel {
  display: block; font-family: var(--display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; letter-spacing: -.04em;
  transition: color .2s;
}
.klasse__was { display: block; margin-top: var(--r2); font-size: var(--t-klein); color: var(--tinte-45); }
.klasse__pfeil { position: absolute; top: var(--r4); right: var(--r4); color: var(--linie); transition: color .2s, transform .2s; }
.klasse:hover .klasse__pfeil { color: var(--signal); transform: translate(2px,-2px); }

/* ============================================================
   HALTUNG – der Einwand
   ============================================================ */
.haltung { text-align: center; max-width: 860px; margin: 0 auto; }
.haltung__satz {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.7rem, 4.6vw, 3rem); line-height: 1.1;
  letter-spacing: -.03em; text-wrap: balance;
}
.haltung__satz em { font-style: normal; color: var(--signal-tief); }

/* ============================================================
   STANDORTE
   ============================================================ */
.orte { display: grid; gap: var(--r6); align-items: start; }
@media (min-width: 900px) { .orte { grid-template-columns: 1.05fr .95fr; gap: var(--r8); } }
/* Ohne zweite Spalte steht die Karte mittig statt am linken Rand. */
.orte--nurkarte { grid-template-columns: 1fr !important; max-width: 620px; margin: 0 auto; }

.karte-svg { width: 100%; height: auto; overflow: visible; }
.karte-svg .k-flaeche { fill: rgba(32,246,0,.10); }
.karte-svg .k-kante   { fill: none; stroke: var(--signal-tief); stroke-width: 1.6;
                        stroke-linejoin: round; opacity: .55; }
.karte-svg .k-ort circle { fill: var(--papier); stroke: var(--signal-tief); stroke-width: 3; }
.karte-svg .k-ort text   { font-family: var(--schrift); font-size: 13px; font-weight: 640; fill: var(--tinte);
                           paint-order: stroke; stroke: var(--papier-warm); stroke-width: 4px; stroke-linejoin: round; }
.karte-svg .k-stadt circle { fill: var(--signal); stroke: var(--signal-tief); }
.karte-svg .k-stadt text   { font-size: 14.5px; font-weight: 700; }
.karte-svg .k-stadt  { fill: var(--signal); stroke: var(--signal-dunkel); stroke-width: 3; }
.karte-svg text {
  font-family: var(--schrift); font-size: 13px; font-weight: 700; fill: var(--tinte);
  paint-order: stroke; stroke: var(--papier-warm); stroke-width: 4px; stroke-linejoin: round;
}
.karte-hinweis { text-align: center; font-size: var(--t-mikro); color: var(--tinte-45); letter-spacing: .05em; margin-top: var(--r2); }

.ortliste { display: grid; gap: 0; }
.ort {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--r4);
  padding: var(--r4) 0; border-bottom: 1px solid var(--linie);
}
.ort:first-child { border-top: 1px solid var(--linie); }
.ort__name { font-family: var(--display); font-weight: 800; font-size: var(--t-h3); }
.ort__adresse { display: block; font-family: var(--schrift); font-weight: 400; font-size: var(--t-klein); color: var(--tinte-45); margin-top: 2px; }
.ort__tage { font-size: var(--t-klein); font-weight: 700; color: var(--signal-tief); white-space: nowrap; }
.ort__extra {
  display: inline-flex; align-items: center; gap: var(--r1);
  font-size: var(--t-mikro); font-weight: 700; color: var(--warm);
  margin-top: var(--r1);
}

/* ============================================================
   DIRK
   ============================================================ */
.dirk { display: grid; gap: var(--r6); align-items: center; }
@media (min-width: 860px) { .dirk { grid-template-columns: 320px 1fr; gap: var(--r8); } }
.dirk__bild { border-radius: var(--radius); overflow: hidden; background: var(--papier-warm); }
.dirk__bild img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: 50% 18%; }
.dirk__zitat {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.25; letter-spacing: -.02em;
}
.dirk__wer { margin-top: var(--r4); font-size: var(--t-klein); color: var(--tinte-45); font-weight: 700; }

/* ============================================================
   FRAGEN
   ============================================================ */
.fragen { max-width: 780px; margin: 0 auto; }
.frage { border-bottom: 1px solid var(--linie); }
.frage:first-child { border-top: 1px solid var(--linie); }
.frage summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--r4);
  padding: var(--r5) 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 800; font-size: var(--t-h3);
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: ''; flex: none; width: 10px; height: 10px;
  border-right: 2.5px solid var(--signal); border-bottom: 2.5px solid var(--signal);
  transform: rotate(45deg) translateY(-3px); transition: transform .2s;
}
.frage[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.frage__antwort { padding-bottom: var(--r5); color: var(--tinte-70); line-height: 1.75; }
.frage__antwort ul { margin: var(--r3) 0 var(--r3) var(--r5); list-style: disc; }
.frage__antwort li { margin-bottom: var(--r1); }
.frage__antwort a { color: var(--signal-tief); font-weight: 700; border-bottom: 1px solid currentColor; }

/* ============================================================
   ABSCHLUSS
   ============================================================ */
.abschluss { text-align: center; }
.abschluss__titel {
  font-family: var(--display); font-weight: 900;
  font-size: var(--t-h2); line-height: 1.05; letter-spacing: -.03em;
}
.abschluss__titel em { font-style: normal; color: var(--signal); }
.abschluss__text { margin: var(--r4) auto 0; max-width: 46ch; color: rgba(255,255,255,.62); }
.abschluss__aktionen { display: flex; flex-wrap: wrap; gap: var(--r3); justify-content: center; margin-top: var(--r6); }
.abschluss__fein { margin-top: var(--r5); font-size: var(--t-mikro); color: rgba(255,255,255,.4); letter-spacing: .04em; }

/* ============================================================
   SCHNELLLEISTE (Handy)
   Absichtlich zurückhaltend: schmal, gedeckt, ohne zweiten
   Signalknopf – die vorige Fassung mit zwei fetten Pillen wirkte
   aufdringlich. Erscheint erst, wenn die Bühne durchgescrollt ist.
   ============================================================ */
.schnell {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
  display: none; align-items: center; gap: var(--r3);
  padding: .55rem var(--r4) calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(13,13,13,.9); backdrop-filter: blur(12px);
  border-top: 1px solid var(--linie-dunkel);
  transform: translateY(110%); transition: transform .26s ease;
}
.schnell--sichtbar { transform: translateY(0); }
.schnell__text { flex: 1; font-size: var(--t-mikro); color: rgba(255,255,255,.6); line-height: 1.35; }
.schnell__text b { display: block; color: var(--papier); font-size: var(--t-klein); font-weight: 700; }
.schnell__wa {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.22); color: var(--papier);
}
.schnell__wa:hover { border-color: rgba(255,255,255,.5); }
.schnell__an {
  flex: none; padding: .6rem 1.15rem; border-radius: var(--radius-voll);
  background: var(--signal); color: #072b00; font-weight: 700; font-size: var(--t-klein);
}
@media (max-width: 780px) { .schnell { display: flex; } }

/* ============================================================
   FUSS
   ============================================================ */
.fuss { background: var(--tinte); color: rgba(255,255,255,.6); padding: var(--r8) 0 var(--r6); font-size: var(--t-klein); }
.fuss__gitter { display: grid; gap: var(--r6); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.fuss__titel { color: var(--papier); font-weight: 700; margin-bottom: var(--r3); font-size: var(--t-klein); letter-spacing: .04em; }
.fuss a:hover { color: var(--signal); }
.fuss__zeile {
  margin-top: var(--r7); padding-top: var(--r5); border-top: 1px solid var(--linie-dunkel);
  display: flex; flex-wrap: wrap; gap: var(--r3) var(--r5); justify-content: space-between;
  font-size: var(--t-mikro); color: rgba(255,255,255,.42);
}

/* Sanftes Einblenden – nur wo es hilft ------------------------ */
.auftritt { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.auftritt--da { opacity: 1; transform: none; }

/* ============================================================
   BERGEN – alles an einem Tag
   Eigener Block im warmen Logo-Ton, damit er sich vom Grün
   der uebrigen Seite absetzt.
   ============================================================ */
.bergen {
  background: linear-gradient(180deg, #fdf5f1 0%, #fbeee7 100%);
  border-top: 1px solid rgba(204,68,0,.16);
  border-bottom: 1px solid rgba(204,68,0,.16);
}
.bergen__innen { display: grid; gap: var(--r6); align-items: center; }
@media (min-width: 900px) { .bergen__innen { grid-template-columns: 1fr 1fr; gap: var(--r8); } }
.bergen .marke b { color: var(--warm); }
.bergen .titel em { color: var(--warm); }
.bergen__liste { display: grid; gap: var(--r3); }
.bergen__punkt {
  display: flex; align-items: flex-start; gap: var(--r4);
  padding: var(--r4) var(--r5);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(204,68,0,.16);
  border-radius: var(--radius);
}
.bergen__ic { color: var(--warm); margin-top: 2px; }
.bergen__was { font-family: var(--display); font-weight: 800; font-size: var(--t-h3); line-height: 1.15; }
.bergen__dazu { display: block; font-family: var(--schrift); font-weight: 400; font-size: var(--t-klein); color: var(--tinte-70); margin-top: 2px; }
strong, b { font-weight: 640; }
.vorspann { font-weight: 400; }
.marke    { font-weight: 620; }
.knopf    { font-weight: 620; }
.textlink { font-weight: 640; }
.stimme__wer, .zeit__wann, .ort__tage, .schnell__text b { font-weight: 640; }

/* Zahlen laufen auf gleicher Breite – sonst zappeln die Kennwerte */
.beleg__wert, .zeit__wann, .marke b, .klasse__kuerzel {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1, 'kern' 1;
}

/* Grosse Zeilen brauchen weniger Laufweite als kleine */
.buehne__titel { font-feature-settings: 'kern' 1; }
.titel, .haltung__satz, .abschluss__titel { font-feature-settings: 'kern' 1; }

/* Textauswahl in Markenfarbe */
::selection { background: var(--signal); color: #072b00; }

/* --- Zitate: haengendes Anfuehrungszeichen ---------------------
   Das Zitat beginnt optisch buendig, das Zeichen haengt im Rand. */
.stimme__text {
  position: relative;
  text-indent: -.42em;
  font-weight: 430;
}
.stimme::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--signal), transparent 70%);
  opacity: 0; transition: opacity .3s ease;
  border-radius: 3px 0 0 3px;
}
.stimme { position: relative; overflow: hidden; }
.stimme:hover::before { opacity: .55; }

/* --- Anker: Sprungziele nicht unter die Kopfleiste schieben ----
   Ohne das verschwindet die Ueberschrift beim Klick im Menue. */
[id] { scroll-margin-top: 88px; }

/* --- Bewegung: eine Kurve fuer alles ---------------------------
   Vorher liefen Uebergaenge linear bzw. mit Standard-Easing.
   Eine gemeinsame, leicht ueberschwingfreie Kurve wirkt ruhiger. */
:root { --kurve: cubic-bezier(.22, .61, .36, 1); }
.knopf, .klasse, .zeit, .stimme, .erfolg__bild, .textlink,
.kopfleiste__menue a, .schnell { transition-timing-function: var(--kurve); }

.auftritt {
  transform: translateY(18px);
  transition: opacity .7s var(--kurve), transform .7s var(--kurve);
}
/* Muss NACH der Regel darueber stehen – sonst bleibt der Versatz bestehen. */
.auftritt--da { opacity: 1; transform: none; }

/* --- Bilder sanft einblenden, statt zu ploppen ---------------- */
.erfolg__bild, .dirk__bild img { opacity: 0; transition: opacity .5s var(--kurve), transform .25s var(--kurve); }
.erfolg__bild.geladen, .dirk__bild img.geladen { opacity: 1; }

/* --- Fotostreifen: Kante ausblenden statt hart abschneiden ---- */
@media (min-width: 700px) {
  .erfolg__streifen {
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 92%, transparent 100%);
            mask-image: linear-gradient(to right, #000 0, #000 92%, transparent 100%);
  }
}

/* --- Dunkle Flaechen: feine Koernung gegen Bandenbildung ------ */
.tafel--tinte, .buehne, .fuss { position: relative; }
.tafel--tinte::after, .fuss::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
.tafel--tinte > *, .fuss > * { position: relative; z-index: 1; }

/* --- Bühne: Vignette, damit die Schrift Halt bekommt ---------- */
.buehne__schleier {
  background:
    radial-gradient(120% 90% at 12% 40%, rgba(13,13,13,.55) 0%, transparent 62%),
    linear-gradient(105deg, rgba(13,13,13,.96) 0%, rgba(13,13,13,.8) 46%, rgba(13,13,13,.6) 100%);
}

/* --- Kopfleiste: erst transparent, beim Scrollen fester ------- */
.kopfleiste { transition: background-color .3s var(--kurve), border-color .3s var(--kurve); }
.kopfleiste--gescrollt { background: rgba(13,13,13,.94); }

/* --- Feinere Hover-Choreografie ------------------------------- */
.knopf--haupt:hover { box-shadow: 0 8px 22px rgba(34,204,0,.28); }
.zeit { transition: border-color .25s var(--kurve), transform .25s var(--kurve); }
.zeit:hover { transform: translateY(-2px); border-color: var(--tinte-45); }
.ort { transition: background-color .2s var(--kurve); }
.ort:hover { background: rgba(255,255,255,.6); }

/* --- Druckfassung --------------------------------------------- */
@media print {
  .kopfleiste, .schnell, .erfolg__streifen, .buehne__bild, .buehne__schleier { display: none !important; }
  .tafel, .buehne { padding: 1.5rem 0; background: #fff !important; color: #000 !important; }
  .titel, .buehne__titel { font-size: 22pt; }
}

/* ============================================================
   WUCHT – Licht, Tiefe, Bild
   Die ruhige Fassung war korrekt, aber blass. Hier kommt die
   Energie zurueck, die die Marke traegt: gruenes Streiflicht auf
   dunklen Flaechen, echtes Bildmaterial statt weisser Strecken.
   ============================================================ */

/* --- Buehne: besseres Motiv, groesser, mit Streiflicht -------- */
.buehne { min-height: 88vh; min-height: 88svh; }
.buehne__bild {
  background-image: url('../assets/hintergruende/foto-1.webp');
  background-position: 62% 58%;
  opacity: .62;
  transform: scale(1.04);
}

/* Auf dem Handy ist der Rahmen sehr hochkant (etwa 0,52), das Foto aber
   4:3 quer. Mit cover blieben nur 39 % der Bildbreite uebrig - ausgerechnet
   der leere Streifen zwischen Auto und Motorrad. Die hochkante Fassung ist
   auf den Tiguan samt Beschriftung zugeschnitten; dort sind rund 79 % der
   Breite zu sehen. */
@media (max-width: 700px) {
  .buehne__bild {
    background-image: url('../assets/hintergruende/foto-1-hoch.webp');
    background-position: 50% 30%;
    transform: none;          /* der Zuschnitt sitzt, kein Nachschieben noetig */
  }
}
.buehne__schleier {
  background:
    radial-gradient(52% 44% at 74% 74%, rgba(34,204,0,.13) 0%, transparent 62%),
    radial-gradient(110% 85% at 8% 45%, rgba(8,8,8,.94) 0%, rgba(8,8,8,.55) 55%, transparent 78%),
    linear-gradient(180deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.28) 34%, rgba(8,8,8,.82) 100%);
}
/* Gruener Lichtsaum an der Unterkante – Uebergang zum naechsten Block */
.buehne::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--signal) 35%, var(--signal) 65%, transparent);
  opacity: .55;
}
.buehne__titel { text-shadow: 0 2px 40px rgba(0,0,0,.55); }

/* --- Dunkle Tafeln bekommen dasselbe Streiflicht -------------- */
.tafel--tinte {
  background:
    radial-gradient(80% 70% at 78% 15%, rgba(34,204,0,.13) 0%, transparent 62%),
    var(--tinte);
}

/* --- Erfolge: groesser, kinoartig ----------------------------- */
.erfolg__streifen { grid-auto-columns: clamp(180px, 24vw, 280px); gap: var(--r4); }
.erfolg__bild {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.erfolg__bild:hover { transform: translateY(-6px) scale(1.015); }

/* --- Klassen: Tiefe statt Hairlines --------------------------- */
.klassen { border: 0; gap: var(--r3); grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); }
.klasse {
  border: 1px solid var(--linie); border-radius: var(--radius);
  background: var(--papier); overflow: hidden;
  padding: var(--r6) var(--r5) var(--r5);
  transition: transform .25s var(--kurve), box-shadow .25s var(--kurve), border-color .25s var(--kurve);
}
.klasse::before {                      /* riesiger Geisterbuchstabe im Hintergrund */
  content: attr(data-gross);
  position: absolute; right: -.18em; bottom: -.34em;
  font-family: var(--display); font-weight: 900; font-size: 7rem; line-height: 1;
  color: var(--tinte); opacity: .045; pointer-events: none;
  transition: opacity .25s var(--kurve), color .25s var(--kurve);
}
.klasse:hover {
  transform: translateY(-4px);
  border-color: rgba(34,204,0,.5);
  box-shadow: 0 16px 34px rgba(0,0,0,.09);
  background: var(--papier);
}
.klasse:hover::before { opacity: .1; color: var(--signal); }

/* --- Haltung als Bildbanderole -------------------------------- */
.haltung-band {
  position: relative; overflow: hidden;
  background: var(--tinte); color: var(--papier);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.haltung-band__bild {
  position: absolute; inset: 0;
  background: url('../assets/hintergruende/foto-1.webp') center 34% / cover no-repeat;
  opacity: .6;
}
.haltung-band__schleier {
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 78% at 50% 50%, rgba(8,8,8,.82) 0%, rgba(8,8,8,.45) 62%, rgba(8,8,8,.72) 100%),
    linear-gradient(180deg, rgba(8,8,8,.55), rgba(8,8,8,.2) 45%, rgba(8,8,8,.6));
}
.haltung-band .bahn { position: relative; z-index: 2; }
.haltung-band .haltung__satz { color: var(--papier); }
.haltung-band .haltung__satz em { color: var(--signal); }
.haltung-band .vorspann { color: rgba(255,255,255,.66); }

/* --- Standortkarte: leuchtet ---------------------------------- */
.karte-huelle {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: radial-gradient(65% 65% at 45% 45%, rgba(34,204,0,.09) 0%, transparent 70%);
  padding: var(--r4);
}
.karte-svg .k-punkt { filter: drop-shadow(0 0 6px rgba(34,204,0,.5)); }
.karte-svg .k-stadt { filter: drop-shadow(0 0 12px rgba(34,204,0,.7)); }

/* --- Abschluss: Streiflicht ----------------------------------- */
.abschluss__titel { text-shadow: 0 2px 30px rgba(0,0,0,.4); }

/* --- Termin-Zeile im Bergen-Block ----------------------------- */
.bergen__termin {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--r2) var(--r3);
  margin-top: var(--r3); padding-top: var(--r3);
  border-top: 1px dashed rgba(204,68,0,.3);
  font-family: var(--schrift);
}
.bergen__termin-marke {
  font-size: var(--t-mikro); font-weight: 640; letter-spacing: .1em;
  text-transform: uppercase; color: var(--tinte-45);
}
.bergen__termin-datum { font-weight: 640; color: var(--warm); font-size: var(--t-klein); }
.bergen__termin-rest {
  font-size: var(--t-mikro); font-weight: 640; color: var(--warm);
  background: rgba(204,68,0,.12); border-radius: var(--radius-voll);
  padding: .15rem .6rem; white-space: nowrap;
}


/* ============================================================
   FASSUNG 3 – Überschreibungen zu neu.css

   Die Bühne bleibt wie in Fassung 2: linksbündig, Foto sichtbar,
   hell und freundlich. Der mittige, abgedunkelte Entwurf wirkte
   dramatisch statt einladend – zurückgenommen.

   Neu gegenüber Fassung 2 ist nur die REIHENFOLGE: Vertrauen und
   Ablauf kommen nach vorne, Sachfragen später. Und der Ablauf
   steht als Karten statt als flache Zeile.
   ============================================================ */

/* ------------------------------------------------------------
   FUNNEL-HINWEIS: kleine Zwischenzeile, die den Nutzen benennt
   ------------------------------------------------------------ */
.brueckenzeile {
  background: var(--papier); color: var(--tinte-70);
  padding: var(--r6) 0 0; text-align: center;
}
.brueckenzeile p {
  margin: 0; font-size: var(--t-lead); font-weight: 500;
  max-width: 58ch; margin-inline: auto;
}
.brueckenzeile b { color: var(--signal-tief); font-weight: 640; }

/* Bewertungen bleiben hell – ein dunkler Block direkt unter der
   dunklen Bühne machte den Auftakt schwer und unfreundlich. */
.stimmen-dunkel { background: var(--papier-warm); }

/* ------------------------------------------------------------
   ABLAUF als Zeitstrahl – die Karten-Variante wirkte schwerer
   und der verbindende Faden ging verloren.
   Auf dem Handy laeuft der Strahl senkrecht mit.
   ------------------------------------------------------------ */
.ablauf-betont .schritt { background: none; border: 0; border-radius: 0; }

@media (max-width: 859px) {
  .ablauf-betont { gap: 0; }
  .ablauf-betont .schritt {
    position: relative;
    padding: 0 0 var(--r6) var(--r7);
  }
  .ablauf-betont .schritt::before { top: 0; left: 0; }
  /* senkrechte Fahrbahnmarkierung zwischen den Punkten */
  .ablauf-betont .schritt::after {
    content: ''; display: block; position: absolute;
    left: 16px; top: 40px; bottom: 6px; width: 2px;
    background: repeating-linear-gradient(to bottom, var(--linie) 0 6px, transparent 6px 13px);
  }
  .ablauf-betont .schritt:last-child { padding-bottom: 0; }
  .ablauf-betont .schritt:last-child::after { display: none; }
}

/* ------------------------------------------------------------
   HERO-SCHRIFT: mehr Luft
   Zeilenabstand .93 und Laufweite -.045em waren zu eng – die
   beiden Zeilen klebten aneinander.
   ------------------------------------------------------------ */
.buehne__titel {
  line-height: 1.02;
  letter-spacing: -.028em;
}
@media (max-width: 640px) {
  .buehne__titel { line-height: 1.06; letter-spacing: -.022em; }
}

/* ------------------------------------------------------------
   BEWERTUNGEN: mehr davon, zum Wischen
   ------------------------------------------------------------ */
.stimmen {
  display: flex; gap: var(--r4);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: var(--r1) var(--r1) var(--r5);
  scrollbar-width: none;
}
.stimmen::-webkit-scrollbar { display: none; }
.stimme {
  flex: 0 0 clamp(268px, 31%, 360px);
  scroll-snap-align: start;
}
@media (max-width: 640px) { .stimme { flex-basis: 84%; } }

.stimmen-steuerung {
  display: flex; align-items: center; gap: var(--r4);
  max-width: 620px; margin: 0 auto;
}
.stimmen-balken {
  position: relative; flex: 1; height: 3px;
  background: var(--linie); border-radius: 999px; overflow: hidden;
}
.stimmen-balken i {
  position: absolute; top: 0; bottom: 0; left: 0; width: 33%;
  background: var(--signal); border-radius: 999px;
  transition: left .25s var(--kurve), width .25s var(--kurve);
}
.stimmen-pfeil {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  border: 1px solid var(--linie); background: var(--papier); color: var(--tinte);
  display: grid; place-items: center; cursor: pointer;
  transition: background-color .2s var(--kurve), color .2s var(--kurve), border-color .2s var(--kurve);
}
.stimmen-pfeil:hover:not(:disabled) { background: var(--tinte); color: var(--papier); border-color: var(--tinte); }
.stimmen-pfeil:disabled { opacity: .32; cursor: default; }
.stimmen-pfeile { display: flex; gap: .5rem; }
@media (max-width: 560px) { .stimmen-pfeile { display: none; } }

/* ------------------------------------------------------------
   KLASSEN im Stil der bestehenden Seite:
   gefüllte Karten, mittig, ohne Pfeil und ohne Geisterbuchstabe
   ------------------------------------------------------------ */
.klassen {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--r4); border: 0;
}
.klasse {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--r1); text-align: center;
  padding: var(--r6) var(--r4);
  background: #e9ece4; border: 1px solid transparent; border-radius: var(--radius);
  transition: background-color .22s var(--kurve), border-color .22s var(--kurve), transform .22s var(--kurve);
}
.klasse::before { content: none; }
.klasse__pfeil { display: none; }
.klasse__kuerzel { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.klasse__was { color: var(--tinte-70); font-size: .8rem; margin-top: 0; }
.klasse:hover {
  background: linear-gradient(160deg, rgba(34,204,0,.09) 0%, var(--papier) 78%);
  border-color: rgba(34,204,0,.4);
  transform: translateY(-3px);
}
.klasse:hover .klasse__kuerzel { color: var(--tinte); }
@media (max-width: 860px) { .klassen { grid-template-columns: repeat(3, 1fr); gap: var(--r3); } }
@media (max-width: 560px) { .klassen { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------
   HANDLUNGSBLOCK – wiederkehrender Abschluss eines Abschnitts
   ------------------------------------------------------------ */
.handlung {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--r3) var(--r5);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: var(--r5);
  border-top: 1px dashed var(--linie);
}
.handlung__text {
  font-size: var(--t-klein); color: var(--tinte-45); font-weight: 620;
  letter-spacing: .01em;
}
.handlung--dunkel { border-top-color: rgba(255,255,255,.16); }
.handlung--dunkel .handlung__text { color: rgba(255,255,255,.55); }
.handlung--links { justify-content: flex-start; }

/* ------------------------------------------------------------
   FOTOSTREIFEN: sichtbar machen, dass es weitergeht
   Auf dem Handy standen zwei Bilder ohne jeden Hinweis darauf,
   dass acht dahinterliegen.
   ------------------------------------------------------------ */
.erfolg__streifen {
  /* Ausblenden am rechten Rand jetzt auf allen Breiten */
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right, #000 0, #000 88%, transparent 100%);
}

.streifen-steuerung {
  display: flex; align-items: center; gap: var(--r4);
  margin-top: var(--r2);
}
.streifen-balken {
  position: relative; flex: 1; height: 3px; max-width: 340px;
  background: rgba(255,255,255,.16); border-radius: 999px; overflow: hidden;
}
.streifen-balken i {
  position: absolute; top: 0; bottom: 0; left: 0; width: 30%;
  background: var(--signal); border-radius: 999px;
  transition: left .22s var(--kurve), width .22s var(--kurve);
}
.streifen-hinweis {
  font-size: var(--t-mikro); font-weight: 620; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  display: inline-flex; align-items: center; gap: var(--r2);
  white-space: nowrap;
}
.streifen-hinweis svg { animation: wisch 1.9s ease-in-out infinite; }
@keyframes wisch {
  0%, 100% { transform: translateX(0); opacity: .55; }
  50%      { transform: translateX(5px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .streifen-hinweis svg { animation: none; } }

/* ------------------------------------------------------------
   HINWEISKASTEN – gleichwertige Alternative zum Online-Weg
   ------------------------------------------------------------ */
.hinweis {
  display: flex; align-items: flex-start; gap: var(--r4);
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: var(--r5);
  background: var(--papier-warm);
  border: 1px solid var(--linie);
  border-left: 3px solid var(--signal);
  border-radius: var(--radius);
}
.hinweis__ic { color: var(--signal-tief); margin-top: 2px; }
.hinweis__titel {
  font-family: var(--display); font-weight: 800; font-size: var(--t-h3);
  margin: 0 0 var(--r2);
}
.hinweis__text { margin: 0; color: var(--tinte-70); line-height: 1.7; font-size: var(--t-klein); }
@media (max-width: 560px) { .hinweis { padding: var(--r4); gap: var(--r3); } }

/* ------------------------------------------------------------
   DIRK als Editorial-Split
   Formensprache aus dem Marken-Skill: harte 50/50-Teilung,
   dunkel gegen warmes Offwhite, Zitat als eigenständiges
   Gestaltungselement statt als Absatz.
   ------------------------------------------------------------ */
.chef { padding: 0; background: var(--tinte); overflow: hidden; }
.chef__split { display: grid; }
@media (min-width: 900px) { .chef__split { grid-template-columns: 46% 54%; } }

/* Linke Hälfte: Bild randlos */
.chef__bild { position: relative; min-height: 340px; background: #111; }
.chef__bild img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%;
}
.chef__bild::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.65) 100%);
}
.chef__marke {
  position: absolute; left: var(--r5); bottom: var(--r5); z-index: 2;
  display: inline-flex; align-items: center; gap: var(--r2);
  font-size: var(--t-mikro); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--papier);
}
.chef__marke b { font-family: var(--display); font-size: 1.5rem; color: var(--signal); line-height: 1; }

/* Rechte Hälfte: warmes Offwhite, Zitat als Held */
.chef__text {
  background: #f8f6f2;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
}
.chef__zitat {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.65rem, 3.4vw, 2.75rem);
  line-height: 1.08; letter-spacing: -.03em; color: var(--tinte);
  margin: 0 0 var(--r5); text-wrap: balance;
}
.chef__zitat span { color: var(--signal-tief); }
.chef__absatz { color: var(--tinte-70); line-height: 1.75; margin: 0 0 var(--r4); }
.chef__legende {
  margin: var(--r4) 0 0; padding-top: var(--r4);
  border-top: 1px solid var(--linie);
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--tinte);
}
.chef__legende em { font-style: normal; color: var(--warm-tief); }
.chef__name { margin-top: var(--r3); font-size: var(--t-klein); color: var(--tinte-45); font-weight: 640; }
.chef__link { margin-top: var(--r5); }

/* ============================================================
   EDITORIAL-RASTER FÜR DIE GANZE SEITE
   Dieselbe Formensprache wie beim Chef-Abschnitt:
   linke Spalte trägt Kapitelnummer und Überschrift, rechte
   Spalte den Inhalt. Auf dem Handy stapelt sich beides.
   ============================================================ */
.split { display: grid; gap: var(--r6); align-items: start; }
@media (min-width: 940px) {
  .split { grid-template-columns: minmax(280px, 34%) 1fr; gap: clamp(3rem, 6vw, 6rem); }
  .split__kopf { position: sticky; top: 96px; }
}
.split__kopf .kopf { margin-bottom: var(--r5); max-width: none; }

/* Große Kennzahl als Gestaltungselement (aus dem Marken-Skill) */
.kennzahl {
  display: flex; align-items: baseline; gap: var(--r3);
  margin-bottom: var(--r4);
}
.kennzahl__wert {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(3.6rem, 9vw, 6rem); line-height: .82;
  letter-spacing: -.05em; color: var(--tinte);
  font-variant-numeric: tabular-nums;
}
.kennzahl__wert span { color: var(--signal-tief); }
.kennzahl__dazu { font-size: var(--t-klein); color: var(--tinte-45); font-weight: 620; line-height: 1.4; }
.kennzahl__dazu b { display: block; color: var(--tinte); font-size: var(--t-basis); }

/* Kapitelbalken – dünne Linie mit Nummer, rahmt jeden Abschnitt */
.tafel--linie { border-top: 1px solid var(--linie); }
.tafel--tinte.tafel--linie { border-top-color: rgba(255,255,255,.12); }

/* Theoriezeiten im Split kompakter */
.split .zeiten { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* Fragen im Split: Liste bekommt volle Breite der rechten Spalte */
.split .fragen { max-width: none; margin: 0; }

/* Logo-Orange als Text nur in der lesbaren Stufe */
.bergen .marke b,
.bergen .titel em,
.bergen__termin-datum,
.bergen__termin-rest,
.ort__extra { color: var(--warm-tief); }
.bergen__ic { color: var(--warm-tief); }
.bergen__termin-rest { background: rgba(242,95,28,.12); }

/* Der Anmelde-Knopf in der Kopfleiste erbte die Linkfarbe der
   Navigation (78 % Weiß) – auf dem hellen Logo-Grün ergab das
   1,47:1 und war praktisch unlesbar. */
.kopfleiste__menue a.knopf--haupt { color: #0d0d0d; }
.kopfleiste__menue a.knopf--haupt:hover { color: #0d0d0d; }

/* ------------------------------------------------------------
   NAVIGATION – echte Seitennavigation statt Sprungmarken
   ------------------------------------------------------------ */
.kopfleiste__menue { gap: var(--r5); }
.kopfleiste__menue a { white-space: nowrap; }
.nur-mobil { display: none; }

@media (max-width: 1080px) and (min-width: 861px) {
  .kopfleiste__menue { gap: var(--r4); }
  .kopfleiste__menue a { font-size: .82rem; }
}
@media (max-width: 860px) {
  /* Menü muss deckend sein – vorher schimmerte der Hero durch */
  .kopfleiste__menue--offen { background: #0d0d0d; }
  .nur-mobil { display: block; }
}

/* Verweis auf die vollständige FAQ-Seite */
.fragen__mehr {
  margin: var(--r5) 0 0; padding-top: var(--r4);
  border-top: 1px dashed var(--linie);
  color: var(--tinte-70); font-size: var(--t-klein); line-height: 1.7;
}
.fragen__mehr a { color: var(--signal-tief); font-weight: 640; border-bottom: 1px solid currentColor; }


/* ============================================================
   EINE TYPOGRAFIE FUER DIE GANZE STARTSEITE
   ============================================================
   Die uebernommenen Abschnitte (Klassen, Warum, Dirk, Ablauf)
   brachten ihre eigene Ueberschrift mit: DM Sans 800 und ein
   neongruenes Label. Daneben standen die neuen Abschnitte mit
   Barlow Condensed 900 und grauem Kapitelband – die Seite sah
   dadurch nach zwei Entwuerfen aus.
   Aufbau, Ausrichtung und Inhalt bleiben unangetastet; nur
   Schriftschnitt, Groesse und Farbe ziehen gleich. Dieselben
   Werte gelten auf den Unterseiten (neu-seiten.css).
   ============================================================ */
.section-prelabel {
  display: flex; align-items: center; gap: var(--r3);
  font-size: var(--t-mikro); font-weight: 620; letter-spacing: .16em;
  text-transform: uppercase; color: var(--tinte-45); margin-bottom: var(--r4);
}
.text-center .section-prelabel { justify-content: center; }
.section-prelabel::after {
  content: ''; flex: 1; max-width: 80px; height: 2px;
  background: repeating-linear-gradient(to right, var(--linie) 0 8px, transparent 8px 16px);
}
.text-center .section-prelabel::after { max-width: 54px; }

.section-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.6rem, 5.2vw, 3.6rem); line-height: .98;
  letter-spacing: -.035em; color: var(--tinte);
  margin-bottom: var(--r4); text-wrap: balance;
}
.section-title em, .section-title .akzent { font-style: normal; color: var(--signal-tief); }

/* Abschnitte auf dunklem Grund drehen die Kontraste um. */
.section--dark .section-prelabel,
.cta-final .section-prelabel { color: rgba(255,255,255,.5); }
.section--dark .section-prelabel::after,
.cta-final .section-prelabel::after {
  background: repeating-linear-gradient(to right, rgba(255,255,255,.28) 0 8px, transparent 8px 16px);
}
.section--dark .section-title,
.cta-final .section-title { color: var(--papier); }


/* ============================================================
   KANAELE – Instagram und Facebook
   ============================================================
   Frueher ein eigener Abschnitt im alten Schnitt: zwei bunte
   Knoepfe unter einer zentrierten Ueberschrift. Jetzt derselbe
   zweispaltige Aufbau wie bei Theoriezeiten und Bewertungen –
   links das Kapitel, rechts die beiden Kanaele als Karten.

   Die Plattformfarben stecken nur im Zeichen. Volle Kacheln in
   Instagram-Verlauf und Facebook-Blau wuerden dem Logo-Gruen die
   Aufmerksamkeit wegnehmen.
   ============================================================ */
.kanaele { display: grid; gap: var(--r4); }

.kanal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--r4);
  padding: var(--r5);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  color: var(--papier);
  text-decoration: none;
  transition: border-color .22s var(--kurve), background-color .22s var(--kurve),
              transform .22s var(--kurve);
}
.kanal:hover,
.kanal:focus-visible {
  transform: translateY(-3px);
  background: rgba(255,255,255,.07);
  color: var(--papier);
}

.kanal__mal {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex: none;
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  transition: background .22s var(--kurve), color .22s var(--kurve);
}
.kanal__mal svg { width: 23px; height: 23px; }

/* Erst beim Ansteuern kommt die Plattformfarbe – vorher bleibt der
   Abschnitt ruhig und das Logo-Gruen behaelt die Hauptrolle. */
.kanal--ig:hover .kanal__mal,
.kanal--ig:focus-visible .kanal__mal {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 52%, #6228d7 100%);
  color: #fff;
}
.kanal--fb:hover .kanal__mal,
.kanal--fb:focus-visible .kanal__mal { background: #1877f2; color: #fff; }
.kanal--ig:hover, .kanal--ig:focus-visible { border-color: rgba(238,42,123,.55); }
.kanal--fb:hover, .kanal--fb:focus-visible { border-color: rgba(24,119,242,.6); }

.kanal__text { display: grid; gap: .3rem; min-width: 0; }
.kanal__name {
  font-family: var(--display); font-weight: 800; font-size: var(--t-h3);
  letter-spacing: -.02em; line-height: 1.1;
}
.kanal__was { font-size: var(--t-klein); color: rgba(255,255,255,.62); line-height: 1.55; }

.kanal__pfeil {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: none;
  border-radius: 50%; color: rgba(255,255,255,.55);
  transition: transform .22s var(--kurve), color .22s var(--kurve);
}
.kanal__pfeil svg { width: 18px; height: 18px; }
.kanal:hover .kanal__pfeil,
.kanal:focus-visible .kanal__pfeil { transform: translateX(4px); color: var(--signal); }

.kanal:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }

@media (min-width: 620px) and (max-width: 939px) {
  .kanaele { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .kanal { padding: var(--r4); gap: var(--r3); }
  .kanal__mal { width: 40px; height: 40px; border-radius: 11px; }
  .kanal__mal svg { width: 20px; height: 20px; }
  .kanal__pfeil { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .kanal, .kanal__pfeil { transition: none; }
  .kanal:hover { transform: none; }
  .kanal:hover .kanal__pfeil { transform: none; }
}
