/* ============================================
   MÜHELOS SINGEN — Workshop-Landingpage
   Eigenständiges Editorial-Layout für diese eine
   Kampagnenseite (kein Teil des Hauptseiten-Templates,
   daher eigene CSS-Datei statt /assets/style.css).

   Auf Haus-Tokensystem umgestellt (siehe assets/tokens.css,
   muss im <head> VOR dieser Datei geladen werden). Schrift-
   familien, Typo-Konstanten (line-height/letter-spacing der
   Headings) und Reveal-Timing kommen jetzt aus dem Haus-:root.
   --section-py/--section-py-lg bleiben bewusst LOKALE Literale
   statt Haus-Default (--space-section) zu erben: Diese Seite
   hatte schon vorher ein kleineres, eigenes Section-Rhythmus-Maß
   als "Verbindung" (kein Konflikt, sondern Absicht — "Mühelos
   singen" ist laut Atmosphärendokument der dichtere, wärmere
   Raum). Farben (--accent/--accent-deep) bleiben unverändert –
   Werte wie zuvor unter --sage/--sage-deep, hier nur umbenannt.
   ============================================ */

:root {
  --bg: #fefefc;
  --bg-warm: #f6f3ec;
  --bg-soft: #f0ece3;
  --ink: #232629;
  --ink-soft: #3b3f43;
  --muted: #a9a9a9;
  --line: #e7e3d8;
  --line-soft: #efece4;
  --accent: #90ca4d;
  --accent-deep: #6fa336;
  --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: bewusst lokale Literale, siehe Erklärung im
     Datei-Kopf. Werte 1:1 aus den bisherigen .section/.final-cta-
     Deklarationen übernommen, keine optische Änderung. */
  --section-py: clamp(80px, 11vw, 160px);
  --section-py-lg: clamp(100px, 14vw, 200px);

  /* Reveal-Tempo (Atmosphaeren-Doku §5): mittleres Tempo, leicht
     fliessend, zwischen Verbindung (Stillstand) und Sprechstunde
     (Reportage). */
  --reveal-duration: 850ms;
  --reveal-distance: 22px;
  --reveal-stagger: 120ms;

  --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;
}
body {
  background: linear-gradient(180deg, #f3eee2 0%, #f7f2e8 12%, var(--bg) 38%, var(--bg) 62%, #fafaf6 82%, #fcfcfa 100%);
  background-attachment: fixed;
}

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

/* 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(60px, 8vw, 110px) 0; }
.section--warm { background: var(--bg-warm); }

/* ---------- 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);
}
.nav:not(.is-scrolled) .brand-name { color: #fefefc; }
.nav:not(.is-scrolled) .brand-mark { box-shadow: inset 0 0 0 1px rgba(254,254,252,0.18); filter: brightness(0) invert(1); }

.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;
}
.nav:not(.is-scrolled) + .nav-cta .btn--primary {
  background: rgba(254,254,252,0.10);
  color: #fefefc;
  border-color: rgba(254,254,252,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}
.nav:not(.is-scrolled) + .nav-cta .btn--primary:hover {
  background: rgba(254,254,252,0.2);
  border-color: rgba(254,254,252,0.5);
}

/* Ab Desktop-Breakpoint bleibt der Header-CTA beim Scrollen fixiert
   (Mobile bleibt unveraendert: Button scrollt mit der Nav weg, das
   untere Sticky-Menue uebernimmt dort).

   Sicherheitsprinzip: Die helle, gut lesbare "Scrolled"-Optik ist
   hier bewusst die UNBEDINGTE Basis fuer #navCta .btn--primary,
   nicht nur ein Zustand. #navCta.is-hero ist die Ausnahme obendrauf
   (nur auf dem dunklen Hero-Foto). So bleibt der Button in jedem
   Fall lesbar sichtbar, auch falls die is-hero-Klasse aus irgendeinem
   Grund (Layout-Sprung, Timing, JS-Fehler) nicht wie erwartet gesetzt
   wird - vorher war es umgekehrt: der Default war die auf hellem
   Grund fast unsichtbare Hero-Optik.

   ID-Selektor bewusst, damit die .nav:not(.is-scrolled)-Regel oben
   (nur fuer Mobile relevant) hier nicht mitspielt. */
@media (min-width: 768px) {
  #navCta {
    position: fixed;
    z-index: 90;
  }
  #navCta .btn--primary {
    background: rgba(254,254,252,0.72);
    color: var(--ink);
    border-color: rgba(35,38,41,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px -14px rgba(35,38,41,0.2);
    transition: background-color 300ms ease-out, backdrop-filter 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.92);
  }
  #navCta.is-hero .btn--primary {
    background: rgba(254,254,252,0.10);
    color: #fefefc;
    border-color: rgba(254,254,252,0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
  }
  #navCta.is-hero .btn--primary:hover {
    background: rgba(254,254,252,0.2);
    border-color: rgba(254,254,252,0.5);
  }
}

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

.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(35,38,41,0.18); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--sage { background: var(--accent); color: #1c2a0a; box-shadow: 0 12px 32px -18px rgba(111,163,54,0.7); }
.btn--sage:hover { background: var(--accent-deep); color: #fff; filter: brightness(1.04); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: clamp(620px, 92vh, 920px);
  display: flex;
  align-items: center;
  padding: 120px var(--gutter) 100px;
  overflow: hidden;
  color: #fefefc;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.04) translateY(var(--scroll-y, 0));
  animation: breath 22s ease-in-out infinite;
  will-change: transform;
}
@keyframes breath {
  0%, 100% { transform: scale(1.04) translateY(var(--scroll-y, 0)); }
  50% { transform: scale(1.07) translateY(var(--scroll-y, 0)); }
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(254,254,252,0.20) 0%, rgba(35,38,41,0) 25%, rgba(35,38,41,0.15) 55%, rgba(35,38,41,0.65) 100%),
    linear-gradient(90deg, rgba(35,38,41,0.55) 0%, rgba(35,38,41,0.15) 45%, rgba(35,38,41,0) 70%);
}
.hero__glow {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 18% 60%, rgba(0,0,0,0.35) 0%, transparent 70%);
  animation: glowBreath 16s ease-in-out infinite;
  mix-blend-mode: multiply;
}
@keyframes glowBreath { 0%, 100% { opacity: 0.75; } 50% { opacity: 0.55; } }

.hero__inner { position: relative; width: 100%; max-width: var(--max); margin: 0 auto; }
@media (max-width: 880px) { .hero { padding-top: 120px; padding-bottom: 80px; } }

.hero__copy { max-width: 880px; }

.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__eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  color: rgba(254,254,252,0.85);
  margin-bottom: 36px;
}
.hero__eyebrow::before { content: ""; width: 36px; height: 1px; background: rgba(254,254,252,0.6); display: inline-block; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  /* Raumspezifisch verkleinert (Atmosphaeren-Doku §5: Singen naeher
     an Verbindung heranrutschen lassen), innerhalb ±20%-Korridor um
     den bisherigen Wert – eigenstaendiger clamp(), nicht ratio-abgeleitet. */
  font-size: clamp(37px, 5.8vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: #fefefc;
  text-wrap: balance;
  margin-bottom: 22px;
  max-width: 16ch;
}

.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(254,254,252,0.92);
  max-width: 38ch;
  margin-bottom: 48px;
  font-weight: 400;
}

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

.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(254,254,252,0.88);
  letter-spacing: 0.01em;
}
.hero__meta-item { display: inline-flex; align-items: center; }
.hero__meta-item + .hero__meta-item::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(254,254,252,0.4);
  margin-right: 18px;
}
@media (max-width: 640px) {
  .hero__meta { gap: 6px 14px; }
  .hero__meta-item + .hero__meta-item::before { margin-right: 14px; }
}

.hero__cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(254,254,252,0.6);
  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(254,254,252,0.6), rgba(254,254,252,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; }

/* ---------- Stimmen (editoriale Zitatblöcke, keine Testimonial-Optik) ---------- */
.voices { display: flex; flex-direction: column; gap: 72px; max-width: 640px; margin-left: auto; margin-right: auto; }
.voice { text-align: center; }
.voice__quote { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(19px, 1.8vw, 23px); line-height: 1.55; color: var(--ink); margin: 0 0 16px; }
.voice__cite { display: block; font-family: var(--font-sans); font-style: normal; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }

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

.details { max-width: 720px; margin: 0 auto; }
.details__panel { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 8px; }
.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; } }

.teacher { display: flex; flex-direction: column; gap: 20px; }
.teacher__portrait {
  width: 152px; height: 152px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
}
.teacher__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Michael-&-Mareike-Foto ist ein Hochformat-Ganzkoerperfoto – Standard-
   Zuschnitt (center center) schneidet die Haare oben ab. Fokuspunkt
   nach oben verschoben, damit beide Koepfe mit etwas Luft sichtbar sind. */
.teacher__portrait--top img { object-position: center 22%; }
.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-warm); 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(144,202,77,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-deep); }
.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: #1c2a0a;
  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
   – keine optische Änderung. 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__bg img, .hero__glow { animation: none !important; }
  #navCta .btn--primary { transition: none; }
}

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