/* =====================================================
   VIRGINIA LARCHER — Landing Page
   Moderatorin · Keynote-Speakerin · Chancenintelligenz

   ─────────────────────────────────────────────────────
   STYLEGUIDE
   ─────────────────────────────────────────────────────
   TYPOGRAPHY SCALE
     Display    clamp(56px, 8vw, 120px)   — chancen-title, script moments
     H1 (hero)  clamp(46px, 7.5vw, 116px)
     H2         clamp(40px, 5.5vw, 72px)  — section heads
     H3         clamp(22px, 2.2vw, 30px)  — card titles
     H4         clamp(15px, 1.1vw, 17px)  — labels, eyebrows
     Lead       clamp(18px, 1.4vw, 22px)  — section intros
     Body       16px / 1.7
     Small      14px / 1.65
     Eyebrow    11px uppercase 0.32em
     Caption    10px uppercase 0.28em

   COLOR — TWO WORLDS
     LIGHT  (Moderation):
       --paper #f4f0e8   default light surface
       --paper-soft #ede8de
       --bone  #ffffff   showcase / elevation
     DARK   (Keynote · Chancenintelligenz):
       --ink   #0c0a08   deep black, threshold + keynote
       --ink-soft #171310 elevated dark cards
       --ink-warm #1a1308 gold-tinged dark (chancenintelligenz)
     ACCENT:
       --gold  #a07a28   primary action gold
       --gold-glow #c8a951  gold on dark surfaces
       --red   #CA280C   reserved for "Ass" only

   RHYTHM (section backgrounds, top to bottom):
     hero → bridge(paper) → outcomes(bone) → selector(paper)
       │
       ↓  THRESHOLD
     speaker(paper-soft) → ass-quote(ink) [THRESHOLD] → chancen(ink)
       │
       ↓  RETURN
     proof(paper) → cta-split(ink/ink-warm) → footer(paper)

   SPACING
     --section-py  clamp(110px, 14vw, 180px)
     --max         1320px
     --pad-x       clamp(24px, 5vw, 88px)

   RADIUS
     0      editorial default (hairlines only)
     2px    refined cards
     999px  pills, chips, CTAs
   ===================================================== */

/* ── FONTS ────────────────────────────────────── */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Amalfi Coast';
  src: url('fonts/Amalfi%20Coast.woff2') format('woff2'),
       url('fonts/Amalfi%20Coast.woff') format('woff'),
       url('fonts/Amalfi%20Coast.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── ROOT — DESIGN TOKENS ─────────────────────── */
:root {
  /* Light surfaces */
  --paper:      #f4f0e8;
  --paper-soft: #ede8de;
  --paper-deep: #e5dfd2;
  --bone:       #ffffff;

  /* Dark surfaces */
  --ink:        #0c0a08;
  --ink-soft:   #171310;
  --ink-warm:   #1a1308;

  /* Text — on light */
  --text:        #0c0a08;
  --text-mute:   #6b6358;
  --text-mute-2: #8a8074;

  /* Text — on dark */
  --text-inv:        #f3eee2;
  --text-inv-mute:   rgba(243, 238, 226, 0.62);
  --text-inv-mute-2: rgba(243, 238, 226, 0.38);

  /* Accents */
  --gold:       #a07a28;
  --gold-glow:  #c8a951;
  --red:        #CA280C;

  /* Hairlines */
  --line:             rgba(12, 10, 8, 0.10);
  --line-strong:      rgba(12, 10, 8, 0.18);
  --line-dark:        rgba(243, 238, 226, 0.10);
  --line-dark-strong: rgba(243, 238, 226, 0.20);
  --line-gold:        rgba(200, 169, 81, 0.28);

  /* Legacy aliases — preserved so existing hero CSS keeps working */
  --black:       var(--ink);
  --white:       var(--bone);
  --off-white:   var(--paper);
  --border:      var(--line);
  --muted:       var(--text-mute);
  --muted-2:     var(--text-mute-2);
  --ink-dim:     #555555;

  /* Type scale */
  --fs-display: clamp(56px, 8vw, 120px);
  --fs-h1:      clamp(46px, 7.5vw, 116px);
  --fs-h2:      clamp(40px, 5.5vw, 72px);
  --fs-h3:      clamp(22px, 2.2vw, 30px);
  --fs-h4:      clamp(15px, 1.1vw, 17px);
  --fs-lead:    clamp(18px, 1.4vw, 22px);
  --fs-body:    16px;
  --fs-small:   14px;
  --fs-eyebrow: 15px;
  --fs-caption: 10px;

  /* Fonts */
  --font-body:    'Glacial Indifference', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-display: 'Amalfi Coast', 'Glacial Indifference', serif;

  /* Layout */
  --max:        1320px;
  --pad-x:      clamp(24px, 5vw, 88px);
  --section-py: clamp(110px, 14vw, 180px);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html { overflow-x: clip; }
body { overflow-x: clip; min-height: 100vh; }
main { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

/* Smooth anchor scroll via native CSS */
html { scroll-behavior: smooth; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 240, 232, 0);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(244, 240, 232, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -20px rgba(0,0,0,0.18);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-logo {
  height: 30px;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-logo .nav-logo__light {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.nav-logo .nav-logo__dark {
  height: 30px;
  width: auto;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav.is-scrolled .nav-logo .nav-logo__light { opacity: 0; }
.nav.is-scrolled .nav-logo .nav-logo__dark { opacity: 1; }
.nav-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
}
.nav-link {
  position: relative;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--red);
  transition: right 0.4s var(--ease-out);
}
.nav-link:hover { color: var(--red); }
.nav-link.is-active::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bone);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 22px 12px 26px;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}
.nav-cta::after { content: '→'; font-size: 13px; transition: transform 0.3s var(--ease-out); }
.nav-cta:hover { background: var(--gold); transform: translateY(-2px); }
.nav-cta:hover::after { transform: translateX(4px); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: white;
  line-height: 0;
  align-items: center;
  justify-content: center;
}
.nav.is-scrolled .nav-burger { color: var(--ink); }

@media (max-width: 900px) {
  .nav, .nav.is-scrolled {
    height: 48px;
    padding-top: 0;
    padding-bottom: 0;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  }
  .nav-logo, .nav-logo .nav-logo__light, .nav-logo .nav-logo__dark { height: 24px; max-width: 140px; width: auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .burger-line {
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
    transform-box: fill-box;
    transform-origin: center;
  }
  .nav-burger.is-open { color: var(--ink); }
  .nav-burger.is-open .burger-line--top { transform: translateY(8px) rotate(45deg); }
  .nav-burger.is-open .burger-line--mid { opacity: 0; }
  .nav-burger.is-open .burger-line--bot { transform: translateY(-8px) rotate(-45deg); }
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: max(var(--pad-x), env(safe-area-inset-top)) var(--pad-x) max(var(--pad-x), env(safe-area-inset-bottom));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-drawer .nav-cta { display: inline-flex; color: var(--paper); }

/* ══════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ══════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c0a878;
  margin-bottom: 24px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--inv  { color: var(--text-inv-mute); }
.eyebrow--inv-gold { color: var(--gold-glow); }

.h1, .h2, .h3 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
}
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); line-height: 1.06; }
.h3 { font-size: var(--fs-h3); line-height: 1.18; letter-spacing: -0.015em; }

.script {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 56ch;
  font-weight: 400;
}
.body-text {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--text-mute);
}

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease-out),
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(0,0,0,0.40); }
.btn:hover::before { transform: translateX(100%); }
.btn .arrow { transition: transform 0.4s var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }

.btn--dark  { background: var(--ink); color: var(--bone); }
.btn--dark:hover  { background: var(--gold); color: #fff; box-shadow: 0 16px 36px -12px rgba(160, 122, 40, 0.40); }
.btn--light { background: var(--bone); color: var(--ink); }
.btn--light:hover { background: #fff; box-shadow: 0 16px 36px -12px rgba(0,0,0,0.20); }
.btn--gold  { background: var(--gold); color: #fff; }
.btn--gold:hover  { background: var(--gold-glow); box-shadow: 0 16px 36px -12px rgba(160, 122, 40, 0.40); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light {
  background: transparent;
  color: rgba(243, 238, 226, 0.85);
  border: 1.5px solid rgba(243, 238, 226, 0.32);
}
.btn--ghost-light:hover { color: #fff; border-color: rgba(243, 238, 226, 0.8); }
.btn--ghost-gold {
  background: transparent;
  color: var(--gold-glow);
  border: 1.5px solid rgba(200, 169, 81, 0.5);
}
.btn--ghost-gold:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════
   CHAPTER MARK — small editorial separator
   ══════════════════════════════════════════════════ */
.chapter-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-inv-mute-2);
}
.chapter-mark::before,
.chapter-mark::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--line-dark-strong);
}
.chapter-mark--gold { color: var(--gold-glow); }
.chapter-mark--gold::before,
.chapter-mark--gold::after { background: var(--line-gold); }

/* ══════════════════════════════════════════════════
   HERO — Editorial, warm, asymmetric
   Foto links · Text rechts · Hook blur-reveal
   (Locked — do not modify)
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 160vh;
  background: #cbb5a0;
  color: var(--black);
}

/* Sticky viewport — hält alles im Blick während der User scrollt */
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}

/* Photo — always visible, "wakes up" at end of sequence */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% center;
  filter: blur(24px);
  transform: scale(1.1);
  will-change: filter, transform;
}

/* Stage — text column on the right side */
.hero__stage {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(120px, 14vh, 160px) var(--pad-x) clamp(60px, 8vh, 100px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__content {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vh, 52px);
  text-align: left;
}

/* Hook — single line, blur-reveal entrance, shrinks to white-pill kicker */
.hero__hook {
  opacity: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.04em;
  font-style: italic;
  font-weight: 400;
  color: #2a2017;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  filter: blur(16px);

  display: inline-block;
  align-self: flex-start;
  background: transparent;
  padding: 0;
  border-radius: 999px;

  will-change: transform, filter, font-size;
  transition: font-size 1.0s cubic-bezier(0.16, 1, 0.3, 1),
              color 1.0s ease,
              letter-spacing 1.0s ease,
              background 1.0s cubic-bezier(0.16, 1, 0.3, 1),
              padding 1.0s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 1.0s ease;
}
.hero__hook.is-kicker {
  font-size: clamp(15px, 1.6vw, 26px);
  color: #1a1410;
  letter-spacing: 0.04em;
  background: #ffffff;
  padding: 10px 26px;
  box-shadow: 0 6px 24px -10px rgba(0, 0, 0, 0.18);
}

/* Title — present in layout from start, beats reveal one by one */
.hero__title {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
/* First beat — "Ihr Ass im Ärmel -" must stay on a single line */
.hero__beat:first-child .hero__beat-inner {
  white-space: nowrap;
}
.hero__beat {
  display: block;
  overflow: hidden;
  padding-top: 0.32em;
  padding-bottom: 0.22em;
  margin-top: -0.32em;
  margin-bottom: -0.22em;
}
.hero__beat-inner {
  display: inline-block;
  transform: translateY(220%);
  will-change: transform;
}
.hero__title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0;
  font-size: 0.92em;
}

/* Chips — last */
.hero__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(8px, 1.5vh, 16px);
}
.hero__role-chip {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.4s var(--ease-out), background 0.35s ease, color 0.35s ease;
  opacity: 0;
  transform: translateY(14px);
}
.hero__role-chip::before {
  content: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.hero__role-chip--dark {
  background: var(--black);
  color: #fff;
}
.hero__role-chip--dark::before { background: var(--gold-glow); }
.hero__role-chip--gold {
  background: var(--gold);
  color: #fff;
}
.hero__role-chip--gold::before { background: #fff; }
.hero__role-chip:hover { transform: translateY(-2px); }


/* Mobile — 3:4 portrait photo full-bleed, text on natural empty beige floor */
@media (max-width: 900px) {
  .hero {
    height: 130svh;
  }
  .hero__sticky {
    min-height: 600px;
  }
  .hero__bg {
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 80%);
            mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 80%);
  }
  .hero__bg img {
    object-fit: cover;
    object-position: 18% center;
  }
  .hero__stage {
    padding: 0 var(--pad-x) clamp(50px, 7vh, 80px);
    align-items: flex-end;
    justify-content: flex-start;
  }
  .hero__content {
    max-width: 100%;
    gap: clamp(20px, 3vh, 32px);
  }
  .hero__hook { white-space: normal; }
}

@media (max-width: 720px) {
  .hero__title { font-size: clamp(28px, 7.6vw, 42px); }
  .hero__hook {
    font-size: clamp(16px, 4.2vw, 22px);
    white-space: normal;
  }
  .hero__beat:first-child .hero__beat-inner { white-space: normal; }
}

/* ══════════════════════════════════════════════════
   BRIDGE — "Wer dahintersteckt" · kompakt, hell
   Doppelrolle als visuelle Spannung: Moderatorin =
   helle Karte, Speakerin = schwarze Akzent-Karte
   (kleiner Dark-Vorgeschmack im Hellen).
   ══════════════════════════════════════════════════ */
.bridge {
  background: var(--paper);
  padding: clamp(90px, 12vw, 150px) var(--pad-x) clamp(40px, 5vw, 64px);
  position: relative;
}
.bridge__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.bridge__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

/* Photo + Badge */
.bridge__photo-wrap {
  position: relative;
  width: 100%;
  /* overflow visible so the tape-strip badge can bleed below */
}
.bridge__photo-clip {
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background: var(--paper-soft);
}
.bridge__photo-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  will-change: transform;
}
/* Badge as Tape-Strip across the photo's bottom edge */
.bridge__badge {
  position: absolute;
  bottom: clamp(-22px, -1.4vw, -14px);
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  transform-origin: center;
  width: max-content;
  max-width: 92vw;
  background: var(--ink);
  color: var(--text-inv);
  padding: 14px 28px;
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.55);
}
.bridge__badge strong {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--red);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.bridge__badge-unit {
  font-size: 0.55em;
  letter-spacing: 0.08em;
  margin-left: 4px;
  font-weight: 700;
  color: var(--text-inv);
  text-transform: uppercase;
}
.bridge__badge-label {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-inv);
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
}
.bridge__badge-label::before {
  content: '·';
  color: var(--gold-glow);
  margin-right: 16px;
  font-size: 22px;
  line-height: 0;
  font-weight: 400;
}

/* Copy column */
.bridge__copy .eyebrow { margin-bottom: 24px; }
.bridge__headline {
  font-family: var(--font-body);
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 24px;
}
.bridge__lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 22px;
  max-width: 46ch;
}
.bridge__lead em {
  font-style: normal;
  color: var(--red);
  font-weight: 700;
}
.bridge__text {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--text-mute);
  max-width: 50ch;
  margin-bottom: 32px;
}

/* Role duo — light card + DARK accent card */
.bridge__roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.bridge__role-card {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 12px;
  transition: transform 0.4s var(--ease-out);
}
.bridge__role-card:hover { transform: translateY(-3px); }

.bridge__role-card--light {
  background: var(--gold);
  color: #fff;
}
.bridge__role-card--dark {
  background: var(--ink);
  color: var(--text-inv);
}

.bridge__role-title {
  font-family: var(--font-body);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: none;
}
.bridge__role-card--light .bridge__role-title { color: #fff; }
.bridge__role-card--dark .bridge__role-title { color: var(--text-inv); }

.bridge__role-text {
  font-size: var(--fs-body);
  line-height: 1.65;
}
.bridge__role-card--light .bridge__role-text { color: rgba(255, 255, 255, 0.78); }
.bridge__role-card--dark .bridge__role-text { color: var(--text-inv-mute); }

/* Signature — overlappt das Foto top-right, Magazin-Style */
.bridge__signature {
  position: absolute;
  top: clamp(36px, 4vw, 56px);
  right: clamp(16px, 2.2vw, 28px);
  z-index: 3;
  width: 10px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.25));
}

/* ══════════════════════════════════════════════════
   OUTCOMES — Moderation pillars + Stats
   Background: --bone
   ══════════════════════════════════════════════════ */
.outcomes {
  background: var(--paper);
  padding: var(--section-py) var(--pad-x);
}
.outcomes__inner { max-width: var(--max); margin: 0 auto; }
.outcomes__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
  gap: 22px;
}
.outcomes__head h2 { max-width: 16ch; }

/* Drei Karten nebeneinander */
.outcomes__stack {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stack-spacer { display: none; }

.stack-card {
  background: var(--bone);
  border: 1px solid var(--line-strong);
  padding: clamp(28px, 2.8vw, 40px) clamp(22px, 2.2vw, 32px);
  text-align: center;
  box-shadow: 0 8px 32px -16px rgba(12, 10, 8, 0.12);
  border-radius: 12px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s ease, border-color 0.35s ease;
  cursor: default;
}
.stack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -6px rgba(12, 10, 8, 0.13);
}

.stack-card__mark {
  display: block;
  width: 36px;
  height: 40px;
  background: url('ressourcen/icon_herz.svg') no-repeat center / contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 1px 3px rgba(201, 20, 48, 0.25));
}

.stack-card__title {
  font-family: var(--font-body);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 auto clamp(14px, 1.2vw, 18px);
  max-width: 14ch;
}

.stack-card__beats {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--text-mute);
  margin: 0 auto;
  max-width: 30ch;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stack-card__beats li {
  list-style: none;
}

/* Stats bar — preview of the dark world inside the light */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--ink);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--line-dark);
  position: relative;
  z-index: 1;
}
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold-glow);
  line-height: 1;
  font-family: var(--font-body);
}
.stat__num .infinity {
  font-size: 1.4em;
  display: inline-block;
  line-height: 0.6;
}
.stat__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-inv-mute-2);
  margin-top: 18px;
  padding: 0 6px;
  line-height: 1.5;
}

/* ── BLOCK 4 · FORMATE ────────────────────────────────────────── */

.formats {
  position: relative;
  min-height: clamp(480px, 70vh, 800px);
  background-image: url('ressourcen/du-breit.png');
  background-size: cover;
  background-position: left center;
  background-attachment: fixed;
  isolation: isolate;
}

.formats__inner {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 8vw, 100px) clamp(32px, 5vw, 80px) clamp(56px, 8vw, 100px) clamp(280px, 30%, 520px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 48px);
}

.formats__head .eyebrow {
  margin-bottom: 16px;
}

.formats__h2 {
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.formats__script {
  font-family: var(--font-display);
  font-style: normal;
  color: #CA280C;
  font-size: 1.1em;
}
.formats__sub {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-top: clamp(32px, 4vw, 56px);
  margin-bottom: clamp(-32px, -3vw, -20px);
}

.formats__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fchip {
  display: inline-block;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease, transform 400ms ease, background 0.2s, border-color 0.2s;
  transition-delay: calc(var(--chip-i, 0) * 20ms);
}

.fchip--sm,
.fchip--md,
.fchip--lg { font-size: clamp(12px, 0.95vw, 15px); padding: 6px 16px; }

a.fchip:hover {
  background: rgba(255,255,255,1);
  border-color: var(--gold);
}
.fchip--gold {
  background: var(--gold-glow);
  border-color: var(--gold-glow);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 0 18px rgba(200, 169, 81, 0.55);
}

.formats__chips.is-in .fchip {
  opacity: 1;
  transform: translateY(0);
}

.formats__cta {
  margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .fchip { opacity: 1; transform: none; transition: none; }
}


/* ── HEART DIVIDER ───────────────────────────────────────────── */
.heart-divider {
  background: var(--ink);
  margin-bottom: -1px;     /* iOS subpixel gap fix */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: clamp(40px, 6vh, 72px) var(--pad-x);
}
.heart-divider__line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: rgba(255,255,255,.15);
}
.heart-divider img {
  width: 22px;
  filter: brightness(0) invert(1);
  opacity: .5;
}

/* ══════════════════════════════════════════════════
   ANGEBOTE · Block 10 · Chancenintelligenz in Aktion
══════════════════════════════════════════════════ */
.angebote {
  background: var(--ink);
  margin-bottom: -1px;     /* iOS subpixel gap fix */
  color: var(--text-inv);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
}
.angebote__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 28px);
}

/* ── Intro ── */
.angebote__intro {
  text-align: center;
  margin-bottom: clamp(16px, 2.5vw, 32px);
}
.angebote__intro .eyebrow {
  font-size: clamp(16px, 1.6vw, 22px);
}
.angebote__h2 {
  font-family: var(--font-body);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--text-inv);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.angebote__lead {
  font-size: var(--fs-lead);
  color: var(--text-inv-mute);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Karte — Basis ── */
.angebote__card {
  border-radius: 12px;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.angebote__card-num {
  position: absolute;
  top: clamp(20px, 2.5vw, 32px);
  right: clamp(24px, 3vw, 40px);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  pointer-events: none;
  user-select: none;
}
.angebote__format-label {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.angebote__card-h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.angebote__card-text {
  font-size: var(--fs-body);
  line-height: 1.8;
}
.angebote__card-note {
  display: block;
  font-size: var(--fs-small);
  font-style: italic;
  margin-top: 10px;
}
.angebote__card-sub {
  font-size: var(--fs-small);
  font-style: italic;
  line-height: 1.6;
}

/* ── Keynote — hell ── */
.angebote__card--keynote {
  background: #f5f0e8;
  color: var(--ink);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.3);
}
.angebote__card--keynote .angebote__format-label { color: #CA280C; }
.angebote__card--keynote .angebote__card-h3     { color: var(--ink); }
.angebote__card--keynote .angebote__card-text   { color: #5a4a30; }
.angebote__card--keynote .angebote__card-note   { color: #9a8878; }

/* ── Workshops — 2-spaltig ── */
.angebote__workshops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 16px);
}
.angebote__card--workshop,
.angebote__card--serie {
  background: #f5f0e8;
  color: var(--ink);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.3);
}
.angebote__card--workshop .angebote__format-label,
.angebote__card--serie   .angebote__format-label { color: #CA280C; }
.angebote__card--workshop .angebote__card-h3,
.angebote__card--serie   .angebote__card-h3     { color: var(--ink); }
.angebote__card--workshop .angebote__card-sub   { color: #5a4a30; }

/* Workshop-Serie — Timeline */
.angebote__serie-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
  border-left: 2px solid rgba(160,122,40,0.2);
  padding-left: 0;
  margin-left: 6px;
}
.angebote__serie-list li {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ink);
  padding: 12px 0 12px 24px;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid rgba(160,122,40,0.1);
}
.angebote__serie-list li:last-child { border-bottom: none; }
.angebote__serie-list li::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a07a28;
  opacity: 0.3;
}
.angebote__serie-list li:last-child::before {
  opacity: 1;
  background: #a07a28;
  box-shadow: 0 0 0 3px rgba(160,122,40,0.15);
}

/* ── Mentoring — hell (wie Keynote) ── */
.angebote__card--mentoring {
  background: #f5f0e8;
  color: var(--ink);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.3);
  min-height: 320px;
  padding-right: clamp(180px, 22vw, 260px);
}
.angebote__card--mentoring .angebote__format-label { color: #CA280C; }
.angebote__card--mentoring .angebote__card-h3     { color: var(--ink); }
.angebote__card--mentoring .angebote__card-text   { color: #5a4a30; }

/* ── CTA ── */
.angebote__cta {
  text-align: center;
  margin-top: clamp(16px, 3vw, 32px);
}

/* ── Mobile ── */
@media (max-width: 720px) {
  .angebote__workshops { grid-template-columns: 1fr; }
  .angebote__card--mentoring {
    padding-right: clamp(28px, 5vw, 48px);
  }
  .angebote__card-pair {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 150px;
    height: 210px;
    margin: 20px auto 0;
  }
}

/* ── KONTAKT · Moderation ────────────────────────────────────── */
.kontakt {
  background: var(--ink);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  text-align: center;
  position: relative;
}
.kontakt__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.5vw, 32px);
}
.kontakt__card {
  width: clamp(80px, 10vw, 140px);
  transform: rotate(-8deg);
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.55));
  margin-bottom: 8px;
}
.kontakt__h2 {
  font-family: var(--font-body);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--text-inv);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.kontakt__h2 em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--red);
  font-size: 0.92em;
}
.kontakt__text {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--text-inv-mute);
  line-height: 1.6;
}
.kontakt__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.kontakt__logo {
  display: block;
  width: clamp(140px, 18vw, 220px);
  margin: clamp(32px, 4vw, 48px) auto 0;
  border-radius: 8px;
  opacity: 0.9;
}
.kontakt__top {
  display: inline-block;
  margin-top: clamp(32px, 4vw, 48px);
  font-size: 22px;
  color: rgba(243,238,226,0.3);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}
.kontakt__top:hover { color: var(--gold); }
@media (max-width: 720px) {
  .kontakt__btns { flex-direction: column; align-items: stretch; }
}

/* ── CTA-BAR · vor Threshold ─────────────────────────────────── */
.cta-bar {
  background: var(--paper-soft);
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
}
.cta-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-bar__claim {
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-bar__claim em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0;
  font-size: 0.92em;
}
.btn--xl {
  font-size: clamp(16px, 1.3vw, 20px);
  padding: 20px 44px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .cta-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .cta-bar__claim {
    font-size: clamp(36px, 10vw, 52px);
  }
}

/* ══════════════════════════════════════════════════
   ASS-THRESHOLD · Block 4.5 — Light → Dark Übergang
   Slow burn, zwei Beats, pin Desktop
   ══════════════════════════════════════════════════ */
.ass-quote {
  position: relative;
  background: var(--ink);
  color: var(--text-inv);
  overflow: hidden;
  min-height: clamp(160px, 22vh, 280px);
  display: flex;
  flex-direction: column;
}
.ass-quote__pin {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
}
.ass-quote__card {
  position: absolute;
  width: clamp(120px, 14vw, 200px);
  right: clamp(40px, 10vw, 160px);
  top: 50%;
  transform: translateY(-50%) rotate(12deg);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
  pointer-events: none;
}
.ass-quote__inner {
  text-align: center;
}
.ass-quote__line {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
}
.ass-quote__word {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.ass-quote__line--1 {
  color: var(--text-inv-mute);
  margin-bottom: 12px;
}
.ass-quote__line--2 {
  color: var(--text-inv-mute);
}
.ass-quote__word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--red);
  opacity: 0;
  transform: scale(0.96);
  will-change: opacity, transform;
}

.warm-bridge { display: none; }

.speaker__scroll-cue {
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  margin: clamp(48px, 6vw, 80px) auto clamp(48px, 6vw, 80px);
}


/* ══════════════════════════════════════════════════
   DARK HERO — Pinned parallax scroll
   Wrapper is 300vh tall (gives scroll room).
   Section sticks at top while JS moves photo upward.
   overflow:hidden on the sticky element itself is safe —
   only overflow on ANCESTORS breaks sticky.
   ══════════════════════════════════════════════════ */
.dark-hero {
  position: relative;
  height: 300vh;           /* Section ist 300vh lang — gibt Scroll-Raum */
  background: var(--ink);
  margin-bottom: -1px;     /* iOS subpixel gap fix: dark-to-dark transition */
}

.dark-hero__photo {
  position: sticky;        /* Das BILD ist sticky, nicht die Section */
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;           /* Bild füllt genau einen Viewport */
  object-fit: cover;
  object-position: center 0%; /* Start: oben (Faust) */
}

/* Text-Overlay — zweites sticky-Geschwister, zieht sich per margin-top -100vh
   auf dieselbe Höhe wie das Bild; z-index 2 legt es drüber */
.dark-hero__content {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-top: -100vh;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(130px, 20vh, 220px) var(--pad-x) 0;
  pointer-events: none;
  /* Dunkler Verlauf oben — Lesbarkeit des Texts */
  background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,.22) 45%, transparent 70%);
}
.dark-hero__content .btn {
  pointer-events: auto;
}

.dark-hero__ass {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 10vw, 130px);
  color: var(--red);
  line-height: 1;
  margin-bottom: clamp(12px, 2vw, 20px);
  opacity: 0;
}

.dark-hero__s1 {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  color: var(--text-inv);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(10px, 1.5vw, 18px);
  opacity: 0;
}

.dark-hero__s2 {
  font-size: clamp(34px, 5.2vw, 72px);
  font-weight: 700;
  color: var(--text-inv-mute);
  line-height: 1.15;
  letter-spacing: -0.01em;
  opacity: 0;
}

.dark-hero__cta {
  margin-top: clamp(22px, 3vw, 36px);
  opacity: 0;
}

/* ── Mobile — statisch, kein Parallax ── */
@media (max-width: 900px) {
  .dark-hero {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  .dark-hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center 20%;
  }

  .dark-hero__content {
    position: relative;
    height: auto;
    min-height: 100svh;
    margin-top: 0;
    justify-content: flex-end;
    padding: clamp(32px, 6vh, 64px) var(--pad-x) clamp(48px, 8vh, 80px);
    background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.30) 50%, transparent 80%);
  }

  .dark-hero__s2 {
    font-size: clamp(28px, 7.6vw, 42px);
  }
  .dark-hero__cards {
    right: clamp(-40px, -5vw, -10px);
    top: clamp(40px, 6vh, 80px);
  }
}


/* ══════════════════════════════════════════════════
   SPEAKERIN · Block 5 — Dark Editorial, 2-Spalten
   ══════════════════════════════════════════════════ */
.speaker {
  position: relative;
  background: var(--paper-soft);
  color: var(--text);
  padding: var(--section-py) var(--pad-x);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.speaker__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.speaker__col--text > * + * { margin-top: 40px; }
.speaker__col--text .eyebrow { margin-bottom: 0; }
.speaker__col--text .eyebrow + * { margin-top: 16px; }
.speaker__col--text > .speaker__keywords { margin-top: 16px; }
.speaker__col--text > .speaker__formats { margin-top: 64px; }
.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--ink-soft);
  border: 1px solid var(--line-dark-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inv-mute);
}
.role-badge--gold {
  background: rgba(160, 122, 40, 0.12);
  border-color: var(--line-gold);
  color: var(--gold-glow);
}
.role-badge__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-glow);
}
.speaker__h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.speaker__h2.is-in {
  clip-path: inset(0 0 0 0);
  transition: clip-path 700ms ease-out;
}
.speaker__lead {
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--text-mute);
  max-width: 460px;
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
}
.speaker__lead strong {
  color: var(--ink);
  font-weight: 700;
}
.speaker__keywords {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
}
.speaker__formats {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  margin-top: 64px;
}
.speaker__format {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--ink);
  border: 1px solid var(--ink-soft);
  border-radius: 12px;
  flex: 1;
  transition: transform 220ms ease, border-color 220ms ease;
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
}
.speaker__format:hover { transform: translateY(-2px); border-color: var(--gold); }
.speaker__format-label {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--text-inv);
}
.speaker__col--photo { margin: 0; position: relative; }
.speaker__photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  outline: 1px solid rgba(160, 122, 40, 0.4);
  outline-offset: 12px;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
.speaker__photo-frame.is-in {
  clip-path: inset(0 0 0 0);
  transition: clip-path 900ms ease-out;
}
.speaker__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.speaker__lead.is-in,
.speaker__keywords.is-in,
.speaker__format.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

/* ══════════════════════════════════════════════════
   CHANCENINTELLIGENZ · Block 6 — Sticky-Journey
   Drei Stufen: outline → halb → voll. Glow wandert mit Scroll.
   ══════════════════════════════════════════════════ */
.chancen {
  position: relative;
  background: var(--ink);
  margin-bottom: -1px;     /* iOS subpixel gap fix */
  color: var(--text-inv);
  overflow: hidden;
}
.chancen__intro {
  text-align: center;
  padding: var(--section-py) var(--pad-x) clamp(60px, 8vw, 100px);
  position: relative;
  z-index: 2;
}
.chancen__sub-eyebrow {
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.chancen__title {
  position: relative;
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-display);
  letter-spacing: -0.03em;
  color: var(--text-inv);
  line-height: 1;
  text-align: center;
  overflow-wrap: break-word;
  hyphens: auto;
}
.chancen__definition {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  color: var(--text-inv-mute);
  margin: 24px auto 0;
  max-width: 600px;
}
.chancen__num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(64px, 8vw, 96px);
  color: var(--gold-glow);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  display: block;
}
.chancen__step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.15;
  color: var(--text-inv);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.chancen__step-bullets {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--text-inv-mute);
  max-width: 560px;
}
/* ── C2 Goldener Pfad — vertikale Timeline ── */
.chancen__path {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(48px,6vw,80px) var(--pad-x) clamp(80px,10vw,120px) calc(var(--pad-x) + 56px);
}
.chancen__path::before {
  content: '';
  position: absolute;
  left: calc(var(--pad-x) + 20px);
  top: 20px;
  bottom: clamp(80px, 10vw, 120px);
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(200,169,81,0.15) 0%,
    rgba(200,169,81,0.55) 50%,
    #c8a951 100%
  );
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.4s ease-out;
}
.chancen__path.line-grown::before {
  transform: scaleY(1);
}
@media (prefers-reduced-motion: reduce) {
  .chancen__path::before { transform: scaleY(1); transition: none; }
}

.chancen__node {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: clamp(52px, 7vw, 88px);
  opacity: 0;
  transform: translateY(32px);
}
.chancen__node.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .chancen__node { opacity: 1; transform: none; }
}

.chancen__node-dot {
  position: absolute;
  left: -44px;
  top: clamp(24px, 3vw, 40px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink-warm);
  border: 1.5px solid rgba(200,169,81,0.3);
  flex-shrink: 0;
}

.chancen__node-body { flex: 1; }

@media (max-width: 900px) {
  .chancen__path { padding-left: calc(var(--pad-x) + 40px); }
  .chancen__node { gap: 20px; }
  .chancen__node-dot { left: -28px; }
}


.chancen__outro {
  position: relative;
  text-align: center;
  padding: clamp(32px, 4vw, 56px) var(--pad-x) clamp(80px, 10vw, 140px);
  z-index: 2;
}
.chancen__outro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('noise.svg');
  background-size: 200px;
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.btn--lg {
  padding: 26px 72px;
  font-size: 16px;
}
@keyframes pulse-gold-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(200, 169, 81, 0.18); }
  50% { box-shadow: 0 12px 40px rgba(200, 169, 81, 0.32); }
}

@media (prefers-reduced-motion: reduce) {
  .ass-quote__line { opacity: 1; transform: none; clip-path: none; transition: none; }
  .speaker__h2 { clip-path: none; transition: none; }
  .speaker__photo-frame { clip-path: none; transition: none; }
  .speaker__lead, .speaker__keywords, .speaker__format {
    opacity: 1; transform: none; transition: none;
  }
  .chancen__title-underline { width: 60%; transition: none; }
  .btn--lg { animation: none; }
}

@media (max-width: 900px) {
  .ass-quote__line, .ass-quote__word { opacity: 1; transform: none; }

  .speaker__grid { grid-template-columns: 1fr; gap: 40px; }
  .speaker__col--photo { order: -1; }
  .speaker__col--text > * + * { margin-top: 24px; }
  .speaker__photo-frame { aspect-ratio: 3 / 4; outline-offset: 8px; }
  .speaker__formats { flex-direction: column; max-width: 360px; }
  .speaker__glow { width: 400px; height: 400px; right: -30%; }

  .chancen__title { font-size: clamp(44px, 8vw, 72px); }
  .chancen__num { font-size: clamp(48px, 12vw, 80px); }
  .chancen__step-bullets { margin-inline: auto; }
}


/* ══════════════════════════════════════════════════
   PROOF — Testimonials & Marquee
   Return to light · Background: --paper
   ══════════════════════════════════════════════════ */
.proof {
  background: var(--paper);
  padding: var(--section-py) var(--pad-x);
}
.proof__inner { max-width: var(--max); margin: 0 auto; }
.proof__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.proof__head h2 {
  max-width: 16ch;
  margin: 18px auto 0;
}

/* Testimonial Cards */
.tcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: var(--bone);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: clamp(28px, 2.8vw, 40px) clamp(22px, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  box-shadow: 0 8px 32px -16px rgba(12, 10, 8, 0.12);
}

.tcard__mark {
  display: block;
  width: 32px;
  height: 36px;
  background: url('ressourcen/icon_herz.svg') no-repeat center / contain;
  margin: 0 auto 4px;
  filter: drop-shadow(0 1px 3px rgba(201, 20, 48, 0.25));
}

.tcard__text {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  color: var(--text-mute);
  flex: 1;
}

.tcard__by {
  display: flex;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.tcard__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* Trust Pill Grid */
.trust-grid {
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(20px, 2.5vw, 32px);
}

.trust-grid__label {
  font-size: var(--fs-caption);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute-2);
  font-weight: 600;
  margin-bottom: 20px;
}

.trust-grid__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tpill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Coming Soon */
.coming-soon__text {
  font-family: var(--font-body);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: -0.02em;
  user-select: none;
  line-height: 1;
}

/* ══════════════════════════════════════════════════
   CTA SPLIT
   Both sides dark · Moderation (left) charcoal,
   Keynote (right) gold-tinged blackest
   ══════════════════════════════════════════════════ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.cta-side {
  padding: clamp(90px, 13vw, 170px) clamp(40px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}
.cta-side--dark {
  background: var(--ink);
  color: var(--text-inv);
}
.cta-side--gold {
  background: linear-gradient(150deg, var(--ink-warm), #0e0a04);
  color: var(--text-inv);
}
.cta-side__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) grayscale(0.3);
  transition: transform 1.2s var(--ease-out), opacity 0.6s ease;
}
.cta-side:hover .cta-side__bg {
  transform: scale(1.05);
  opacity: 0.32;
}
.cta-side__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12,10,8,0.5) 0%, rgba(12,10,8,0.92) 100%);
}
.cta-side--gold .cta-side__overlay {
  background: linear-gradient(180deg, rgba(26,19,8,0.6) 0%, rgba(14,10,4,0.95) 100%);
}
.cta-side__inner {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.cta-side__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-caption);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-inv-mute);
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-side__kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--line-dark-strong);
}
.cta-side__kicker--gold {
  color: var(--gold-glow);
}
.cta-side__kicker--gold::before {
  background: var(--line-gold);
}
.cta-side__title {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 22px 0 24px;
  max-width: 18ch;
}
.cta-side--gold .cta-side__title {
  color: #fff;
}
.cta-side--gold .cta-side__title em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--gold-glow);
  font-weight: 400;
  letter-spacing: 0;
}
.cta-side__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-inv-mute);
  margin-bottom: 36px;
  max-width: 40ch;
}
.cta-side__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}
.cta-side__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-inv-mute-2);
}
.cta-side__contact a {
  color: rgba(243, 238, 226, 0.85);
  transition: color 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cta-side__contact a:hover { color: var(--gold-glow); }

.cta-split__divider {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: var(--line-gold);
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
/* ── KONTAKT-MODAL ───────────────────────────────────────────── */
.cmodal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cmodal[hidden] { display: none; }
.cmodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,10,8,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cmodal__card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(12,10,8,0.08);
  border-radius: 12px;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: cmodal-in 0.25s ease;
}
@keyframes cmodal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.cmodal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: rgba(12,10,8,0.3);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.cmodal__close:hover { color: var(--gold); }
.cmodal__h3 {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.cmodal__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  background: var(--paper);
  padding: 44px var(--pad-x);
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__logo img { height: 28px; width: auto; opacity: 0.7; }
.footer__links {
  display: flex;
  gap: 32px;
}
.footer__links a {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute-2);
  font-weight: 700;
  transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--ink); }
.footer__copy {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  color: var(--text-mute-2);
  text-transform: uppercase;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .bridge__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .bridge__photo-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
  .bridge__badge {
    right: 0;
    bottom: -22px;
  }
  .bridge__signature { display: none; }

  .outcomes__stack { grid-template-columns: 1fr; gap: 12px; }
  .stack-card__title { max-width: none; }
  .stack-card__beats { max-width: none; }

  .stats { grid-template-columns: repeat(2, 1fr); padding: 36px 0; }
  .stat { padding: 24px 12px; border-right: none; border-bottom: none; }
  .stat:last-child { grid-column: 1 / -1; }

  /* Dark-Welt auf Tablet */
  .speaker__themen { grid-template-columns: 100px 1fr; gap: 18px; }
  .speaker__formats { gap: 14px; }

  .cta-split { grid-template-columns: 1fr; }
  .cta-split__divider { display: none; }
}

/* ── Formate: Mobile (<900px) ── */
@media (max-width: 900px) {
  .formats {
    min-height: max(150svh, 1300px);
    background-image: url('ressourcen/du-mobile.jpg');
    background-attachment: scroll;
    background-size: cover;
    background-position: top center;
  }
  .formats__inner {
    padding: 40px var(--pad-x) 48px;
    min-height: max(150svh, 1300px);
    gap: 0;
  }
  .formats__head {
    margin-top: auto;
    padding-bottom: 20px;
  }
  .formats__h2 {
    font-size: clamp(28px, 11vw, 52px);
    line-height: 1.1;
  }
  .formats__chips {
    padding-top: 0;
  }
  .formats__cta {
    margin-top: 20px;
  }
}

@media (max-width: 720px) {
  :root {
    --section-py: clamp(80px, 16vw, 120px);
  }

  .hero { padding-top: 0; min-height: auto; }
  .ass-quote__line--2 { font-size: clamp(28px, 7.5vw, 48px); }
  .chancen__title { font-size: clamp(32px, 10vw, 52px); }
  .btn--lg { padding: 20px 40px; }



  .tcard-grid { grid-template-columns: 1fr; }

  .bridge__roles { grid-template-columns: 1fr; gap: 10px; }
  .bridge__role-card { padding: 24px 22px; }

  /* Tape-Strip: compact on mobile so it fits viewport */
  .bridge__badge {
    padding: 11px 18px;
    gap: 10px;
    max-width: 90vw;
  }
  .bridge__badge strong { font-size: 16px; }
  .bridge__badge-unit { font-size: 0.5em; margin-left: 3px; }
  .bridge__badge-label {
    font-size: 9.5px;
    letter-spacing: 0.18em;
  }
  .bridge__badge-label::before {
    margin-right: 10px;
    font-size: 18px;
  }

  .footer__inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════
   REVEAL — JS fallback
   ══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-stagger.is-in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.40s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee { animation: none; }
  .hero__title .word,
  .hero__visual,
  .hero__hook,
  .hero__sep,
  .hero__role-chip,
  .bridge__badge,
  .reveal,
  .reveal-stagger > * { opacity: 1; transform: none; }
}
