/* =========================================================================
   Der große Sprung – Landingpage
   Ein Stylesheet, keine Abhängigkeiten, keine externen Requests.
   ========================================================================= */

/* ---------- Schriften (selbst gehostet, siehe fonts/LIESMICH-LIZENZ.txt) -- */

@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo2-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2018-201A,
                 U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2122;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/nunito-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2018-201A,
                 U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2122;
}

/* ---------- Designtokens ------------------------------------------------- */

:root {
  /* Farben aus dem Briefing – als Flächen */
  --wiese:        #5A9E3D;
  --himmel:       #C8F0FF;
  --sonne:        #FFC83D;
  --koralle:      #F26B45;
  --violett:      #4B2E5A;
  --creme:        #FFF9EA;

  /* Textsichere Geschwister (nachgerechnet, siehe LIESMICH.md) */
  --wiese-text:   #45792E;   /* 5,21:1 auf Weiß */
  --koralle-text: #C93F23;   /* 4,98:1 auf Weiß */

  /* Abgeleitete Flächen */
  --creme-tief:   #FDF1D7;
  --himmel-tief:  #E4F7FF;
  --violett-weich:#6B4A7C;
  --pink:         #E86A9A;

  --text:         var(--violett);
  --text-leise:   #6B5476;

  /* Maße */
  --nav-h: 56px;
  --kauf-h: 60px;
  --rand: 16px;
  --radius: 22px;
  --radius-gross: 34px;

  --schatten: 0 6px 20px rgba(75, 46, 90, .10);
  --schatten-tief: 0 14px 38px rgba(75, 46, 90, .16);

  --schrift-display: "Baloo 2", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  --schrift-text: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --takt: .28s cubic-bezier(.34, 1.4, .5, 1);
}

@media (min-width: 900px) {
  :root { --nav-h: 72px; --rand: 40px; --kauf-h: 64px; }
}

/* ---------- Reset -------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--creme);
  color: var(--text);
  font-family: var(--schrift-text);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  /* Platz für die feste Kaufleiste auf dem Handy – sie darf nichts verdecken */
  padding-bottom: calc(var(--kauf-h) + 18px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 900px) { body { padding-bottom: 0; } }

img, video, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--schrift-display);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(1.75rem, 5.2vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 4.4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.6vw, 1.4rem); }

p { margin: 0 0 1em; }
a { color: var(--koralle-text); }

/* Fokus – überall deutlich sichtbar */
:focus-visible {
  outline: 3px solid var(--violett);
  outline-offset: 3px;
  border-radius: 8px;
}

.nur-fuer-screenreader {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 50%; translate: -50% -120%;
  z-index: 100; background: var(--violett); color: #fff;
  padding: 14px 22px; border-radius: 0 0 14px 14px;
  font-weight: 700; text-decoration: none;
}
.skip:focus { translate: -50% 0; }

/* ---------- Layout ------------------------------------------------------- */

.huelle {
  width: min(1240px, 100% - var(--rand) * 2);
  margin-inline: auto;
}

.band { position: relative; padding: clamp(48px, 8vw, 96px) 0; }
.band--creme  { background: var(--creme); }
.band--tief   { background: var(--creme-tief); }
.band--himmel { background: linear-gradient(180deg, var(--himmel) 0%, var(--himmel-tief) 100%); }

/* Grasnarbe zwischen den Bändern – ein Bilderbuch hat keine harten Kanten */
.saum { display: block; width: 100%; height: clamp(28px, 4vw, 54px); }
.saum svg { width: 100%; height: 100%; display: block; }

/* =========================================================================
   Navigation
   ========================================================================= */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--nav-h);
  background: rgba(255, 249, 234, .93);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(75, 46, 90, .10);
}

.nav__innen {
  height: 100%;
  display: flex; align-items: center; gap: 14px;
  width: min(1240px, 100% - var(--rand) * 2); margin-inline: auto;
}

.nav__logo {
  font-family: var(--schrift-display);
  font-weight: 800;
  font-size: clamp(1.02rem, 2.6vw, 1.4rem);
  color: var(--wiese-text);
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
  /* Mindestens 48 px hohe Trefferfläche, auch wenn die Textzeile kleiner ist.
     Bewusst inline-block statt Flexbox: als Flexcontainer würden die
     Leerzeichen zwischen „Der“, „große“ und „Sprung“ verschluckt. */
  display: inline-block;
  padding: 11px 8px;
  margin-left: -8px;
  border-radius: 12px;
}
.nav__logo span { color: var(--koralle-text); }

.nav__links { display: none; gap: 4px; }
@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__link {
  color: var(--violett); text-decoration: none;
  font-weight: 700; font-size: .97rem;
  padding: 10px 14px; border-radius: 12px;
  min-height: 48px; display: inline-flex; align-items: center;
}
.nav__link:hover { background: rgba(75, 46, 90, .07); }

/* Feste Kaufleiste unten – nur Handy */
.kaufleiste {
  position: fixed; z-index: 70;
  left: var(--rand); right: var(--rand);
  bottom: calc(9px + env(safe-area-inset-bottom, 0px));
  transition: translate .3s ease, opacity .3s ease;
}
.kaufleiste .knopf { width: 100%; }
.kaufleiste[hidden] { display: block !important; }   /* wir animieren statt zu verstecken */
.kaufleiste.ist-weg {
  translate: 0 calc(100% + 24px);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 900px) { .kaufleiste { display: none; } }

/* =========================================================================
   Knöpfe
   ========================================================================= */

.knopf {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  min-height: 52px; padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--schrift-display);
  font-weight: 800; font-size: 1.02rem; line-height: 1.2;
  text-align: center; text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--violett);
  transition: translate var(--takt), box-shadow var(--takt), background-color .2s;
}

/* Primär: Sonnenblumengelb mit violettem Text = 7,39:1 (AAA).
   Der Rahmen ist Pflicht, nicht Zierde: Gelb auf Creme erreicht als Fläche
   nur 1,47:1 und wäre ohne Rahmen kaum als Bedienelement erkennbar. */
.knopf--kauf {
  background: var(--sonne);
  color: var(--violett);
  box-shadow: 0 5px 0 var(--violett), var(--schatten);
}
.knopf--kauf:hover { background: #FFD35F; }
.knopf--kauf:active { translate: 0 4px; box-shadow: 0 1px 0 var(--violett); }

.knopf--gross { min-height: 64px; font-size: clamp(1.05rem, 2.4vw, 1.3rem); padding: 16px 34px; }
/* 48 px ist die Mindest-Trefferfläche; die Navileiste ist 56 px hoch,
   das passt mit je 4 px Luft. */
.knopf--nav   { min-height: 48px; padding: 9px 18px; font-size: .95rem; box-shadow: 0 3px 0 var(--violett); }

.knopf--zweit {
  background: #fff; color: var(--violett);
  box-shadow: 0 4px 0 rgba(75, 46, 90, .28);
}
.knopf--zweit:hover { background: var(--himmel-tief); }
.knopf--zweit:active { translate: 0 3px; box-shadow: 0 1px 0 rgba(75, 46, 90, .28); }

.knopf--ton {
  background: var(--koralle-text); color: #fff; border-color: var(--violett);
  box-shadow: 0 4px 0 var(--violett);
  width: 100%;
}
.knopf--ton:active { translate: 0 3px; box-shadow: 0 1px 0 var(--violett); }

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  padding-top: calc(var(--nav-h) + 14px);
  padding-bottom: 14px;
  background:
    radial-gradient(120% 80% at 50% 0%, var(--himmel) 0%, rgba(200,240,255,0) 62%),
    var(--creme);
}

/* Auf dem Handy verlangt das Briefing: Video direkt unter der Navigation,
   der Amazon-Knopf unmittelbar darunter, erst danach der Einleitungstext.
   Auf dem Desktop steht das Video links, rechts Text und Knöpfe. */
.hero__raster {
  display: grid; gap: 18px;
  grid-template-areas: "medien" "kauf" "worte";
}

@media (min-width: 900px) {
  .hero { padding-top: calc(var(--nav-h) + 30px); padding-bottom: 30px; }
  .hero__raster {
    grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
    grid-template-areas: "medien worte" "medien kauf";
    align-content: center;
    gap: 18px 42px;
  }
}

.hero__auftakt {
  font-weight: 700; color: var(--wiese-text);
  font-size: .96rem; margin: 0 0 .55em;
}
.hero__text { font-size: 1.04rem; color: var(--text-leise); max-width: 46ch; }

.hero__medien { grid-area: medien; }
.hero__worte  { grid-area: worte; }
.hero__kauf   { grid-area: kauf; }

.hero__knoepfe { display: grid; gap: 10px; }
/* Nebeneinander nur dort, wo wirklich Platz ist: in der schmalen rechten
   Desktopspalte würde der Kauftext sonst zweizeilig umbrechen. */
@media (min-width: 560px) and (max-width: 899px) {
  .hero__knoepfe { grid-auto-flow: column; justify-content: start; }
}

/* ---------- Videorahmen -------------------------------------------------- */

.buehne {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #2d1c36;
  border: 3px solid var(--violett);
  box-shadow: var(--schatten-tief);
}
.buehne video,
.buehne iframe,
.buehne img { width: 100%; height: 100%; object-fit: cover; border: 0; }

/* Etwas nach oben gerückt, damit der Knopf nicht auf der nativen
   Steuerleiste des Videos liegt. */
.buehne__knopf {
  position: absolute; inset: 0 0 46px 0; margin: auto;
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--sonne); color: var(--violett);
  border: 3px solid var(--violett);
  font-size: 30px; cursor: pointer;
  box-shadow: 0 6px 0 var(--violett);
}
.buehne__knopf[hidden] { display: none; }

.ton-reihe { margin-top: 12px; }

/* =========================================================================
   Kaufband unter dem Video
   ========================================================================= */

.kaufband {
  background: var(--creme-tief);
  border: 3px solid rgba(75, 46, 90, .16);
  border-radius: var(--radius-gross);
  padding: clamp(20px, 4vw, 34px);
  text-align: center;
  margin-top: 26px;
}
.kaufband > p {
  font-family: var(--schrift-display); font-weight: 600;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  max-width: 34ch; margin-inline: auto;
}

/* ---------- Die drei Fassungen: Buch, Film, Hörbuch --------------------- */

.produkte {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  text-align: left;
}
@media (min-width: 760px) { .produkte { grid-template-columns: repeat(3, 1fr); } }

.produkt {
  background: var(--creme);
  border: 3px solid rgba(75, 46, 90, .18);
  border-radius: var(--radius);
  padding: 20px 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--schatten);
}
.produkt__zeichen { font-size: 34px; line-height: 1; }
.produkt__name { margin: 0; font-size: clamp(1.05rem, 2.4vw, 1.25rem); }
.produkt__text {
  margin: 0; font-size: .95rem; color: var(--text-leise);
  flex-grow: 1;
}
.produkt__aktion { margin-top: 12px; }
.produkt__aktion .knopf { width: 100%; }

/* Das Buch ist heute kaufbar – die Karte darf das zeigen. */
.produkt--buch { border-color: var(--sonne); }

/* „Bald verfügbar“ ist bewusst kein Knopf: es gibt nichts zu klicken.
   Ein deaktivierter Knopf würde nur Enttäuschung erzeugen. */
.produkt--bald { background: var(--creme-tief); }
.produkt__bald {
  display: inline-flex; align-items: center; gap: .45em;
  min-height: 48px; padding: 10px 18px;
  border-radius: 999px;
  border: 2px dashed rgba(75, 46, 90, .35);
  color: var(--text-leise);
  font-family: var(--schrift-display); font-weight: 700; font-size: .95rem;
}
.produkt__bald::before { content: "🌱"; }

/* ---------- Vorschau-Marke am Video ------------------------------------ */

.marke {
  position: absolute; top: 12px; left: 12px;
  background: var(--violett); color: #fff;
  font-family: var(--schrift-display); font-weight: 800;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  pointer-events: none;
}

/* ---------- Einblendung, wenn die Vorschau durch ist ------------------- */

.ende {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(75,46,90,.94), rgba(45,28,54,.97));
  color: var(--creme);
}
.ende[hidden] { display: none; }
.ende__titel {
  font-family: var(--schrift-display); font-weight: 800;
  font-size: clamp(1.2rem, 3.4vw, 1.9rem);
  margin: 0; color: #fff;
}
.ende__text {
  margin: 0 0 12px; font-size: clamp(.9rem, 2.2vw, 1.02rem);
  max-width: 32ch; color: #EFE2F5;
}
.ende__knoepfe { display: grid; gap: 10px; width: min(340px, 100%); }
@media (min-width: 620px) {
  .ende__knoepfe { grid-auto-flow: column; width: auto; }
}
.ende__nochmal {
  margin-top: 14px; min-height: 48px;
  background: none; border: 0; cursor: pointer;
  color: #EFE2F5; font-family: var(--schrift-text);
  font-weight: 700; font-size: .92rem;
  text-decoration: underline; text-underline-offset: 3px;
}
.ende__nochmal:hover { color: #fff; }

/* Transkript */
.transkript { margin-top: 20px; }
.transkript > summary {
  cursor: pointer; font-weight: 700; color: var(--violett);
  padding: 12px 14px; border-radius: 14px;
  background: var(--creme-tief);
  min-height: 48px; display: flex; align-items: center; gap: .5em;
  list-style: none;
}
.transkript > summary::-webkit-details-marker { display: none; }
.transkript > summary::before { content: "📖"; }
.transkript__text {
  padding: 6px 4px 4px;
  max-height: 420px; overflow-y: auto;
  columns: 1;
}
@media (min-width: 760px) { .transkript__text { columns: 2; column-gap: 42px; } }
.transkript__text p {
  break-inside: avoid;
  white-space: pre-line;
  color: var(--text-leise);
  font-size: .97rem;
}

/* =========================================================================
   Illustrationsrahmen (Buchseiten)
   ========================================================================= */

.bild {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--violett);
  box-shadow: var(--schatten-tief);
  background: var(--creme);
}
.bild img { width: 100%; }
.bild figcaption {
  padding: 11px 16px 13px;
  font-size: .89rem; line-height: 1.5;
  color: var(--text-leise);
  background: var(--creme);
  font-style: italic;
}

/* Doppelseite mit angedeutetem Buchfalz */
.bild--doppelseite { position: relative; }
.bild--doppelseite .bild__flaeche { position: relative; }
.bild--doppelseite .bild__flaeche::after {
  content: ""; position: absolute; inset: 0 0 0 0;
  background: linear-gradient(90deg,
    rgba(75,46,90,0) 47%, rgba(75,46,90,.16) 49.6%,
    rgba(75,46,90,.16) 50.4%, rgba(75,46,90,0) 53%);
  pointer-events: none;
}

/* =========================================================================
   Botschaft
   ========================================================================= */

.botschaft__raster { display: grid; gap: 26px; align-items: center; }
@media (min-width: 900px) {
  .botschaft__raster { grid-template-columns: 1.05fr .95fr; gap: 48px; }
}

.zitat {
  font-family: var(--schrift-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.6vw, 2.5rem);
  line-height: 1.18;
  color: var(--violett);
  background: var(--creme);
  border: 3px solid var(--violett);
  border-radius: var(--radius-gross);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--schatten);
  margin: 0 0 20px;
}
.zitat p { margin: 0; }

.vorteile {
  display: grid; gap: 14px; margin-top: 34px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .vorteile { grid-template-columns: repeat(3, 1fr); } }

.vorteil {
  background: var(--creme);
  border: 3px solid rgba(75, 46, 90, .16);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--schatten);
}
.vorteil__zeichen {
  font-size: 34px; display: block; margin-bottom: 8px;
  line-height: 1;
}

/* =========================================================================
   Der kleine Floh
   ========================================================================= */

.floh__raster { display: grid; gap: 30px; align-items: start; }
@media (min-width: 900px) { .floh__raster { grid-template-columns: .9fr 1.1fr; gap: 52px; } }

.floh__buehne {
  position: relative;
  background:
    radial-gradient(70% 55% at 50% 88%, rgba(90,158,61,.22) 0%, rgba(90,158,61,0) 70%),
    var(--creme);
  border: 3px solid var(--violett);
  border-radius: var(--radius-gross);
  padding: 18px;
  box-shadow: var(--schatten-tief);
}

/* Deutlich größer als jede Freundeskarte – er ist die Hauptfigur */
.floh__figur {
  aspect-ratio: 855 / 1328;
  max-height: min(52vh, 460px);
  margin-inline: auto;
}
.floh__figur img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center bottom;
}

.stimmungen {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 16px;
}
.stimmung {
  min-height: 48px; min-width: 48px;
  padding: 8px 14px; border-radius: 999px;
  border: 2px solid rgba(75, 46, 90, .3);
  background: var(--creme-tief); color: var(--violett);
  font-family: var(--schrift-display); font-weight: 600; font-size: .92rem;
  cursor: pointer;
  transition: background-color .2s, translate var(--takt);
}
.stimmung[aria-pressed="true"] {
  background: var(--sonne); border-color: var(--violett);
  box-shadow: 0 3px 0 var(--violett);
}

.profilpunkte { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.profilpunkt {
  display: flex; gap: 12px; align-items: baseline;
  background: var(--creme);
  border: 2px solid rgba(75, 46, 90, .16);
  border-radius: 16px; padding: 12px 16px;
}
.profilpunkt b { font-family: var(--schrift-display); color: var(--wiese-text); white-space: nowrap; }

/* =========================================================================
   Freunde
   ========================================================================= */

.freunde__kopf { text-align: center; max-width: 56ch; margin: 0 auto 30px; }

/* Drei Spalten schon auf dem Handy: bei zwei Spalten wären zwölf Karten
   rund drei Bildschirme lang und ein Kind sähe nur vier Figuren. */
.karten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 640px) { .karten { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .karten { grid-template-columns: repeat(6, 1fr); gap: 18px; } }

.karte { display: contents; }

.karte__knopf {
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  padding: 10px 6px 12px;
  background: var(--creme);
  border: 3px solid rgba(75, 46, 90, .18);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit; color: var(--text);
  box-shadow: var(--schatten);
  transition: translate var(--takt), border-color .2s, box-shadow var(--takt);
}
.karte__knopf:hover { border-color: var(--wiese); translate: 0 -4px; }
.karte__knopf[aria-expanded="true"] {
  border-color: var(--violett);
  background: var(--creme-tief);
}

.karte__bild {
  width: 100%; aspect-ratio: 855 / 1328;
  max-height: 168px;
}
.karte__bild img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center bottom;
}

.karte__name {
  font-family: var(--schrift-display); font-weight: 800;
  font-size: clamp(.9rem, 2.4vw, 1.06rem); line-height: 1.15;
  margin: 0;
}
.karte__kurz {
  font-size: clamp(.68rem, 1.9vw, .8rem);
  color: var(--text-leise); line-height: 1.25; text-align: center;
}

.karte--haupt .karte__knopf {
  border-color: var(--sonne);
  background: linear-gradient(180deg, #FFF6DC 0%, var(--creme) 100%);
  box-shadow: 0 4px 0 rgba(255, 200, 61, .8), var(--schatten);
}
.karte__krone {
  font-size: .64rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--koralle-text);
}

/* Profil klappt in der Rasterzeile auf – kein Modal, damit nichts inert wird */
.profil {
  grid-column: 1 / -1;
  background: var(--creme-tief);
  border: 3px solid var(--violett);
  border-radius: var(--radius-gross);
  padding: clamp(18px, 3.4vw, 30px);
  box-shadow: var(--schatten);
}
.profil[hidden] { display: none; }

.profil__raster { display: grid; gap: 18px; align-items: start; }
@media (min-width: 640px) { .profil__raster { grid-template-columns: 150px 1fr; gap: 26px; } }

.profil__bild { aspect-ratio: 855 / 1328; max-height: 240px; margin-inline: auto; }
.profil__bild img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }

.profil__unter { color: var(--wiese-text); font-weight: 700; margin: 0 0 .6em; }

.merkmale { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 14px 0 0; list-style: none; }
.merkmal {
  background: var(--himmel); color: var(--violett);
  border: 2px solid rgba(75, 46, 90, .2);
  border-radius: 999px; padding: 5px 14px;
  font-weight: 700; font-size: .88rem;
}

.profil__zu {
  margin-top: 18px; min-height: 48px;
  background: transparent; border: 2px solid var(--violett);
  border-radius: 999px; padding: 10px 20px;
  font-family: var(--schrift-display); font-weight: 700; color: var(--violett);
  cursor: pointer;
}

/* =========================================================================
   Elternbereich – ruhiger, weniger Dekoration, keine Animation
   ========================================================================= */

.eltern { background: var(--creme-tief); }
.eltern__raster { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .eltern__raster { grid-template-columns: 1fr .8fr; gap: 56px; } }

.eltern p { font-size: 1.06rem; line-height: 1.75; max-width: 60ch; }
.eltern__zusatz { color: var(--text-leise); font-size: .97rem; margin-top: 14px; }

/* Das 3D-Cover ist freigestellt und steht bewusst auf heller Fläche:
   die Alphakante trägt eine helle Matte, die auf satten Farben sichtbar wäre. */
.cover3d { margin: 0 auto; max-width: 380px; }
.cover3d img { width: 100%; filter: drop-shadow(0 18px 26px rgba(75, 46, 90, .22)); }

/* =========================================================================
   Abschluss
   ========================================================================= */

.abschluss {
  background: linear-gradient(180deg, #F7DE8D 0%, #F2B45A 38%, #E9834F 70%, #D96A46 100%);
  text-align: center;
}
.abschluss h2 { color: var(--violett); }
.abschluss__karte {
  background: var(--creme);
  border: 3px solid var(--violett);
  border-radius: var(--radius-gross);
  padding: clamp(26px, 5vw, 46px);
  box-shadow: var(--schatten-tief);
  max-width: 620px; margin: 0 auto;
}
.abschluss__text { font-size: 1.1rem; max-width: 32ch; margin-inline: auto; }
/* Der dezente Zusatz steht auf der Cremefläche, nie auf dem Verlauf –
   am hellen Ende des Verlaufs läge er sonst unter 1,3:1. */
.abschluss__dezent {
  margin: 14px 0 0; font-size: .92rem; color: var(--text-leise);
}
.abschluss__raster { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .abschluss__raster { grid-template-columns: 1fr 1fr; gap: 48px; text-align: left; }
  .abschluss__text { margin-inline: 0; }
  .abschluss__karte { margin: 0; }
}

/* =========================================================================
   Fußzeile
   ========================================================================= */

.fuss {
  background: var(--violett); color: #F3E9F7;
  padding: 40px 0 46px;
  font-size: .94rem;
}
.fuss a { color: #FFD98A; }
.fuss__reihe { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; }
.fuss__reihe a { min-height: 48px; display: inline-flex; align-items: center; }
.fuss__logo { font-family: var(--schrift-display); font-weight: 800; font-size: 1.2rem; color: #fff; margin-right: auto; }

/* =========================================================================
   Dekoration und Bewegung
   ========================================================================= */

.pollen { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.pollen span {
  position: absolute; display: block;
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, #FFE9A8, #FFC83D);
  opacity: .55;
}

.band > .huelle, .hero > .huelle { position: relative; z-index: 1; }

@media (prefers-reduced-motion: no-preference) {
  .pollen span { animation: schweben var(--dauer, 20s) linear var(--start, 0s) infinite; }
  @keyframes schweben {
    0%   { transform: translate3d(0, 20px, 0) scale(.85); opacity: 0; }
    12%  { opacity: .6; }
    88%  { opacity: .45; }
    100% { transform: translate3d(var(--drift, 40px), -120px, 0) scale(1.15); opacity: 0; }
  }

  .halm { transform-origin: 50% 100%; animation: wiegen 7s ease-in-out infinite; }
  .halm:nth-child(even) { animation-duration: 9.5s; animation-direction: reverse; }
  @keyframes wiegen {
    0%, 100% { transform: rotate(-1.6deg); }
    50%      { transform: rotate(1.6deg); }
  }

  .huepft { animation: huepfen .5s cubic-bezier(.3, 1.5, .5, 1); }
  @keyframes huepfen {
    0%   { transform: translateY(0)     scaleY(1); }
    28%  { transform: translateY(-13px) scaleY(1.06); }
    58%  { transform: translateY(0)     scaleY(.95); }
    100% { transform: translateY(0)     scaleY(1); }
  }
}

/* „Bewegung reduzieren“ – die Seite steht dann vollständig still */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .pollen { display: none; }
}
