/* =====================================================================
   MAGNÉTIQ YOU - Design-System
   Statisches HTML/CSS/JS. Alle Tokens hier in :root.
   Farben: Anthrazit #272932 · Hell #f5f5f5 / #ffffff · Gold #d4af37 · Pink #d81b60 (nur CTA/Akzent)
   Schriften: Tenor Sans (Headlines) · Raleway (Body)
   ===================================================================== */

@font-face {
  font-family: "Tenor Sans";
  src: url("../Schriften/TenorSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../Schriften/Raleway-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* Brand */
  --ink: #272932;
  --ink-deep: #1d1f27;
  --ink-soft: #343744;
  --paper: #ffffff;
  --stone: #f5f5f5;
  --stone-2: #ebebeb;
  --gold: #d4af37;
  --gold-soft: #e3c766;
  --gold-deep: #8a6d1d;      /* lesbares Gold auf hellem Grund (Text) */
  --pink: #d81b60;
  --pink-deep: #b3144e;

  /* Text */
  --text: #272932;
  --muted: #5c5f6c;
  --text-on-dark: #f5f5f5;
  --muted-on-dark: rgba(245, 245, 245, 0.72);

  /* Type */
  --font-head: "Tenor Sans", "Times New Roman", serif;
  --font-body: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --fs-display: clamp(2.6rem, 6.2vw, 5.2rem);
  --fs-h2: clamp(1.9rem, 3.6vw, 3rem);
  --fs-h3: clamp(1.25rem, 1.8vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1.3vw, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.78rem;

  /* Spacing */
  --gutter: clamp(16px, 5vw, 72px);
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;
  --section-y: clamp(4rem, 9vw, 8rem);
  --max: 1400px;
  --content: 1180px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.25s;

  /* Layers */
  --z-nav: 50;
  --z-overlap: 20;
  --z-front: 30;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 var(--sp-3);
  letter-spacing: 0.005em;
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 var(--sp-2); }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Layout-Helfer ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.content { max-width: var(--content); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-y); }
.section--stone { background: var(--stone); }
.section--dark { background: var(--ink); color: var(--text-on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .muted { color: var(--muted-on-dark); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }
.muted { color: var(--muted); }
.lead { font-size: var(--fs-lead); line-height: 1.6; }
.narrow { max-width: 62ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: var(--fs-eyebrow); letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-deep); margin-bottom: var(--sp-3);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold-deep); }
.accent { color: var(--pink); }
.gold { color: var(--gold); }
.mark { color: var(--gold-deep); }
.section--dark .mark { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 48px; padding: 0.85rem 1.8rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid transparent; border-radius: 2px; cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn--cta { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 10px 30px -12px rgba(216, 27, 96, 0.55); }
.btn--cta:hover { background: var(--pink-deep); border-color: var(--pink-deep); box-shadow: 0 14px 34px -12px rgba(216, 27, 96, 0.7); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.section--dark .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn svg { width: 18px; height: 18px; flex: none; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--gold-deep); border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.link-arrow:hover { color: var(--pink); gap: 0.8rem; }
.section--dark .link-arrow { color: var(--gold); }
.section--dark .link-arrow:hover { color: #fff; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.nav.is-scrolled { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(39, 41, 50, 0.08); padding-block: 0.75rem; }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand img { width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: 0.2em; color: var(--ink); }
.brand__claim { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__links a { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); padding: 0.4rem 0; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links .btn { padding: 0.65rem 1.3rem; min-height: 42px; font-size: 0.8rem; }
.nav__links .btn::after { display: none; }
.nav__toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 0; align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); position: relative; transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--ink); transition: transform var(--dur) var(--ease), top var(--dur) var(--ease); }
.nav__toggle span::before { top: -8px; } .nav__toggle span::after { top: 8px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }
@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 0; background: var(--paper); flex-direction: column; justify-content: center; gap: 1.6rem;
    opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease); z-index: -1;
  }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; }
  .nav.is-open { background: var(--paper); }
  .nav__links a { font-size: 1.1rem; }
}

/* =====================================================================
   HERO
   Bühne mit festem Seitenverhältnis (Desktop); Headline liegt HINTER
   dem Freisteller, Copy links, "Bekannt aus"-Kasten hängt unten rechts
   in die nächste Sektion hinein.
   ===================================================================== */
.hero { position: relative; background: linear-gradient(180deg, #ffffff 0%, #fafafa 60%, #f5f5f5 100%); overflow: visible; }
.hero__stage { position: relative; container-type: inline-size; width: 100%; max-width: 1600px; margin-inline: auto; aspect-ratio: 1460 / 900; min-height: 640px; }
.hero__title { position: absolute; z-index: 1; margin: 0; font-family: var(--font-head); font-weight: 400; line-height: 0.92; pointer-events: none; }
.hero__title .t1 { position: absolute; left: 16cqw; top: 8.7cqw; font-size: 5.6cqw; color: var(--pink); white-space: nowrap; letter-spacing: 0.01em; }
.hero__title .t2 { position: absolute; left: 46.5cqw; top: 13.2cqw; font-family: var(--font-body); font-weight: 600; font-size: 9.4cqw; line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.hero__figure { position: absolute; z-index: 2; left: 31cqw; bottom: 0; height: 74%; margin: 0; }
.hero__figure img { height: 100%; width: auto; }
.hero__copy { position: absolute; z-index: 3; left: 9.5cqw; top: 22.5cqw; width: 24cqw; }
.hero__copy p { font-size: clamp(0.95rem, 1.25cqw, 1.2rem); line-height: 1.6; margin-bottom: 1.6rem; color: var(--ink); }
.hero__flamingo { position: absolute; z-index: 3; right: 6cqw; bottom: 0; width: 6.4cqw; margin: 0; }

/* "Bekannt aus" - hängt unter den Hero */
.press { position: absolute; top: -50px; right: 0; z-index: var(--z-overlap); display: flex; justify-content: flex-end; width: 50%; min-width: 320px; }
.press__box { position: relative; width: 100%; background: var(--ink); color: var(--text-on-dark); padding: 2rem clamp(1.5rem, 4vw, 3.5rem) 2.4rem; }
.press__label { font-size: var(--fs-eyebrow); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 1.4rem; }
.press__logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 2rem; align-items: center; }
.press__logos img { width: 100%; max-height: 44px; object-fit: contain; opacity: 0.86; transition: opacity var(--dur) var(--ease); }
.press__logos img:hover { opacity: 1; }
.press__flamingo { position: absolute; right: 9%; bottom: calc(100% - 1px); width: clamp(80px, 8vw, 122px); margin: 0; }

@media (max-width: 800px) {
  .hero { padding-top: 5.5rem; }
  .hero__stage { aspect-ratio: auto; min-height: 0; display: flex; flex-direction: column; align-items: center; text-align: center; padding-inline: var(--gutter); }
  .hero__copy .btn { font-size: 0.85rem; padding-inline: 1.3rem; }
  .hero__title { position: relative; margin-bottom: 0; }
  .hero__title .t1, .hero__title .t2 { position: static; display: block; white-space: normal; }
  .hero__title .t1 { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hero__title .t2 { font-size: clamp(2.6rem, 12.5vw, 4.2rem); margin-top: 0.05em; line-height: 1; }
  .hero__figure { position: relative; left: auto; height: auto; width: min(78%, 360px); margin-top: -1.8rem; }
  .hero__figure img { width: 100%; height: auto; }
  .hero__copy { position: relative; left: auto; top: auto; width: 100%; max-width: 34rem; margin-top: 1.5rem; padding-bottom: 7.5rem; text-align: left; }
  .hero__flamingo { display: none; }
  .press { position: relative; top: auto; width: 100%; min-width: 0; margin-top: -50px; }
  .press__logos { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .press__flamingo { width: 70px; left: auto; right: 2%; }
}

/* =====================================================================
   INTRO / PROBLEM - grauer Block eingerückt, Gold-Kasten ragt links raus
   ===================================================================== */
.intro { position: relative; padding-bottom: var(--section-y); }
.intro__panel { background: var(--stone); margin-left: 22%; padding: clamp(14rem, 19vw, 17rem) var(--gutter) var(--section-y) clamp(1.5rem, 4vw, 4rem); }
.intro__panel h2 { max-width: 36ch; font-size: clamp(1.8rem, 3.1vw, 2.6rem); margin-left: clamp(0rem, 3vw, 4rem); }
.intro__grid { display: grid; grid-template-columns: minmax(200px, 22%) 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; margin-top: 0; }
.intro__art { position: relative; z-index: var(--z-overlap); margin-left: calc(-14vw + var(--gutter) - clamp(1.5rem, 4vw, 4rem)); margin-top: 2rem; margin-right: 0; }
.intro__art .frame { background: var(--gold); padding: clamp(0.7rem, 1.4vw, 1rem); }
.intro__art .frame img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.intro__art figcaption { position: absolute; right: -1.5rem; bottom: -1.2rem; background: var(--gold); color: var(--ink); padding: 0.8rem 1rem; font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.04em; max-width: 80%; line-height: 1.35; }
.intro__text { padding-top: clamp(1rem, 3vw, 3rem); max-width: 56ch; }
.quotebox { background: var(--ink); color: #fff; padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 3vw, 2.6rem); font-family: var(--font-head); font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.35; position: relative; }
.quotebox--gold { background: var(--gold); color: var(--ink); }
.quotebox cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 1rem; opacity: 0.8; }
.intro__text .quotebox { margin: 2rem 0 2rem -1.5rem; }
.shift .cite { display: inline-block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 0 0.35rem 0 0.1rem; }
.either { margin: 1.6rem 0 1.8rem; border-top: 1px solid rgba(39, 41, 50, 0.15); }
.either p { margin: 0; padding: 1rem 0; border-bottom: 1px solid rgba(39, 41, 50, 0.15); font-size: 1.02rem; line-height: 1.6; }
.either__k { font-family: var(--font-head); font-size: 1.35rem; color: var(--gold-deep); margin-right: 0.4rem; }
@media (max-width: 900px) {
  .intro__panel { margin-left: 0; padding-top: clamp(3rem, 8vw, 5rem); padding-inline: var(--gutter); }
  .intro__panel h2 { margin-left: 0; }
  .intro__grid { grid-template-columns: 1fr; margin-top: 0; }
  .intro__art { margin-left: 0; max-width: 300px; margin-top: 0; }
  .intro__text .quotebox { margin-left: 0; }
}

/* =====================================================================
   SHIFT - dunkle Sektion, Foto ragt oben rein, Gold-Zitat ragt unten raus
   ===================================================================== */
.shift { padding-bottom: calc(var(--section-y) + 2rem); }
.shift__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0 clamp(2rem, 6vw, 6rem); align-items: start; }
.shift__grid > .reveal:first-child { grid-row: 1 / 3; }
.method { margin-top: 2.5rem; border: 1px solid rgba(212, 175, 55, 0.35); padding: clamp(1.4rem, 2.4vw, 2rem); }
.method__title { font-family: var(--font-head); font-size: 1.15rem; color: #fff; margin-bottom: 1rem; letter-spacing: 0.03em; }
.method li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 0.7rem 0; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.93rem; color: var(--muted-on-dark); }
.method li strong { color: #fff; font-weight: 600; }
.method__n { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold); padding-top: 0.2em; }
.method__cta { margin-top: 1.4rem; width: 100%; }
.shift__photo { margin: calc(-1 * var(--section-y) - 3rem) 0 0; position: relative; z-index: var(--z-overlap); }
.shift__photo img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6); }
.shift__photo .tag { position: absolute; left: -1.2rem; bottom: 2.5rem; background: var(--gold); color: var(--ink); padding: 0.8rem 1.1rem; font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.06em; }
.ratio { margin: 1.8rem 0 2.2rem; }
.ratio__bar { display: flex; height: 10px; gap: 3px; }
.ratio__gold { flex: 95; background: var(--gold); }
.ratio__grey { flex: 5; background: rgba(255, 255, 255, 0.35); }
.ratio__legend { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-top: 0.9rem; }
.ratio__item { display: flex; align-items: baseline; gap: 0.8rem; }
.ratio__item--r { text-align: right; flex-direction: row-reverse; }
.ratio__num { font-family: var(--font-head); font-size: clamp(2.4rem, 4.2vw, 3.6rem); line-height: 1; color: var(--gold); white-space: nowrap; }
.ratio__num--grey { color: var(--muted-on-dark); font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.ratio__label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-on-dark); line-height: 1.4; }
.compass { margin: 2.2rem 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.compass li { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); font-family: var(--font-head); font-size: clamp(1.1rem, 1.7vw, 1.45rem); }
.compass__n { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--gold); }
.shift__flamingo { position: absolute; right: clamp(2rem, 8vw, 9rem); bottom: 0; width: clamp(64px, 6.5vw, 96px); margin: 0; }
@media (max-width: 900px) {
  .shift { padding-bottom: calc(var(--section-y) + 4rem); }
  .shift__grid { grid-template-columns: 1fr; }
  .shift__grid > .reveal:first-child { grid-row: auto; }
  .method { margin-bottom: 1rem; }
  .shift__photo { order: -1; margin-top: calc(-1 * var(--section-y) - 2rem); max-width: 420px; margin-bottom: 2.5rem; }
  .shift__flamingo { width: 64px; right: var(--gutter); }
}

/* =====================================================================
   6 KEYS OF FREEDOM - Bento-Raster mit Reise-Fotos
   ===================================================================== */
.keys { padding-top: var(--section-y); }
.keys__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: end; margin-bottom: var(--sp-5); }
.keys__head p { max-width: 50ch; }
.keystrip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; margin: 0 0 var(--sp-5); padding: 1.1rem 0; border-top: 1px solid var(--stone-2); border-bottom: 1px solid var(--stone-2); }
.keystrip li { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.keystrip__icon { width: 40px; height: 40px; flex: none; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; }
.keystrip__icon svg { width: 20px; height: 20px; }
.keystrip__n { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--gold-deep); font-weight: 600; }
.keystrip__l { font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.02em; white-space: nowrap; }
@media (max-width: 900px) { .keystrip { grid-template-columns: repeat(3, 1fr); gap: 0.9rem 0.5rem; } }
@media (max-width: 520px) { .keystrip { grid-template-columns: repeat(2, 1fr); } }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(200px, auto); gap: clamp(0.75rem, 1.4vw, 1.25rem); }
.key { background: var(--stone); padding: clamp(1.4rem, 2.2vw, 2rem); display: flex; flex-direction: column; gap: 0.8rem; position: relative; transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.key:hover { background: var(--stone-2); }
.key__icon { width: 40px; height: 40px; color: var(--gold-deep); }
.key__icon svg { width: 100%; height: 100%; }
.key h3 { font-size: 1.2rem; margin: 0.2rem 0 0; }
.key h3 small { display: block; font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.35rem; }
.key p { font-size: 0.95rem; color: var(--muted); margin: 0; }
.key--dark { background: var(--ink); color: #fff; }
.key--dark:hover { background: var(--ink-soft); }
.key--dark h3 { color: #fff; }
.key--dark p { color: var(--muted-on-dark); }
.key--dark .key__icon, .key--dark h3 small { color: var(--gold); }
.key--gold { background: var(--gold); }
.key--gold:hover { background: var(--gold-soft); }
.key--gold .key__icon, .key--gold h3 small { color: var(--ink); }
.key--gold p { color: rgba(39, 41, 50, 0.8); }
.bento__photo { position: relative; overflow: hidden; margin: 0; min-height: 220px; }
.bento__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.bento__photo:hover img { transform: scale(1.04); }
.bento__photo figcaption { position: absolute; left: 1rem; bottom: 1rem; background: rgba(39, 41, 50, 0.85); color: #fff; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.45rem 0.7rem; }
.span-2 { grid-column: span 2; }
.row-2 { grid-row: span 2; }
@media (max-width: 900px) {
  .keys__head { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .span-2 { grid-column: span 2; }
  .row-2 { grid-row: span 1; }
  .bento__photo { min-height: 200px; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
}

/* =====================================================================
   STIMMEN (kurz) - drei Karten, ragen nach oben in die Keys-Sektion
   ===================================================================== */
.proof { padding-top: clamp(2.5rem, 4vw, 3.5rem); padding-bottom: var(--sp-6); }
.proof__intro { max-width: 40ch; margin-bottom: 1.8rem; font-family: var(--font-head); font-size: 1.15rem; color: var(--muted); }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.proof__card { background: var(--stone); border-top: 3px solid var(--gold); padding: 1.6rem 1.6rem 1.4rem; box-shadow: 0 24px 50px -36px rgba(0, 0, 0, 0.25); display: flex; flex-direction: column; gap: 0.7rem; }
.proof__card--up { margin-top: -1.5rem; }
.proof__card img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--gold); }
.proof__q { font-family: var(--font-head); font-size: 0.98rem; line-height: 1.5; margin: 0; }
.proof__q strong { font-weight: 400; color: var(--gold-deep); }
@media (max-width: 900px) { .proof__grid { grid-template-columns: 1fr; } .proof__card--up { margin-top: 0; } }

/* =====================================================================
   JOURNEY - die Treppe (4 Level), Flamingo wandert mit
   ===================================================================== */
.journey { background: radial-gradient(1200px 600px at 85% 0%, rgba(212, 175, 55, 0.14), transparent 60%), var(--ink); color: var(--text-on-dark); overflow: hidden; }
.journey__head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: end; margin-bottom: var(--sp-5); }
.journey__head .lead { color: var(--muted-on-dark); }
.journey__meta { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.journey__meta li { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid rgba(255, 255, 255, 0.25); padding: 0.45rem 0.8rem; color: var(--muted-on-dark); }
.journey__meta li strong { color: var(--gold); font-weight: 600; }


.timeline { position: relative; padding-left: clamp(52px, 7vw, 96px); margin-top: var(--sp-4); }
.timeline__track { position: absolute; left: clamp(10px, 1.6vw, 22px); top: 0; bottom: 0; width: 2px; background: rgba(255, 255, 255, 0.14); }
.timeline__fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(180deg, var(--gold-soft), var(--gold)); box-shadow: 0 0 10px rgba(212, 175, 55, 0.35); transition: height 0.25s linear; }
.stop { position: relative; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.stop__dot { position: absolute; top: 1.4rem; left: calc(-1 * clamp(52px, 7vw, 96px) + clamp(10px, 1.6vw, 22px) - 7px); width: 16px; height: 16px; border-radius: 50%; background: var(--ink); border: 2px solid rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); transition: background-color 1s ease, border-color 1s ease, box-shadow 1.2s ease; z-index: 2; }
.stop.is-passed .stop__dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.22); }
.stop__card { opacity: 0; transform: translateY(10px); transition: opacity 2.2s ease, transform 2.2s ease; }
.stop.is-passed .stop__card { opacity: 1; transform: none; }
.stop__card--start, .stop__card--end { padding: 1.2rem 1.5rem; border: 1px solid rgba(212, 175, 55, 0.4); background: rgba(255, 255, 255, 0.04); max-width: 720px; }
.stop__card--start p, .stop__card--end p { color: var(--muted-on-dark); font-size: 0.97rem; margin: 0; }
.stop__card--start strong, .stop__card--end strong { color: #fff; }
.stop__badge { display: inline-block; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 0.35rem 0.7rem; margin-bottom: 0.8rem; }
.stop__card--end { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.stop__card--end .stop__badge { background: var(--ink); color: var(--gold); }
.stop__card--end p { color: rgba(39, 41, 50, 0.8); }
.stop__card--end strong { color: var(--ink); }
.stop__card--end .stop__end-title { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--ink) !important; line-height: 1.1; margin-bottom: 0.4rem !important; }
.stop--end { margin-bottom: 0; }
.level__card { position: relative; display: grid; grid-template-columns: clamp(84px, 9vw, 110px) 1fr; background: var(--paper); color: var(--text); box-shadow: 0 30px 60px -36px rgba(0, 0, 0, 0.7); width: min(100%, 980px); }
.level:nth-child(odd) .level__card { margin-left: clamp(0rem, 3vw, 3rem); }
.level__tab { background: var(--gold); color: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.35rem; padding: 1.2rem 0.6rem; text-align: center; }
.level__tab .n { font-family: var(--font-head); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; }
.level__tab .lbl { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }
.level__tab .months { font-size: 0.72rem; letter-spacing: 0.08em; margin-top: 0.4rem; border-top: 1px solid rgba(39, 41, 50, 0.3); padding-top: 0.5rem; }
.level__body { padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1.4rem, 3vw, 2.6rem); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.5rem clamp(1.5rem, 3vw, 3rem); }
.level__title { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 1rem; margin: 0; }
.level__title .name { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.level__title .sub { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.level__result { font-size: 1.02rem; line-height: 1.55; padding-left: 1rem; border-left: 3px solid var(--gold); }
.level__result .lbl { display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.4rem; }
.level__list li { position: relative; padding-left: 1.4rem; font-size: 0.93rem; color: var(--muted); margin-bottom: 0.45rem; line-height: 1.5; }
.level__list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.level__calls { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0.6rem 0.8rem; border-top: 1px solid var(--stone-2); padding-top: 1rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.level__calls svg { width: 16px; height: 16px; color: var(--gold-deep); }
.level__perch { position: absolute; right: clamp(1rem, 3vw, 2.5rem); bottom: 100%; width: clamp(54px, 5vw, 72px); margin: 0; opacity: 0; transform: translateY(6px); transition: opacity 1.2s ease, transform 1.2s ease; pointer-events: none; }
.level.is-active .level__perch { opacity: 1; transform: translateY(0); }

.journey__sub { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: -0.6rem 0 1.2rem; }
.journey__cta { display: flex; flex-wrap: wrap; gap: 1rem 1.2rem; align-items: center; margin-top: var(--sp-5); padding-left: clamp(52px, 7vw, 96px); }
.journey .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.65); }
.journey .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (max-width: 900px) {
  .journey__head { grid-template-columns: 1fr; }
  .level:nth-child(odd) .level__card { margin-left: 0; }
  .journey__cta { padding-left: 0; }
  .stop { margin-bottom: 3.8rem; }
  .level__perch { width: 40px; }
  .level__body { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .level__card { grid-template-columns: 1fr; }
  .level__tab { flex-direction: row; justify-content: flex-start; gap: 0.8rem; padding: 0.8rem 1.2rem; }
  .level__tab .months { border-top: 0; border-left: 1px solid rgba(39, 41, 50, 0.3); padding: 0 0 0 0.8rem; margin: 0; }
}

/* =====================================================================
   FÜR WEN - goldener Rahmen, hängt nach oben in die Über-uns-Sektion
   ===================================================================== */
.fit { padding-top: 0; }
.fit > .wrap { display: flow-root; }
.fit__frame { position: relative; border: 1px solid var(--gold); background: var(--ink); padding: clamp(1.8rem, 4vw, 3.5rem); margin-top: calc(-1 * clamp(3rem, 6vw, 5rem)); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.7); }
.fit__flamingo { position: absolute; right: clamp(2rem, 8vw, 8rem); bottom: 100%; width: clamp(60px, 6.5vw, 92px); margin: 0; }
.fit__head { max-width: 62ch; margin-bottom: var(--sp-5); }
.fit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.fitbox { padding: clamp(1.6rem, 3vw, 2.6rem); }
.fitbox--yes { background: var(--paper); color: var(--text); box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.5); }
.fitbox--yes h3 { color: var(--ink); }
.fitbox--no { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(212, 175, 55, 0.35); color: var(--text-on-dark); }
.fitbox h3 { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.4rem; }
.fitbox--no h3 { color: #fff; }
.fitbox li { display: grid; grid-template-columns: 20px 1fr; gap: 0.9rem; align-items: start; padding: 0.7rem 0; border-top: 1px solid var(--stone-2); font-size: 0.97rem; }
.fitbox--no li { border-color: rgba(255, 255, 255, 0.14); color: var(--muted-on-dark); }
.fitbox--no li strong { color: #fff; }
.fitbox li svg { width: 20px; height: 20px; margin-top: 0.2em; }
.fitbox--yes li svg { color: var(--gold-deep); }
.fitbox--no li svg { color: var(--gold); }
.fit__perch { position: relative; margin-top: 3rem; }
@media (max-width: 800px) {
  .fit__grid { grid-template-columns: 1fr; }
  .fit__perch { margin-top: 0; }
}

/* =====================================================================
   ÜBER UNS - ein Foto mit Gold-Kasten dahinter, ragt in die Journey; Fakten-Zeile, Button
   ===================================================================== */
.about { padding-top: 0; padding-bottom: calc(var(--section-y) + clamp(3rem, 6vw, 5rem)); }
.about__layout { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.about__visual { position: relative; margin: calc(-1 * clamp(4rem, 8vw, 7rem)) 0 0; z-index: var(--z-overlap); }
.about__gold { position: absolute; left: clamp(1.2rem, 3vw, 2.5rem); top: clamp(1.2rem, 3vw, 2.5rem); right: calc(-1 * clamp(1.2rem, 3vw, 2.5rem)); bottom: calc(-1 * clamp(1.2rem, 3vw, 2.5rem)); background: var(--gold); z-index: -1; }
.about__img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; width: 100%; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5); }
.about__text { padding-top: var(--section-y); }
.about__text h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
.about__hi { color: var(--ink) !important; font-family: var(--font-head); font-size: clamp(1.2rem, 1.8vw, 1.5rem); margin-top: -0.6rem; }
.about__text p { color: var(--muted); max-width: 58ch; }
.about__text p strong { color: var(--ink); }
.about__facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 2.2rem 0 2.2rem; border-top: 1px solid rgba(39, 41, 50, 0.15); border-bottom: 1px solid rgba(39, 41, 50, 0.15); }
.about__facts li { padding: 1rem 1rem 1rem 0; margin-right: 1rem; border-right: 1px solid rgba(39, 41, 50, 0.15); min-width: 0; }
.about__facts li:last-child { border-right: 0; margin-right: 0; }
.about__facts .n { display: block; font-family: var(--font-head); font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: var(--gold-deep); line-height: 1; margin-bottom: 0.35rem; }
.about__facts .l { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); line-height: 1.35; }
@media (max-width: 900px) {
  .about__layout { grid-template-columns: 1fr; }
  .about__visual { max-width: 420px; margin-top: calc(-1 * clamp(3rem, 8vw, 6rem)); }
  .about__text { padding-top: var(--sp-5); }
  .about__facts { grid-template-columns: repeat(2, 1fr); }
  .about__facts li:nth-child(2) { border-right: 0; }
}

/* =====================================================================
   STIMMEN - versetzte Karten
   ===================================================================== */
.voices__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.voice { background: var(--stone); padding: clamp(1.5rem, 2.6vw, 2.2rem); display: flex; flex-direction: column; gap: 1.2rem; position: relative; }
.voice--feature { grid-column: span 7; background: var(--ink); color: var(--text-on-dark); display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: start; }
.voice--feature img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.voice--second { grid-column: span 5; margin-top: 3rem; display: grid; grid-template-columns: 1fr; }
.voice--second img { width: 96px; height: 96px; object-fit: cover; object-position: center top; border-radius: 50%; border: 3px solid var(--gold); }
.voice--s { grid-column: span 4; }
.voice--s:nth-child(4) { margin-top: -3rem; }
.voice--s:nth-child(5) { margin-top: 0; }
.voice--s:nth-child(6) { margin-top: -3rem; }
.voice__q { font-family: var(--font-head); font-size: 1.06rem; line-height: 1.5; margin: 0; }
.voice--feature .voice__q { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
.voice__who { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--muted); margin-top: auto; }
.voice--feature .voice__who { color: var(--muted-on-dark); }
.voice__who strong { display: block; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.74rem; color: var(--gold-deep); margin-bottom: 0.2rem; }
.voice--feature .voice__who strong { color: var(--gold); }
.voice__stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.85rem; }
.voice__initial { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold-deep); font-family: var(--font-head); font-size: 1.4rem; display: inline-flex; align-items: center; justify-content: center; }
.pe { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; padding: 1.2rem 1.6rem; border: 1px solid var(--gold); background: var(--paper); color: var(--ink); text-decoration: none; transition: box-shadow 0.25s ease, transform 0.25s ease; }
.pe:hover { box-shadow: 0 20px 40px -28px rgba(0, 0, 0, 0.35); transform: translateY(-2px); }
.pe__score { font-family: var(--font-head); font-size: 2.4rem; line-height: 1; color: var(--gold-deep); display: flex; align-items: baseline; gap: 0.25rem; }
.pe__score small { font-size: 0.9rem; color: var(--muted); }
.pe__body { display: flex; flex-direction: column; gap: 0.2rem; flex: 1 1 260px; }
.pe__stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.95rem; }
.pe__line { font-size: 0.92rem; }
.pe__note { font-size: 0.8rem; color: var(--muted); }
.pe__brand { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--ink); border: 1px solid var(--stone-2); padding: 0.45rem 0.9rem; }
@media (max-width: 900px) {
  .voice--feature, .voice--second, .voice--s { grid-column: span 12; margin-top: 0; }
  .voice--feature { grid-template-columns: 140px 1fr; }
  .voice--s:nth-child(n) { margin-top: 0; }
}
@media (max-width: 560px) {
  .voice--feature { grid-template-columns: 1fr; }
  .voice--feature img { max-width: 200px; }
}

/* =====================================================================
   PODCAST - kompakt, Cover ragt aus dem Kasten
   ===================================================================== */
.podcast { padding-block: var(--sp-6); }
.podcast__box { background: var(--ink); color: var(--text-on-dark); border: 1px solid var(--gold); display: grid; grid-template-columns: 220px 1fr auto; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: 0 40px 70px -40px rgba(0, 0, 0, 0.6); }
.podcast__box img { width: 220px; margin: calc(-1 * clamp(2.5rem, 5vw, 4.5rem)) 0; box-shadow: 14px 14px 0 0 var(--gold), 0 20px 40px -20px rgba(0, 0, 0, 0.6); }
.podcast__label { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.podcast__box h3 { margin-bottom: 0.5rem; color: #fff; }
.podcast__box p { color: var(--muted-on-dark); font-size: 0.97rem; max-width: 52ch; }
.podcast__box .podcast__label { margin-bottom: 0.6rem; }
.podcast__links { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.podcast__alt { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom: 2px; transition: color var(--dur) var(--ease); }
.podcast__alt:hover { color: var(--gold); }
@media (max-width: 900px) {
  .podcast__box { grid-template-columns: 1fr; text-align: center; justify-items: center; padding-top: 0; }
  .podcast__box img { width: 180px; margin: -3rem 0 0; }
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final { text-align: center; overflow: visible; }
.final__box { position: relative; max-width: 860px; margin-inline: auto; border: 1px solid rgba(212, 175, 55, 0.4); padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem); background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)); }
.final__box h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.final__box p { color: var(--muted-on-dark); max-width: 56ch; margin-inline: auto; }
.final__perch { position: absolute; right: clamp(1rem, 4vw, 3rem); bottom: 100%; width: clamp(70px, 7vw, 100px); margin: 0; }
.final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: var(--muted-on-dark); padding: var(--sp-6) 0 var(--sp-4); font-size: 0.9rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer .brand__name { color: #fff; }
.footer .brand__claim { line-height: 1.4; max-width: 34ch; }
.footer h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer li { margin-bottom: 0.5rem; }
.footer a:hover { color: #fff; }
.footer__bottom a { color: var(--gold); }
.footer__claim { max-width: 40ch; margin-top: 1rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: var(--sp-5); padding-top: var(--sp-3); border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; }
.social { display: flex; gap: 0.8rem; }
.social a { width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.2); display: inline-flex; align-items: center; justify-content: center; transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.social a:hover { border-color: var(--gold); color: var(--gold); }
.social svg { width: 18px; height: 18px; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Video-Modal (Nachricht an dich) ---------- */
.btn--play svg { width: 20px; height: 20px; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: var(--gutter); background: rgba(29, 31, 39, 0.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity var(--dur) var(--ease); }
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }
.modal__box { position: relative; width: min(100%, 1040px); background: var(--gold); padding: clamp(0.6rem, 1.2vw, 1rem); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8); transform: translateY(16px); transition: transform 0.35s var(--ease); }
.modal.is-open .modal__box { transform: none; }
.modal__box video { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.modal__label { position: absolute; left: 0; bottom: 100%; margin-bottom: 0.8rem; font-family: var(--font-head); color: #fff; letter-spacing: 0.08em; font-size: 0.95rem; }
.modal__close { position: absolute; right: 0; bottom: 100%; margin-bottom: 0.6rem; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, 0.4); background: transparent; color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.modal__close:hover { background: #fff; color: var(--ink); }
.modal__close svg { width: 20px; height: 20px; }
.modal__perch { position: absolute; right: clamp(4.5rem, 10vw, 8rem); bottom: 100%; width: clamp(56px, 6vw, 80px); margin: 0; pointer-events: none; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ---------- Rechtsseiten ---------- */
.legal { padding-top: calc(var(--section-y) + 3rem); }
.legal__body { max-width: 72ch; }
.legal h1 { font-size: var(--fs-h2); margin-bottom: var(--sp-4); }
.legal h2 { font-size: 1.25rem; margin: 2.2rem 0 0.8rem; }
.legal p, .legal li { color: var(--muted); font-size: 0.97rem; }
.legal p strong { color: var(--ink); }
.legal a { color: var(--gold-deep); border-bottom: 1px solid currentColor; word-break: break-word; }
.legal ul { list-style: disc; padding-left: 1.2rem; }
.legal li { margin-bottom: 0.4rem; }

/* ---------- 404 ---------- */
.notfound__code { font-family: var(--font-head); font-size: clamp(4rem, 12vw, 8rem); line-height: 1; color: var(--gold); margin-bottom: 0.5rem; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: var(--sp-4); }
.legal .notfound__actions a { border-bottom: 0; }
