/* ============================================
   VERBINDUNG — Workshop-Landingpage
   Eigenständiges Editorial-Layout für diese eine
   Kampagnenseite (kein Teil des Hauptseiten-Templates,
   daher eigene CSS-Datei statt /assets/style.css).
   1:1 aus muehelos-singen.css übernommen, nur Inhalt
   der Seite wurde ausgetauscht.

   Erster Raum, der auf das Haus-Tokensystem umgestellt ist
   (siehe assets/tokens.css, muss im <head> VOR dieser Datei
   geladen werden). Schriftfamilien, Typo-Konstanten (line-
   height/letter-spacing der Headings), Section-Rhythmus und
   Reveal-Timing kommen jetzt aus dem Haus-:root und werden
   hier nicht mehr wiederholt — nur noch echte Raum-Overrides
   (Farben, raumspezifische clamp()-Größen) bleiben lokal.
   ============================================ */

:root {
  --bg: #fefefc;
  --bg-warm: #f6f3ec;
  --bg-soft: #f0ece3;
  --ink: #232629;
  --ink-soft: #3b3f43;
  --muted: #a9a9a9;
  --line: #e7e3d8;
  --line-soft: #efece4;
  /* Eigener Akzent fuer diese Seite (Petrol statt Marken-Gruen/Ocker) –
     bewusst als --accent/--accent-deep benannt statt --sage/--sage-deep,
     damit der eigene "Dialekt" dieser Landingpage klar erkennbar bleibt.
     --accent-deep ist die Hover-/Kontrast-Variante. Kontrast-Check:
     weisser Button-Text auf --accent = 4.88:1 (AA), auf --accent-deep
     = 8.17:1. Deshalb helle statt dunkle Button-Textfarbe (siehe unten). */
  --accent: #2e7d74;
  --accent-deep: #1f5850;
  /* Helle Highlight-Variante fuer farbige Textstellen auf hellem Grund
     (z. B. die kursive Zeile in der finalen Einladung) – dort war
     --accent-deep zu dunkel, um sich vom schwarzen Fliesstext
     abzuheben. Nur fuer grosse Schrift (>=24px) gedacht: Kontrast auf
     Creme = 3.28:1, erfuellt dort die WCAG-Schwelle fuer grosse
     Schrift (3:1), nicht die fuer Fliesstext (4.5:1). */
  --accent-bright: #3a9d91;
  --blue: #6a8ca3;
  --blue-deep: #4f7088;

  /* Schriftfamilien: jetzt aus assets/tokens.css (--font-serif/
     --font-display/--font-sans), hier nicht mehr lokal definiert. */

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Section-Rhythmus: --section-py zieht weiterhin aus --space-section,
     aber --space-section wird hier lokal ueberschrieben (Atmosphaeren-
     Doku §5: Verbindung ist der leerste Raum, mehr Weissraum als der
     Haus-Default). Fluider Wert im bisherigen --section-py-lg-Stil
     dieser Datei, kein neues Fix-Token (--space-2xl) im Haus-:root. */
  --space-section: clamp(140px, 16.5vw, 220px);
  --section-py: var(--space-section);
  --section-py-lg: var(--space-section-lg);

  /* Reveal-Tempo (Atmosphaeren-Doku §5): stillstand-nahes Tempo,
     kaum Bewegung, staerker gestaffelt als das Haus-Default. */
  --reveal-duration: 1100ms;
  --reveal-distance: 16px;
  --reveal-stagger: 200ms;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  scroll-behavior: smooth;
}
/* Durchgehend EIN Hintergrundton auf der ganzen Seite (--bg #fefefc,
   der hellere der beiden zuvor genutzten Cremetoene). Frueher lief hier
   ein Verlauf ueber mehrere Sandtoene, der zusammen mit .section--warm
   den Farbwechsel zwischen den Sektionen erzeugt hat. */
body {
  background: var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  html, body { scroll-behavior: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- typography ---------- */

.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: var(--letter-spacing-display);
  line-height: var(--line-height-display);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6.4vw, 88px); }
h2 { font-size: clamp(32px, 4.4vw, 60px); line-height: 1.1; }
h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue-deep);
  display: inline-block;
}

.lede {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.script { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* Freistehender Editorial-Ruhepunkt, kein Zitat – siehe .keyline-Konvention auf index.html */
.merksatz {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.5;
  color: var(--ink);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* Generic flowing-paragraph block, reused across several sections */
.prose { display: flex; flex-direction: column; gap: 22px; }
.prose p {
  font-size: clamp(16px, 1.15vw, 17.5px);
  line-height: var(--line-height-body);
  color: var(--ink-soft);
  max-width: 62ch;
  text-wrap: pretty;
}
.prose p em { font-family: var(--font-serif); font-style: italic; color: var(--ink); }
.prose .turn {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.45;
  color: var(--ink);
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(35,38,41,0.08);
}

/* ---------- layout primitives ---------- */

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-py) 0; position: relative; }
.section--tight { padding: clamp(75px, 10vw, 137.5px) 0; }
/* Bewusst neutralisiert: die Seite nutzt durchgehend --bg. Die Klasse
   bleibt im Markup stehen, setzt aber keinen abweichenden Ton mehr. */
.section--warm { background: var(--bg); }

/* ---------- nav ---------- */

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.is-scrolled {
  background: rgba(254,254,252,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
/* Kein dunkles Hero-Foto mehr (Split-Hero mit hellem Platzhalter) –
   Logo/Marke bleibt daher immer in der normalen dunklen Optik (siehe
   .brand unten), keine weisse "ueber Foto"-Variante noetig. */

.brand { display: flex; align-items: center; gap: 14px; font-family: var(--font-serif); font-size: 16px; letter-spacing: 0.01em; color: var(--ink); }
.brand-mark { width: 32px; height: 32px; background: url('logo.png') center/contain no-repeat; flex: none; }
.brand-name { letter-spacing: 0.02em; }

/* #navCta ist bewusst KEIN Kind von <nav> (siehe unten), sondern ein
   Geschwister-Element direkt danach - damit es keinen eigenen
   Stacking-Context von .nav (position+z-index) erbt, sobald es ab
   Desktop position:fixed wird. Position/Optik werden hier trotzdem
   exakt wie vorher ueber Absolute-Positionierung + Sibling-Selektor
   auf .nav nachgebildet. */
.nav-cta {
  position: absolute;
  top: 18px;
  right: var(--gutter);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
}
/* Header-CTA mit Zustandswechsel (analog muehelos-singen.html, hier mit
   Petrol statt Gruen), gesteuert ueber die is-scrolled-Klasse der Nav
   (bereits im JS vorhanden, kein eigener is-hero-Mechanismus noetig).

   Sicherheitsprinzip wie auf Muehelos: die helle, gut lesbare
   "gescrollt"-Optik ist die UNBEDINGTE Basis; der Hero-Zustand
   (durchsichtig/outline) ist die Ausnahme obendrauf. So bleibt der
   Button auch bei Timing-/JS-Fehlern lesbar. */
#navCta .btn--primary {
  background: rgba(254,254,252,0.85);
  color: var(--accent-deep);
  border-color: rgba(46,125,116,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -14px rgba(35,38,41,0.2);
  transition: background 300ms ease-out, color 300ms ease-out, border-color 300ms ease-out, box-shadow 300ms ease-out;
}
#navCta .btn--primary:hover {
  background: rgba(254,254,252,0.96);
}
/* Hero-Zustand (Nav noch nicht gescrollt): durchsichtig/outline mit
   hellem Rahmen + Text – der Button sitzt hier ueber dem Hero-Foto.
   Zwei-ID-Selektor (#nav … #navCta) fuer hoehere Spezifitaet als die
   ID-Basis oben, damit die Ausnahme greift. */
#nav:not(.is-scrolled) + #navCta .btn--primary {
  background: rgba(254,254,252,0.10);
  color: #fefefc;
  border-color: rgba(254,254,252,0.5);
  box-shadow: none;
}
#nav:not(.is-scrolled) + #navCta .btn--primary:hover {
  background: rgba(254,254,252,0.2);
  border-color: rgba(254,254,252,0.7);
}
/* Ab Desktop-Breakpoint bleibt der Header-CTA beim Scrollen fixiert
   (Mobile: Button scrollt mit der Nav weg, das untere Sticky-Menue
   uebernimmt dort). */
@media (min-width: 768px) {
  #navCta {
    position: fixed;
    z-index: 90;
  }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.22,1,0.36,1), background 280ms ease, color 280ms ease, box-shadow 280ms ease, border-color 280ms ease, filter 280ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--ink); color: var(--bg); box-shadow: 0 1px 0 rgba(35,38,41,0.04), 0 12px 28px -16px rgba(35,38,41,0.5); }
.btn--primary:hover { background: #000; filter: brightness(1.08); box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 18px 36px -16px rgba(35,38,41,0.65); }

/* Outline-/Sekundaer-Button: Petrol statt Ink als Rand-/Textfarbe
   (Kontrast --accent-deep auf hellem Grund = 8.15:1). */
.btn--ghost { background: transparent; color: var(--accent-deep); border-color: rgba(46,125,116,0.4); }
.btn--ghost:hover { border-color: var(--accent); background: rgba(46,125,116,0.06); }

/* Klassenname .btn--sage bewusst beibehalten (nur Farbwerte geaendert),
   um die Struktur/Markup-Kopplung zu muehelos-singen.html nicht anzufassen.
   Heller statt dunkler Button-Text: auf Petrol liefert Weiss deutlich
   besseren Kontrast (4.88:1) als Schwarz (4.30:1, faellt unter AA). */
.btn--sage { background: var(--accent); color: #fefefc; box-shadow: 0 12px 32px -18px rgba(31,88,80,0.7); }
.btn--sage:hover { background: var(--accent-deep); color: #fff; filter: brightness(1.08); }

/* ---------- hero (Split-Layout: Text links / Bild rechts) ---------- */

.hero {
  position: relative;
}

/* Volle Breite, kein .container-Max-Width – das Bild soll bis zum
   rechten Viewport-Rand reichen ("formatfuellend"). */
.hero__split {
  display: grid;
  grid-template-columns: 47% 53%; /* leicht bildlastig */
  /* Richtwert 80–90% der Viewport-Hoehe bei typischen Bildschirmen
     (700–1100px hoch). Obergrenze 920px kappt bewusst auf sehr hohen
     Viewports (4K/Hochkant-Monitor), damit der Hero dort nicht
     unverhaeltnismaessig gross wird. */
  min-height: clamp(640px, 85vh, 920px);
}

.hero__col-text {
  display: flex;
  align-items: center;
  padding: clamp(120px, 11vw, 160px) clamp(40px, 6vw, 88px) clamp(72px, 9vw, 100px) clamp(40px, 6vw, 88px);
}

.hero__copy { max-width: 560px; }

.hero__intro { opacity: 0; transform: translateY(20px); animation: heroIntro 1600ms cubic-bezier(0.16, 1, 0.3, 1) 500ms forwards; }
@keyframes heroIntro { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero__intro { animation: none; opacity: 1; transform: none; } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  /* Raumspezifisch vergroessert (Atmosphaeren-Doku §5: Verbindung
     als monumentalster Raum), innerhalb ±20%-Korridor um den bisherigen
     Wert – eigenstaendiger clamp(), nicht ratio-abgeleitet. */
  font-size: clamp(41px, 4.3vw, 65px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 22px;
}

.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero__sub:last-of-type { margin-bottom: 40px; }

.hero__ctas { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }

/* Bildspalte: rechts auf Desktop, randlos bis an den rechten/oberen
   Viewport-Rand, gleiche Hoehe wie die Textspalte (Grid-Stretch). */
.hero__col-media { position: relative; overflow: hidden; background: var(--bg-soft); }
.hero__media-img {
  position: absolute;
  /* Randlos/vollflaechig: fuellt den kompletten Bildbereich, kein
     sichtbarer --bg-soft-Rand ringsum. object-fit:cover haelt den
     Zuschnitt unverzerrt, object-position 54%/50% behaelt den zuletzt
     gewaehlten weiteren Ausschnitt (mehr linker Aermel/Umfeld) bei. */
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  display: block;
}

@media (max-width: 960px) {
  .hero__split { grid-template-columns: 1fr; min-height: auto; }
  /* Bildbereich mobil ruhig-begrenzt statt bildschirmfuellend: ~40-50vh. */
  .hero__col-media { order: -1; min-height: clamp(300px, 46vh, 420px); }
  /* Grosszuegiger Innenabstand unten, damit der CTA-Button klar ueber
     dem "WEITER"-Scrollhinweis steht und nicht mit ihm kollidiert. */
  .hero__col-text { padding: 64px clamp(24px, 6vw, 40px) 160px; }
  .hero__copy { max-width: none; }
  /* "WEITER"-Cue kompakter und tiefer, damit klarer Abstand zum
     CTA-Button entsteht (auf Mobile standen beide zu eng zusammen). */
  .hero__cue { bottom: 18px; gap: 8px; }
  .hero__cue .bar { height: 34px; }
}

.hero__cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.hero__cue .bar {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(35,38,41,0.35), rgba(35,38,41,0));
  animation: descend 2.4s ease-in-out infinite;
}
@keyframes descend {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- image placeholders / photo frames ---------- */

.imgph { position: relative; overflow: hidden; background: var(--bg-soft); border-radius: var(--r-md); }
.imgph--photo { background: var(--ink); }
.imgph--photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.imgph--portrait { aspect-ratio: 4/5; }

/* ---------- Kennst du das ---------- */

.recognition { max-width: 720px; }
.recognition h2 { margin-bottom: clamp(28px, 4vw, 44px); max-width: 14ch; }

/* ---------- Der Ansatz ---------- */

.ansatz {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) { .ansatz { grid-template-columns: 1fr; } }
.ansatz__media .imgph { aspect-ratio: 4/5; }
.ansatz__copy h2 { margin-bottom: 28px; }

/* ---------- Für wen (Vielleicht erkennst du dich darin wieder) ---------- */

.forwhom__inner { max-width: 720px; margin: 0 auto; }
.forwhom__inner h2 { margin-bottom: clamp(28px, 4vw, 44px); max-width: 18ch; }

/* ---------- Der Tag ---------- */

.derTag__inner { max-width: 1000px; margin: 0 auto; }
.derTag__head { margin-bottom: clamp(48px, 6vw, 80px); }
.derTag__title { margin-bottom: 24px; font-size: clamp(32px, 4.6vw, 64px); line-height: 1.05; max-width: 14ch; }
.derTag__intro { margin-top: 12px; font-size: clamp(16px, 1.15vw, 17.5px); line-height: 1.7; color: var(--ink-soft); max-width: 52ch; text-wrap: pretty; }
.derTag__steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.derTag__step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: baseline;
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid rgba(35,38,41,0.1);
}
.derTag__step:last-child { border-bottom: 1px solid rgba(35,38,41,0.1); }
.derTag__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  color: var(--accent-deep);
  letter-spacing: -0.01em;
  line-height: 1;
}
.derTag__name { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; margin: 0 0 14px; color: var(--ink); }
.derTag__body p { font-size: clamp(15.5px, 1.1vw, 17px); line-height: 1.7; color: var(--ink-soft); max-width: 56ch; text-wrap: pretty; }
@media (max-width: 720px) { .derTag__step { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Du musst nichts können (Neugier genügt) ---------- */

.safe__inner { max-width: 720px; margin: 0 auto; }
.safe__title { margin-bottom: clamp(28px, 4vw, 40px); }

/* ---------- Stimmen (Testimonial-Platzhalter) ----------
   Gestapelte Einzelzitate statt Karten-Grid (Haus-Regel: keine
   ueberladenen Karten). Nutzt ausschliesslich bestehende Raum-Tokens. */
.testimonials { display: flex; flex-direction: column; gap: 56px; }
.testimonial { text-align: center; }
.testimonial blockquote { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(19px, 1.8vw, 23px); line-height: 1.5; color: var(--ink); margin: 0 0 14px; }
.testimonial cite { display: block; font-family: var(--font-sans); font-style: normal; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.testimonial .platzhalter-note { margin-top: 16px; font-size: 12px; color: var(--muted); font-style: italic; padding: 10px 16px; border: 1px dashed var(--line); border-radius: var(--r-sm); display: inline-block; }

/* ---------- Auf einen Blick ---------- */

.details { max-width: 720px; margin: 0 auto; }
.details__panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 24px 56px -36px rgba(35,38,41,0.16);
}
.details__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line-soft);
}
.details__row:last-child { border-bottom: none; }
.details__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.details__value { font-family: var(--font-serif); font-size: clamp(17px, 1.5vw, 21px); color: var(--ink); line-height: 1.35; }
@media (max-width: 640px) {
  .details__row { grid-template-columns: 1fr; row-gap: 4px; padding: 18px 22px; }
}
.details__note {
  margin-top: clamp(28px, 4vw, 40px);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink);
  text-wrap: balance;
}
.details__cta { margin-top: clamp(28px, 4vw, 40px); }

/* ---------- Die Menschen hinter dem Workshop ---------- */

.teachers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 64px; }
@media (max-width: 880px) { .teachers-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Foto links, Bio rechts daneben, gemeinsam auf die volle Blockbreite
   (720px, siehe Markup) verteilt – vorher stand das Foto allein und
   schmal ueber dem Text, mit viel ungenutzter Flaeche daneben. */
.teacher { display: flex; gap: 32px; align-items: flex-start; }
@media (max-width: 640px) { .teacher { flex-direction: column; } }
/* Gemeinsames Foto statt zweier Einzelportraets. Bewusst kein Kreis
   (wie auf muehelos-singen.html) – dezent abgerundetes Rechteck, um
   sich davon optisch abzusetzen. */
.teacher__group-photo {
  flex: none;
  width: 280px;
  max-width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.teacher__group-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Foto hat viel leeren Deckenraum (Dachfenster) oben – Fokus nach
     unten auf die beiden Personen verschoben. */
  object-position: center 68%;
  display: block;
}
.teacher__name { font-family: var(--font-serif); font-size: 28px; line-height: 1.1; }
.teacher__bio { font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: 46ch; }
.teacher__bio--pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}

/* ---------- Häufige Fragen ---------- */

.faq { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-inner { max-width: 720px; margin: 0 auto; padding: var(--section-py) var(--gutter); }
.faq-inner h2 { margin-bottom: clamp(28px, 4vw, 44px); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  padding: 22px 40px 22px 0;
  position: relative;
  line-height: 1.5;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--accent-deep);
  transition: transform .3s;
}
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 0 26px; }
.faq-a p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }

/* ---------- Finale Einladung ---------- */

.final-cta {
  text-align: center;
  padding: var(--section-py-lg) var(--gutter);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(46,125,116,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(106,140,163,0.08) 0%, transparent 60%);
}
.final-cta h2 { max-width: 22ch; margin: 0 auto 32px; font-size: clamp(34px, 4.8vw, 60px); }
.final-cta h2 em.script { color: var(--accent-bright); }
.final-cta .lede { margin: 0 auto 32px; text-align: center; }
.final-cta__meta {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin: 0 auto 20px;
}
.final-cta__note {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto 40px;
}
.final-cta__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */

.footer--minimal {
  border-top: 1px solid var(--line-soft);
  padding: 32px var(--gutter);
  background: var(--bg);
  text-align: center;
}
.footer--minimal a { transition: color 200ms ease; }
.footer--minimal a:hover { color: var(--accent-deep); }
.footer--minimal p { font-size: 13px; color: var(--muted); letter-spacing: 0.03em; }

/* ---------- mobile sticky CTA ---------- */

.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 40;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-pill);
  padding: 14px 18px 14px 22px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
  transform: translateY(120%);
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text strong { display: block; font-family: var(--font-serif); font-weight: 400; font-size: 15px; line-height: 1.2; }
.sticky-cta__text span { font-size: 11px; letter-spacing: 0.1em; color: rgba(254,254,252,0.65); }
.sticky-cta__btn {
  background: var(--accent);
  color: #000;
  border-radius: var(--r-pill);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 880px) { .sticky-cta { display: flex; } }

/* Bottom-Sheet: jetzt zentral in assets/sheet.css (alle acht Seiten). */

/* ---------- scroll reveal ----------
   Timing kommt jetzt aus dem Haus-Token (--reveal-duration/
   --reveal-distance/--reveal-stagger in assets/tokens.css) statt
   hier erneut als Literal zu stehen. Identisch zum bisherigen Wert
   (dort 1:1 aus dieser Datei uebernommen) – keine optische Aenderung.
   Das JS (.reveal -> .in per IntersectionObserver) bleibt vorerst
   inline im Seiten-<script>, siehe assets/reveal.js zur geplanten
   Ablösung. */

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity var(--reveal-duration) var(--ease-atmosphere), transform var(--reveal-duration) var(--ease-atmosphere);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: var(--reveal-stagger); }
.reveal-delay-2 { transition-delay: calc(var(--reveal-stagger) * 2); }
.reveal-delay-3 { transition-delay: calc(var(--reveal-stagger) * 3); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { transition: none; opacity: 1; transform: none; }
  .hero__cue .bar { animation: none !important; }
  #navCta .btn--primary { transition: none; }
}

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
