/* ============================================================
   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;
}

/* Grundlagen -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--schrift);
  font-size: var(--t-basis);
  line-height: 1.65;
  color: var(--tinte);
  background: var(--papier);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }

/* Wer mit der Tastatur navigiert, muss sehen, wo er steht. */
:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; border-radius: 6px; }

@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); } }

.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; }

/* ============================================================
   FEINSCHLIFF
   ============================================================ */

/* --- Typografie ------------------------------------------------
   Jetzt, wo die Gewichtsachse frei ist, arbeitet der Fliesstext
   mit echten Zwischenschnitten statt mit einem einzigen Schnitt. */
body {
  font-weight: 420;                 /* eine Spur kraeftiger als 400 – ruhiger auf hellem Grund */
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -moz-osx-font-smoothing: grayscale;
}
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; }
  body { color: #000; background: #fff; }
  .tafel, .buehne { padding: 1.5rem 0; background: #fff !important; color: #000 !important; }
  .titel, .buehne__titel { font-size: 22pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* ============================================================
   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);
}
.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;
}
