/* ============================ HEADER ============================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 15, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .amp { color: var(--accent); font-style: italic; }

.header-nav { display: none; }
.header-nav a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--accent-hi); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-actions .btn { padding: 0.55rem 1.15rem; font-size: 0.95rem; }
/* Auf Mobil nur der gefuellte Haupt-Button; der zweite (umrandete) Button ab Tablet. */
.btn--header-secondary { display: none; }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(1rem, 0.5rem + 2.5vw, 2.5rem));
  padding-bottom: var(--section-y);
  overflow: hidden;
}
/* Weicher, diffuser Gold-Schimmer hinter/unter der Hero-Headline, der nach aussen ins
   Dunkle auslaeuft. Darunter ein sehr dezenter, kuehler Lichtschein fuer Tiefe.
   Sehr subtil: es soll edel gluehen, nicht leuchten. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(72% 62% at 84% 4%, rgba(224, 178, 74, 0.14), transparent 60%),
    radial-gradient(55% 50% at 98% -8%, rgba(224, 178, 74, 0.08), transparent 55%),
    radial-gradient(58% 55% at 4% 98%, rgba(224, 178, 74, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

/* Weitere dezente Lichtquellen an markanten Stellen: weiche Radials, die aus dem Dunkel
   kommen und wieder im Dunkel verschwinden. Inhalt liegt jeweils darueber (Container z-index 1). */
/* Finaler CTA: warmer Gold-Schein hinter dem Buchungsbereich. */
.cta-final { isolation: isolate; }
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(52% 58% at 50% 44%, rgba(224, 178, 74, 0.12), transparent 73%);
  pointer-events: none;
  z-index: 0;
}
.cta-final > .container { position: relative; z-index: 1; }

/* Ueber uns: sehr dezenter, warmer (goldener) Lichtschein hinter den Gruendern. Kein Blau. */
.about { isolation: isolate; }
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(48% 46% at 50% 34%, rgba(224, 178, 74, 0.07), transparent 74%);
  pointer-events: none;
  z-index: 0;
}
.about > .container { position: relative; z-index: 1; }

.hero-grid { display: grid; gap: clamp(2.5rem, 1rem + 6vw, 4rem); }

/* Hero-Headline: angenehm gross und edel, nicht erschlagend. Mobil deutlich kleiner. */
.hero h1 {
  font-size: clamp(2.05rem, 1.3rem + 3.4vw, 3.5rem);   /* ~33 (Mobil) -> 56 (Desktop) */
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-wrap: balance;                                  /* ausgewogene Zeilen, keine Waisen */
}
/* Der eine Blickfang: Serif-Akzent UND Goldakzent fallen auf "Endlich" zusammen. Nur dieses Wort. */
.hero h1 .hl-serif { color: var(--accent); }
.hero .subhead {
  font-size: var(--fs-lead);
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-cta .secondary {
  font-size: 0.98rem;
  color: var(--text-dim);
  text-decoration: none;
}
.hero-cta .secondary a { color: var(--text); border-bottom: 1px solid var(--line-accent); text-decoration: none; }
.hero-cta .secondary a:hover { color: var(--accent-hi); }

.trust-line {
  font-size: var(--fs-small);
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero-proof { margin-top: 0.5rem; }
.hero-proof p {
  font-size: var(--fs-small);
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.75;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text-dim);
}

/* Hero-Mockup: gerahmter Monitor mit Referenz-Vorschau (Phase 2: Auto-Scroll) */
.hero-mockup { position: relative; }
.device {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.device__bar i { width: 10px; height: 10px; border-radius: 50%; background: #2b3440; display: block; }
.device__viewport {
  /* Platzhalter, bis der WebP-Screenshot (Phase 2) eingesetzt wird */
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(200,162,75,0.06), transparent 40%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 60px),
    var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--text-dim);
  font-size: var(--fs-small);
  text-align: center;
  padding: 1rem;
}

.scroll-indicator {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: var(--fs-small);
}
.scroll-indicator .dot {
  width: 26px; height: 40px;
  border: 1.5px solid var(--line-accent);
  border-radius: 14px;
  position: relative;
}
.scroll-indicator .dot::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

/* Zentrierter Hero (kein Bild/Mockup): edle, ruhige Textkomposition. CTA, Telefon-
   Hinweis und Vertrauenszeile sitzen sauber untereinander, mit grosszuegigem Weissraum. */
.hero--centered { text-align: center; }
.hero--centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero--centered .subhead { max-width: 54ch; margin-bottom: 2.5rem; }
.hero--centered .hero-cta { justify-content: center; margin-bottom: 0; }
.hero--centered .trust-line { margin: 2rem auto 0; max-width: 46ch; }
/* Auf groesseren Schirmen atmet der Hero vertikal (zentriert, viel Weissraum, nicht gedraengt). */
@media (min-width: 768px) {
  .hero--centered { display: flex; align-items: center; min-height: 82vh; }
  /* breiter als der schmale Standard-Container -> die Headline passt edel auf ZWEI Zeilen.
     Subline/Vertrauenszeile behalten ueber ihre eigene max-width die schmale, ruhige Breite. */
  .hero--centered > .container { width: 100%; }
  .hero--centered .subhead { margin-bottom: 2.75rem; }
}

/* ============================ PROBLEM ============================ */
.problem__close {
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.1rem);   /* deutlich kleiner + elegant: passt sicher in EINE Zeile */
  color: var(--text);
  line-height: 1.4;
  margin-top: 1.75rem;
  max-width: none;
}
.problem__close .em { color: var(--accent); font-weight: 600; }   /* Goldakzent, dezent betont (nicht zu fett) */

.stat {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);   /* zentrierte Karte: Akzent oben statt links */
  border-radius: var(--radius-sm);
  background: var(--surface-2);   /* hebt sich von der abgesetzten (--surface) Problem-Sektion ab */
  max-width: var(--read);         /* gleiche Lesespalte wie der uebrige Text -> buendig */
  margin-inline: auto;
  text-align: center;             /* Zahl, Satz und Quelle einheitlich zentriert */
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat__label { color: var(--text); margin: 0.5rem 0 0.4rem; }
.stat__src { font-size: 0.8rem; color: var(--text-dim); }

/* ============================ LÖSUNG ============================ */
.benefits {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr 1fr;   /* Mobile: 2x2 statt untereinander */
}
.benefit {
  min-width: 0;                 /* Grid-Spalten duerfen schrumpfen (kein Ueberlauf durch lange Woerter) */
  padding: 1.6rem;
  background: var(--surface);   /* hebt sich vom dunkleren Grund (--bg) ab */
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.section--surface .benefit { background: var(--surface-2); }

/* Einheitlicher, dezenter Karten-Hover (Nutzen-, Prozess-, Personen-Karten):
   leichtes Anheben + feiner Goldrand + minimales Aufhellen. Schnell und weich. */
.benefit, .step, .person {
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.benefit:hover, .step:hover, .person:hover {
  transform: translateY(-3px);
  border-color: var(--line-accent);
  background: var(--surface-2);
}
.benefit h3 { margin-bottom: 0.4rem; color: var(--text); overflow-wrap: break-word; hyphens: auto; }
.benefit h3 .accent { color: var(--accent); }
.benefit p { color: var(--text-dim); margin: 0; font-size: 1rem; overflow-wrap: break-word; hyphens: auto; }

/* Trumpf-Block (eigene Shops): hervorgehoben, aber ruhig. Optischer Feinschliff folgt in Etappe 3. */
.trumpf {
  margin-top: clamp(2rem, 1.25rem + 2.5vw, 3.25rem);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.trumpf__text { color: var(--text); font-size: var(--fs-lead); line-height: 1.55; margin: 0; max-width: 66ch; }
.trumpf__num { color: var(--accent); font-family: var(--font-head); font-weight: 600; white-space: nowrap; }

/* ============================ REFERENZ-FAECHER (vollflaechig, Breiten-Animation) ============================
   Vier vertikale Streifen NEBENEINANDER (Buchruecken). Aktiver breit, andere schmal
   und leicht abgedunkelt. Animation: NUR CSS-Transition auf flex-grow + Scrim-opacity
   -> ruhig, bugfrei. fan.js schaltet nur .is-active um. Erster Streifen aktiv im HTML.
   Mobile (<=767px): edle Wisch-Galerie (ein Bild gross, Swipe + Punkte). */
.refs .fans {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  margin-top: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

.fan { position: relative; }

.fan__track {
  display: flex;
  flex-direction: row;          /* Streifen NEBENEINANDER */
  width: 100%;
  height: clamp(380px, 66vh, 720px);   /* passt mit Ueberschrift/CTA in einen Snap-Stopp unter dem Header */
  gap: 4px;
  background: var(--bg);
  overflow: hidden;
  border-radius: var(--radius);
}

.fan__strip {
  position: relative;
  flex: 1 1 0%;
  flex-grow: 1.5;                /* schmal (Standard) */
  min-width: 0;
  margin: 0; padding: 0; border: 0;
  background: var(--surface-2);
  cursor: pointer;
  overflow: hidden;
  transition: flex-grow 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fan__strip.is-active { flex-grow: 5.5; }   /* breit aufgeklappt */

.fan__strip img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* Scrim: inaktive Streifen abgedunkelt, aktiver klar und hell. Weicher Uebergang,
   laeuft mit der Breiten-Animation mit. */
.fan__strip::after {
  content: "";
  position: absolute; inset: 0;
  background: #0B0F14;
  opacity: 0.52;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.fan__strip.is-active::after { opacity: 0.06; }
.fan__strip:not(.is-active):hover::after { opacity: 0.34; }

/* Streifen-Label als klares, dezentes Chip oben */
.fan__label {
  position: absolute;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.55);
  border: 1px solid rgba(244, 246, 248, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  transition: color 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}
.fan__strip.is-active .fan__label {
  color: #1a1206;
  background: var(--accent);
  border-color: transparent;
}
.fan__strip:focus-visible { outline: 2px solid var(--accent-hi); outline-offset: -3px; }

/* Referenz-Panel unten links: klein, dunkel, fein, zurueckhaltend */
.fan__caption {
  position: absolute;
  left: clamp(0.9rem, 0.5rem + 1.5vw, 1.75rem);
  bottom: clamp(0.9rem, 0.5rem + 1.5vw, 1.75rem);
  z-index: 5;
  max-width: min(74vw, 290px);
  margin: 0;
  padding: 0.85rem 1rem 0.95rem;
  background: rgba(8, 11, 15, 0.66);
  border: 1px solid rgba(244, 246, 248, 0.10);
  border-left: 2px solid var(--accent);
  border-radius: 12px;
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.fan__caption a { pointer-events: auto; }
.fan__eyebrow {
  display: block;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 0.4rem;
}
.fan__text { color: var(--text); font-size: 0.82rem; line-height: 1.45; margin: 0; }
.fan__live {
  display: inline-block; margin-top: 0.6rem;
  font-size: 0.76rem; color: var(--accent); text-decoration: none;
  border-bottom: 1px solid var(--line-accent);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.fan__live:hover { color: var(--accent-hi); border-color: var(--accent); }

/* Punkte-Navigation: nur Mobile sichtbar */
.fan__dots { display: none; }

/* ---------- Mobile (<=767px): edle Wisch-Galerie ----------
   Ein grosses Einzelbild (horizontaler Swipe, scroll-snap). Das Panel liegt wie
   am Desktop als dezentes Overlay unten links AUF dem Bild, die Punkte unten
   rechts. So bleibt jeder Referenz-Block kompakt und in sich geschlossen. */
@media (max-width: 767px) {
  /* ---------- Referenzen mobil: Wisch-Galerie mit VOLLSTAENDIGEM Screenshot ----------
     Jeder Screenshot wird GANZ gezeigt (kein Ausschnitt), klein skaliert, mit runden
     Ecken. Die Strips bleiben 100% breit -> Wisch-/Snap-Logik in fan.js unveraendert.
     Info-Panel und Punkte wandern unter das Bild; die Punkte sind das Wisch-Signal. */
  .fan { display: flex; flex-direction: column; }

  .fan__track {
    height: auto;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: none;
    border-radius: 0;             /* runde Ecken sitzen jetzt am Bild, nicht am Track */
    align-items: flex-start;
    order: 0;
  }
  .fan__track::-webkit-scrollbar { display: none; }

  .fan__strip {
    flex: 0 0 100%;
    width: 100%;
    height: auto;                 /* Hoehe folgt dem ganzen Bild (Proportion 1200x750) */
    min-height: 0;
    aspect-ratio: auto;
    scroll-snap-align: center;
    transition: none;
    background: none;
    padding: 0 0.7rem;            /* kleiner Seitenabstand -> Bild klebt nicht am Rand */
    box-sizing: border-box;
  }
  .fan__strip.is-active { flex-grow: 0; }   /* kein Aufklappen auf Mobile */
  .fan__strip::after { display: none; }     /* kein Abdunkeln -> Screenshot klar und hell */

  .fan__strip img {
    position: static;             /* statt absolutem Vollformat-Crop */
    width: 100%;
    height: auto;                 /* ganzes Bild, korrekte Proportion, kein Beschnitt */
    object-fit: fill;
    border-radius: 12px;
    border: 1px solid rgba(244, 246, 248, 0.10);
  }

  /* Streifen-Label-Chip bleibt ueber dem (jetzt kleineren) Bild */
  .fan__label { top: 0.55rem; font-size: 0.62rem; padding: 0.32rem 0.72rem; }

  /* Info-Panel jetzt UNTER dem Bild: statisch, volle Breite, ruhig (Name, Ziel, Domain) */
  .fan__caption {
    position: static;
    order: 2;
    left: auto; right: auto; bottom: auto;
    max-width: none;
    margin: 0.65rem 0.7rem 0;
    padding: 0.75rem 0.9rem 0.85rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 2px solid var(--accent);
    border-radius: 12px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .fan__caption .fan__eyebrow { font-size: 0.58rem; margin-bottom: 0.3rem; }
  .fan__caption .fan__text { font-size: 0.78rem; line-height: 1.4; }
  .fan__caption .fan__live { font-size: 0.74rem; margin-top: 0.45rem; }

  /* Punkte direkt unter dem Bild: immer sichtbar (dunkler Grund), klares Wisch-Signal */
  .fan__dots {
    display: flex;
    order: 1;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    position: static;
    margin: 0.7rem 0 0;
  }
  .fan__dot {
    width: 7px; height: 7px;
    padding: 0; border: 0; border-radius: 999px;
    background: rgba(244, 246, 248, 0.35);
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.3s ease, width 0.3s ease;
  }
  .fan__dot.is-current { background: var(--accent); width: 18px; }
}

/* ============================ CTA-BANNER (Wiederholung) ============================ */
.cta-banner {
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-banner .container { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.cta-banner h2 { margin-bottom: 1.5rem; max-width: 22ch; margin-inline: auto; }

/* An den vorherigen Abschnitt angehaengte CTA: kein eigenes Band, blendet ein,
   damit sie Teil desselben Bildschirms ist (kein halbleerer Stopp spaeter). */
.cta-banner--attached {
  background: none;
  border-block: 0;
  text-align: center;
}
.cta-banner--attached .container { padding-top: clamp(2rem, 1.25rem + 2.5vw, 3rem); padding-bottom: 0; }
.cta-banner--attached h2 { margin-bottom: 1.25rem; max-width: 24ch; margin-inline: auto; }

/* CTA als eigenstaendige, hochwertige Box: dezenter Flaechen-Hintergrund + weicher
   Gold-Schein, kompakte Ueberschrift. Fuegt sich bewusst ein, statt verloren zu wirken. */
.cta-banner--box { background: none; border-block: 0; text-align: center; margin-top: clamp(2rem, 1.25rem + 2vw, 3.25rem); }
.cta-banner--box > .container {
  max-width: 760px;        /* breit + flach: Frage passt in eine Zeile, darunter der Button */
  padding: clamp(1.5rem, 1.15rem + 1.4vw, 2.25rem) clamp(1.75rem, 1.2rem + 2.5vw, 3.25rem);
  background: var(--surface);
  border: 1px solid var(--line-accent);
  border-radius: var(--radius);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
}
.cta-banner--box > .container::before {       /* weicher Gold-Schein aus dem oberen Rand der Box */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(95% 130% at 50% -15%, rgba(224, 178, 74, 0.12), transparent 70%);
  pointer-events: none;
}
.cta-banner--box h2 {
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.7rem);   /* kleiner als Section-Headlines, passt in eine Zeile */
  margin-bottom: 1.1rem;
  max-width: none;                                   /* keine Breitenbremse -> Frage bleibt einzeilig */
  margin-inline: auto;
}

/* ============================ JEREMY & THEO (zwei Personen) ============================ */
.about__intro { max-width: var(--read); }
.about__people {
  display: grid;
  gap: clamp(1.25rem, 0.75rem + 2vw, 2rem);
  margin-top: clamp(2rem, 1.25rem + 2.5vw, 3rem);
}
.person {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.5rem + 2vw, 1.5rem);
  padding: clamp(1.1rem, 0.8rem + 1.5vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.person__photo {
  flex: none;
  width: clamp(88px, 16vw, 128px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;   /* Basis fuer das formatfuellende Foto */
  overflow: hidden;     /* beschneidet das Foto sauber rund */
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(224,178,74,0.12), transparent 70%),
    var(--surface-2);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--text-dim);
  padding: 0.5rem;
}
/* Echtes Foto: fuellt den Kreis formatfuellend (deckt Padding-Bereich mit ab),
   mittig beschnitten (cover), nie verzerrt. Der Ring/Border bleibt sichtbar. */
.person__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.person__text h3 { margin-bottom: 0.4rem; }
.person__text p { margin: 0; }

/* ============================ KI-THEMA ============================ */
.ki { position: relative; }
.ki .container { position: relative; }
.ki__quote-mark {
  font-family: var(--font-head);
  font-size: clamp(6rem, 3rem + 18vw, 14rem);
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.16;
  position: absolute;
  top: -0.1em; left: -0.05em;
  pointer-events: none;
  user-select: none;
}
.ki__body { position: relative; max-width: 64ch; }
.ki__close {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 1rem + 1.6vw, 1.9rem);
  color: var(--text);
  margin-top: 1.75rem;
  max-width: 30ch;
}

/* ============================ ABLAUF (Timeline) ============================ */
.steps { display: grid; gap: 1.25rem; margin-top: 2.5rem; counter-reset: step; }
.step {
  position: relative;
  padding: 1.6rem 1.6rem 1.6rem 4.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step__num {
  position: absolute;
  left: 1.4rem; top: 1.5rem;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.step h3 { margin-bottom: 0.35rem; }
.step p { color: var(--text-dim); margin: 0; font-size: 1rem; }

/* Dezenter Zeitstrahl unter dem Ablauf: gibt ein Gefuehl fuer die Dauer (Schaetzung). */
.timeline { margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.timeline__track {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  max-width: 680px;
  margin-inline: auto;
}
.timeline__track::before {
  content: "";
  position: absolute;
  left: 10%; right: 10%;
  top: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--line-accent), var(--accent));
  z-index: 0;
}
.timeline__point {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}
.timeline__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  margin-bottom: 0.6rem;
}
.timeline__dot--final { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.timeline__label { font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 0.95rem; }
.timeline__day { font-size: var(--fs-small); color: var(--text-dim); }
.timeline__star { color: var(--accent); }
.timeline__note { text-align: center; font-size: 0.8rem; color: var(--text-dim); margin-top: 1.25rem; }

/* ============================ GARANTIE ============================ */
/* Dezentes Hintergrund-Element: ein sehr weicher, warmer Schein hinter dem Siegel,
   damit der Abschnitt nicht leer und kalt wirkt. */
.garantie { isolation: isolate; }
.garantie::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(50% 42% at 50% 16%, rgba(224, 178, 74, 0.07), transparent 70%);
  pointer-events: none;
}
.garantie > .container,
.garantie > .cta-banner { position: relative; z-index: 1; }
.garantie .container { text-align: center; }
.seal {
  width: 64px; height: 64px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
  animation: sealGlow 5s ease-in-out infinite;   /* sehr dezentes, langsames Aufleuchten */
}
/* Ring bleibt konstant, ein weicher Gold-Schein atmet langsam dazu (subtil, nicht zappelig). */
@keyframes sealGlow {
  0%, 100% { box-shadow: 0 0 0 6px var(--accent-soft), 0 0 0 0 rgba(224, 178, 74, 0); }
  50%      { box-shadow: 0 0 0 6px var(--accent-soft), 0 0 26px 2px rgba(224, 178, 74, 0.16); }
}
.seal svg { width: 30px; height: 30px; }
.garantie p { color: var(--text-dim); margin-inline: auto; max-width: 62ch; }
.garantie p + p { margin-top: 1rem; }

/* ============================ FAQ ============================ */
.faq { max-width: var(--read); margin-inline: auto; margin-top: 2.5rem; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.5rem 1rem 0;
  position: relative;
  font-family: var(--font-head);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.4rem; top: 50%;
  width: 12px; height: 12px;
  margin-top: -8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--accent-hi); }
.faq__answer { padding: 0 0 1.4rem; color: var(--text-dim); max-width: 64ch; }

/* ---- FAQ-Unterseite (faq.html): Abstand unter dem fixen Header, Kategorien, Abschluss ---- */
.faq-page { padding-top: calc(var(--header-h) + clamp(2.5rem, 1.5rem + 3vw, 5rem)); }
.faq-groups { max-width: var(--read); margin-inline: auto; margin-top: clamp(2.5rem, 1.5rem + 2vw, 3.5rem); }
.faq-group + .faq-group { margin-top: clamp(2rem, 1.25rem + 2vw, 3rem); }
.faq-group .faq { max-width: none; margin-top: 0.4rem; }
.faq-cat {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}
.faq-foot {
  max-width: var(--read);
  margin: clamp(2.5rem, 1.5rem + 3vw, 4rem) auto 0;
  text-align: center;
}
.faq-foot p { color: var(--text-dim); margin-bottom: 1.1rem; }

/* ---- Rechtstext-Seiten (impressum.html, datenschutz.html): ruhige, gut lesbare Spalte ---- */
.legal-page { padding-top: calc(var(--header-h) + clamp(2rem, 1.25rem + 3vw, 4rem)); }
.legal { max-width: 70ch; margin-inline: auto; }
.legal h1 { margin-bottom: 0.75rem; }
.legal h3 { margin-top: clamp(2rem, 1.5rem + 1.5vw, 3rem); margin-bottom: 0.6rem; }
.legal p { color: var(--text-dim); line-height: 1.7; margin-bottom: 1rem; overflow-wrap: break-word; }
.legal p a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--line-accent); transition: color 0.2s ease, border-color 0.2s ease; }
.legal p a:hover { color: var(--accent-hi); border-color: var(--accent); }
.legal-meta { font-size: var(--fs-small); margin-bottom: 1.5rem; }
.legal-placeholder { color: var(--accent); font-weight: 600; }

/* ============================ FINALER CTA / KALENDER ============================ */
.cta-final .container { text-align: center; }
.cta-final .lead { margin-inline: auto; margin-bottom: 1.75rem; }

/* Kalender-Fassade (click-to-load: Tempo + DSGVO) */
.calendar {
  border: 1px solid var(--line-accent);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.25rem, 1rem + 2vw, 2.25rem);
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
}
.calendar__facade { max-width: 44ch; }
.calendar__facade .cal-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}
.calendar__facade p { color: var(--text-dim); margin-bottom: 1.5rem; }
.calendar__embed { width: 100%; }

/* Sobald der Cal.com-Inline-Kalender geladen ist: der Container .cal-inline rahmt selbst
   (Rand, runde Ecken). Die aeussere Fassade tritt zurueck, damit es keinen doppelten Rahmen gibt. */
.calendar.calendar--live {
  display: block;
  place-items: initial;
  padding: 0;
  border: none;
  background: transparent;
  min-height: 0;
  text-align: left;
}
/* Shell rahmt den Kalender: dunkler Hintergrund, runde Ecken + overflow:hidden (beschneidet
   iframe an den Ecken und den weissen Cal.com-Branding-Balken unten; exakte Hoehe per JS).
   max-width deckelt auf die tatsaechliche Kalenderbreite: die Cal.com-Karte ist bis ~955px
   responsiv und fuellt die Shell lueckenlos. Darueber entstuenden sonst helle iframe-Gutter
   neben der Karte (weisse Raender). Zentriert per margin auto. */
.cal-shell {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  min-height: 560px;
  background: var(--bg);
  border: 1px solid var(--line-accent);
  border-radius: var(--radius);
  overflow: hidden;
}
.cal-inline { width: 100%; }
.cal-inline iframe {
  display: block;
  width: 100%;
  background: transparent !important;
}

/* Garantiert dunkle Lade-Ueberlagerung. Liegt sofort (eigenes HTML/CSS) ueber dem iframe,
   dunkel wie der Seitenhintergrund, mit dezentem Gold-Spinner. Wird erst weggeblendet, wenn
   Cal.com sicher fertig und dunkel gerendert ist. So nie ein weisser Moment, egal wie langsam. */
.cal-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: var(--fs-small);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.cal-shell.is-ready .cal-overlay { opacity: 0; pointer-events: none; }
.cal-overlay p { margin: 0; letter-spacing: 0.01em; }
.cal-spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(224, 178, 74, 0.25);
  border-top-color: var(--accent);
  animation: cal-spin 0.8s linear infinite;
}
@keyframes cal-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .cal-spinner { animation: none; border-top-color: rgba(224, 178, 74, 0.25); }
  .cal-overlay { transition: none; }
}

.cta-alt { margin-top: 1.75rem; color: var(--text-dim); }
.cta-alt a { color: var(--text); border-bottom: 1px solid var(--line-accent); text-decoration: none; transition: color 0.2s ease, border-color 0.2s ease; }
.cta-alt a:hover { color: var(--accent-hi); }
.cta-final__last {
  margin-top: 2rem;
  font-size: var(--fs-small);
  color: var(--text-dim);
  max-width: 60ch;
  margin-inline: auto;
}

/* ============================ FOOTER ============================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4rem);
  font-size: var(--fs-small);
  color: var(--text-dim);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-brand .wordmark { font-size: 1.15rem; }
.footer-brand p { margin-top: 0.75rem; max-width: 40ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.9rem;
}
.footer-col a, .footer-col span { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 0.5rem; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-hi); }
.footer-refs { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-refs span { font-family: var(--font-head); margin: 0; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* ============================ COOKIE-HINWEIS (DSGVO) ============================ */
.cookie {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 200;
  background: var(--surface);
  border: 1px solid var(--line-accent);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin-inline: auto;
}
.cookie p { font-size: var(--fs-small); color: var(--text-dim); margin-bottom: 1rem; }
.cookie__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie[hidden] { display: none; }

/* ============================ Skip-Link (a11y) ============================ */
.skip-link {
  position: absolute;
  left: 0.5rem; top: -3rem;
  background: var(--accent);
  color: #1a1206;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 300;
  transition: top 0.2s ease;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 0.5rem; }

/* =========================================================================
   RESPONSIVE · Desktop ist eine eigene, vollwertige Erfahrung
   ========================================================================= */

/* Tablet: zwei Spalten fuer Nutzen-Bloecke, Hero-CTA nebeneinander */
@media (min-width: 640px) {
  .benefits { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* groesseres Tablet */
@media (min-width: 860px) {
  .header-nav { display: flex; gap: 1.75rem; }
  .header-actions .btn--header-secondary { display: inline-flex; }
}

/* DESKTOP: echtes mehrspaltiges Layout, Flaeche wird genutzt */
@media (min-width: 1024px) {
  :root { --header-h: 80px; }

  /* Loesung: vier Bloecke in einer Reihe */
  .benefits { grid-template-columns: repeat(4, 1fr); }

  /* Theodor & Jeremy: zwei Personen-Karten nebeneinander */
  .about__people { grid-template-columns: 1fr 1fr; }

  /* Ablauf: vier Schritte in einer Reihe */
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: calc(2.5rem + 1.125rem);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--line-accent));
    margin-top: -1px;
    z-index: 0;
  }
  .steps { position: relative; }
  .step { z-index: 1; }
}

/* grosse Bildschirme: etwas mehr Luft im Hero */
@media (min-width: 1280px) {
  .hero-grid { gap: 5rem; }
}

/* =========================================================================
   HÖHEN-FEINSCHLIFF MOBILE · jeder Abschnitt soll auf einen Bildschirm passen.
   Kein Inhalt entfernt, nur Abstaende/Groessen gestrafft.
   ========================================================================= */
@media (max-width: 767px) {
  /* Hero auf Mobil fuellt den ganzen ersten Bildschirm (100svh) -> beim Betreten ist
     NUR der Hero zu sehen, der naechste Abschnitt erscheint erst beim Scrollen. Inhalt
     vertikal zentriert, ausgewogen verteilt, wenig Weissraum. Einblende-Animation bleibt. */
  .hero { padding-top: calc(var(--header-h) + 0.5rem); padding-bottom: 2rem; }
  .hero--centered {
    min-height: 100svh;         /* voller erster Bildschirm, kein Anschnitt des Folgeabschnitts */
    display: flex;
    align-items: center;
  }
  /* Inhalt fuelliger komponiert (mehr Luft zwischen den Zeilen) statt kleiner Block in Leere. */
  .hero--centered .subhead { margin-bottom: 2.2rem; }
  .hero--centered .trust-line { margin-top: 2.2rem; }
  .hero-cta { gap: 0.75rem; margin-bottom: 0; }

  /* Punkt 5: der untere Hero-Bereich bekommt einen sehr dezenten, warmen Gold-Schein,
     damit beim Betreten keine flache, leere dunkle Flaeche entsteht. Rein Hintergrund,
     liegt hinter dem Inhalt (z-index 0), Einblende-Animation bleibt unberuehrt. */
  .hero::before {
    background:
      radial-gradient(72% 62% at 84% 4%, rgba(224, 178, 74, 0.14), transparent 60%),
      radial-gradient(55% 50% at 98% -8%, rgba(224, 178, 74, 0.08), transparent 55%),
      radial-gradient(58% 55% at 4% 98%, rgba(224, 178, 74, 0.10), transparent 60%),
      radial-gradient(88% 44% at 50% 70%, rgba(224, 178, 74, 0.11), transparent 72%);
  }

  /* Ablauf: Karten kompakter, Abstaende kleiner; Text kleiner (Punkt 4) */
  .steps { gap: 0.6rem; margin-top: 1.5rem; }
  .step { padding: 0.85rem 1rem 0.85rem 3.4rem; }
  .step__num { left: 1rem; top: 0.95rem; width: 1.9rem; height: 1.9rem; font-size: 0.95rem; }
  .step p { font-size: 0.85rem; line-height: 1.45; }

  /* Punkt 4 · Fliesstexte generell eine Stufe kleiner + ruhiger. Headlines bleiben gross. */
  body { font-size: 0.95rem; line-height: 1.6; }              /* eine Stufe kleiner, eleganter */
  .lead { font-size: 0.9rem; line-height: 1.5; }
  .hero--centered .subhead { font-size: 1rem; line-height: 1.5; }   /* Hero-Subline bleibt etwas praesenter */
  .problem__text .text-dim { font-size: 0.9rem; line-height: 1.6; } /* langer Problem-Absatz kleiner */
  .trumpf__text { font-size: 0.85rem; line-height: 1.55; }          /* Trumpf-Box deutlich kleiner */
  .garantie p { font-size: 0.9rem; }

  /* Punkt 1 · Nutzen-Karten kompakter, Text deutlich kleiner. Ueberschriften bleiben.
     Kleinere Schrift + ganze Woerter (keine Trennung) -> kein "Sekunden-bruch-teilen" mehr. */
  .benefit { padding: 1rem 0.85rem; }
  /* 0.7rem + schmaleres Polster: das laengste Wort ("Sekundenbruchteilen") passt auch bei
     360px in EINE Zeile (geprueft). hyphens:none -> kein Bindestrich; break-word nur Notfall. */
  .benefit p { font-size: 0.7rem; line-height: 1.45; hyphens: none; overflow-wrap: break-word; }

  /* Punkt 2 · Personen-Karten: Text kleiner, Karte kompakter -> Bild/Text im Gleichgewicht. */
  .person { padding: 1rem; gap: 0.9rem; }
  .person__text h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
  .person__text p { font-size: 0.9rem; line-height: 1.5; }

  /* Punkt 6 · Header-Button schlanker: weniger Polster, kleinere Schrift, aber gut antippbar. */
  .header-actions .btn--header-book { padding: 0.4rem 0.85rem; font-size: 0.8rem; }

  /* Punkt 5 · Problem-Absatz: einzelne Schluesselwoerter dezent in Gold (nur Mobil,
     damit Desktop unveraendert bleibt). Stil wie der uebrige Goldakzent. */
  .problem__text .hl-key { color: var(--accent); font-weight: 600; }
}

/* =========================================================================
   SEITENWEISES EINRASTEN (Snap) · nur Desktop, nur wenn js/lib/snap.js die
   Klasse .snap-on am <html> setzt. Ohne JS / auf Mobile: normaler Fluss
   (Failsafe). Jeder [data-snap]-Abschnitt fuellt den Bildschirm (100svh, kein
   leerer Balken) und zentriert seinen Inhalt vertikal.
   ========================================================================= */
/* Bei aktivem Snap kein CSS-Smooth-Scroll: snap.js animiert selbst per window.scrollTo,
   natives scroll-behavior:smooth wuerde sich damit ueberlagern (Ruckeln/Nachhinken). */
html.snap-on { scroll-behavior: auto; }

html.snap-on [data-snap] {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-top: var(--header-h);          /* zentrierter Inhalt bleibt unter dem fixen Header */
  padding-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}

/* Referenz-Stopps: jeder Faecher ein eigener Vollbild-Stopp */
/* Referenzen kompakter: weniger Polster vor/nach dem Block + engere Luecken zwischen den
   Faechern, damit der Uebergang fluessiger wirkt. Die Faecher-Technik selbst bleibt unberuehrt. */
.refs { padding-block: clamp(2.25rem, 1.5rem + 2.5vw, 4rem); }
.ref-stop + .ref-stop { margin-top: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); }
html.snap-on .ref-stop + .ref-stop { margin-top: 0; }
.ref-stop > .container { margin-bottom: clamp(0.85rem, 0.5rem + 1vw, 1.4rem); }

/* =========================================================================
   ANIMATIONSSCHICHT · Anfangszustaende + Lenis (siehe js/lib/)
   ========================================================================= */

/* Anfangszustand der Reveals. Nur aktiv, wenn .anim-ready am <html> haengt
   (gesetzt vom Inline-Script im <head>, nur wenn Motion erlaubt UND JS laeuft).
   So blitzt nichts auf und ohne JS bleibt alles sichtbar. */
.anim-ready [data-anim="reveal"],
.anim-ready [data-anim="reveal-load"],
.anim-ready [data-anim="stagger"] > * {
  opacity: 0;
}

[data-anim="parallax"] { will-change: transform; }

/* Typewriter (js/lib/typewriter.js): Wort-Einheiten brechen nie mitten im Wort um,
   der Cursor blinkt im Messing-Akzent und laeuft hinter dem getippten Text mit.
   Nur aktiv, wenn JS den Effekt aufgebaut hat (sonst steht der Text einfach da). */
.tw-word { white-space: nowrap; }
.tw-caret {
  display: inline-block;
  width: 2px;
  margin-right: -2px;          /* layout-neutral: der Cursor verschiebt kein Zeichen */
  height: 1.05em;
  vertical-align: -0.15em;
  background: var(--accent);
  border-radius: 1px;
  animation: tw-blink 1.05s steps(1, end) infinite;
  pointer-events: none;
}
.tw.tw-caret-fade .tw-caret { animation: none; opacity: 0; transition: opacity 0.5s ease; }
@keyframes tw-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* Lenis (weiches Scrollen, nur Desktop). Lenis setzt die Klassen selbst. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }
/* Hinweis: die uebliche Regel .lenis-stopped{overflow:hidden} ist BEWUSST weggelassen.
   snap.js ruft lenis.stop(), um Lenis-Eingaben abzuschalten, will die Seite aber NICHT
   sperren (das Einrasten scrollt selbst per window.scrollTo). overflow:hidden wuerde das blockieren. */

/* =========================================================================
   REDUCED MOTION · alle Bewegung aus (Bibliothek startet dann gar nicht erst)
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  /* Bei reduzierter Bewegung: Hover faerbt nur, kein Anheben/Verschieben (kein Ruck). */
  .btn:hover, .btn:active,
  .benefit:hover, .step:hover, .person:hover { transform: none; }
  .seal { animation: none !important; }   /* kein Pulsieren bei reduzierter Bewegung */
}
