/* ==========================================================================
   KoKo – Landingpage
   Mobile first · Breakpoints: 480 / 768 / 1200 · keine externen Ressourcen
   Farbpalette abgeleitet aus Etikett (Gelb/Schwarz), Vintage-Faltblatt
   (Papier/Flieder/Senf), Minzblatt-Motiven (Flaschengrün) und Eishöhle (Nacht).
   ========================================================================== */

:root {
  /* Marke */
  --yellow: #EBC416;        /* Etikett-Gelb */
  --yellow-soft: #F6E08A;
  --ink: #15130E;           /* Etikett-Schwarz, leicht warm */
  --ink-soft: #4A4438;      /* Fließtext sekundär (AA auf Creme) */
  /* Flächen */
  --cream: #FBF6E9;         /* warmes Cremeweiß */
  --cream-2: #F4ECD6;
  --paper: #EFE6C6;         /* aufgehelltes Vintage-Papier des Faltblatts */
  --paper-line: #D4C992;
  /* Akzente */
  --green: #1E4A33;         /* tiefes Flaschengrün (Minzblätter) */
  --green-2: #2C6A49;
  --lilac: #9F92C6;         /* Faltblatt-Flieder, nur dekorativ */
  --mustard: #DBC615;       /* Faltblatt-Senfgelb, nur dekorativ */
  --night: #01121A;         /* Eishöhle */
  --ice: #B7E6EE;
  --danger: #B3261E;

  --focus: var(--green);

  --font-display: Rockwell, "Rockwell Nova", "Roboto Slab", "Bookman Old Style", Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -18px rgba(21, 19, 14, .35);
  --header-h: 64px;
  --container: 1120px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  scroll-padding-bottom: 140px; /* Platz für die mobile Kaufleiste, damit der Tastaturfokus sichtbar bleibt */
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.75rem, 11vw, 5.25rem); line-height: 1; }
h2 { font-size: clamp(1.9rem, 6.2vw, 3rem); }
h3 { font-size: 1.3rem; line-height: 1.2; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-underline-offset: .18em; text-decoration-thickness: .08em; }
a:hover { color: var(--ink); }

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--yellow); color: var(--ink); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px; top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: 12px; color: var(--yellow); outline-color: var(--yellow); }

.container {
  width: min(100% - 2rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px), var(--container));
  margin-inline: auto;
}

.section { padding: 72px 0; }
.section--alt { background: var(--cream-2); }

.section__head { max-width: 46rem; margin: 0 0 40px; }
.section__head--center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin: 0 0 14px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
}
.kicker::before {
  content: "";
  width: 28px; height: 2px;
  background: currentColor;
}
.section__head--center .kicker::after {
  content: "";
  width: 28px; height: 2px;
  background: currentColor;
}

.lead { font-size: 1.1875rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 56px;
  padding: 12px 34px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 5px 0 var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--ink);
}
.btn:active { transform: translateY(5px); box-shadow: 0 0 0 var(--ink); }
.btn:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; border-radius: 999px; }

.btn__icon { width: 1.05em; height: 1.05em; flex: none; }

.btn--xl { min-height: 64px; padding: 14px 40px; font-size: 1.25rem; }

.btn--small {
  min-height: 44px;
  padding: 8px 16px;
  font-size: .9375rem;
  box-shadow: 0 3px 0 var(--ink);
}
.btn--small:hover { transform: translateY(1px); box-shadow: 0 2px 0 var(--ink); }

/* Variante auf dunklem Grund */
.on-dark { --focus: #FFE45C; }
.on-dark .btn { border-color: var(--yellow); box-shadow: 0 5px 0 rgba(235, 196, 22, .45); }
.on-dark .btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); box-shadow: 0 3px 0 rgba(251, 246, 233, .45); }

.cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.cta--center { align-items: center; text-align: center; }

.cta__note {
  max-width: 34rem;
  margin: 0;
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.on-dark .cta__note { color: #C9D6DA; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 233, .94);
  border-bottom: 1px solid rgba(21, 19, 14, .14);
}
@supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .site-header {
    background: rgba(251, 246, 233, .82);
    -webkit-backdrop-filter: saturate(1.4) blur(10px);
    backdrop-filter: saturate(1.4) blur(10px);
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}
.site-header__actions { display: flex; align-items: center; gap: 8px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand__mark {
  width: 44px; height: 44px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  flex: none;
}
.brand__mark img { width: 100%; height: 100%; }
.brand__text { display: none; line-height: 1; }
.brand__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; letter-spacing: .02em; }
.brand__since { display: block; margin-top: 4px; font-size: .6875rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

/* Sound-Button */
.sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.sound-toggle[hidden] { display: none; }
.sound-toggle:hover { background: rgba(21, 19, 14, .08); }
.sound-toggle:focus-visible { border-radius: 999px; }
.sound-toggle[aria-pressed="true"] { background: var(--ink); color: var(--yellow); }
.sound-toggle__icon { width: 22px; height: 22px; flex: none; }
.sound-toggle__label { display: none; white-space: nowrap; }
.sound-toggle .icon-waves { display: none; }
.sound-toggle[aria-pressed="true"] .icon-waves { display: block; }
.sound-toggle[aria-pressed="true"] .icon-mute { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .sound-toggle[aria-pressed="true"].is-playing .icon-waves { animation: wave 1.6s ease-in-out infinite; }
}
@keyframes wave { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 28px 0 64px;
  overflow: hidden;
}
.hero::before {
  /* zarter Papierverlauf wie im Faltblatt */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60rem 30rem at 85% 10%, rgba(235, 196, 22, .16), transparent 60%),
    radial-gradient(40rem 24rem at 0% 100%, rgba(159, 146, 198, .14), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: 22px;
  grid-template-areas: "head" "media" "buy";
}
.hero__head { grid-area: head; }
.hero__media { grid-area: media; }
.hero__buy { grid-area: buy; }

.hero__sub {
  max-width: 34rem;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero__tagline {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--green);
}

.hero__stage {
  position: relative;
  width: min(74vw, 300px);
  aspect-ratio: 3 / 4;
  margin: 48px auto 0;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px 999px 26px 26px;
  box-shadow: var(--shadow);
}
.hero__stage::before {
  /* Doppellinie wie auf dem Etikett */
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px 999px 16px 16px;
  pointer-events: none;
}
.hero__stage::after {
  /* Standfläche */
  content: "";
  position: absolute;
  left: 50%; bottom: 22px;
  width: 46%; height: 18px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(21, 19, 14, .38), transparent);
  pointer-events: none;
}
.hero__bottle {
  position: absolute;
  left: 50%; bottom: 20px;
  z-index: 1;
  height: 116%;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 18px rgba(21, 19, 14, .28));
}
.hero__seal {
  position: absolute;
  right: -14px; top: 26%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px; height: 92px;
  padding: 8px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(10deg);
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--ink);
}
.hero__seal strong { display: block; font-size: 1.35rem; letter-spacing: 0; }

.price { margin: 0 0 18px; }
.price__amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.price__meta { display: block; margin-top: 8px; font-size: .9375rem; color: var(--ink-soft); }

/* ---------- Kacheln „Warum KoKo“ ---------- */
.tiles {
  display: grid;
  gap: 20px;
  margin: 0; padding: 0;
  list-style: none;
}
.tile {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 0 var(--ink);
}
.tile__media { aspect-ratio: 4 / 3; background: var(--ink); overflow: hidden; border-bottom: 2px solid var(--ink); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; }
.tile__body { padding: 22px 22px 26px; }
.tile__num {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  background: var(--ink);
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  border-radius: 4px;
}
.tile p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Story / Zeitleiste ---------- */
.section.story { position: relative; background: var(--paper); padding-top: 0; border-top: 3px solid var(--ink); }
.awning {
  height: 40px;
  margin-bottom: 64px;
  background: repeating-linear-gradient(90deg, var(--lilac) 0 44px, var(--mustard) 44px 88px);
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% 18px no-repeat,
    radial-gradient(circle 22px at 22px 18px, #000 98%, transparent 100%) 0 0 / 44px 100% repeat-x;
  mask:
    linear-gradient(#000 0 0) top / 100% 18px no-repeat,
    radial-gradient(circle 22px at 22px 18px, #000 98%, transparent 100%) 0 0 / 44px 100% repeat-x;
  filter: drop-shadow(0 4px 3px rgba(21, 19, 14, .25));
}

.timeline {
  position: relative;
  margin: 0; padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 8px; bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--ink) 0 8px, transparent 8px 14px);
}
.timeline__item {
  position: relative;
  padding: 0 0 56px 40px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 20px; height: 20px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
}
.timeline__year {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 14px 6px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
}
.timeline__text p:not(.timeline__year) { color: #3B362B; }

.timeline__figure {
  width: min(100%, 320px);
  margin: 24px 0 0;
  padding: 10px 10px 0;
  background: #FFFDF6;
  border: 1px solid rgba(21, 19, 14, .2);
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}
.timeline__item:nth-child(even) .timeline__figure { transform: rotate(1.2deg); }
.timeline__figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.timeline__figure figcaption {
  padding: 10px 4px 12px;
  font-size: .8125rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.img--aged { filter: sepia(.35) contrast(.96); }
.img--faded { filter: grayscale(.65) sepia(.3) contrast(.95); }
.img--muted { filter: saturate(.75) sepia(.12); }

.quote {
  margin: 22px 0 0;
  padding: 4px 0 4px 18px;
  border-left: 4px solid var(--yellow);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.45;
}
.quote footer { margin-top: 8px; font-family: var(--font-body); font-size: .875rem; font-style: normal; color: var(--ink-soft); }

.story__source { margin-top: 48px; font-size: .875rem; color: var(--ink-soft); }

/* ---------- Sinneserlebnis (Mitte) ---------- */
.split { display: grid; gap: 32px; align-items: center; }
.split__media {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 0 var(--ink);
  background: var(--night);
}
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.notes { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; padding: 0; list-style: none; }
.notes li {
  padding: 6px 14px;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ---------- Produktdetails ---------- */
.details { display: grid; gap: 36px; }
.details__aside { width: min(100%, 300px); margin-inline: auto; }
.details__aside figure { margin: 0; padding: 10px 10px 0; background: #FFFDF6; border: 1px solid rgba(21, 19, 14, .2); box-shadow: var(--shadow); transform: rotate(-1deg); }
.details__aside figcaption { padding: 10px 4px 12px; font-size: .8125rem; line-height: 1.4; color: var(--ink-soft); }

.spec {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  border-spacing: 0;
}
.spec caption { padding: 0 0 14px; text-align: left; font-size: .875rem; color: var(--ink-soft); caption-side: top; }
.spec th, .spec td { display: block; padding: 0 18px; text-align: left; vertical-align: top; }
.spec th {
  padding-top: 14px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.spec td { padding-top: 2px; padding-bottom: 14px; border-bottom: 1px solid rgba(21, 19, 14, .14); }
.spec tr:last-child td { border-bottom: 0; }
.spec .spec__price { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; }
.spec small { display: block; margin-top: 2px; font-size: .875rem; color: var(--ink-soft); }

.table-wrap { border-radius: var(--radius); box-shadow: 0 6px 0 var(--ink); border: 2px solid var(--ink); overflow: hidden; background: var(--cream); }
.table-wrap .spec { border: 0; border-radius: 0; }

.hazard {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 28px;
  padding: 18px;
  background: #FFFDF6;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.hazard img { width: 64px; height: 64px; }
.hazard h3 { margin-bottom: 6px; font-family: var(--font-body); font-size: 1rem; letter-spacing: 0; }
.hazard p { font-size: .9375rem; line-height: 1.55; color: #3B362B; }
.hazard__signal { color: var(--danger); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.details__cta { margin-top: 36px; }

/* ---------- Stimmen ---------- */
.voices { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
.voice {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 64px 26px 26px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 6px 0 var(--ink);
}
.voice::before {
  content: "\201C";
  position: absolute;
  left: 22px; top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--ink);
}
.voice p { font-family: var(--font-display); font-size: 1.375rem; line-height: 1.35; }
.voice footer { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-top: 18px; font-size: .875rem; color: var(--ink-soft); }
.badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.voices__note { max-width: 46rem; margin: 28px auto 0; text-align: center; font-size: .8125rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 50rem; margin-inline: auto; }
.faq details {
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--cream);
  margin-bottom: 12px;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; background: var(--ink); color: var(--yellow); }
.faq summary:focus-visible { border-radius: 8px; }
.faq__answer { padding: 0 20px 20px; color: #3B362B; }

/* ---------- Abschluss-CTA ---------- */
.finale {
  position: relative;
  background: var(--night);
  color: var(--cream);
  overflow: hidden;
}
.finale__grid { display: grid; gap: 36px; align-items: center; }
.finale h2 {
  font-size: clamp(2.5rem, 10vw, 5rem);
  line-height: .98;
  color: var(--yellow);
}
.finale .kicker { color: var(--ice); }
.finale__text { max-width: 34rem; font-size: 1.1875rem; color: #E4EDEF; margin-bottom: 28px; }
.finale__media {
  width: min(100%, 420px);
  margin-inline: auto;
  border: 3px solid var(--yellow);
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
}
.finale__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #D9D3C3;
  padding: 44px 0 40px;
  font-size: .9375rem;
  --focus: #FFE45C;
}
.site-footer__inner { display: grid; gap: 24px; }
.site-footer a { color: var(--yellow); }
.site-footer a:hover { color: #fff; }
.site-footer__brand { display: flex; align-items: center; gap: 14px; }
.site-footer__brand img { width: 52px; height: 52px; border-radius: 10px; }
.site-footer__brand p { margin: 0; line-height: 1.4; }
.site-footer__nav ul { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0; padding: 0; list-style: none; }
.site-footer__nav a { display: inline-block; padding: 10px 0; font-weight: 700; }
.site-footer__legal { margin: 0; font-size: .8125rem; color: #B9B2A0; }

/* ---------- Mobile Kaufleiste ---------- */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--cream);
  border-top: 2px solid var(--ink);
  box-shadow: 0 -10px 30px -12px rgba(21, 19, 14, .35);
  transition: transform .25s ease, visibility 0s linear 0s;
}
.buybar--hidden {
  transform: translateY(110%);
  visibility: hidden;
  transition: transform .25s ease, visibility 0s linear .25s;
}
.buybar__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.buybar__price { margin: 0; font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; line-height: 1; white-space: nowrap; }
.buybar__price small { display: block; margin-top: 4px; font-family: var(--font-body); font-size: .6875rem; font-weight: 400; color: var(--ink-soft); }
.buybar .btn { padding-inline: 20px; font-size: 1rem; box-shadow: 0 4px 0 var(--ink); }
.buybar__note { margin: 10px 0 0; font-size: .6875rem; line-height: 1.4; color: var(--ink-soft); }
/* Reserve unter dem Footer nur, wenn die Leiste nie ausblendet (kein JS / kein IntersectionObserver) */
html:not(.js) body.has-buybar,
html.buybar-static body.has-buybar { padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px)); }

/* Sehr schmale Viewports (< 360 px, z. B. 400 % Zoom) */
@media (max-width: 359.98px) {
  .buybar__row { gap: 8px; }
  .buybar__price { font-size: 1.125rem; }
  .buybar .btn { padding-inline: 12px; font-size: .9375rem; }
}

/* ---------- Rechtstexte ---------- */
.legal { padding: 48px 0 80px; }
.legal__inner { max-width: 46rem; }
.legal h1 { font-size: clamp(2.25rem, 8vw, 3.5rem); margin-bottom: .6em; }
.legal h2 { font-size: 1.5rem; margin-top: 2em; }
.legal h3 { font-size: 1.125rem; margin-top: 1.6em; font-family: var(--font-body); letter-spacing: 0; }
.legal address { font-style: normal; margin-bottom: 1em; }
.legal ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal li { margin-bottom: .4em; }
.legal__back { display: inline-block; margin-bottom: 28px; font-weight: 700; }
.legal__stand { margin-top: 3em; font-size: .875rem; color: var(--ink-soft); }
.placeholder {
  padding: 1px 6px;
  background: var(--yellow-soft);
  border: 1px dashed var(--ink);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 700;
}

/* ---------- Scroll-Animationen ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .timeline__figure.reveal { transform: translateY(18px) rotate(-1.2deg); }
.js .timeline__figure.reveal.is-visible { transform: rotate(-1.2deg); }
.js .timeline__item:nth-child(even) .timeline__figure.reveal { transform: translateY(18px) rotate(1.2deg); }
.js .timeline__item:nth-child(even) .timeline__figure.reveal.is-visible { transform: rotate(1.2deg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal, .js .timeline__figure.reveal { opacity: 1; transform: none; }
  .js .timeline__figure.reveal, .js .timeline__figure.reveal.is-visible { transform: rotate(-1.2deg); }
  .js .timeline__item:nth-child(even) .timeline__figure.reveal,
  .js .timeline__item:nth-child(even) .timeline__figure.reveal.is-visible { transform: rotate(1.2deg); }
  .btn:hover, .btn:active { transform: none; }
}

/* ==========================================================================
   ≥ 480 px
   ========================================================================== */
@media (min-width: 480px) {
  .brand__text { display: block; }
  .sound-toggle { padding: 0 14px 0 12px; }
  .sound-toggle__label { display: inline; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .hero__stage { width: 300px; }

  .spec tr { display: grid; grid-template-columns: 11.5rem 1fr; border-bottom: 1px solid rgba(21, 19, 14, .14); }
  .spec tbody { display: block; }
  .spec tr:last-child { border-bottom: 0; }
  .spec th, .spec td { padding: 14px 18px; border-bottom: 0; }
  .spec th { padding-top: 18px; background: rgba(235, 196, 22, .16); }
}

/* ==========================================================================
   ≥ 768 px
   ========================================================================== */
@media (min-width: 768px) {
  :root { --header-h: 72px; }
  body { font-size: 1.125rem; }
  .section { padding: 104px 0; }
  .section__head { margin-bottom: 56px; }

  .brand__mark { width: 48px; height: 48px; }

  .hero { padding: 56px 0 96px; }
  .hero__sub { font-size: 1.1875rem; line-height: 1.65; }
  .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    grid-template-areas: "head media" "buy media";
    column-gap: 48px;
    row-gap: 32px;
    align-items: center;
  }
  .hero__head { align-self: end; }
  .hero__buy { align-self: start; }
  .hero__stage { width: min(100%, 360px); margin-top: 72px; }
  .hero__seal { width: 108px; height: 108px; right: -8px; font-size: .8125rem; }
  .price__amount { font-size: 3rem; }

  .voices { grid-template-columns: repeat(2, 1fr); }

  /* Zeitleiste: Mittelachse, Text und Bild wechseln die Seite */
  .story { padding-top: 0; }
  .awning { height: 52px; margin-bottom: 96px;
    background: repeating-linear-gradient(90deg, var(--lilac) 0 60px, var(--mustard) 60px 120px);
    -webkit-mask:
      linear-gradient(#000 0 0) top / 100% 22px no-repeat,
      radial-gradient(circle 30px at 30px 22px, #000 98%, transparent 100%) 0 0 / 60px 100% repeat-x;
    mask:
      linear-gradient(#000 0 0) top / 100% 22px no-repeat,
      radial-gradient(circle 30px at 30px 22px, #000 98%, transparent 100%) 0 0 / 60px 100% repeat-x;
  }
  .timeline::before { left: 50%; margin-left: -1px; }
  .timeline__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 88px;
    align-items: center;
    padding: 0 0 88px;
  }
  .timeline__item::before { left: 50%; top: 50%; margin: -12px 0 0 -12px; width: 24px; height: 24px; }
  .timeline__text { text-align: right; }
  .timeline__text .quote { text-align: left; }
  .timeline__figure { margin: 0; justify-self: start; }
  .timeline__item:nth-child(even) .timeline__text { order: 2; text-align: left; }
  .timeline__item:nth-child(even) .timeline__figure { order: 1; justify-self: end; }

  .split { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: 64px; }

  .details { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 56px; align-items: start; }
  .details__aside { position: sticky; top: calc(var(--header-h) + 24px); margin: 0; }

  .finale__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 64px; }
  .finale h2 { font-size: clamp(2.5rem, 6.5vw, 5rem); }

  .site-footer__inner { grid-template-columns: 1fr auto; align-items: center; }
  .site-footer__legal { grid-column: 1 / -1; }

  /* Kaufleiste nur mobil */
  .buybar { display: none; }
  html { scroll-padding-bottom: 0; }
  html:not(.js) body.has-buybar,
  html.buybar-static body.has-buybar { padding-bottom: 0; }
}

/* ==========================================================================
   ≥ 1200 px
   ========================================================================== */
@media (min-width: 1200px) {
  .tiles { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .hero__stage { width: 400px; }
  .hero__seal { right: -24px; }
  .hero__grid { column-gap: 80px; }
  .timeline__figure { width: 340px; }
  .section { padding: 120px 0; }
}

/* ---------- Sehr niedrige Viewports (Smartphone quer, starker Zoom) ---------- */
@media (max-height: 420px) {
  html { scroll-padding-top: 16px; scroll-padding-bottom: 0; }
  .site-header { position: static; }
  .buybar { display: none; }
  html:not(.js) body.has-buybar,
  html.buybar-static body.has-buybar { padding-bottom: 0; }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .buybar, .sound-toggle, .skip-link { display: none !important; }
  body { background: #fff; padding-bottom: 0 !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .finale, .site-footer { background: #fff !important; color: #000 !important; }
  .finale h2, .finale .kicker, .finale__text, .on-dark .cta__note, .site-footer a, .site-footer__legal { color: #000 !important; }
  .timeline__year, .tile__num, .badge, .hero__seal { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
