/* =============================================================
   FLOW TO FREEDOM · JOURNEY OF MONEY
   Design System — Website 2.0
   -------------------------------------------------------------
   Ein ruhiges, hochwertiges Premium-Markenerlebnis.
   Navy · Gold · Creme · Weiss · warme Lichtstimmung.
   Weniger erklaeren. Mehr erleben.
   ============================================================= */

/* -------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------- */
:root {
  /* --- Farbe: Navy (Anker, Tiefe, Vertrauen) --- */
  --navy-900: #08131F;
  --navy-800: #0C1A2C;
  --navy-700: #102338;
  --navy-600: #163049;
  --navy-500: #1F3E5C;
  --navy: var(--navy-800);

  /* --- Farbe: Gold (kostbarer Akzent, sparsam) --- */
  --gold-600: #A67C36;
  --gold-500: #C6A15B;
  --gold-400: #D6B876;
  --gold-300: #E4CE9C;
  --gold: var(--gold-500);

  /* --- Farbe: Creme & Weiss (warme Leinwand) --- */
  --cream-100: #FCFAF4;
  --cream-200: #F7F1E6;
  --cream-300: #F0E8D8;
  --cream: var(--cream-200);
  --white: #FFFFFF;

  /* --- Farbe: Text --- */
  --ink: #16202E;          /* Text auf hellem Grund */
  --ink-soft: #3E4A5A;     /* gedaempfter Text auf hell */
  --ink-faint: #6B7889;    /* Meta / Labels */
  --paper: #E9E2D3;        /* Text auf Navy (warmes Weiss) */
  --paper-soft: #B9C2CE;   /* gedaempfter Text auf Navy */
  --paper-faint: #7E8A9A;

  /* --- Linien & Flaechen --- */
  --line: rgba(22, 32, 46, 0.12);
  --line-strong: rgba(22, 32, 46, 0.22);
  --line-ondark: rgba(233, 226, 211, 0.16);
  --line-ondark-strong: rgba(233, 226, 211, 0.30);

  /* --- Typografie --- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid Type Scale (clamp: min, vw, max) */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(1.95rem, 1.6rem + 1.8vw, 3rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.6vw, 4rem);
  --step-5:  clamp(2.9rem, 2.1rem + 4vw, 5.5rem);
  --step-6:  clamp(3.3rem, 2.2rem + 5.4vw, 7rem);

  /* --- Raum & Rhythmus --- */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: clamp(5rem, 3rem + 9vw, 10rem);

  /* --- Layout --- */
  --container: 1240px;
  --container-narrow: 780px;
  --container-wide: 1440px;
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 3.5rem);
  --radius: 4px;
  --radius-lg: 10px;

  /* --- Bewegung --- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-atmos: cubic-bezier(0.2, 0.68, 0.24, 1); /* ruhiges, langes Ausklingen */
  --dur: 0.6s;

  /* --- Schatten (weich, warm, nie hart) --- */
  --shadow-sm: 0 2px 12px rgba(12, 26, 44, 0.06);
  --shadow-md: 0 18px 50px -20px rgba(12, 26, 44, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(8, 19, 31, 0.55);

  --nav-h: 84px;
}

/* -------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold-300); color: var(--navy-900); }

/* -------------------------------------------------------------
   3. TYPOGRAFIE
   ------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
  text-wrap: balance;
}

.display {
  font-size: var(--step-6);
  line-height: 0.99;
  letter-spacing: -0.03em;
  font-weight: 400;
}
h1, .h1 { font-size: var(--step-5); line-height: 1.02; letter-spacing: -0.025em; }
h2, .h2 { font-size: var(--step-4); line-height: 1.05; }
h3, .h3 { font-size: var(--step-2); line-height: 1.12; }
h4, .h4 { font-size: var(--step-1); line-height: 1.2; }

p { text-wrap: pretty; }
.lead {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}
.lead + .lead, .lead p + p { margin-top: 0.9em; }

strong { font-weight: 600; }
em { font-style: italic; }

/* Eyebrow — kleines Label ueber Headlines (z. B. "LIBERTARA praesentiert") */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center { justify-content: center; }
.eyebrow--plain::before { display: none; }

/* Feiner goldener Text-Akzent im Fliesstext */
.accent { color: var(--gold-600); }

/* -------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section {
  padding-block: var(--space-3xl);
  position: relative;
}
.section--tight { padding-block: var(--space-2xl); }
.section--flush-bottom { padding-bottom: 0; }

/* Zwei-Spalten Editorial-Grid (Text + Medium) */
.split {
  display: grid;
  gap: clamp(2rem, 1rem + 5vw, 6rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: -1; }
  .split--text-lead { grid-template-columns: 1.05fr 0.95fr; }
}
/* Split-Bilder bekommen Tiefe und heben sich ruhig von der Fläche ab */
.split__media .media { box-shadow: var(--shadow-md); }

.stack > * + * { margin-top: var(--space-md); }
.stack-sm > * + * { margin-top: var(--space-sm); }
.stack-lg > * + * { margin-top: var(--space-lg); }

.measure { max-width: 34ch; }
.measure-wide { max-width: 56ch; }

/* Manifest: ruhige, zentrierte Glaubens-Zeile — der Atempause-Beat */
.manifest__line {
  max-width: 20ch;
  margin-inline: auto;
  text-wrap: balance;
}

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center-x { margin-inline: auto; }

/* -------------------------------------------------------------
   5. FARBWELTEN (Section-Themes)
   ------------------------------------------------------------- */
.bg-cream { background: var(--cream); color: var(--ink); }
.bg-cream-100 { background: var(--cream-100); color: var(--ink); }
.bg-white { background: var(--white); color: var(--ink); }

.bg-navy {
  background: var(--navy-800);
  color: var(--paper);
}
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy .lead { color: var(--paper-soft); }
.bg-navy .eyebrow { color: var(--gold-400); }
.bg-navy .accent { color: var(--gold-400); }

/* Tiefer Navy-Verlauf mit warmem Lichtschimmer */
.bg-navy-deep {
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(198, 161, 91, 0.16), transparent 55%),
    linear-gradient(180deg, var(--navy-900), var(--navy-800) 55%, var(--navy-900));
  color: var(--paper);
}
.bg-navy-deep h1, .bg-navy-deep h2, .bg-navy-deep h3, .bg-navy-deep h4 { color: var(--white); }
.bg-navy-deep .lead { color: var(--paper-soft); }
.bg-navy-deep .eyebrow { color: var(--gold-400); }

/* Feine Trennlinien zwischen gleichfarbigen Sektionen */
.divide-top { border-top: 1px solid var(--line); }
.bg-navy .divide-top, .bg-navy-deep .divide-top { border-color: var(--line-ondark); }

/* -------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--navy-900);
  --btn-bd: var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.05em 1.9em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: 50px;
  transition: transform var(--dur) var(--ease-out),
              background-color 0.35s var(--ease),
              color 0.35s var(--ease),
              box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  will-change: transform;
}
.btn__arrow { transition: transform 0.4s var(--ease-out); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(166, 124, 54, 0.6); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

/* Primaer (Gold) — die eine Hauptaktion */
.btn--primary {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--navy-900);
  --btn-bd: var(--gold-500);
}
.btn--primary:hover { --btn-bg: var(--gold-400); }

/* Sekundaer auf hellem Grund (Outline) */
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover {
  --btn-bg: var(--navy-800);
  --btn-fg: var(--white);
  --btn-bd: var(--navy-800);
  box-shadow: var(--shadow-md);
}

/* Sekundaer auf dunklem Grund */
.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  --btn-bd: var(--line-ondark-strong);
  box-shadow: none;
}
.btn--ghost-light:hover {
  --btn-bg: var(--cream-100);
  --btn-fg: var(--navy-900);
  --btn-bd: var(--cream-100);
}

.btn--lg { padding: 1.2em 2.3em; font-size: var(--step-0); }
.btn--block { width: 100%; }

/* Text-Link mit Pfeil (tertiaer) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: var(--gold-600);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), gap 0.35s var(--ease-out);
}
.bg-navy .link-arrow, .bg-navy-deep .link-arrow { color: var(--gold-400); }
.link-arrow:hover { border-color: currentColor; gap: 0.85em; }

/* Button-Gruppe */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}
.actions--center { justify-content: center; }

/* -------------------------------------------------------------
   7. NAVIGATION
   ------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Brand / Logo */
.brand { display: flex; flex-direction: row; align-items: center; gap: 0.7rem; line-height: 1; z-index: 2; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
/* Bildzeichen (Emblem) — wechselt weich zwischen heller und dunkler Fassung,
   passend zum transparenten Hero-Zustand bzw. der hellen gescrollten Nav. */
.brand__mark { position: relative; display: block; height: 2.6rem; flex: none; }
.brand__mark-img { height: 100%; width: auto; display: block; transition: opacity 0.45s var(--ease); }
.brand__mark-img--on-light { position: absolute; top: 0; left: 0; opacity: 0; }
.nav.is-scrolled .brand__mark { height: 2.3rem; }
.nav.is-scrolled .brand__mark-img--on-dark { opacity: 0; }
.nav.is-scrolled .brand__mark-img--on-light { opacity: 1; }
@media (max-width: 600px) { .brand__mark { height: 2.2rem; } }
.brand__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 0.35em;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 0.5rem + 1.6vw, 2.4rem);
}
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--paper);
  position: relative;
  padding-block: 0.4em;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--white); }

.nav__cta { display: flex; align-items: center; gap: var(--space-sm); }
.nav__cta .btn { padding: 0.75em 1.4em; }

/* Zustand nach Scroll — feste Creme-Leiste */
.nav.is-scrolled {
  height: 66px;
  background: rgba(252, 250, 244, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(12, 26, 44, 0.5);
}
.brand__name, .brand__eyebrow { transition: color 0.4s var(--ease), font-size 0.5s var(--ease-atmos); }
.nav.is-scrolled .brand__name { color: var(--navy-900); font-size: 1.16rem; }
.nav.is-scrolled .brand__eyebrow { color: var(--gold-600); font-size: 0.56rem; }
.nav.is-scrolled .nav__link { color: var(--ink-soft); }
.nav.is-scrolled .nav__cta .btn { padding: 0.62em 1.25em; }
.nav.is-scrolled .nav__link:hover,
.nav.is-scrolled .nav__link[aria-current="page"] { color: var(--navy-900); }

/* Burger */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  position: relative;
  z-index: 2;
}
.nav__toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background-color 0.4s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 18px; }
.nav__toggle span:nth-child(2) { top: 24px; }
.nav__toggle span:nth-child(3) { top: 30px; }
.nav.is-scrolled .nav__toggle span { background: var(--navy-900); }
.is-menu-open .nav__toggle span { background: var(--white); }
.is-menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.is-menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.is-menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .nav__menu, .nav__cta--desktop { display: none; }
  .nav__drawer {
    position: fixed;
    inset: 0;
    background: var(--navy-900);
    padding: calc(var(--nav-h) + 2rem) var(--gutter) 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 1;
    overflow-y: auto;
  }
  .is-menu-open .nav__drawer { transform: translateX(0); }
  .nav__drawer .nav__link {
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 2rem;
    padding-block: 0.55rem;
    border-bottom: 1px solid var(--line-ondark);
  }
  .nav__drawer .nav__link::after { display: none; }
  .nav__drawer .btn { margin-top: 1.5rem; }
}
@media (min-width: 941px) {
  .nav__drawer { display: contents; }
  /* Der Drawer-Button ist nur für das mobile Menü — auf Desktop
     übernimmt .nav__cta--desktop, sonst erschiene er doppelt. */
  .nav__drawer > .btn { display: none; }
}

/* -------------------------------------------------------------
   8. MEDIA-PLATZHALTER
   -------------------------------------------------------------
   Seiten binden nie Dateinamen ein, sondern Medien-IDs.
   Der Platzhalter wirkt bewusst gestaltet, bis echtes
   Bild-/Videomaterial zugewiesen wird.
   ------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: var(--ratio, 4 / 3);
  background:
    radial-gradient(90% 70% at 30% 20%, rgba(198, 161, 91, 0.22), transparent 60%),
    radial-gradient(80% 90% at 90% 90%, rgba(31, 62, 92, 0.55), transparent 55%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  color: var(--paper-soft);
  isolation: isolate;
}
.media:not(:has(img)):not(:has(video))::after {
  /* feine Koernung / Lichtschleier — nur am Platzhalter */
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 5px);
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.media__label {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-soft);
  background: rgba(8, 19, 31, 0.4);
  border: 1px solid var(--line-ondark);
  padding: 0.5em 0.85em;
  border-radius: 40px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.media__label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.22);
}
/* Echte Bilder füllen die Media-Fläche (Content-Bilder, Karten, Splits) */
.media > picture { position: absolute; inset: 0; z-index: 1; display: block; }
.media > picture > img,
.media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--img-focus, 50% 50%);
  z-index: 1;
}
.media:has(img) .media__label,
.media:has(img) .media__glyph { display: none; }

/* Zentrales Motiv-Symbol (Kompass / Licht) */
.media__glyph {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(48px, 12%, 92px);
  height: clamp(48px, 12%, 92px);
  opacity: 0.5;
  z-index: 1;
}
.media__glyph svg { width: 100%; height: 100%; }
/* Video-Platzhalter erhaelt einen Play-Ring */
.media--video .media__glyph {
  width: clamp(64px, 9%, 104px);
  height: clamp(64px, 9%, 104px);
  opacity: 0.92;
}
.media--tall { --ratio: 3 / 4; }
.media--wide { --ratio: 16 / 9; }
.media--cinema { --ratio: 21 / 9; }
.media--square { --ratio: 1 / 1; }

/* Play-Button (echtes Interaktions-Feeling fuer Film-Sektionen) */
.play {
  position: absolute;
  inset: 0; margin: auto;
  width: 92px; height: 92px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(252, 250, 244, 0.12);
  border: 1px solid rgba(252, 250, 244, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 3;
  transition: transform 0.5s var(--ease-out), background-color 0.4s var(--ease);
}
.play::before {
  content: "";
  width: 0; height: 0;
  margin-left: 5px;
  border-left: 18px solid var(--white);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.play::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(252, 250, 244, 0.4);
  animation: pulse-ring 3s var(--ease) infinite;
}
a:hover > .play, .media:hover .play { transform: scale(1.08); background: rgba(198, 161, 91, 0.9); }
.media:hover .play::before { border-left-color: var(--navy-900); }
/* Größerer Play-Ring auf großen Cinemascope-Flächen (Film) */
.media--cinema .play { width: 116px; height: 116px; }
.media--cinema .play::before {
  margin-left: 6px;
  border-left: 22px solid var(--white);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
@media (max-width: 640px) {
  .media--cinema .play { width: 84px; height: 84px; }
  .media--cinema .play::before { border-left-width: 17px; border-top-width: 10px; border-bottom-width: 10px; }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .play::after { animation: none; }
}

/* Bildunterschrift */
.media-caption {
  margin-top: var(--space-sm);
  font-size: var(--step--1);
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}
.bg-navy .media-caption, .bg-navy-deep .media-caption { color: var(--paper-faint); }

/* -------------------------------------------------------------
   9. KARTEN & BAUSTEINE
   ------------------------------------------------------------- */
/* Nutzen-Chips (Hero: Erleben statt zuhoeren ...) */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}
.benefit {
  display: inline-flex;
  align-items: baseline;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: var(--paper);
}
.benefit::before { content: none; }
.benefit__key { font-weight: 700; }
.benefit__key::after {
  content: "\00B7";
  margin-inline: 0.5em;
  color: var(--gold-400);
  font-weight: 400;
}
.benefit__alt { opacity: 0.6; }
.bg-cream .benefit, .bg-white .benefit { color: var(--ink-soft); }

/* Zielgruppen- / Einstiegs-Karten */
.pathways {
  display: grid;
  gap: clamp(1.25rem, 0.5rem + 2vw, 2rem);
}
@media (min-width: 760px) {
  .pathways { grid-template-columns: repeat(3, 1fr); }
}
.pathway {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.pathway:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pathway .media { border-radius: 0; aspect-ratio: 4 / 3; }
.pathway__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}
.pathway__title { font-size: var(--step-2); }
.pathway__text { color: var(--ink-soft); font-size: var(--step-0); flex: 1; }
.pathway__body .link-arrow { margin-top: var(--space-xs); }

/* Moment-/Etappen-Liste (Experience: vier Momente) */
.moments {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-ondark);
  counter-reset: moment;
}
.moment {
  display: grid;
  gap: var(--space-md);
  padding-block: clamp(2rem, 1rem + 3vw, 3.2rem);
  border-bottom: 1px solid var(--line-ondark);
  align-items: baseline;
}
@media (min-width: 760px) {
  .moment { grid-template-columns: auto 1fr; column-gap: clamp(2rem, 5vw, 5rem); }
}
.moment__num {
  counter-increment: moment;
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--gold-400);
  line-height: 1;
}
.moment__num::before { content: counter(moment, decimal-leading-zero); }
.moment__title { font-size: var(--step-2); margin-bottom: 0.4em; }
.moment__text { color: var(--paper-soft); max-width: 48ch; }
.bg-cream .moments, .bg-white .moments { border-color: var(--line); }
.bg-cream .moment, .bg-white .moment { border-color: var(--line); }
.bg-cream .moment__text, .bg-white .moment__text { color: var(--ink-soft); }
.bg-cream .moment__num, .bg-white .moment__num { color: var(--gold-600); }

/* Ablauf-Schritte (Business: Verstehen/Gestalten/Erleben/Reflektieren) */
.steps {
  display: grid;
  gap: clamp(1.5rem, 0.5rem + 2vw, 2.5rem);
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .steps--4 { grid-template-columns: repeat(4, 1fr); }
}
.step { position: relative; padding-top: var(--space-md); border-top: 2px solid var(--gold-500); }
.step__index { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.2em; color: var(--gold-600); text-transform: uppercase; }
.bg-navy .step__index, .bg-navy-deep .step__index { color: var(--gold-400); }
.step__title { font-size: var(--step-1); margin-block: 0.4em 0.3em; }
.step__text { color: var(--ink-soft); font-size: var(--step-0); }
.bg-navy .step__text, .bg-navy-deep .step__text { color: var(--paper-soft); }

/* Zitat / Stimme */
.quote {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.bg-navy .quote, .bg-navy-deep .quote { color: var(--white); }
/* Hängendes Anführungszeichen — der Satz beginnt bündig */
.quote::before {
  content: "\201C";
  position: absolute;
  right: 100%;
  top: -0.08em;
  margin-right: 0.12em;
  font-size: 1.6em;
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.85;
}
.quote.center::before { position: static; margin: 0; font-size: 1em; }
@media (max-width: 620px) { .quote::before { position: static; margin: 0; font-size: 1em; } }
.quote-cite { display: block; margin-top: var(--space-sm); font-family: var(--font-body); font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.bg-navy .quote-cite, .bg-navy-deep .quote-cite { color: var(--paper-faint); }

.quotes {
  display: grid;
  gap: clamp(1.5rem, 0.5rem + 2vw, 2.5rem);
}
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.quote-card p {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.4;
  color: var(--ink);
}
.quote-card p::before { content: "\201C"; color: var(--gold-500); }
.quote-card p::after { content: "\201D"; color: var(--gold-500); }

/* Marker (grosse Zahl fuer Reise-Etappen) */
.marker {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 500;
}
.bg-navy .marker, .bg-navy-deep .marker { color: var(--gold-400); }

/* Emotion-Tag (Flow to Freedom Etappen) */
.emotion {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.emotion::before { content: "Emotion"; opacity: 0.6; margin-right: 0.2em; }
.emotion strong { color: var(--gold-400); font-weight: 600; letter-spacing: 0.16em; }

/* Reise-Etappe (Flow to Freedom Bildband) */
.stage { align-items: center; }
.stage .split__media .media { box-shadow: var(--shadow-lg); }
.stage__body { max-width: 42ch; }
.stage__title { font-size: var(--step-3); margin-block: var(--space-sm) var(--space-md); }
.stage__text { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.55; }
.bg-navy .stage__text, .bg-navy-deep .stage__text { color: var(--paper-soft); }

/* Dramaturgie-Sequenz (Live: Ankommen -> ... -> Klarheit) */
.pathflow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) 0;
}
.pathflow__node {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--white);
  padding: 0.2em 0;
}
.pathflow__sep {
  color: var(--gold-400);
  margin-inline: clamp(0.75rem, 2vw, 1.6rem);
  font-size: var(--step-0);
}
.pathflow__node:last-child { color: var(--gold-400); }

/* Termine-Platzhalter (Live) */
.event-empty {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  text-align: center;
  background: var(--white);
}
.event-empty__mark {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: var(--space-md);
}
.event-empty p { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }
.event-empty .actions { margin-top: var(--space-lg); }

/* -------------------------------------------------------------
   10. HERO
   ------------------------------------------------------------- */
.hero {
  /* Fokuspunkt des Bildes — fein justierbar, ohne das Bild zu verändern.
     Bildkomposition: Personengruppe zentral, warmes Fensterlicht in der Mitte,
     Negativraum links auf der Navy-Wand für die Headline. */
  --hero-focus: 52% 44%;
  position: relative;
  min-height: 100vh;      /* füllt den gesamten ersten Bildschirm */
  min-height: 100svh;     /* stabil ohne Sprung durch mobile Adressleiste */
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  isolation: isolate;
}

/* Die Bühne: das Bild bildet den gesamten Hintergrund */
.hero__bg { position: absolute; inset: -6% 0; z-index: -2; will-change: transform; }

/* Finales Hero-Bild */
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus);
  transform-origin: var(--hero-focus);
  /* Kein Fade des Bildes (verhindert Flash beim Hero-Reveal nach dem Overlay);
     nur der sehr langsame Ken-Burns-Zoom. */
  animation: hero-zoom 26s var(--ease) infinite alternate;
}

/* Ken Burns: extrem langsam, maximal 2 % — fast nicht wahrnehmbar */
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.02); }
}

/* Fallback-Bühne, bis das echte Bild als WebP vorliegt */
.hero__placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto;
  transform-origin: 55% 42%;
  animation: hero-zoom 26s var(--ease) infinite alternate;
}
/* Sicherheitsnetz: jedes Hero-Medium füllt die Bühne, unabhängig vom Format */
.hero__bg .media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 0; aspect-ratio: auto;
}
.hero__bg .media__label { left: auto; right: 1.2rem; bottom: 1.2rem; }

@media (prefers-reduced-motion: reduce) {
  .hero__img, .hero__placeholder { animation: none; }
  .hero__img { opacity: 1; }
}

/* Overlay: sehr weich, links etwas stärker, rechts nahezu transparent.
   Kein dunkler Verlauf über das ganze Bild — die warme Lichtstimmung bleibt. */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* Nav-Lesbarkeit oben */
    linear-gradient(180deg, rgba(8,19,31,0.40) 0%, rgba(8,19,31,0.12) 8%, transparent 18%),
    /* radialer Fokus zur Headline (links, leicht unter Mitte) */
    radial-gradient(82% 102% at 12% 54%, rgba(6,12,22,0.60), transparent 56%),
    /* sanfter Bodenverlauf — gibt der Szene Körper */
    linear-gradient(180deg, transparent 55%, rgba(6,12,22,0.32) 100%),
    /* getragener Links-Verlauf für helle Bilder — rechts bleibt warm und offen */
    linear-gradient(90deg,
      rgba(8,19,31,0.74) 0%,
      rgba(8,19,31,0.46) 24%,
      rgba(8,19,31,0.16) 48%,
      transparent 70%);
}

.hero__inner { padding-block: clamp(3rem, 8vh, 7rem); max-width: 34rem; }
.hero .eyebrow { color: var(--gold-400); margin-bottom: var(--space-md); }
.hero__product {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--paper);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}
.hero__title {
  /* Beherrschte Displaygröße statt Maximum — engere Laufweite,
     kontrollierter, balancierter Umbruch: eine bewusste Skulptur. */
  font-size: clamp(2.55rem, 1.75rem + 3.5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  text-wrap: balance;
  max-width: 15ch;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 34px rgba(4, 10, 18, 0.38);
}
.hero__sub {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--paper-soft);
  max-width: 40ch;
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 22px rgba(4, 10, 18, 0.34);
}
/* Nutzen als ruhige Meta-Zeile mit feinen Haarlinien-Trennern */
.hero .benefits {
  margin-bottom: var(--space-lg);
  gap: 0;
  row-gap: 0.55rem;
}
.hero .benefit {
  color: var(--paper-soft);
  font-size: var(--step--1);
  letter-spacing: 0.015em;
  gap: 1em;
  padding-right: 1em;
}
.hero .benefit::before {
  width: 1px;
  height: 0.95em;
  border-radius: 0;
  background: rgba(233, 226, 211, 0.30);
}
.hero .benefit:first-child { padding-left: 0; }
.hero .benefit:first-child::before { display: none; }
.hero .actions { margin-top: var(--space-lg); }

/* Ladeanimation: Fade + leichtes Hochgleiten (Headline → Sub → CTA).
   Startet NUR, wenn die Opening Experience nicht mehr aussteht (kein oe-armed).
   → Der Hero-Reveal beginnt exakt im Zustand HERO_ACTIVE. */
@media (prefers-reduced-motion: no-preference) {
  html:not(.oe-armed) .hero__inner > * { opacity: 0; animation: hero-in 0.75s var(--ease-out) both; }
  .hero__inner > .eyebrow    { animation-delay: 0.15s; }
  .hero__inner > .hero__product { animation-delay: 0.28s; }
  .hero__inner > .hero__title   { animation-delay: 0.42s; }
  .hero__inner > .hero__sub     { animation-delay: 0.62s; }
  .hero__inner > .benefits      { animation-delay: 0.76s; }
  .hero__inner > .actions       { animation-delay: 0.90s; }
  html:not(.oe-armed) .hero .scroll-cue { opacity: 0; animation: hero-in 0.9s var(--ease-out) 1.25s both; }
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* Solange die Opening Experience aussteht (oder auf den Cookie-Entscheid
   gewartet wird): Hero absolut ruhig halten — keine Reveal-Animation,
   Text/CTA verborgen, Bild statisch. Kein Aufflackern. */
html.oe-armed .hero__img { animation: none; }
html.oe-armed .hero__inner > * { opacity: 0; }
html.oe-armed .hero .scroll-cue { opacity: 0; }

/* Sofortiger Navy-Vorhang ab dem ersten Paint. Verhindert, dass die
   Startseite (Hero + Navigation) aufblitzt, bevor Cookie-Banner und
   Opening erscheinen. Liegt unter Cookie-Banner (10050) und Opening
   (1000), aber über allen Seiteninhalten. Blendet beim Freigeben des
   Hero sanft aus — weicher Übergang in die Startseite. */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background:
    radial-gradient(78% 58% at 50% 14%, rgba(198, 161, 91, 0.16), transparent 60%),
    radial-gradient(130% 110% at 50% 46%, var(--navy-800), var(--navy-900) 72%);
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
}
html.oe-armed::before {
  opacity: 1;
  visibility: visible;
  transition: opacity 0s, visibility 0s;
}

/* Hero-CTA: ruhig — nur leicht heller, keine Sprünge */
.hero .btn:hover { transform: none; box-shadow: none; }
.hero .btn:hover::after { animation: none; }
.hero .btn--primary:hover { background: var(--gold-400); }
.hero .btn--ghost-light { border-color: rgba(233, 226, 211, 0.55); }
.hero .btn--ghost-light:hover {
  background: rgba(252, 250, 244, 0.10);
  border-color: rgba(252, 250, 244, 0.72);
  color: var(--white);
}

/* Scroll-Hinweis */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7em;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--paper-faint);
  z-index: 2;
}
.scroll-cue__line { width: 1px; height: 42px; background: linear-gradient(var(--gold-400), transparent); position: relative; overflow: hidden; }
.scroll-cue__line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold-300);
  animation: scroll-drop 2.4s var(--ease) infinite;
}
@keyframes scroll-drop { 0% { top: -50%; } 60%, 100% { top: 100%; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue__line::after { animation: none; } }

/* Kleiner Hero (Unterseiten) */
.hero--page { min-height: min(78svh, 720px); }
.hero--compact { min-height: auto; padding-block: calc(var(--nav-h) + 4rem) 4rem; }

/* -------------------------------------------------------------
   11. INTERAKTIVE ENTSCHEIDUNG (Homepage: Erste Entscheidung)
   ------------------------------------------------------------- */
.decision { max-width: 780px; margin-inline: auto; }
.decision__prompt {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--paper-soft);
  margin-bottom: var(--space-lg);
}
.decision__options {
  display: grid;
  gap: clamp(0.7rem, 0.4rem + 0.8vw, 1rem);
  margin-bottom: var(--space-lg);
}

/* Große Antwortkarte — ein ruhiges, hochwertiges Wahl-Erlebnis */
.option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 0.6rem + 1.6vw, 1.75rem);
  width: 100%;
  text-align: left;
  padding: clamp(1.15rem, 0.9rem + 1vw, 1.7rem) clamp(1.3rem, 1rem + 1.4vw, 2rem);
  border-radius: var(--radius-lg);
  background: rgba(252, 250, 244, 0.035);
  border: 1px solid var(--line-ondark);
  color: var(--paper);
  font-size: var(--step-0);
  line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.55s var(--ease-atmos),
    border-color 0.4s var(--ease),
    background-color 0.4s var(--ease),
    opacity 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
}

/* Serifer Index als Gestaltungselement statt kleiner Kreis */
.option__key {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1;
  color: var(--gold-400);
  width: 1.2em;
  text-align: center;
  transition: color 0.4s var(--ease), transform 0.55s var(--ease-atmos);
}
.option__text { color: var(--paper); }

/* Ruhiger Marker — „deine Wahl", keine Bewertung */
.option__mark {
  position: relative;
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-ondark-strong);
  transition: border-color 0.4s var(--ease);
}
.option__mark::after {
  content: "";
  position: absolute; inset: 5px;
  border-radius: 50%;
  background: var(--gold-500);
  transform: scale(0);
  transition: transform 0.5s var(--ease-out);
}

.option:hover {
  transform: translateY(-3px);
  border-color: var(--gold-500);
  background: rgba(252, 250, 244, 0.06);
  box-shadow: 0 22px 46px -30px rgba(0, 0, 0, 0.75);
}
.option:hover .option__key { color: var(--gold-300); transform: translateX(2px); }

.option.is-selected {
  border-color: var(--gold-400);
  background: rgba(198, 161, 91, 0.12);
  box-shadow: 0 0 0 1px rgba(198, 161, 91, 0.32), 0 26px 55px -32px rgba(198, 161, 91, 0.45);
}
.option.is-selected .option__key { color: var(--gold-300); }
.option.is-selected .option__mark { border-color: var(--gold-400); }
.option.is-selected .option__mark::after { transform: scale(1); }

/* Nach der Wahl treten die anderen Karten ruhig zurück */
.decision__options:has(.is-selected) .option:not(.is-selected) {
  opacity: 0.4;
  transform: scale(0.985);
}
.decision__options:has(.is-selected) .option:not(.is-selected):hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .option, .option__key, .option__mark::after { transition: opacity 0.3s, border-color 0.3s, background-color 0.3s; }
  .option:hover { transform: none; }
}

/* Reflexion (nach Auswahl sanft eingeblendet) */
.reflection {
  margin-top: var(--space-md);
  padding: var(--space-lg);
  border-left: 2px solid var(--gold-500);
  background: rgba(252, 250, 244, 0.04);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.7s var(--ease), max-height 0.7s var(--ease), margin 0.7s var(--ease), padding 0.7s var(--ease);
}
.reflection.is-visible { opacity: 1; max-height: 420px; }
.reflection p { font-size: var(--step-1); line-height: 1.5; color: var(--paper); }
.reflection p + p { margin-top: var(--space-sm); color: var(--paper-soft); }
.reflection .actions { margin-top: var(--space-md); }

/* -------------------------------------------------------------
   12. FORMULAR (Kontakt)
   ------------------------------------------------------------- */
.form { display: grid; gap: var(--space-md); }
.field { display: flex; flex-direction: column; gap: 0.5em; }
.field label { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  padding: 0.95em 1.1em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: var(--step-0);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18);
}
.field-row { display: grid; gap: var(--space-md); }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* Auswahl-Chips (Teilnehmer / Schule / Unternehmen) */
.choices { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.choice {
  position: relative;
  flex: 1 1 160px;
  padding: 1.1em 1.3em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
  font-weight: 600;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice:has(input:checked) { border-color: var(--gold-500); background: rgba(198, 161, 91, 0.1); color: var(--gold-600); }
.choice:hover { border-color: var(--line-strong); background: var(--cream-100); }

/* -------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: var(--paper-soft);
  padding-block: var(--space-2xl) var(--space-lg);
}
.footer__top {
  display: grid;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--line-ondark);
}
@media (min-width: 820px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__brand .brand__name { color: var(--white); font-size: 1.6rem; }
.footer__tagline { margin-top: var(--space-md); max-width: 32ch; color: var(--paper-soft); }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-md);
  font-weight: 600;
}
.footer__col ul { display: grid; gap: 0.7em; }
.footer__col a { color: var(--paper-soft); transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  font-size: var(--step--1);
  color: var(--paper-faint);
}
.footer__bottom a { color: var(--paper-faint); }
.footer__bottom a:hover { color: var(--paper); }
.footer__legal { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* -------------------------------------------------------------
   14. SCROLL-REVEAL
   -------------------------------------------------------------
   Bewegung, die wie Atmen wirkt: wenig Weg, viel Zeit, weiches
   Ausklingen. Nichts springt ins Bild — alles kommt zur Ruhe.
   ------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 1.1s var(--ease-atmos),
    transform 1.1s var(--ease-atmos),
    filter 1.1s var(--ease-atmos);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; filter: none; }

/* Headlines lösen sich aus leichter Unschärfe in Klarheit
   — die Markenreise von Unsicherheit zu Klarheit als Bewegung. */
h1[data-reveal], h2[data-reveal], .display[data-reveal], .hero__title[data-reveal] {
  filter: blur(7px);
  transform: translateY(14px);
  transition:
    opacity 1.3s var(--ease-atmos),
    transform 1.3s var(--ease-atmos),
    filter 1.3s var(--ease-atmos);
}
/* Auflösung: muss die Blur-Regel oben sicher überschreiben.
   Gleiche Spezifität + spätere Position genügt nicht für .display/.hero__title
   (sie binden zwei Klassen/Attribute) — deshalb .is-in explizit ergänzen. */
h1[data-reveal].is-in, h2[data-reveal].is-in,
.display[data-reveal].is-in, .hero__title[data-reveal].is-in {
  filter: none;
  transform: none;
}

/* Bilder setzen sich mit einem sehr ruhigen Zoom */
[data-reveal] .media { transform: scale(1.045); transition: transform 1.5s var(--ease-atmos); }
[data-reveal].is-in .media { transform: none; }

/* Gestaffelte Tiefe (manuell oder per JS über --i) */
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.09s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.18s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.27s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.36s; }
[data-reveal][style*="--i"] { transition-delay: calc(var(--i) * 0.085s); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  h1[data-reveal], h2[data-reveal], .display[data-reveal], .hero__title[data-reveal],
  [data-reveal] .media {
    opacity: 1; transform: none; filter: none; transition: none;
  }
}
/* Ohne JavaScript nichts verbergen — Inhalt geht immer vor. */
@media (scripting: none) {
  [data-reveal],
  h1[data-reveal], h2[data-reveal], .display[data-reveal], .hero__title[data-reveal],
  [data-reveal] .media {
    opacity: 1 !important; transform: none !important; filter: none !important;
  }
}

/* -------------------------------------------------------------
   15. UTILITIES
   ------------------------------------------------------------- */
.u-hidden { display: none !important; }
.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.75em 1.25em;
  border-radius: var(--radius);
  z-index: 200;
  font-weight: 600;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 1rem; }

.rule { height: 1px; background: var(--line); border: 0; }
.bg-navy .rule, .bg-navy-deep .rule { background: var(--line-ondark); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.maxw-narrow { max-width: var(--container-narrow); }

/* =============================================================
   16. PHASE 3 — EXPERIENCE & ATMOSPHÄRE
   -------------------------------------------------------------
   Kein zusätzlicher Effekt. Nur Licht, Ruhe und Tiefe.
   Die Seite soll sich lebendig anfühlen, nicht animiert.
   ============================================================= */

/* --- 16.1 · Weiche Seitenwechsel (View Transitions) --------- */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: vt-fade-out 0.42s var(--ease) both;
}
::view-transition-new(root) {
  animation: vt-fade-in 0.55s var(--ease-atmos) both;
}
@keyframes vt-fade-out { to { opacity: 0; } }
@keyframes vt-fade-in { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* --- 16.2 · Filmkörnung: warme, ruhige Lichtstimmung -------- */
/* Sehr feine, statische Textur über der gesamten Seite.
   Nicht sichtbar als Muster — spürbar als Materialität. */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }

/* --- 16.3 · Vignette & Tiefe auf dunklen Flächen ------------ */
.bg-navy, .bg-navy-deep { position: relative; }
.bg-navy::after, .bg-navy-deep::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 100% at 50% 50%, transparent 58%, rgba(4, 10, 18, 0.45) 100%);
  z-index: 0;
}
.bg-navy > *, .bg-navy-deep > * { position: relative; z-index: 1; }

/* --- 16.4 · Atmender Media-Glow ----------------------------- */
/* Das warme Licht in den Platzhaltern bewegt sich kaum merklich,
   wie Licht, das durch einen Raum wandert. */
.media:not(:has(img)):not(:has(video))::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background: radial-gradient(42% 42% at 32% 24%, rgba(214, 184, 118, 0.28), transparent 62%);
  animation: media-drift 18s ease-in-out infinite alternate;
}
.media__glyph, .media__label, .play { position: absolute; z-index: 2; }
@keyframes media-drift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  to   { transform: translate3d(6%, 5%, 0) scale(1.08); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .media::before { animation: none; }
}
/* Sanftes Aufleuchten beim Überfahren von Bildkarten */
.pathway .media::before { transition: opacity 0.6s var(--ease); }
.pathway:hover .media::before { opacity: 1; }

/* --- 16.5 · Navigation: ruhiges Ein- und Ausblenden --------- */
.nav {
  transition:
    height 0.5s var(--ease-atmos),
    background-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.nav__cta .btn { transition: padding 0.5s var(--ease-atmos), transform var(--dur) var(--ease-out), background-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }

/* --- 16.6 · Button-Feedback: präziser, ruhiger Druck -------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  /* weicher Lichtstrich, der beim Hover einmal durchzieht */
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: none;
}
.btn:hover::after {
  animation: btn-sheen 0.9s var(--ease-atmos);
}
@keyframes btn-sheen {
  0% { left: -60%; opacity: 0; }
  20% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
.btn:active { transform: translateY(0) scale(0.985); transition-duration: 0.12s; }
@media (prefers-reduced-motion: reduce) {
  .btn:hover::after { animation: none; }
}

/* --- 16.7 · Sektionsübergänge: warme Lichtnaht -------------- */
/* Dünne, kaum sichtbare Goldnaht dort, wo Ruhe auf Tiefe trifft. */
.bg-navy-deep + .bg-cream::before,
.bg-navy + .bg-cream::before,
.bg-cream + .bg-navy-deep::before,
.bg-cream + .bg-navy::before,
.bg-white + .bg-navy-deep::before,
.bg-white + .bg-navy::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(92%, var(--container));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,0.35), transparent);
  z-index: 2;
  pointer-events: none;
}

/* --- 16.8 · Feiner Rhythmus im Hero-Inhalt ------------------ */
.hero__inner > * { position: relative; }

/* --- 16.9 · Responsive Ruhe --------------------------------- */
@media (max-width: 640px) {
  /* Mobile: Bild wird zentral gecroppt — die Personengruppe bleibt sichtbar.
     Headline sitzt unten über dem Vordergrund, klar lesbar, keine zentrierte Optik. */
  .hero {
    min-height: 100svh;
    --hero-focus: 50% 42%;
    align-items: flex-end;
  }
  .hero__inner { max-width: 100%; padding-block: 0 clamp(4.5rem, 16vh, 8rem); }
  .hero__sub { font-size: var(--step-0); }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(8,19,31,0.48) 0%, transparent 17%),
      linear-gradient(180deg, transparent 24%, rgba(6,12,22,0.44) 54%, rgba(6,12,22,0.90) 100%);
  }
  /* Auf kleinen Geräten noch ruhigere Bewegung */
  .hero__img { animation-duration: 40s; }
  .hero__placeholder { animation-duration: 40s; }
  [data-reveal] { transform: translateY(12px); }
  h1[data-reveal], h2[data-reveal], .display[data-reveal] { filter: blur(5px); }
}
@media (hover: none) {
  /* Touch: keinen Sheen laufen lassen, ruhiger Druck genügt */
  .btn:hover::after { animation: none; }
}

/* =============================================================
   17. OPENING EXPERIENCE — First Decision
   -------------------------------------------------------------
   Kein Pop-up. Die erste kleine Game-of-Money-Entscheidung.
   Erscheint nur beim ersten Besuch (localStorage), ruhig und
   hochwertig, fährt danach weich aus und gibt den Hero frei.
   ============================================================= */
.opening-active { overflow: hidden; }
.opening-active body { overflow: hidden; }

.opening-experience {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  color: var(--paper);
  overflow-y: auto;
  background:
    radial-gradient(78% 58% at 50% 14%, rgba(198, 161, 91, 0.16), transparent 60%),
    radial-gradient(130% 110% at 50% 46%, var(--navy-800), var(--navy-900) 72%);
}
/* Feine Lichtnaht oben — warme Stimmung */
.opening-experience::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 161, 91, 0.4), transparent);
}
.opening-active .opening-experience {
  display: grid;
  place-items: center;
  animation: oe-fade-in 0.9s var(--ease-atmos) both;
}
.opening-experience.is-leaving { animation: oe-fade-out 0.7s var(--ease) forwards; }
@keyframes oe-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes oe-fade-out { from { opacity: 1; } to { opacity: 0; visibility: hidden; } }

.opening-experience__inner {
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 1rem + 2vw, 2.75rem);
}

/* Marken-Lockup */
.opening-experience__brand {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--white);
  line-height: 1.1;
}
.opening-experience__brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.7em;
}

/* --- Phase 1: Intro (Erzählbrücke vom Cookie-Entscheid) --- */
.opening-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 0.4rem + 0.6vw, 1.05rem);
  max-width: 42ch;
  margin-inline: auto;
}
.opening-experience.is-question .opening-intro { display: none; }
.opening-intro__lead {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.1;
  color: var(--white);
}
.opening-intro__line { font-size: var(--step-1); line-height: 1.5; color: var(--paper-soft); }
.opening-intro__line--accent { color: var(--gold-400); }
.opening-continue {
  margin-top: var(--space-lg);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--step-0);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-300);
  padding: 1em 2.1em;
  border: 1px solid var(--gold-500);
  border-radius: 50px;
  transition:
    gap 0.4s var(--ease-out),
    background-color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}
.opening-continue:hover {
  gap: 0.85em;
  background: rgba(198, 161, 91, 0.12);
  border-color: var(--gold-400);
  color: var(--white);
}

/* --- Phasen-Sichtbarkeit --- */
.opening-experience:not(.is-question) .opening-experience__stage,
.opening-experience:not(.is-question) .opening-reflection { display: none; }

.opening-experience__stage { width: 100%; display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
.opening-experience__eyebrow {
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: var(--gold-400);
}
.opening-experience__question {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
  overflow-wrap: break-word;
  max-width: 20ch;
  margin: 0 auto var(--space-sm);
}

/* Antwortkarten — cremefarben, groß, touch-freundlich */
.opening-cards { display: grid; gap: 0.75rem; width: 100%; }
.opening-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  text-align: left;
  padding: clamp(1.05rem, 0.9rem + 0.7vw, 1.4rem) clamp(1.3rem, 1rem + 1vw, 1.75rem);
  border-radius: var(--radius-lg);
  background: var(--cream-100);
  border: 1px solid rgba(198, 161, 91, 0.14);
  color: var(--ink);
  font-size: var(--step-0);
  line-height: 1.35;
  box-shadow: 0 12px 32px -24px rgba(0, 0, 0, 0.7);
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.5s var(--ease-atmos),
    box-shadow 0.5s var(--ease),
    border-color 0.4s var(--ease),
    background-color 0.4s var(--ease),
    opacity 0.5s var(--ease);
}
.opening-card__mark {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  transition: border-color 0.4s var(--ease);
}
.opening-card__mark::after {
  content: "";
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  transform: scale(0);
  transition: transform 0.45s var(--ease-out);
}
.opening-card:hover { transform: translateY(-3px); border-color: var(--gold-400); box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.7); }
.opening-card.is-selected {
  background: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-400), 0 26px 55px -30px rgba(198, 161, 91, 0.5);
}
.opening-card.is-selected .opening-card__mark { border-color: var(--gold-400); }
.opening-card.is-selected .opening-card__mark::after { transform: scale(1); }
.opening-cards.has-selection .opening-card:not(.is-selected) {
  opacity: 0.34;
  transform: scale(0.985);
  pointer-events: none;
}

/* Reflexion — nach der Wahl weich eingeblendet */
.opening-reflection { display: none; width: 100%; max-width: 46ch; margin-inline: auto; }
.opening-experience.is-revealed .opening-reflection {
  display: block;
  animation: oe-rise 0.85s var(--ease-atmos) both;
}
.opening-reflection__lead {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--white);
  margin-bottom: 0.3em;
}
.opening-reflection__text { color: var(--paper-soft); font-size: var(--step-1); line-height: 1.5; }
.opening-reflection .btn { margin-top: var(--space-lg); }

/* Skip — dezent oben rechts */
.opening-skip {
  position: fixed;
  top: clamp(1.1rem, 3vw, 2rem);
  right: clamp(1.1rem, 3vw, 2rem);
  z-index: 2;
  font-size: var(--step--1);
  letter-spacing: 0.03em;
  color: var(--paper-faint);
  padding: 0.5em 0.2em;
  transition: color 0.3s var(--ease);
}
.opening-skip:hover { color: var(--paper); }

/* Gestaffelte, ruhige Einblendung */
@keyframes oe-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Phase 1 — Intro erscheint, wenn die Experience aktiviert wird */
.opening-active .opening-experience__brand { animation: oe-rise 0.7s var(--ease-atmos) 0.25s both; }
.opening-active .opening-skip { animation: oe-fade-in 0.8s var(--ease) 1.2s both; }
.opening-active .opening-intro > * { animation: oe-rise 0.7s var(--ease-atmos) both; }
.opening-active .opening-intro > *:nth-child(1) { animation-delay: 0.55s; }
.opening-active .opening-intro > *:nth-child(2) { animation-delay: 0.95s; }
.opening-active .opening-intro > *:nth-child(3) { animation-delay: 1.35s; }
.opening-active .opening-intro > *:nth-child(4) { animation-delay: 1.75s; }
.opening-active .opening-intro > *:nth-child(5) { animation-delay: 2.15s; }
.opening-active .opening-intro > *:nth-child(6) { animation-delay: 2.75s; }

/* Phase 2 — Frage + Karten erscheinen beim Wechsel */
.opening-experience.is-question .opening-experience__eyebrow { animation: oe-rise 0.6s var(--ease-atmos) 0.05s both; }
.opening-experience.is-question .opening-experience__question { animation: oe-rise 0.6s var(--ease-atmos) 0.15s both; }
.opening-experience.is-question .opening-card { animation: oe-rise 0.55s var(--ease-atmos) both; }
.opening-experience.is-question .opening-card:nth-child(1) { animation-delay: 0.30s; }
.opening-experience.is-question .opening-card:nth-child(2) { animation-delay: 0.40s; }
.opening-experience.is-question .opening-card:nth-child(3) { animation-delay: 0.50s; }
.opening-experience.is-question .opening-card:nth-child(4) { animation-delay: 0.60s; }
.opening-experience.is-question .opening-card:nth-child(5) { animation-delay: 0.70s; }

@media (prefers-reduced-motion: reduce) {
  .opening-active .opening-experience,
  .opening-experience *,
  .opening-experience.is-leaving {
    animation: none !important;
  }
}

/* =============================================================
   18. COOKIE-CONSENT — nur optische Anpassung
   -------------------------------------------------------------
   Das bestehende Consent-Banner (firebase-game-hub/cookie-consent.js
   + .css) bleibt funktional unverändert. Hier werden ausschließlich
   seine vorgesehenen CSS-Variablen auf die neue Markenwelt gesetzt
   (Navy · Gold · Creme). Höhere Spezifität über `body`, damit es die
   zur Laufzeit nachgeladene Original-CSS überschreibt.
   ============================================================= */
body .mkt-cookie-banner {
  --cookie-backdrop: rgba(4, 10, 18, 0.55);
  --cookie-backdrop-blur: blur(10px);
  --cookie-panel-bg: linear-gradient(165deg, #FCFAF4 0%, #F7F1E6 100%);
  --cookie-panel-border: rgba(198, 161, 91, 0.35);
  --cookie-panel-shadow: 0 28px 72px rgba(8, 19, 31, 0.22), 0 0 0 1px rgba(8, 19, 31, 0.05);
  --cookie-title-color: #12202E;
  --cookie-text-color: #3E4A5A;
  --cookie-link-color: #A67C36;
  --cookie-divider: rgba(22, 32, 46, 0.12);
  --cookie-option-divider: rgba(22, 32, 46, 0.08);
  --cookie-option-text: #3E4A5A;
  --cookie-option-strong: #12202E;
  --cookie-accent: #C6A15B;
  --cookie-reopen-bg: rgba(252, 250, 244, 0.96);
  --cookie-reopen-border: rgba(22, 32, 46, 0.12);
  --cookie-reopen-color: #3E4A5A;
  --cookie-reopen-hover-border: rgba(198, 161, 91, 0.5);
  --cookie-reopen-hover-color: #12202E;
}
body .mkt-cookie-banner__panel { font-family: var(--font-body); }
body .mkt-cookie-banner__title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}
body .mkt-cookie-btn { border-radius: 50px; }
body .mkt-cookie-btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 4px 18px rgba(198, 161, 91, 0.35);
}
body .mkt-cookie-btn--primary:hover { background: var(--gold-400); filter: none; }
body .mkt-cookie-btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
body .mkt-cookie-reopen { border-radius: 50px; }

/* =============================================================
   19. CLOSING — Cinematischer Abschluss (Full-Bleed-Bild)
   -------------------------------------------------------------
   Der letzte Kino-Moment der Seite: ein ruhiges Zielbild
   (HERO_005 · Destination) trägt den finalen Call-to-Action.
   Gleiche Bildsprache wie der Hero — Scrim, Ken Burns, weiße
   Typografie über warmem Licht.
   ============================================================= */
.closing {
  --closing-focus: 50% 46%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(30rem, 78vh, 46rem);
  padding-block: clamp(4rem, 12vh, 8rem);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: var(--paper);
}
.closing__bg { position: absolute; inset: -4% 0; z-index: -2; will-change: transform; }
.closing__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--closing-focus);
  transform-origin: var(--closing-focus);
  animation: hero-zoom 30s var(--ease) infinite alternate;
}
.closing__scrim {
  position: absolute; inset: 0; z-index: -1;
  /* Fokussierter Verlauf: nur hinter dem Text abgedunkelt, die Bildränder
     bleiben hell — das Küstenbild wirkt nicht zu dunkel. */
  background:
    radial-gradient(72% 82% at 50% 48%, rgba(6,12,22,0.50), rgba(6,12,22,0.10) 74%),
    linear-gradient(180deg, rgba(6,12,22,0.18) 0%, transparent 34%, rgba(6,12,22,0.28) 100%);
}
/* Mobile: Text füllt mehr Breite — zentrale Abdunklung etwas stärker */
@media (max-width: 640px) {
  .closing__scrim {
    background:
      radial-gradient(95% 66% at 50% 47%, rgba(6,12,22,0.56), rgba(6,12,22,0.18) 80%),
      linear-gradient(180deg, transparent 24%, rgba(6,12,22,0.30) 100%);
  }
}

/* Schrift im Closing ist HELL — überschreibt die globale dunkle
   Überschriftfarbe (h1..h4 { color: var(--ink) }). Ohne das bliebe die
   Headline dunkel auf dunklem Bild und wäre nicht lesbar. */
.closing,
.closing h1, .closing h2, .closing h3,
.closing .h1, .closing .display,
.closing p { color: var(--paper); }
.closing .link-arrow { color: rgba(252, 250, 244, 0.86); }
.closing .link-arrow:hover { color: var(--paper); }
.closing__inner {
  position: relative;
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing .eyebrow { color: var(--gold-400); }
.closing__inner > * { position: relative; }
@media (prefers-reduced-motion: reduce) {
  .closing__img { animation: none; }
}

/* -------------------------------------------------------------
   NÄCHSTER SCHRITT — Buchungs-/Kontakt-Karten (Teilnehmer · Schulen · Unternehmen)
   Gerettete Angebots-Kacheln der alten Startseite, neu im Navy/Creme/Gold-System.
   ------------------------------------------------------------- */
.nextstep {
  display: grid;
  gap: clamp(1.25rem, 0.5rem + 2vw, 2rem);
}
@media (min-width: 820px) {
  .nextstep { grid-template-columns: repeat(3, 1fr); }
}
.nextstep__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--cream-100);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.nextstep__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}
.nextstep__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.nextstep__card--featured { background: var(--white); border-color: var(--gold-300); }
.nextstep__badge {
  align-self: flex-start;
  margin-top: var(--space-2xs);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.nextstep__title { font-size: var(--step-2); }
.nextstep__text { color: var(--ink-soft); font-size: var(--step-0); flex: 1; }
.nextstep__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

/* -------------------------------------------------------------
   TERMINE — Live-Terminkacheln (aus GoHighLevel) + Kalender-Popup
   ------------------------------------------------------------- */
.termine-grid {
  display: grid;
  gap: clamp(1.25rem, 0.5rem + 2vw, 2rem);
}
@media (min-width: 760px) {
  .termine-grid { grid-template-columns: repeat(3, 1fr); }
}
.termine-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-faint);
  font-size: var(--step-0);
  padding-block: var(--space-lg);
}
.termine-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.termine-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}
.termine-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.termine-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin-bottom: var(--space-2xs);
}
.termine-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--cream-200);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 0.3em 0.8em;
}
.termine-card__title { font-size: var(--step-1); line-height: 1.15; }
.termine-card__meta { color: var(--ink-soft); font-size: var(--step--1); flex: 1; }
.termine-card__spots {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink-soft);
}
.termine-card .btn { margin-top: var(--space-sm); }

/* Kalender-Popup (natives <dialog>) */
.cal-modal {
  border: none;
  padding: 0;
  width: min(960px, 94vw);
  max-width: 94vw;
  background: transparent;
  color: var(--ink);
}
.cal-modal::backdrop {
  background: rgba(8, 19, 31, 0.62);
  backdrop-filter: blur(2px);
}
.cal-modal__panel {
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cal-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.cal-modal__title { font-size: var(--step-1); margin: 0; }
.cal-modal__close {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  background: var(--cream-200);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.cal-modal__close:hover { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.cal-modal__body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--cream-100);
}
.cal-modal__body iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
}




