/* ============================================================
   ELBRACHT CONSULTING — Scrollytelling für Küchenstudios
   Design-Tokens laut BLAUPAUSE.md
   ============================================================ */

:root {
  --cream: #FBF5EC;
  --cream-2: #F3EADC;
  --greige: #E9DFD2;
  --espresso: #2A211B;
  --espresso-soft: #4A3C31;
  --espresso-deep: #17110D;
  --night: #221A14;
  --gold: #C98A2B;
  --amber: #E8A33D;
  --copper: #A45F1B;
  --ink-on-dark: #F5EDE1;
  --muted-on-dark: rgba(245, 237, 225, .55);
  --muted-on-light: rgba(42, 33, 27, .55);
  --line-on-dark: rgba(245, 237, 225, .16);
  --line-on-light: rgba(42, 33, 27, .14);
  --pad: clamp(20px, 5vw, 64px);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 420;
  background: var(--night);
  color: var(--espresso);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

::selection { background: var(--gold); color: var(--espresso-deep); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Typography helpers ---------- */
.display {
  font-family: "Archivo", sans-serif;
  font-stretch: 122%;
  font-weight: 640;
  line-height: .96;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.label {
  font-stretch: 116%;
  font-weight: 640;
  font-size: clamp(.68rem, .9vw, .8rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.accent-serif {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 380;
  letter-spacing: 0;
}
.meta-line {
  display: flex; align-items: baseline; gap: 1.2em;
}
.meta-line::before { content: none; }
.meta-line .rule {
  flex: 1; height: 1px; background: currentColor; opacity: .25; align-self: center;
}

/* ============ Header / Nav ============ */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; justify-content: space-between; align-items: center;
  padding: clamp(14px, 2.2vw, 26px) var(--pad);
  pointer-events: none;
}
.logo {
  pointer-events: auto;
  text-decoration: none;
  display: block; line-height: 0;
}
.logo-img { height: 48px; width: auto; display: block; }
.head-right {
  display: flex; align-items: center; gap: 10px; pointer-events: auto;
}
.portal-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 54px; padding: 0 22px; border-radius: 16px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  font-size: .82rem; font-weight: 640; font-stretch: 116%;
  letter-spacing: .08em; text-transform: uppercase;
  transition: transform .3s, background .3s;
}
.portal-btn span, .portal-btn svg { color: #fff; mix-blend-mode: difference; }
.portal-btn:hover { transform: scale(1.05); background: rgba(232,163,61,.25); }
.portal-btn .pb-short { display: none; }
.burger {
  pointer-events: auto;
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; gap: 0;
  transition: transform .3s;
}
.burger:hover { transform: scale(1.06); }
.burger span {
  display: block; width: 20px; height: 2px; background: #fff;
  mix-blend-mode: difference; margin: 2.5px 0; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger div { display: flex; flex-direction: column; }
.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  transform-origin: 0 0; transform: scaleX(0);
  background: linear-gradient(90deg, var(--copper), var(--amber));
  z-index: 70;
}

/* Menu overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(23, 17, 13, .55);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 12px; padding: var(--pad);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.menu-open .menu-overlay { opacity: 1; visibility: visible; }
.menu-overlay a {
  text-decoration: none;
  background: var(--cream); color: var(--espresso);
  font-stretch: 118%; font-weight: 640;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  padding: .5em 1.1em; border-radius: 100px;
  transform: translateX(30px); opacity: 0;
  transition: transform .45s cubic-bezier(.2,.9,.2,1), opacity .45s, background .2s;
}
.menu-open .menu-overlay a { transform: none; opacity: 1; }
.menu-overlay a:hover { background: var(--amber); }
.menu-overlay a.small {
  font-size: clamp(.9rem, 1.6vw, 1.05rem); font-weight: 500;
  background: rgba(251,245,236,.14); color: var(--ink-on-dark);
  border: 1px solid rgba(251,245,236,.25);
}

/* ============ Floating CTA ============ */
.cta-pill {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 50; display: flex; align-items: center; gap: 8px;
  padding: 7px; border-radius: 100px;
  background: rgba(23,17,13,.18); backdrop-filter: blur(10px);
}
.cta-pill .pill-main {
  background: var(--cream); color: var(--espresso);
  font-stretch: 116%; font-weight: 660; font-size: clamp(.95rem, 1.3vw, 1.08rem);
  padding: 15px 30px; border-radius: 100px;
  transition: transform .25s, background .25s;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.cta-pill .pill-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--espresso-deep);
  display: grid; place-items: center;
  transition: transform .25s, background .25s;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.cta-pill:hover .pill-main { transform: scale(1.04); background: #fff; }
.cta-pill:hover .pill-icon { transform: scale(1.08) rotate(-8deg); background: var(--amber); }

/* ============ Sections base ============ */
section { position: relative; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--pad); }
.on-dark { color: var(--ink-on-dark); }
.on-light { color: var(--espresso); }
.watermark {
  position: absolute; z-index: 0; pointer-events: none;
  font-stretch: 125%; font-weight: 700; line-height: .8;
  font-size: clamp(12rem, 42vw, 46rem);
  letter-spacing: -.03em;
  opacity: .05; white-space: nowrap;
}

/* ============ S1 Hero ============ */
.s-hero { height: 100vh; overflow: hidden; }
.hero-stage { position: absolute; inset: 0; }

.hero-scene {
  position: absolute; inset: 0; z-index: 0;
}
.hero-scene svg { width: 100%; height: 100%; }

.map-wrap {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.map-svg { width: min(120vh, 96vw); height: auto; overflow: visible; }

.hero-glow {
  position: absolute; left: 50%; top: 50%; width: 40vmax; height: 40vmax;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(232,163,61,.22), transparent 60%);
  pointer-events: none;
}

.hero-type {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
}
.hero-type h1 {
  color: var(--ink-on-dark);
  font-size: clamp(2.6rem, 6.5vw, 6.2rem);
  text-shadow: 0 6px 40px rgba(13, 9, 6, .55);
}
.hero-type .line2 { align-self: flex-end; text-align: right; margin-top: .35em; color: var(--amber); }

.hero-sub {
  position: absolute; z-index: 4; left: var(--pad); bottom: 15vh;
  max-width: 460px; color: var(--ink-on-dark);
}
.hero-sub p { font-size: clamp(.95rem, 1.25vw, 1.1rem); color: var(--muted-on-dark); }
.hero-sub .label { color: var(--amber); display: block; margin-bottom: 12px; }

.hero-explain {
  position: absolute; z-index: 4; right: var(--pad); bottom: 9vh;
  max-width: 470px; color: var(--ink-on-dark);
  background: rgba(23,17,13,.42);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-on-dark);
  border-radius: 20px;
  padding: clamp(20px, 2.4vw, 30px) clamp(22px, 2.6vw, 34px);
}
.hero-explain .label { color: var(--amber); display: block; margin-bottom: 12px; }
.hero-explain h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.08; margin-bottom: .55em;
}
.hero-explain p { color: var(--muted-on-dark); font-size: clamp(.88rem, 1.05vw, .98rem); }
.hero-explain em {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 420;
  color: var(--amber); font-size: 1.06em;
}
.hero-scrollhint {
  position: absolute; z-index: 4; right: var(--pad); bottom: 15vh;
  color: var(--muted-on-dark); font-size: .8rem; letter-spacing: .18em;
  text-transform: uppercase; writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
}
.hero-scrollhint::after {
  content: ""; width: 1px; height: 54px;
  background: linear-gradient(var(--amber), transparent);
  animation: drip 2s infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Map internals (built by JS) */
.map-street { stroke: rgba(245,237,225,.13); fill: none; }
.map-street.major { stroke: rgba(245,237,225,.22); }
.map-river { stroke: rgba(120,140,150,.2); fill: none; }
.map-radius { stroke: rgba(232,163,61,.55); fill: none; stroke-dasharray: 4 7; }
.map-radius-label { fill: var(--amber); font-size: 13px; letter-spacing: .18em; font-weight: 600; }
.pin-dot { fill: #8d8177; }
.pin-ring { fill: none; stroke: #8d8177; opacity: .4; }
.pin-name {
  fill: rgba(245,237,225,.75); font-size: 11px; font-weight: 640;
  font-stretch: 112%; letter-spacing: .03em;
}
.pin-sub { fill: rgba(245,237,225,.38); font-size: 8px; letter-spacing: .08em; }
.pin-name.hero { fill: var(--amber); font-weight: 700; letter-spacing: .14em; font-size: 11.5px; }
.pin-sub.hero { fill: rgba(232,163,61,.85); }
.pin.hero-pin .pin-dot { fill: var(--amber); }
.pin.hero-pin .pin-ring { stroke: var(--amber); }
.lead-line { stroke: var(--gold); fill: none; stroke-dasharray: 3 6; opacity: 0; }
.lead-particle { fill: var(--amber); opacity: 0; }
.gold-glow { fill: url(#goldGrad); opacity: 0; }

/* ============ S2 Statement ============ */
.s-statement {
  min-height: 130vh; display: flex; flex-direction: column; justify-content: center;
  padding: 22vh 0; overflow: hidden;
}
.s-statement .watermark { top: 6%; left: -4%; color: var(--cream); }
.statement {
  position: relative; z-index: 1;
  font-size: clamp(1.9rem, 4.6vw, 4.1rem);
  font-stretch: 118%; font-weight: 600; line-height: 1.14;
  letter-spacing: -.01em;
  max-width: 20ch;
  color: var(--ink-on-dark);
}
.statement .w { display: inline-block; }
.statement em {
  font-style: normal; color: var(--amber);
}
.brandline {
  position: relative; z-index: 1;
  margin-top: 14vh; display: flex; align-items: center; gap: 26px;
  color: var(--muted-on-dark);
}
.brandline .mono {
  font-stretch: 125%; font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink-on-dark);
  display: flex; align-items: center; gap: 14px;
}
.brandline .mono svg { width: 1.1em; height: 1.1em; }

/* ============ S3 Showdown ============ */
.s-showdown { min-height: 100vh; }
.showdown-grid {
  display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(20px, 3vw, 64px);
  align-items: center; min-height: 100vh; padding: 0 clamp(16px, 2.5vw, 40px);
  max-width: 1720px; margin: 0 auto;
}
.showdown-map { position: relative; }
.showdown-map .map-svg { width: 100%; }
.showdown-counter {
  position: absolute; top: 0; left: 0; z-index: 2;
  color: var(--ink-on-dark);
}
.showdown-counter .num {
  font-stretch: 122%; font-weight: 680; font-size: clamp(3rem, 5.4vw, 5.4rem);
  color: var(--amber); line-height: 1;
}
.s-showdown .step .label { font-size: clamp(.78rem, 1vw, .95rem); }
.s-showdown .step h3 { font-size: clamp(2rem, 3.4vw, 3.5rem); max-width: 14ch; }
.s-showdown .step p { font-size: clamp(1.02rem, 1.35vw, 1.3rem); max-width: 42ch; }
.showdown-counter .label { color: var(--muted-on-dark); }
.steps { display: flex; flex-direction: column; justify-content: center; }
.step {
  color: var(--ink-on-dark);
  padding: 4vh 0;
}
.step h3 {
  font-stretch: 120%; font-weight: 640;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.1; margin-bottom: .5em;
}
.step p { color: var(--muted-on-dark); max-width: 42ch; }
.step .label { color: var(--amber); display: block; margin-bottom: 14px; }

/* Desktop: steps overlay for pinning */
@media (min-width: 900px) {
  .s-showdown .steps { position: relative; height: 100vh; }
  .s-showdown .step {
    position: absolute; top: 50%; transform: translateY(-50%);
    opacity: 0; padding: 0;
  }
  .s-showdown .step:first-child { opacity: 1; }
}

/* ============ S4 Chapter „Sichtbar besser" ============ */
.s-chapter { padding: 26vh 0 14vh; }
.chapter-title {
  font-size: clamp(3.4rem, 11vw, 10.5rem);
}
.chapter-title .l2 { display: block; margin-left: clamp(2rem, 18vw, 18rem); color: var(--copper); }
.chapter-sub {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--espresso-soft);
  margin: 5vh 0 10vh; max-width: 30ch;
}
.chapter-meta { margin: 8vh 0 4vh; color: var(--espresso); }
.chapter-copy {
  columns: 1; max-width: 62ch;
  font-size: clamp(1rem, 1.35vw, 1.2rem); color: var(--espresso-soft);
}
.chapter-copy strong { color: var(--espresso); font-weight: 640; }
@media (min-width: 900px) {
  .chapter-copy.two-col { columns: 2; column-gap: 48px; max-width: none; }
}

/* ============ S5 Instagram Phone ============ */
.s-phone { min-height: 100vh; }
.phone-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 90px);
  align-items: center; min-height: 100vh; padding: 6vh var(--pad);
  max-width: 1380px; margin: 0 auto;
}
.phone-stage { position: relative; display: grid; place-items: center; }

.iphone {
  width: min(340px, 78vw); aspect-ratio: 340 / 692;
  border-radius: 54px; background: #0d0c0b;
  padding: 10px; position: relative; z-index: 2;
  box-shadow:
    0 0 0 2px #2c2a28,
    0 40px 80px -20px rgba(23,17,13,.45),
    inset 0 0 4px rgba(255,255,255,.25);
}
.iphone .screen {
  position: absolute; inset: 10px; border-radius: 44px; overflow: hidden;
  background: #fff;
}
.iphone .island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; border-radius: 20px; background: #0d0c0b; z-index: 9;
}
.ig { position: absolute; inset: 0; padding: 78px 14px 14px; display: flex; flex-direction: column; font-size: 12px; color: #1c1c1c; background: #fff; }
.ig-head { display: flex; align-items: center; gap: 14px; }
.ig-ava {
  width: 64px; height: 64px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 15px;
}
.ig .handle { font-weight: 700; font-size: 13px; }
.ig-stats { display: flex; gap: 14px; margin-top: 4px; color: #555; }
.ig-stats b { color: #111; }
.ig-bio { margin-top: 8px; line-height: 1.45; color: #333; }
.ig-highlights { display: flex; gap: 10px; margin-top: 12px; }
.ig-hl { text-align: center; width: 52px; color: #444; font-size: 9px; }
.ig-hl .c {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 3px;
  border: 2px solid #d8cfc2; display: grid; place-items: center; font-size: 15px;
}
.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 12px;
  border-radius: 10px; overflow: hidden; flex: 1;
}
.ig-tile {
  aspect-ratio: 1; display: grid; place-items: center; text-align: center;
  font-weight: 700; font-size: 10px; color: #fff; position: relative; overflow: hidden;
}
.ig-tile small { font-weight: 500; opacity: .85; display: block; font-size: 8px; }
.ig-tile .play {
  position: absolute; top: 6px; right: 6px; width: 0; height: 0;
  border-left: 8px solid rgba(255,255,255,.9);
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}

/* before-profile look */
.ig.before .ig-ava { background: #b9b2a8; }
.ig.before .ig-tile { background: #cfc8bd; color: #6d675e; }
.ig.before .ig-tile:nth-child(odd) { background: #c3bbae; }
.ig.before .ig-tile b { font-size: 14px; }
.ig.after { opacity: 0; }
.ig.after .ig-ava { background: radial-gradient(circle at 30% 30%, var(--amber), var(--copper)); }
.ig.after .ig-hl .c { border-color: var(--gold); background: #fdf6ea; }
.ig.after .ig-tile { color: #fff; }
.ig-badge {
  margin-top: 10px; background: #fdf1dc; color: #8a5b13; border: 1px solid #ecd3a4;
  border-radius: 8px; padding: 6px 10px; font-weight: 600; font-size: 10.5px; text-align: center;
}

.q-chips { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.q-chip {
  position: absolute; max-width: 200px;
  background: rgba(42,33,27,.06); border: 1px dashed rgba(42,33,27,.35);
  color: var(--espresso-soft);
  padding: 10px 14px; border-radius: 14px; font-size: clamp(.72rem, .95vw, .85rem);
  backdrop-filter: blur(3px);
}
.q-chip .tick { display: inline-block; opacity: 0; color: #fff; margin-right: 6px; font-weight: 700; }
.q-chip.done {
  background: var(--gold); border: 1px solid var(--gold); color: #fff;
}
.q-chip.done .tick { opacity: 1; }
.q-chip:nth-child(1) { top: 8%; left: -4%; }
.q-chip:nth-child(2) { top: 26%; right: -6%; }
.q-chip:nth-child(3) { bottom: 30%; left: -8%; }
.q-chip:nth-child(4) { bottom: 10%; right: -4%; }

.phone-steps .step { color: var(--espresso); }
.phone-steps .step p { color: var(--muted-on-light); }
.phone-steps .step .label { color: var(--copper); }
@media (min-width: 900px) {
  .s-phone .phone-steps { position: relative; height: 100vh; }
  .s-phone .phone-steps .step {
    position: absolute; top: 50%; transform: translateY(-50%); opacity: 0; padding: 0;
  }
  .s-phone .phone-steps .step:first-child { opacity: 1; }
}

/* ============ S7 Ads gallery ============ */
.s-ads { padding: 16vh 0 18vh; }
.ads-rail {
  display: flex; gap: clamp(16px, 2vw, 28px);
  overflow-x: auto; padding: 5vh var(--pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.ads-rail::-webkit-scrollbar { display: none; }
.ad-card {
  flex: none; width: min(340px, 82vw);
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(42,33,27,.35);
  scroll-snap-align: center;
  font-size: 13px; color: #222;
  transform: rotate(var(--tilt, 0deg));
}
.ad-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.ad-head .ava {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 30% 30%, var(--amber), var(--copper));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px;
}
.ad-head b { display: block; font-size: 13px; }
.ad-head small { color: #888; }
.ad-img {
  aspect-ratio: 1 / 1; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  color: #fff;
}
.ad-img .offer {
  font-stretch: 120%; font-weight: 700; font-size: clamp(1.5rem, 2vw, 1.9rem); line-height: 1.05;
}
.ad-img .cond { font-size: .78rem; opacity: .85; margin-top: 8px; max-width: 30ch; }
.ad-img.k1 { background: linear-gradient(160deg, #3e3227 10%, #17110D); }
.ad-img.k2 { background: linear-gradient(160deg, #514233, #241B14); }
.ad-img.k3 { background: linear-gradient(160deg, #2c333a, #14100c); }
/* Anzeigen-Bild: <img class="ad-photo"> füllt die Fläche — src später gegen echte URL tauschen */
.ad-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ad-img.has-photo::after {
  content: ""; position: absolute; inset: 42% 0 0 0;
  pointer-events: none;
}
.ad-img.has-photo .offer, .ad-img.has-photo .cond {
  position: relative; z-index: 2;
  text-shadow: 0 2px 14px rgba(13,9,6,.8);
}
.ad-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-top: 1px solid #eee;
}
.ad-foot .cta {
  background: var(--espresso); color: #fff; padding: 8px 16px; border-radius: 8px;
  font-weight: 600; font-size: 12px;
}
/* --- Reel-Karten (9:16) — dürfen höher sein, Karten vertikal zentriert --- */
.ads-rail { align-items: center; }
.ad-card.reel {
  width: min(272px, 64vw);
  background: #0d0906; color: #fff;
}
.reel-media {
  aspect-ratio: 9 / 16;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: #17110d;
  padding: 16px 14px 16px;
}
/* Reel-Bild: <img class="reel-photo"> füllt die Fläche — src später gegen echtes Videostill tauschen */
.reel-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.reel-media::after {
  content: ""; position: absolute; inset: 55% 0 0 0;
  background: linear-gradient(transparent, rgba(8,5,3,.85));
  pointer-events: none;
}
.reel-progress {
  position: absolute; top: 8px; left: 12px; right: 12px; height: 2.5px;
  background: rgba(255,255,255,.25); border-radius: 2px;
}
.reel-progress::before {
  content: ""; position: absolute; inset: 0 62% 0 0;
  background: #fff; border-radius: 2px;
}
.reel-play {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(13,9,6,.5); border: 1.5px solid rgba(255,255,255,.65);
  display: grid; place-items: center; color: #fff;
}
.reel-play svg { width: 22px; height: 22px; margin-left: 2px; }
.reel-side {
  position: absolute; right: 12px; bottom: 96px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: #fff;
}
.reel-side svg { width: 22px; height: 22px; margin-top: 12px; }
.reel-side b { font-size: .6rem; font-weight: 600; opacity: .85; }
.reel-info { position: relative; z-index: 2; padding-right: 40px; }
.reel-acc { display: flex; align-items: center; gap: 8px; }
.reel-acc .ava {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 30% 30%, var(--amber), var(--copper));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .62rem;
}
.reel-acc b { display: block; font-size: .78rem; line-height: 1.1; }
.reel-acc small { font-size: .62rem; opacity: .7; }
.reel-cap { font-size: .78rem; line-height: 1.4; margin: 8px 0 10px; opacity: .95; }
.reel-cta {
  display: block; text-align: center;
  background: rgba(255,255,255,.92); color: #1c1c1c;
  border-radius: 8px; padding: 8px 10px;
  font-size: .74rem; font-weight: 700;
}

.ad-card.bad { position: relative; background: #efe9df; color: #7a7268; }
.ad-card.bad .ad-img { background: repeating-linear-gradient(45deg, #d8d0c2 0 18px, #cfc6b6 18px 36px); color: #6d6558; }
.ad-card.bad .offer { text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: #b3392f; }
.stamp {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%) rotate(-12deg);
  border: 3px solid #b3392f; color: #b3392f; padding: 8px 18px; border-radius: 6px;
  font-stretch: 120%; font-weight: 700; letter-spacing: .1em; font-size: 1.05rem;
  background: rgba(255,255,255,.72); white-space: nowrap; z-index: 2;
}
.ads-note { color: var(--muted-on-light); max-width: 58ch; margin-top: 3vh; }

/* ============ S8 Flow-Timeline ============ */
.s-flow { padding: 20vh 0 16vh; overflow: hidden; }
.flow-head h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); max-width: 17ch; margin-top: 5vh; }
.flow-head p { color: var(--muted-on-dark); max-width: 54ch; margin-top: 3vh; font-size: clamp(1rem, 1.3vw, 1.2rem); }

.tl { position: relative; max-width: 1420px; margin: 9vh auto 0; padding: 0 var(--pad); }
.tl-sources {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 7vh; position: relative; z-index: 2;
}
.src-chip {
  background: rgba(245,237,225,.07); border: 1px solid var(--line-on-dark);
  color: var(--ink-on-dark);
  border-radius: 100px; padding: 9px 18px; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em;
}

.tl-body { position: relative; }
.tl-line {
  position: absolute; top: 30px; bottom: 110px; left: 50%; width: 2px;
  transform: translateX(-50%);
  background: rgba(245,237,225,.12);
}
.tl-progress {
  position: absolute; inset: 0; display: block;
  background: linear-gradient(var(--amber), var(--gold));
  box-shadow: 0 0 18px rgba(232,163,61,.45);
  transform: scaleY(0); transform-origin: top;
}
.tl-runner {
  position: absolute; top: 0; left: 50%; display: block;
  width: 16px; height: 16px; border-radius: 50%;
  transform: translate(-50%,-50%);
  background: var(--amber);
  box-shadow: 0 0 24px rgba(232,163,61,.9), 0 0 70px rgba(232,163,61,.4);
}

.station {
  position: relative; display: grid;
  grid-template-columns: 1fr 110px 1fr;
  gap: clamp(16px, 2.6vw, 44px);
  align-items: center;
  margin: 5vh 0;
}
.station .st-card, .station .st-node, .station .st-title { grid-row: 1; }
.station .st-card { grid-column: 1; justify-self: end; }
.station .st-title { grid-column: 3; }
.station.rev .st-card { grid-column: 3; justify-self: start; }
.station.rev .st-title { grid-column: 1; text-align: right; }
.station.rev .st-title p { margin-left: auto; }

.st-node {
  grid-column: 2; justify-self: center; z-index: 2;
  width: 88px; height: 88px; border-radius: 50%; flex: none;
  background: var(--night); border: 1px solid var(--line-on-dark);
  display: grid; place-items: center; color: var(--muted-on-dark);
  font-size: 30px; font-style: normal;
  transition: background .5s, border-color .5s, color .5s, box-shadow .5s, transform .5s;
}
.st-node i { font-style: normal; }
.station.active .st-node {
  background: var(--gold); border-color: var(--amber); color: var(--espresso-deep);
  box-shadow: 0 0 44px rgba(232,163,61,.55), 0 0 110px rgba(232,163,61,.22);
  transform: scale(1.07);
}

.st-title { color: var(--ink-on-dark); max-width: 34rem; }
.st-title .label { color: var(--amber); }
.st-title h3 {
  font-stretch: 120%; font-weight: 640;
  font-size: clamp(1.7rem, 2.8vw, 2.9rem); line-height: 1.02; margin: 12px 0 14px;
}
.st-title p { color: var(--muted-on-dark); max-width: 38ch; font-size: clamp(.95rem, 1.15vw, 1.1rem); }

.st-card {
  width: min(480px, 100%);
  background: linear-gradient(150deg, #2f251c, #1a120a);
  border: 1px solid rgba(245,237,225,.09); border-radius: 20px;
  padding: clamp(18px, 2.2vw, 30px);
  color: var(--ink-on-dark);
  box-shadow: 0 34px 80px -32px rgba(0,0,0,.65);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.st-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,163,61,.45);
  box-shadow: 0 48px 100px -32px rgba(0,0,0,.8);
}
.station.active .st-card { border-color: rgba(232,163,61,.3); }
.st-cardhead {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-bottom: 14px;
}
.st-cardhead b { font-stretch: 116%; font-size: 1.02rem; }
.st-cardhead span { color: var(--muted-on-dark); font-size: .78rem; font-variant-numeric: tabular-nums; }
.st-quote {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 400;
  font-size: 1.12rem; color: #efe3cf; line-height: 1.55;
}
.st-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.st-tags span {
  font-size: .72rem; border: 1px solid var(--line-on-dark); color: var(--muted-on-dark);
  padding: 5px 12px; border-radius: 100px; letter-spacing: .04em;
}
.mail-line {
  border-bottom: 1px solid rgba(245,237,225,.08);
  padding: 8px 0; font-size: .86rem; display: flex; gap: 10px;
}
.mail-line span { color: rgba(245,237,225,.45); width: 58px; flex: none; }
.mail-body { padding-top: 12px; color: var(--muted-on-dark); font-size: .9rem; line-height: 1.55; }
.chat { display: flex; flex-direction: column; gap: 8px; }
.bubble {
  padding: 11px 15px; border-radius: 16px; font-size: .89rem; line-height: 1.45; max-width: 92%;
}
.bubble.us { background: #2f4a37; color: #dff0e2; border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.them { background: rgba(245,237,225,.1); color: var(--ink-on-dark); border-bottom-right-radius: 4px; align-self: flex-end; }
.chat .time { font-size: .68rem; color: rgba(245,237,225,.4); align-self: flex-end; }
.checklist { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  list-style: none; display: flex; gap: 10px; align-items: baseline;
  color: var(--muted-on-dark); font-size: .93rem;
}
.checklist li::before { content: "✓"; color: var(--amber); font-weight: 700; }
.st-note {
  margin-top: 16px; padding: 11px 14px; border-radius: 12px;
  background: rgba(245,237,225,.05); border: 1px dashed rgba(245,237,225,.22);
  color: var(--muted-on-dark); font-size: .8rem;
}

.tl-time {
  position: relative; z-index: 2; width: fit-content; margin: 0 auto;
  background: var(--espresso-deep); border: 1px solid rgba(232,163,61,.45);
  color: var(--amber); border-radius: 100px; padding: 9px 22px;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 640;
  font-variant-numeric: tabular-nums;
}

.station.final {
  grid-template-columns: 1fr; justify-items: center; text-align: center;
  gap: 0; margin-top: 6vh;
}
.station.final .st-node { grid-column: 1; margin-bottom: 30px; }
.station.final .final-card { grid-row: 2; }
.final-card {
  width: min(780px, 100%);
  background:
    linear-gradient(135deg, rgba(232,163,61,.16), rgba(232,163,61,.04)),
    linear-gradient(150deg, #2f251c, #1a120a);
  border: 1px solid rgba(232,163,61,.5); border-radius: 24px;
  padding: clamp(24px, 3.2vw, 44px);
  color: var(--ink-on-dark);
  box-shadow: 0 44px 110px -34px rgba(232,163,61,.28);
}
.final-card .cal-line {
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; align-items: baseline;
  font-stretch: 118%; font-weight: 640; font-size: clamp(1.1rem, 2vw, 1.65rem);
}
.final-card .cal-line .when { color: var(--amber); }
.final-card .meta { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px; }
.final-card .meta span {
  font-size: .78rem; border: 1px solid rgba(232,163,61,.4); color: var(--amber);
  border-radius: 100px; padding: 6px 15px; font-weight: 600;
}
.final-card .sub { margin-top: 20px; color: var(--muted-on-dark); font-size: clamp(.92rem, 1.1vw, 1.02rem); max-width: 52ch; margin-left: auto; margin-right: auto; }
.final-card .sub b { color: var(--ink-on-dark); }

/* ============ S9 Calendar ============ */
.s-cal { padding: 18vh 0; }
.cal-head { margin-bottom: 7vh; }
.cal-head h2 { font-size: clamp(2rem, 5vw, 4.4rem); max-width: 16ch; }
.cal-head h2 em { font-style: normal; color: var(--copper); }
.cal-head p { color: var(--muted-on-light); max-width: 56ch; margin-top: 3vh; }

.calendar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -40px rgba(42,33,27,.4);
  overflow: hidden;
  border: 1px solid #eee2d0;
}
.cal-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid #f0e7d8;
}
.cal-toolbar b { font-stretch: 118%; font-size: 1.05rem; }
.cal-toolbar .kw { color: var(--muted-on-light); font-size: .85rem; }
.cal-badge {
  background: #fdf1dc; color: #8a5b13; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px;
}
.cal-scroll { overflow-x: auto; }
.cal-grid {
  display: grid; grid-template-columns: 52px repeat(6, minmax(120px, 1fr));
  min-width: 780px;
}
.cal-daylabel {
  padding: 12px 8px; text-align: center; font-weight: 640; font-size: .82rem;
  border-bottom: 1px solid #f0e7d8; color: var(--espresso);
  font-stretch: 116%;
}
.cal-daylabel small { display: block; color: #b6a88f; font-weight: 500; }
.cal-hour {
  font-size: .68rem; color: #b6a88f; text-align: right; padding: 4px 8px 0 0;
  border-top: 1px solid #f6efe2; height: 46px;
}
.cal-cell { border-top: 1px solid #f6efe2; border-left: 1px solid #f6efe2; position: relative; height: 46px; }
.cal-col { position: relative; }
.appt {
  position: absolute; left: 5px; right: 5px; z-index: 2;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #3a2604;
  border-radius: 10px; padding: 7px 10px; font-size: .72rem; line-height: 1.3;
  cursor: pointer; overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 8px 18px -8px rgba(201,138,43,.65);
  transition: transform .2s, box-shadow .2s;
}
.appt:hover { transform: scale(1.03); box-shadow: 0 12px 24px -8px rgba(201,138,43,.8); z-index: 3; }
.appt b { display: block; font-size: .76rem; }
.appt.muted {
  background: #f2ead9; color: #9a8b71; border-color: #e8dcc4; box-shadow: none;
}
.appt .q-badge {
  display: inline-block; margin-top: 3px; background: rgba(58,38,4,.14);
  padding: 1px 7px; border-radius: 100px; font-size: .6rem; font-weight: 700;
  letter-spacing: .06em;
}
.appt-pop {
  position: fixed; z-index: 90; width: min(360px, calc(100vw - 40px));
  background: #fff; border-radius: 18px; padding: 22px;
  box-shadow: 0 30px 80px -20px rgba(23,17,13,.5);
  border: 1px solid #eee2d0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.appt-pop.show { opacity: 1; visibility: visible; transform: none; }
.appt-pop h4 { font-stretch: 118%; font-size: 1.15rem; margin-bottom: 2px; }
.appt-pop .when { color: var(--copper); font-weight: 600; font-size: .85rem; margin-bottom: 14px; }
.appt-pop ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.appt-pop li {
  display: flex; justify-content: space-between; gap: 14px; font-size: .88rem;
  border-bottom: 1px dashed #eee2d0; padding-bottom: 8px;
}
.appt-pop li span { color: #9a8b71; }
.appt-pop li b { text-align: right; }
.appt-pop .note {
  margin-top: 12px; background: #fdf6e8; border-radius: 10px; padding: 10px 12px;
  font-size: .8rem; color: #7d6a4a;
}
.appt-pop .close-pop {
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px;
  border-radius: 50%; background: #f4ecdd; font-size: 14px;
}
.cal-note { margin-top: 3vh; color: var(--muted-on-light); max-width: 58ch; }
.cal-note b { color: var(--espresso); }

/* ============ S10 Myths ============ */
.s-myths { padding: 24vh 0 12vh; overflow: hidden; }
.s-myths .watermark { top: 10%; right: -8%; color: var(--cream); }
.myths-head h2 { font-size: clamp(2.4rem, 6.5vw, 6rem); max-width: 14ch; }
.myths-head p { color: var(--muted-on-dark); max-width: 52ch; margin-top: 3vh; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.myth-list { margin-top: 10vh; display: flex; flex-direction: column; gap: clamp(16px, 3vh, 30px); position: relative; z-index: 1; }
.myth {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-on-dark); border-radius: var(--radius); overflow: hidden;
  background: rgba(245,237,225,.02);
}
.myth > div { padding: clamp(20px, 3.4vw, 44px); }
.myth .them { border-right: 1px solid var(--line-on-dark); }
.myth .them .label { color: #77695c; }
.myth .them h3 {
  color: #a2937f; font-stretch: 118%; font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  margin: 12px 0 10px;
}
.myth .them h3 s { text-decoration-color: #b3392f; text-decoration-thickness: 2px; }
.myth .them p { color: rgba(245,237,225,.4); font-size: .95rem; max-width: 42ch; }
.myth .us { background: linear-gradient(135deg, rgba(201,138,43,.13), transparent 60%); }
.myth .us .label { color: var(--amber); }
.myth .us h3 {
  color: var(--ink-on-dark); font-stretch: 118%; font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  margin: 12px 0 10px;
}
.myth .us p { color: var(--muted-on-dark); font-size: .95rem; max-width: 42ch; }

/* ============ S11 Proof card ============ */
.s-proof { padding: 14vh 0 20vh; }
.proof-flex {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 90px);
  align-items: center;
}
.proof-copy h2 { color: var(--ink-on-dark); font-size: clamp(1.9rem, 3.6vw, 3.2rem); max-width: 16ch; }
.proof-copy p { color: var(--muted-on-dark); margin-top: 3vh; max-width: 44ch; }
.proof-clock { margin-top: 5vh; color: var(--muted-on-dark); }
.proof-clock .time {
  font-stretch: 122%; font-weight: 680; font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--ink-on-dark); line-height: 1; font-variant-numeric: tabular-nums;
}
.ticket {
  background: var(--cream); color: var(--espresso);
  border-radius: 18px; padding: clamp(24px, 3vw, 40px);
  position: relative;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.6);
  transform: rotate(1.5deg);
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; width: 26px; height: 26px; border-radius: 50%;
  background: var(--espresso-deep); top: 50%;
}
.ticket::before { left: -13px; }
.ticket::after { right: -13px; }
.ticket .t-head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px dashed #d9cbb4; padding-bottom: 16px; margin-bottom: 16px;
}
.ticket .t-head .label { color: var(--copper); }
.ticket .barcode {
  width: 92px; height: 40px;
  background: repeating-linear-gradient(90deg, var(--espresso) 0 2px, transparent 2px 4px,
    var(--espresso) 4px 7px, transparent 7px 9px, var(--espresso) 9px 10px, transparent 10px 13px);
}
.ticket .t-big {
  font-stretch: 120%; font-weight: 660; font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.15; max-width: 20ch;
}
.ticket .t-rows { margin-top: 22px; display: flex; flex-direction: column; }
.ticket .t-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 12px 0; border-top: 1px solid #e7dcc7;
}
.ticket .t-row span { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: #9a8b71; font-weight: 640; }
.ticket .t-row b { font-stretch: 120%; font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-variant-numeric: tabular-nums; }
.ticket .t-row b em { font-style: normal; color: var(--copper); }

/* ============ S12 Finale ============ */
.s-final { padding: 20vh 0 0; }
.final-title {
  color: var(--ink-on-dark);
  font-size: clamp(2.6rem, 7.5vw, 7rem); max-width: 12ch;
}
.final-sub { color: var(--muted-on-dark); max-width: 52ch; margin: 5vh 0 7vh; font-size: clamp(1rem, 1.3vw, 1.2rem); }
.final-cta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: var(--espresso-deep); text-decoration: none;
  font-stretch: 118%; font-weight: 680; font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  padding: 20px 38px; border-radius: 100px;
  box-shadow: 0 20px 50px -12px rgba(201,138,43,.55);
  transition: transform .25s, box-shadow .25s;
}
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 26px 60px -12px rgba(232,163,61,.7); }
.btn-ghost {
  color: var(--ink-on-dark); text-decoration: none; font-weight: 600;
  border: 1px solid var(--line-on-dark); border-radius: 100px; padding: 19px 30px;
  transition: border-color .25s, background .25s;
}
.btn-ghost:hover { border-color: var(--amber); background: rgba(232,163,61,.08); }
.final-contacts { margin-top: 12vh; }
.final-contacts a {
  display: block; text-decoration: none; color: var(--ink-on-dark);
  font-stretch: 120%; font-weight: 640; font-size: clamp(1.3rem, 3.6vw, 3rem);
  line-height: 1.3; transition: color .2s;
  overflow-wrap: anywhere;
}
.final-contacts a:hover { color: var(--amber); }
.footer {
  margin-top: 12vh; border-top: 1px solid var(--line-on-dark);
  padding: 26px var(--pad) 110px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  color: var(--muted-on-dark); font-size: .8rem; letter-spacing: .08em;
}
.footer nav { display: flex; gap: 22px; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--amber); }

/* ============ Contact modal ============ */
.modal {
  position: fixed; inset: 0; z-index: 80; display: grid; place-items: center;
  padding: 20px;
  background: rgba(23,17,13,.6); backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.modal.show { opacity: 1; visibility: visible; }
.modal-card {
  width: min(560px, 100%); max-height: 90vh; overflow: auto;
  background: var(--cream); border-radius: 26px; padding: clamp(26px, 4vw, 46px);
  position: relative;
  transform: translateY(20px) scale(.98); transition: transform .35s cubic-bezier(.2,.9,.25,1);
}
.modal.show .modal-card { transform: none; }
.modal-card h3 { font-stretch: 120%; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.modal-card .modal-sub { color: var(--muted-on-light); margin: 8px 0 26px; font-size: .95rem; }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px;
  border-radius: 50%; background: #efe5d2; font-size: 16px;
}
.field { border-left: 2px solid #e3d5ba; padding-left: 16px; margin-bottom: 20px; }
.field label {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 2px;
}
.field input {
  width: 100%; border: 0; background: none; outline: none;
  font: inherit; font-size: 1.15rem; color: var(--espresso); padding: 4px 0;
}
.field input::placeholder { color: #c4b498; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; align-items: center; }
.modal-actions .btn-gold { font-size: 1rem; padding: 16px 28px; }
.modal-actions .alt { color: var(--muted-on-light); font-size: .85rem; }
.modal-actions .alt a { color: var(--copper); font-weight: 600; }
.modal-ok {
  display: none; text-align: center; padding: 30px 0 10px;
}
.modal-ok .big { font-size: 3rem; }
.modal-ok h4 { font-stretch: 118%; font-size: 1.4rem; margin: 10px 0 6px; }
.modal-ok p { color: var(--muted-on-light); }
.modal.sent form, .modal.sent .modal-sub { display: none; }
.modal.sent .modal-ok { display: block; }

/* ============ Responsive ============ */
/* ============ Rechtsseiten (Impressum / Datenschutz) ============ */
.legal-body { background: var(--night); min-height: 100vh; }
.legal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: clamp(14px, 2.2vw, 26px) var(--pad);
}
.legal-head .back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-on-dark); text-decoration: none;
  font-size: .82rem; font-weight: 640; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--line-on-dark); border-radius: 100px; padding: 11px 20px;
  transition: border-color .25s, background .25s;
}
.legal-head .back-link:hover { border-color: var(--amber); background: rgba(232,163,61,.08); }
.legal {
  max-width: 780px; margin: 0 auto;
  padding: clamp(40px, 8vh, 90px) var(--pad) 14vh;
  color: var(--ink-on-dark);
}
.legal h1 {
  font-stretch: 122%; font-weight: 640; line-height: 1;
  font-size: clamp(2.2rem, 6vw, 3.8rem); margin-bottom: .4em;
}
.legal .lead { color: var(--muted-on-dark); margin-bottom: 3em; }
.legal h2 {
  font-stretch: 118%; font-weight: 640; color: var(--amber);
  font-size: clamp(1.15rem, 2vw, 1.4rem); margin: 2.4em 0 .6em;
}
.legal p, .legal li { color: var(--muted-on-dark); line-height: 1.7; font-size: .98rem; }
.legal ul { padding-left: 1.2em; }
.legal li { margin: .3em 0; }
.legal a { color: var(--amber); }
.legal b, .legal strong { color: var(--ink-on-dark); }
.legal .ph-block {
  border: 1.5px dashed rgba(232,163,61,.55); border-radius: 14px;
  padding: 16px 20px; margin: 1.2em 0;
  color: var(--amber); font-size: .9rem; line-height: 1.6;
}
.legal-foot {
  border-top: 1px solid var(--line-on-dark);
  padding: 26px var(--pad) 40px;
  color: var(--muted-on-dark); font-size: .8rem; letter-spacing: .08em;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
}
.legal-foot a { color: inherit; text-decoration: none; }
.legal-foot a:hover { color: var(--amber); }

/* Statischer Modus (Reduced Motion / ?noanim): Kapitel-Hintergründe ohne Scroll-Tweens */
body.static-mode #loesung,
body.static-mode #instagram,
body.static-mode #kampagnen { background: var(--cream); }
body.static-mode #kalender { background: #F6EEDF; }

/* ============ Mobile ============ */
@media (max-width: 899px) {
  /* Sektions-Rhythmus kompakter */
  .s-statement { min-height: 0; padding: 14vh 0 10vh; }
  .brandline { margin-top: 8vh; }
  .s-chapter { padding: 14vh 0 8vh; }
  .s-ads { padding: 10vh 0 12vh; }
  .s-flow { padding: 12vh 0 10vh; }
  .tl { margin-top: 5vh; }
  .s-cal { padding: 12vh 0; }
  .s-myths { padding: 15vh 0 8vh; }
  .myth-list { margin-top: 7vh; }
  .s-proof { padding: 10vh 0 14vh; }
  .s-final { padding: 14vh 0 0; }
  .final-contacts { margin-top: 8vh; }
  .footer { margin-top: 8vh; padding-bottom: 120px; }

  /* Hero */
  .hero-type { justify-content: flex-start; padding-top: 16vh; }
  .hero-type h1 { font-size: clamp(1.9rem, 9.4vw, 2.6rem); }
  .hero-sub { bottom: 13vh; max-width: 84vw; }
  .hero-sub p { font-size: .92rem; }
  .hero-scrollhint { display: none; }
  .hero-explain { left: var(--pad); right: var(--pad); bottom: 13vh; max-width: none; }
  .map-wrap .map-svg { width: 150vw; }

  /* Karten-Beschriftungen lesbarer (skalieren mit dem SVG) */
  .pin-name { font-size: 15px; }
  .pin-sub { font-size: 10.5px; }
  .pin-name.hero { font-size: 16px; }

  /* Showdown */
  .showdown-grid, .phone-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 8vh; padding-bottom: 4vh; }
  .s-phone { min-height: 0; }
  .steps { padding: 0; }
  .step { padding: 3.5vh 0; }
  .showdown-counter { position: static; margin-bottom: 14px; }
  .showdown-map .map-svg { width: 128vw; margin-left: -14vw; }

  /* iPhone: Frage-Chips als Liste unters Telefon */
  .q-chips {
    position: static; display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; margin-top: 18px; pointer-events: none;
  }
  .q-chip { position: static; max-width: none; backdrop-filter: none; }

  /* Flow-Timeline */
  .tl-line { left: 30px; transform: none; }
  .station, .station.rev { grid-template-columns: 64px 1fr; gap: 14px; }
  .station .st-node, .station.rev .st-node {
    grid-column: 1; grid-row: 1; width: 60px; height: 60px;
    font-size: 22px; align-self: start;
  }
  .station .st-title, .station.rev .st-title { grid-column: 2; grid-row: 1; text-align: left; }
  .station.rev .st-title p { margin-left: 0; }
  .station .st-card, .station.rev .st-card { grid-column: 2; grid-row: 2; justify-self: start; }
  .tl-time { margin: 0 0 0 64px; }
  .station.final { grid-template-columns: 64px 1fr; justify-items: start; text-align: left; }
  .station.final .st-node { margin-bottom: 0; }
  .station.final .final-card { grid-column: 2; grid-row: 1; }
  .final-card .cal-line, .final-card .meta { justify-content: flex-start; }
  .final-card .sub { margin-left: 0; }

  /* Mythen / Proof */
  .myth { grid-template-columns: 1fr; }
  .myth .them { border-right: 0; border-bottom: 1px solid var(--line-on-dark); }
  .proof-flex { grid-template-columns: 1fr; }
  .ticket { transform: none; }

  /* Floating CTA kompakt, einzeilig */
  .cta-pill { bottom: 16px; }
  .cta-pill .pill-main { padding: 12px 18px; font-size: .88rem; white-space: nowrap; }
  .cta-pill .pill-icon { width: 44px; height: 44px; }

  /* Header kompakt */
  .logo-img { height: 40px; }
  .legal-head .back-link { font-size: .66rem; white-space: nowrap; padding: 10px 14px; }
  .portal-btn { height: 46px; padding: 0 14px; border-radius: 14px; font-size: .72rem; }
  .portal-btn .pb-full { display: none; }
  .portal-btn .pb-short { display: inline; }
  .burger { width: 46px; height: 46px; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
