/* =======================================================
   "Lange gut Leben" — Liebscher & Bracht Community Event
   Farbwelt & Typografie streng nach L&B Styleguide 3.0
   ======================================================= */

@font-face {
  font-family: 'Recoleta';
  src: url('fonts/Recoleta-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('fonts/Recoleta-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('fonts/Recoleta-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('fonts/Recoleta-SemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'Avenir LT';
  src: url('fonts/Avenir-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir LT';
  src: url('fonts/Avenir-Book.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir LT';
  src: url('fonts/Avenir-Roman.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir LT';
  src: url('fonts/Avenir-Heavy.otf') format('opentype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir LT';
  src: url('fonts/Avenir-Black.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: swap;
}

:root {
  /* L&B Hauptfarben */
  --lb-green: #5C685B;       /* Dunkelgrün — Hauptfarbe */
  --lb-green-soft: #839082;  /* Mittelgrün */
  --lb-sage: #B7C0B1;        /* Salbei */
  --lb-sage-2: #B1B6B0;      /* Neutralgrau-Grün */
  --lb-beige: #F5F1E9;       /* Beige — Haupt-BG Akzent */
  --lb-beige-2: #D9D3CB;     /* Beige dunkler */
  --lb-sand: #D1A689;        /* Sand / warmer Akzent */
  --lb-sand-2: #C3987A;      /* Sand dunkler */
  --lb-paper: #FAF8F4;       /* Papier — Haupt-BG */
  --lb-ink: #3C3C3C;         /* Anthrazit — Text */
  --lb-ink-soft: #777777;    /* Hover-Grau */

  /* App-Koralle (nur für Endkund:innen-Highlight/APP-Bezug) */
  --lb-coral: #F3997B;
  --lb-coral-soft: #FFBFAC;

  /* Shop-Orange (nur wenn explizit Shop-Bezug) */
  --lb-shop: #FFAB4C;

  /* YouTube-Highlight (Lese-Strg) */
  --lb-highlight: #ED5A3A;

  /* Funktional */
  --radius: 4px;
  --radius-lg: 10px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Avenir LT', -apple-system, system-ui, sans-serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.02em; /* Styleguide: Laufweite +10 */
  color: var(--lb-ink);
  background: var(--lb-paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--lb-ink-soft); }
button { font-family: inherit; }
p { margin: 0 0 1em; }

/* ===== Typografie-Klassen (nach Styleguide) ===== */
.recoleta { font-family: 'Recoleta', Georgia, serif; font-weight: 400; letter-spacing: -0.005em; }

.avenir-light { font-weight: 300; letter-spacing: 0.02em; }
.avenir-roman { font-weight: 500; letter-spacing: 0.02em; }
.avenir-heavy { font-weight: 800; letter-spacing: 0.02em; }

/* Versal nur mit Laufweite +100 (0.1em) */
.eyebrow {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 12px; color: var(--lb-green);
}

.h-display {
  font-family: 'Recoleta', Georgia, serif;
  font-weight: 400; /* Styleguide: Recoleta ausschließlich Regular */
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
}

/* ===== Layout ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--lb-paper) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-color: var(--lb-beige-2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 20px; color: var(--lb-ink);
  display: flex; align-items: baseline; gap: 10px;
}
.brand .sub {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green); padding-top: 3px;
}
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 400; color: var(--lb-ink); }
@media (max-width: 860px) { .nav-links { display: none; } }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lb-green); color: var(--lb-paper);
  border: 0; padding: 12px 20px; border-radius: 999px;
  font-family: 'Avenir LT', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 0.04em; cursor: pointer;
  transition: background .15s, transform .12s;
}
.nav-cta:hover { background: var(--lb-ink); color: white; }
.nav-cta.hidden-until-scroll { opacity: 0; transform: translateY(-4px); pointer-events: none; transition: opacity .2s, transform .2s; }
.nav.scrolled .nav-cta.hidden-until-scroll { opacity: 1; transform: none; pointer-events: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 0; cursor: pointer;
  font-family: 'Avenir LT', sans-serif; font-weight: 500; letter-spacing: 0.04em;
  border-radius: 999px; padding: 15px 26px; font-size: 14px;
  transition: transform .12s, background .15s, color .15s, border-color .15s;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--lb-green); color: var(--lb-paper);
}
.btn-primary:hover { background: var(--lb-ink); color: white; }
.btn-primary.lg { padding: 19px 34px; font-size: 15px; }

/* Hero-CTA — high-contrast Sand-Akzent gegen dunkle Bilder */
.hero .btn-primary,
.hero-full .btn-primary,
.hero-split .btn-primary {
  background: var(--lb-sand);
  color: #2A2F2A;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    0 14px 36px -10px rgba(209,166,137,0.6),
    0 2px 0 rgba(0,0,0,0.08) inset,
    0 0 0 1px rgba(255,255,255,0.18) inset;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.hero .btn-primary:hover,
.hero-full .btn-primary:hover,
.hero-split .btn-primary:hover {
  background: #E8C0A1;
  color: #1F2420;
  transform: translateY(-1px);
  box-shadow:
    0 18px 44px -10px rgba(209,166,137,0.75),
    0 0 0 1px rgba(255,255,255,0.25) inset;
}
.hero .btn-primary.lg,
.hero-full .btn-primary.lg,
.hero-split .btn-primary.lg {
  padding: 21px 38px;
  font-size: 16px;
}

.btn-ghost {
  background: transparent; color: var(--lb-ink);
  border: 1px solid var(--lb-ink);
}
.btn-ghost:hover { background: var(--lb-ink); color: var(--lb-paper); }

.btn-on-dark.btn-ghost { color: var(--lb-paper); border-color: color-mix(in oklab, var(--lb-paper) 50%, transparent); }
.btn-on-dark.btn-ghost:hover { background: var(--lb-paper); color: var(--lb-ink); }

.arrow { display: inline-block; transition: transform .2s; font-weight: 300; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Chip / Badge ===== */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  background: var(--lb-beige); color: var(--lb-green);
  border: 1px solid var(--lb-beige-2);
  text-transform: uppercase;
}
.chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lb-green);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--lb-green) 25%, transparent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px color-mix(in oklab, var(--lb-green) 25%, transparent); }
  50%     { box-shadow: 0 0 0 6px color-mix(in oklab, var(--lb-green) 8%, transparent); }
}

.badge-featured {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--lb-sand); color: white;
  padding: 5px 12px; border-radius: 999px;
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 96px;
  position: relative;
}
@media (max-width: 820px) { .hero { padding: 48px 0 72px; } }

.h1 {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.96; letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.h1 em {
  font-style: normal;
  font-family: 'Recoleta', serif; font-weight: 400;
}
.h1 .gr { color: var(--lb-green); }
.h1 .sand { color: var(--lb-sand-2); }

.lede {
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 300; letter-spacing: 0.02em;
  color: color-mix(in oklab, var(--lb-ink) 80%, transparent);
  max-width: 58ch;
  margin: 0 0 36px;
  line-height: 1.55;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-row .fine {
  font-family: 'Avenir LT', sans-serif; font-weight: 300;
  font-size: 13px; color: var(--lb-ink-soft);
  letter-spacing: 0.02em;
}

/* Hero-Varianten */

/* Hero A — Editorial / hell (Beige-Papier, großflächig) */
.hero-a {
  background: var(--lb-paper);
  text-align: left;
}
.hero-a .wrap {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center;
}
@media (max-width: 900px) { .hero-a .wrap { grid-template-columns: 1fr; gap: 40px; } }
.hero-a .hero-visual {
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: #1a2218;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(92,104,91,.45);
}
.hero-a .hero-visual::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
}
.hero-a .hero-visual-label {
  position: absolute; left: 28px; bottom: 28px; z-index: 2;
  color: var(--lb-beige);
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 28px; line-height: 1.15; max-width: 75%;
}
.hero-a .hero-visual-label small {
  display: block; margin-top: 10px;
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: color-mix(in oklab, var(--lb-beige) 75%, transparent);
}

/* Hero B — Zentriert editorial, Beige-BG */
.hero-b {
  background: var(--lb-beige);
  text-align: center;
  border-radius: 0;
}
.hero-b .wrap { display: flex; flex-direction: column; align-items: center; }
.hero-b .lede { margin-left: auto; margin-right: auto; }
.hero-b .cta-row { justify-content: center; }
.hero-b .hero-decor {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px; width: 100%; max-width: 980px;
}
.hero-b .hero-decor .frame {
  aspect-ratio: 3/4; border-radius: 4px;
  background: var(--lb-green);
  position: relative; overflow: hidden;
}
.hero-b .hero-decor .frame:nth-child(2) { aspect-ratio: 3/4.4; background: var(--lb-sand); transform: translateY(-24px); }
.hero-b .hero-decor .frame:nth-child(3) { background: var(--lb-sage); }
.hero-b .hero-decor .frame-label {
  position: absolute; left: 16px; bottom: 14px; color: var(--lb-beige);
  font-family: 'Recoleta', serif; font-size: 17px; line-height: 1.15;
}

/* Hero C — Dunkelgrün immersiv (Styleguide: "Das dunkle Grün kann als ausdrucksstarke Hintergrundfarbe verwendet werden") */
.hero-c {
  background: var(--lb-green);
  color: var(--lb-beige);
  padding: 96px 0 96px;
  overflow: hidden;
  position: relative;
}
.hero-c::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 55% at 12% 20%, color-mix(in oklab, var(--lb-sage) 40%, transparent), transparent 65%),
    radial-gradient(40% 45% at 88% 85%, color-mix(in oklab, var(--lb-sand) 28%, transparent), transparent 65%);
  pointer-events: none;
}
.hero-c .wrap {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
@media (max-width: 980px) { .hero-c .wrap { grid-template-columns: 1fr; gap: 48px; } }
.hero-c-photo {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #1a2218;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.55);
}
.hero-c-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-c-photo .overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 100%);
  color: var(--lb-beige);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
}
.hero-c-photo .overlay .p {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 20px; line-height: 1.2;
}
.hero-c-photo .overlay .m {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: color-mix(in oklab, var(--lb-beige) 75%, transparent);
  margin-top: 6px;
}
.hero-c-photo .cim {
  font-family: 'Avenir LT', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in oklab, var(--lb-beige) 55%, transparent);
  white-space: nowrap;
}
.hero-c .wrap { position: relative; z-index: 1; }
.hero-c .h1 { color: var(--lb-beige); }
.hero-c .h1 .gr { color: var(--lb-sand); }
.hero-c .h1 .sand { color: var(--lb-sage); }
.hero-c .lede { color: color-mix(in oklab, var(--lb-beige) 80%, transparent); }
.hero-c .chip {
  background: color-mix(in oklab, var(--lb-beige) 12%, transparent);
  color: var(--lb-beige);
  border-color: color-mix(in oklab, var(--lb-beige) 22%, transparent);
}
.hero-c .chip .dot { background: var(--lb-sand); box-shadow: 0 0 0 3px color-mix(in oklab, var(--lb-sand) 25%, transparent); }
.hero-c .btn-primary { background: var(--lb-beige); color: var(--lb-green); }
.hero-c .btn-primary:hover { background: white; color: var(--lb-ink); }
.hero-c .btn-ghost { color: var(--lb-beige); border-color: color-mix(in oklab, var(--lb-beige) 40%, transparent); }
.hero-c .btn-ghost:hover { background: var(--lb-beige); color: var(--lb-green); }
.hero-c .fine { color: color-mix(in oklab, var(--lb-beige) 60%, transparent); }
.hero-c .hero-meta { border-top-color: color-mix(in oklab, var(--lb-beige) 20%, transparent); grid-column: 1 / -1; }
.hero-c .hero-meta .k { color: color-mix(in oklab, var(--lb-beige) 55%, transparent); }
.hero-c .hero-meta .v { color: var(--lb-beige); }

.hero-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--lb-beige-2);
}
@media (max-width: 820px) { .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.hero-meta .kv { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .k {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--lb-green);
}
.hero-meta .v {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 22px; color: var(--lb-ink); line-height: 1.2;
}

/* Scarcity */
.scarcity-bar-inline {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 10px 18px; border-radius: 999px;
  background: color-mix(in oklab, var(--lb-beige) 70%, transparent);
  border: 1px solid var(--lb-beige-2);
  font-size: 13px; color: var(--lb-ink);
  margin-top: 28px; letter-spacing: 0.02em;
  font-weight: 400;
}
.hero-c .scarcity-bar-inline {
  background: color-mix(in oklab, var(--lb-beige) 10%, transparent);
  border-color: color-mix(in oklab, var(--lb-beige) 22%, transparent);
  color: var(--lb-beige);
}
.scarcity-bar-inline .sep { opacity: .35; }
.countdown { display: inline-flex; gap: 6px; align-items: baseline; margin-left: 6px; }
.countdown .num { font-variant-numeric: tabular-nums; font-weight: 800; font-size: 14px; }
.countdown .lab { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; opacity: .6; font-weight: 500; }

/* ===== Partner/Therapeutenlogos-Strip ===== */
.proof-strip {
  padding: 44px 0;
  background: var(--lb-paper);
  border-top: 1px solid var(--lb-beige-2);
  border-bottom: 1px solid var(--lb-beige-2);
}
.proof-strip.dark { background: var(--lb-green); color: var(--lb-beige); border-color: transparent; }
.proof-strip .label {
  text-align: center;
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green); margin-bottom: 24px;
}
.proof-strip.dark .label { color: color-mix(in oklab, var(--lb-beige) 60%, transparent); }
.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  align-items: baseline; text-align: center;
}
@media (max-width: 820px) { .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.proof-stats .stat .n {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(40px, 4.5vw, 60px); line-height: 1;
  color: var(--lb-ink);
}
.proof-strip.dark .proof-stats .stat .n { color: var(--lb-beige); }
.proof-stats .stat .t {
  display: block; margin-top: 8px;
  font-size: 13px; color: var(--lb-ink-soft);
}
.proof-strip.dark .proof-stats .stat .t { color: color-mix(in oklab, var(--lb-beige) 70%, transparent); }

/* ===== Sektions-Header (einheitlich) ===== */
.section {
  padding: 112px 0 0;
}
@media (max-width: 820px) { .section { padding: 80px 0 0; } }

.section-h {
  display: grid; grid-template-columns: 120px 1fr; gap: 48px;
  align-items: end; margin-bottom: 56px;
}
@media (max-width: 820px) {
  .section-h { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}
.section-h .num {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green);
  padding-top: 16px;
}
.section-h h2 {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px); line-height: 1.02;
  letter-spacing: -0.005em; margin: 0;
}
.section-h h2 .gr { color: var(--lb-green); }
.section-h h2 .sand { color: var(--lb-sand-2); }
.section-h .lede { margin: 18px 0 0; max-width: 52ch; font-size: 17px; }

/* ===== Was erwartet dich (3 Säulen — drücken / rollen / dehnen Referenz) ===== */
.three-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--lb-beige-2);
  border-bottom: 1px solid var(--lb-beige-2);
}
@media (max-width: 820px) { .three-pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 44px 36px;
  border-right: 1px solid var(--lb-beige-2);
  background: var(--lb-paper);
  display: flex; flex-direction: column; gap: 14px;
}
.pillar:last-child { border-right: 0; }
@media (max-width: 820px) { .pillar { border-right: 0; border-bottom: 1px solid var(--lb-beige-2); } }
.pillar .kw {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 28px; color: var(--lb-green); margin-bottom: 4px;
}
.pillar h3 {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 22px; line-height: 1.2; margin: 0;
}
.pillar p {
  color: var(--lb-ink-soft); font-size: 15px; line-height: 1.55; margin: 0;
}
.pillar .ico-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--lb-beige);
  display: grid; place-items: center;
  color: var(--lb-green);
}

/* ===== Programm / Agenda ===== */
.agenda {
  border-top: 1px solid var(--lb-beige-2);
}
.agenda-row {
  display: grid; grid-template-columns: 140px 1fr 220px;
  gap: 40px; padding: 28px 0;
  border-bottom: 1px solid var(--lb-beige-2);
  align-items: baseline;
}
.agenda-row.live { background: color-mix(in oklab, var(--lb-beige) 60%, transparent); margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
@media (max-width: 820px) {
  .agenda-row { grid-template-columns: 90px 1fr; gap: 16px; }
  .agenda-row .speaker-tag { grid-column: 2; margin-top: 4px; }
}
.agenda-time {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 26px; color: var(--lb-green); line-height: 1;
}
.agenda-title {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 22px; letter-spacing: -0.005em; line-height: 1.25;
}
.agenda-title em {
  display: block; margin-top: 6px; font-style: normal;
  font-family: 'Avenir LT', sans-serif; font-weight: 300;
  font-size: 14px; color: var(--lb-ink-soft); letter-spacing: 0.02em;
}
.speaker-tag {
  font-family: 'Avenir LT', sans-serif; font-weight: 500;
  font-size: 13px; color: var(--lb-ink); letter-spacing: 0.02em;
}
.speaker-tag small {
  display: block; font-weight: 300; color: var(--lb-ink-soft); font-size: 12px; margin-top: 2px;
}
.track-pill {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--lb-beige); color: var(--lb-green);
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.track-pill.sand { background: color-mix(in oklab, var(--lb-sand) 30%, white); color: var(--lb-sand-2); }
.track-pill.sage { background: color-mix(in oklab, var(--lb-sage) 40%, white); color: var(--lb-green); }

/* ===== Für-wen Dual Path ===== */
.dual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
@media (max-width: 900px) { .dual { grid-template-columns: 1fr; } }
.dual-card {
  padding: 44px 38px 38px;
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  min-height: 460px;
}
.dual-card.community {
  background: var(--lb-beige); color: var(--lb-ink);
}
.dual-card.pro {
  background: var(--lb-green); color: var(--lb-beige);
}
.dual-card .eyebrow { color: inherit; opacity: .7; }
.dual-card.pro .eyebrow { color: color-mix(in oklab, var(--lb-beige) 80%, transparent); }
.dual-card h3 {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(30px, 3vw, 40px); line-height: 1.1; margin: 0;
}
.dual-card .count {
  font-family: 'Recoleta', serif; font-size: 74px; line-height: 1;
  margin-top: auto;
}
.dual-card.community .count { color: var(--lb-green); }
.dual-card.pro .count { color: var(--lb-sand); }
.dual-card .count small {
  display: block;
  font-family: 'Avenir LT', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--lb-ink-soft); margin-top: 4px;
}
.dual-card.pro .count small { color: color-mix(in oklab, var(--lb-beige) 70%, transparent); }
.dual-card ul { list-style: none; margin: 8px 0 0; padding: 0; }
.dual-card ul li {
  padding: 10px 0; font-size: 14px; line-height: 1.5;
  border-top: 1px solid color-mix(in oklab, currentColor 18%, transparent);
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
}
.dual-card ul li::before {
  content: "→"; color: currentColor; opacity: .5;
}

/* ===== Speakers ===== */
.speakers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
@media (max-width: 900px) { .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.speaker {
  display: flex; flex-direction: column;
}
.speaker-img {
  aspect-ratio: 4/5; border-radius: 4px;
  background: linear-gradient(160deg, var(--lb-sage), var(--lb-green));
  position: relative; overflow: hidden;
}
.speaker-img::after {
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Recoleta', serif; font-size: 80px;
  color: color-mix(in oklab, var(--lb-beige) 70%, transparent);
  letter-spacing: -0.02em;
}
.speaker-img.sand { background: linear-gradient(160deg, var(--lb-sand), var(--lb-sand-2)); }
.speaker-img.beige { background: linear-gradient(160deg, var(--lb-beige), var(--lb-beige-2)); }
.speaker-img.beige::after { color: color-mix(in oklab, var(--lb-green) 70%, transparent); }
.speaker-name {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 20px; margin-top: 16px; line-height: 1.2;
}
.speaker-role {
  font-size: 13px; color: var(--lb-ink-soft); margin-top: 4px;
}
.speaker-role strong { color: var(--lb-ink); font-weight: 500; }

/* ===== Testimonials ===== */
.testimonials {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px;
}
@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }
.tst {
  padding: 36px 32px; border-radius: 4px;
  display: flex; flex-direction: column; gap: 20px;
}
.tst.featured { background: var(--lb-green); color: var(--lb-beige); }
.tst.neutral { background: var(--lb-beige); color: var(--lb-ink); }
.tst.sand { background: color-mix(in oklab, var(--lb-sand) 22%, white); color: var(--lb-ink); }
.tst .q {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.005em;
}
.tst.featured .q { font-size: 28px; }

/* ===== Atmosphere full-bleed ===== */
.atmosphere {
  margin-top: 112px;
  position: relative; overflow: hidden;
  background: #0f1611;
  color: var(--lb-beige);
}
@media (max-width: 820px) { .atmosphere { margin-top: 80px; } }
.atmosphere-img {
  position: relative;
  aspect-ratio: 21/9;
  background: #0f1611;
}
@media (max-width: 820px) { .atmosphere-img { aspect-ratio: 4/3; } }
.atmosphere-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.atmosphere-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,22,17,.05) 40%, rgba(15,22,17,.85) 100%),
              linear-gradient(90deg, rgba(15,22,17,.45), transparent 60%);
}
.atmosphere-text {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 48px 56px;
}
@media (max-width: 820px) { .atmosphere-text { padding: 28px 24px; } }
.atmosphere-text .eyebrow {
  color: color-mix(in oklab, var(--lb-sand) 90%, white);
  margin-bottom: 16px;
}
.atmosphere-text h3 {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.05;
  margin: 0 0 16px; letter-spacing: -0.005em;
  max-width: 20ch;
}
.atmosphere-text p {
  font-size: 15px; color: color-mix(in oklab, var(--lb-beige) 80%, transparent);
  max-width: 52ch; margin: 0;
}
.tst .cite { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tst .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: color-mix(in oklab, currentColor 10%, transparent);
  display: grid; place-items: center;
  font-family: 'Recoleta', serif; font-size: 18px;
  color: currentColor;
}
.tst .who { font-size: 13px; line-height: 1.35; }
.tst .who strong { display: block; font-weight: 500; }
.tst .who span { opacity: .7; }

/* ===== Pricing ===== */
/* Single-Ticket Layout */
.single-ticket {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--lb-green);
  color: var(--lb-beige);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(92,104,91,0.45);
  max-width: 980px;
  margin: 0 auto;
}
.st-left {
  padding: 56px 48px 48px;
  display: flex; flex-direction: column;
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(255,255,255,0.06), transparent 60%),
    var(--lb-green);
  position: relative;
}
.st-left::after {
  content: ""; position: absolute;
  top: 56px; bottom: 56px; right: 0; width: 1px;
  background: rgba(245,241,233,0.18);
}
.st-eyebrow {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-sand);
  margin-bottom: 18px;
}
.st-name {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 36px; line-height: 1.1;
  margin: 0 0 20px;
}
.st-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 14px;
}
.st-amt {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 96px; line-height: 1;
  letter-spacing: -0.02em;
}
.st-cur {
  font-family: 'Recoleta', serif;
  font-size: 36px; opacity: 0.75;
}
.st-sub {
  font-size: 14px; color: rgba(245,241,233,0.78);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.st-cta {
  align-self: flex-start;
  background: var(--lb-beige); color: var(--lb-green);
}
.st-cta:hover { background: white; color: var(--lb-ink); }
.st-fine {
  margin-top: 16px;
  font-size: 12px; color: rgba(245,241,233,0.6);
  letter-spacing: 0.02em;
}
.st-right {
  padding: 56px 48px 48px;
  background: rgba(255,255,255,0.04);
}
.st-included {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-sand);
  margin-bottom: 22px;
}
.st-feat { list-style: none; margin: 0; padding: 0; }
.st-feat li {
  padding: 14px 0;
  font-size: 15px; line-height: 1.5;
  border-top: 1px solid rgba(245,241,233,0.14);
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  color: rgba(245,241,233,0.92);
}
.st-feat li:first-child { border-top: 0; padding-top: 0; }
.st-feat li::before {
  content: "✓"; color: var(--lb-sand); font-weight: 500;
  font-family: 'Avenir', sans-serif;
}
@media (max-width: 820px) {
  .single-ticket { grid-template-columns: 1fr; }
  .st-left, .st-right { padding: 36px 28px; }
  .st-left::after { display: none; }
  .st-amt { font-size: 76px; }
}

.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  border-radius: 6px; padding: 40px 32px 34px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--lb-paper);
  border: 1px solid var(--lb-beige-2);
  position: relative;
}
.tier.featured {
  background: var(--lb-green); color: var(--lb-beige);
  border-color: var(--lb-green);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -28px rgba(92,104,91,.5);
}
.tier.pro {
  background: var(--lb-beige); border-color: var(--lb-beige);
}
.tier .target {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green); padding-bottom: 4px;
}
.tier.featured .target { color: var(--lb-sand); }
.tier.pro .target { color: var(--lb-sand-2); }
.tier .tier-name {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 28px; line-height: 1.15;
}
.tier .tier-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tier .amt {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 56px; line-height: 1;
}
.tier .cur { font-size: 15px; opacity: .7; letter-spacing: 0.02em; }
.tier .strike { text-decoration: line-through; opacity: .45; font-size: 17px; }
.tier .tier-sub { font-size: 13px; opacity: .75; margin-top: -6px; }
.tier-feat { list-style: none; margin: 12px 0 4px; padding: 0; }
.tier-feat li {
  padding: 11px 0; font-size: 14px; line-height: 1.5;
  border-top: 1px solid color-mix(in oklab, currentColor 14%, transparent);
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
}
.tier-feat li::before {
  content: "✓"; color: currentColor; opacity: .7;
  font-family: 'Avenir LT', sans-serif; font-weight: 500;
}
.tier .btn { width: 100%; margin-top: auto; }
.tier.featured .btn-primary { background: var(--lb-beige); color: var(--lb-green); }
.tier.featured .btn-primary:hover { background: white; }
.tier .remaining {
  position: absolute; top: 26px; right: 28px;
  font-family: 'Avenir LT', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: 0.04em;
  opacity: .75;
}
.tier .feat-tag {
  position: absolute; top: -14px; left: 28px;
}

.risk-reversal {
  margin-top: 28px; padding: 22px 26px; border-radius: 4px;
  background: var(--lb-beige); color: var(--lb-ink);
  font-size: 14px; line-height: 1.55;
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  align-items: center;
}
.risk-reversal .ico {
  font-family: 'Recoleta', serif; font-size: 30px; color: var(--lb-green);
}
.risk-reversal strong { color: var(--lb-green); font-weight: 500; }

/* Pricing Table variant */
.pricing-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--lb-beige-2); border-radius: 4px;
  overflow: hidden; font-size: 14px; background: var(--lb-paper);
}
.pricing-table th, .pricing-table td {
  padding: 18px 20px; text-align: left;
  border-bottom: 1px solid var(--lb-beige-2); vertical-align: top;
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table th {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--lb-beige); color: var(--lb-green);
}
.pricing-table .tbl-price { font-family: 'Recoleta', serif; font-size: 30px; color: var(--lb-ink); }
.pricing-table tr.featured td { background: color-mix(in oklab, var(--lb-beige) 45%, white); }

/* ===== FAQ ===== */
.faq { border-top: 1px solid var(--lb-beige-2); }
.faq details { border-bottom: 1px solid var(--lb-beige-2); padding: 24px 0; }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 21px; line-height: 1.3; letter-spacing: -0.005em;
  display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Recoleta', serif; font-size: 28px; color: var(--lb-green);
  transition: transform .2s; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq-a { margin-top: 14px; color: var(--lb-ink-soft); font-size: 15px; line-height: 1.65; max-width: 68ch; }

/* ===== Final CTA ===== */
.final {
  margin: 120px 0 60px;
  padding: 96px 40px;
  background: var(--lb-green);
  color: var(--lb-beige);
  border-radius: 6px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 55% at 18% 22%, color-mix(in oklab, var(--lb-sage) 40%, transparent), transparent 65%),
    radial-gradient(40% 50% at 82% 80%, color-mix(in oklab, var(--lb-sand) 30%, transparent), transparent 65%);
}
.final > * { position: relative; z-index: 1; }
.final h2 {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(44px, 6vw, 80px); margin: 0 0 20px;
  line-height: 1.02; letter-spacing: -0.005em;
}
.final p { color: color-mix(in oklab, var(--lb-beige) 78%, transparent); font-size: 17px; margin: 0 0 36px; }
.final .cta-row { justify-content: center; }
.final .btn-primary { background: var(--lb-beige); color: var(--lb-green); }
.final .btn-primary:hover { background: white; }
.final .btn-ghost { color: var(--lb-beige); border-color: color-mix(in oklab, var(--lb-beige) 45%, transparent); }
.final .btn-ghost:hover { background: var(--lb-beige); color: var(--lb-green); }

/* Sticky Bottom CTA */
.sticky-bottom {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  background: var(--lb-green); color: var(--lb-beige);
  padding: 12px 14px 12px 22px; border-radius: 999px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 20px 50px -18px rgba(60,60,60,.4);
  transform: translateY(120%);
  transition: transform .3s ease;
  font-size: 14px;
}
.sticky-bottom.on { transform: translateY(0); }
.sticky-bottom .info { display: flex; flex-direction: column; gap: 2px; line-height: 1.15; }
.sticky-bottom .info .p { font-family: 'Recoleta', serif; font-size: 17px; }
.sticky-bottom .info .s { font-size: 11px; color: color-mix(in oklab, var(--lb-beige) 65%, transparent); letter-spacing: 0.04em; }
.sticky-bottom .btn {
  background: var(--lb-beige); color: var(--lb-green);
  padding: 10px 18px; font-size: 13px;
}
.sticky-bottom .btn:hover { background: white; }
@media (min-width: 981px) { .sticky-bottom { left: auto; right: 24px; bottom: 24px; max-width: 440px; } }

/* Footer */
footer {
  border-top: 1px solid var(--lb-beige-2);
  padding: 48px 0 56px;
  color: var(--lb-ink-soft); font-size: 13px;
}
footer .row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer .brand-ft {
  font-family: 'Recoleta', serif; color: var(--lb-ink); font-size: 17px;
}
footer .brand-ft small {
  display: block;
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green); margin-top: 4px;
}
footer .links { display: flex; gap: 22px; align-items: center; }

/* ===== Tweaks panel ===== */
.tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 320px; background: var(--lb-paper);
  border: 1px solid var(--lb-beige-2); border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(60,60,60,.25);
  font-size: 13px; max-height: calc(100vh - 40px); overflow: auto;
  font-family: 'Avenir LT', sans-serif;
}
.tweaks .th {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid var(--lb-beige-2);
}
.tweaks .th b {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green);
}
.tweaks .th button {
  background: transparent; border: 0; cursor: pointer;
  color: var(--lb-ink-soft); font-size: 16px;
}
.tweaks .body { padding: 16px 18px; display: flex; flex-direction: column; gap: 16px; }
.tweaks .row { display: flex; flex-direction: column; gap: 8px; }
.tweaks .row .lbl {
  font-weight: 800; font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lb-green-soft);
}
.tweaks .seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  background: var(--lb-beige); border-radius: 999px; padding: 3px;
}
.tweaks .seg button {
  background: transparent; border: 0; padding: 8px 8px;
  font-size: 12px; font-weight: 500; cursor: pointer;
  color: var(--lb-ink); border-radius: 999px;
  font-family: inherit; letter-spacing: 0.02em;
}
.tweaks .seg button.on { background: var(--lb-green); color: var(--lb-beige); }
.tweaks .toggles { display: flex; flex-direction: column; gap: 10px; }
.tweaks .tg { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.tweaks .tg-sw {
  width: 36px; height: 20px; border-radius: 999px;
  background: var(--lb-beige-2); position: relative; cursor: pointer;
  transition: background .15s;
}
.tweaks .tg-sw::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: white; transition: transform .15s;
}
.tweaks .tg-sw.on { background: var(--lb-green); }
.tweaks .tg-sw.on::after { transform: translateX(16px); }
.tweaks-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 69;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--lb-green); color: var(--lb-beige); border: 0; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -10px rgba(60,60,60,.3);
}


/* ============================================================
   B2C-refactor · neue Sektionen
   ============================================================ */

/* ---- Keyfacts strip (unter Hero) ---- */
.keyfacts-strip {
  background: var(--lb-cream);
  border-top: 1px solid var(--lb-beige-2);
  border-bottom: 1px solid var(--lb-beige-2);
  padding: 18px 0;
}
.kf-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 36px;
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-ink); align-items: center;
}
.kf { display: inline-flex; align-items: center; gap: 10px; }
.kf-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lb-green);
  box-shadow: 0 0 0 4px rgba(92,104,91,0.18);
  animation: kf-pulse 2s ease-in-out infinite;
}
@keyframes kf-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(92,104,91,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(92,104,91,0.05); }
}
@media (max-width: 820px) { .kf-row { gap: 20px; font-size: 11px; } }

/* ---- "Bist du bereit?" Opener ---- */
.ready-section {
  background: var(--lb-cream);
  padding: 120px 0;
}
.ready-inner {
  max-width: 920px; margin: 0 auto; text-align: center;
}
.ready-inner .eyebrow {
  display: inline-block; margin-bottom: 24px;
}
.h2-ready {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(40px, 5.2vw, 68px); line-height: 1.08;
  color: var(--lb-ink); margin: 0 0 64px;
  letter-spacing: -0.01em;
}
.h2-ready em { font-style: normal; }
.h2-ready em.gr { color: var(--lb-green); }
.ready-list {
  display: flex; flex-direction: column; gap: 20px;
  text-align: left; max-width: 780px; margin: 0 auto 56px;
}
.ready-item {
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--lb-beige-2);
  border-radius: 2px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s, transform .2s;
}
.ready-item:hover { border-color: var(--lb-green); transform: translateX(4px); }
.ready-bullet {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-green);
}
.ready-q {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.35;
  color: var(--lb-ink);
}
.ready-q strong, .ready-q b {
  font-family: 'Recoleta', serif; font-weight: 400;
  color: var(--lb-green);
  font-style: italic;
}
.ready-footer p {
  font-size: 17px; color: var(--lb-ink-soft);
  margin: 0 0 28px; line-height: 1.5;
}

/* ---- Hosts story — "Hi, wir sind Roland & Petra" ---- */
.hosts-section {
  background: var(--lb-paper);
  padding: 120px 0;
}
.hosts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .hosts-grid { grid-template-columns: 1fr; gap: 48px; } }
.hosts-photo {
  aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
  background: var(--lb-beige);
}
.hosts-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hosts-text .eyebrow { margin-bottom: 18px; }
.hosts-text .h2 {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(36px, 4.4vw, 58px); line-height: 1.05;
  color: var(--lb-ink); margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.hosts-text .h2 em { font-style: normal; }
.hosts-text .h2 em.gr { color: var(--lb-green); }
.hosts-text .lede {
  font-size: 19px; line-height: 1.5; color: var(--lb-ink);
  margin: 0 0 20px; max-width: none;
}
.hosts-text p {
  font-size: 16px; line-height: 1.6; color: var(--lb-ink-soft);
  margin: 0 0 16px;
}
.hosts-sign {
  font-family: 'Recoleta', serif; font-weight: 400; font-style: italic;
  color: var(--lb-green); font-size: 17px; margin-top: 28px !important;
}

/* ---- Was dich erwartet — Stats + Highlights ---- */
.expect-section { background: var(--lb-cream); }
.expect-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--lb-beige-2);
  border-bottom: 1px solid var(--lb-beige-2);
  margin-bottom: 80px;
}
@media (max-width: 820px) { .expect-stats { grid-template-columns: 1fr; } }
.expect-stat {
  padding: 56px 40px;
  border-right: 1px solid var(--lb-beige-2);
}
.expect-stat:last-child { border-right: 0; }
@media (max-width: 820px) {
  .expect-stat { border-right: 0; border-bottom: 1px solid var(--lb-beige-2); }
  .expect-stat:last-child { border-bottom: 0; }
}
.expect-n {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(72px, 8vw, 112px); line-height: 1;
  color: var(--lb-green); letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.expect-u {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-ink); margin-bottom: 20px;
}
.expect-t {
  font-size: 15px; line-height: 1.55; color: var(--lb-ink-soft);
}
.highlights-block {
  max-width: 820px; margin: 0 auto;
}
.highlights-block .eyebrow { margin-bottom: 28px; text-align: center; }
.highlights {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: flex; flex-direction: column;
}
.highlight-item {
  display: grid; grid-template-columns: 60px 1fr;
  align-items: baseline; gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--lb-beige-2);
}
.highlight-item:first-child { border-top: 1px solid var(--lb-beige-2); }
.h-num {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 22px; color: var(--lb-green); opacity: .6;
}
.h-text {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25;
  color: var(--lb-ink);
}
.expect-note {
  font-size: 14px; color: var(--lb-ink-soft); line-height: 1.55;
  text-align: center; margin-top: 40px;
  max-width: 640px; margin-left: auto; margin-right: auto;
  padding-top: 32px; border-top: 1px solid var(--lb-beige-2);
}

/* ---- Pause quote — Atempause ---- */
.pause-quote {
  background: var(--lb-green); color: var(--lb-beige);
  padding: 100px 0;
}
.pause-quote blockquote {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(24px, 3vw, 38px); line-height: 1.35;
  max-width: 900px; margin: 0 auto 24px;
  text-align: center; color: var(--lb-beige);
  font-style: italic;
  text-wrap: pretty;
}
.pause-cite {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-sand); text-align: center;
}

/* ---- Saalplan visual ---- */
.seatmap-section { background: var(--lb-paper); }
.seatmap {
  max-width: 900px; margin: 0 auto;
  padding: 48px 40px; background: var(--lb-cream);
  border: 1px solid var(--lb-beige-2);
  display: flex; flex-direction: column; gap: 28px;
}
.sm-stage {
  background: var(--lb-ink); color: var(--lb-beige);
  padding: 14px 24px; text-align: center;
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  margin: 0 auto; width: 70%;
  border-radius: 2px 2px 100px 100px / 2px 2px 60px 60px;
}
.sm-rows { display: flex; flex-direction: column; gap: 16px; }
.sm-row { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.sm-label {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-ink-soft);
}
.sm-seats {
  display: flex; flex-wrap: wrap; gap: 5px; justify-content: center;
  max-width: 640px;
}
.sm-row-naehe .sm-seats { max-width: 720px; }
.sm-row-weitsicht .sm-seats { max-width: 100%; }
.sm-seat {
  width: 12px; height: 12px; border-radius: 2px;
  display: inline-block;
}
.sm-seat-augenhoehe { background: var(--lb-sand); }
.sm-seat-naehe      { background: var(--lb-green); }
.sm-seat-weitsicht  { background: var(--lb-beige-2); border: 1px solid var(--lb-beige-3, #c9c0af); }
.sm-legend {
  display: flex; justify-content: center; gap: 32px;
  padding-top: 24px; border-top: 1px solid var(--lb-beige-2);
  font-family: 'Avenir', sans-serif; font-weight: 500;
  font-size: 13px; color: var(--lb-ink);
}
.sm-legend > div { display: inline-flex; align-items: center; gap: 8px; }
.sm-dot { width: 12px; height: 12px; border-radius: 2px; display: inline-block; }
.sm-dot-augenhoehe { background: var(--lb-sand); }
.sm-dot-naehe      { background: var(--lb-green); }
.sm-dot-weitsicht  { background: var(--lb-beige-2); border: 1px solid #c9c0af; }
@media (max-width: 820px) {
  .seatmap { padding: 32px 20px; }
  .sm-legend { flex-wrap: wrap; gap: 16px; }
}

/* ---- Pricing — tier-position ---- */
.tier-position {
  font-family: 'Avenir', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lb-green); margin-bottom: 18px;
  min-height: 14px;
}

/* ---- FAQ groups ---- */
.faq-groups {
  display: flex; flex-direction: column; gap: 56px;
  max-width: 880px; margin: 0 auto;
}
.faq-group-title {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 26px; color: var(--lb-green);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lb-beige-2);
}

/* ---- Final CTA — eyebrow ---- */
.final-eyebrow {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-sand); margin-bottom: 20px;
}


/* ---- Ticket phases banner ---- */
.phase-banner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 56px; padding: 24px 32px;
  background: var(--lb-cream); border: 1px solid var(--lb-beige-2);
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.phase-step {
  flex: 1; text-align: center;
  opacity: 0.55;
  transition: opacity .2s;
}
.phase-step-active { opacity: 1; }
.phase-n {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-ink-soft); margin-bottom: 6px;
}
.phase-step-active .phase-n { color: var(--lb-green); }
.phase-t {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 20px; color: var(--lb-ink); margin-bottom: 4px;
}
.phase-s {
  font-size: 12px; color: var(--lb-ink-soft);
  letter-spacing: 0.04em;
}
.phase-step-active .phase-s { color: var(--lb-green); font-weight: 600; }
.phase-arrow {
  font-family: 'Recoleta', serif; font-size: 24px; color: var(--lb-sand);
}

/* ---- Tier: regulärer Preis (Durchstreich) ---- */
.tier-price-regular {
  display: block; width: 100%;
  font-family: 'Avenir', sans-serif; font-weight: 500;
  font-size: 12px; color: var(--lb-ink-soft);
  text-decoration: line-through;
  margin-top: 6px; letter-spacing: 0.04em;
}
.tier.featured .tier-price-regular { color: rgba(245, 241, 233, 0.6); }


/* ============================================================
   FOMO / Conversion refactor
   ============================================================ */

/* ---- FOMO bar (top) ---- */
.fomo-bar {
  position: sticky; top: 0; z-index: 90;
  background: var(--lb-green); color: var(--lb-beige);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.fomo-bar-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 0; font-size: 14px; font-weight: 500;
  flex-wrap: wrap; justify-content: center;
}
.fomo-flash { font-size: 16px; }
.fomo-text b { font-weight: 700; }
.fomo-countdown {
  background: rgba(255,255,255,0.12); padding: 4px 12px; border-radius: 2px;
  font-variant-numeric: tabular-nums; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.fomo-countdown .countdown { color: var(--lb-beige); }
.fomo-cta {
  background: var(--lb-beige); color: var(--lb-green);
  padding: 6px 14px; border-radius: 2px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: transform .15s;
}
.fomo-cta:hover { transform: translateX(3px); }
.fomo-close {
  background: transparent; border: 0; color: var(--lb-beige);
  font-size: 20px; cursor: pointer; opacity: 0.6; padding: 0 4px;
  margin-left: 8px;
}
.fomo-close:hover { opacity: 1; }
@media (max-width: 680px) {
  .fomo-bar-inner { font-size: 12px; gap: 10px; }
}

/* ---- Hero: full-bleed with overlay claim ---- */
.hero-full {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column;
  color: var(--lb-beige);
  overflow: hidden;
}
.hero-full-bg { position: absolute; inset: 0; z-index: 0; }
.hero-full-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-full-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(40,48,40,0.35) 0%, rgba(40,48,40,0.6) 50%, rgba(40,48,40,0.92) 100%),
    linear-gradient(90deg, rgba(40,48,40,0.5) 0%, rgba(40,48,40,0) 70%);
}
/* A — stärkerer Scrim für mehr Lesbarkeit */
.hero-scrim-strong {
  background:
    linear-gradient(180deg, rgba(40,48,40,0.55) 0%, rgba(40,48,40,0.78) 55%, rgba(28,34,28,0.97) 100%),
    linear-gradient(90deg, rgba(28,34,28,0.78) 0%, rgba(28,34,28,0.15) 60%, rgba(28,34,28,0) 100%);
}
/* C — kräftiger Scrim, Crowd oben gedimmt aber sichtbar */
.hero-scrim-bottom {
  background:
    linear-gradient(180deg, rgba(28,34,28,0.55) 0%, rgba(28,34,28,0.6) 25%, rgba(20,26,20,0.88) 65%, rgba(16,22,16,0.98) 100%),
    linear-gradient(90deg, rgba(20,26,20,0.5) 0%, rgba(20,26,20,0.05) 70%);
}
.hero-vc .hero-claim,
.hero-vc .hero-lede {
  text-shadow: 0 2px 18px rgba(0,0,0,0.65), 0 1px 3px rgba(0,0,0,0.5);
}
/* A — Schutzbox um den Text */
.hero-textbox {
  display: inline-block;
  max-width: 880px;
  padding: 36px 40px 32px;
  background: linear-gradient(180deg, rgba(20,26,20,0.55) 0%, rgba(20,26,20,0.78) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 3px solid var(--lb-sand);
  border-radius: 2px;
}
.hero-textbox .hero-claim { margin-bottom: 22px; }
.hero-textbox .hero-lede { margin-bottom: 28px; }
.hero-textbox .hero-cta-row { margin-bottom: 0; }
.hero-textbox .hero-countdown-block { margin-top: 20px; }
@media (max-width: 820px) {
  .hero-textbox { padding: 24px 22px 22px; }
}

/* B — Split-Hero */
.hero-split {
  position: relative; min-height: 92vh;
  display: flex; color: var(--lb-beige);
  background: var(--lb-green);
  overflow: hidden;
}
.hero-split-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  width: 100%; min-height: 92vh;
}
.hero-split-text {
  background: var(--lb-green);
  background-image:
    radial-gradient(60% 80% at 0% 0%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(0,0,0,0.25), transparent 60%);
  display: flex; align-items: center;
  padding: 80px clamp(40px, 6vw, 96px);
  position: relative;
}
.hero-split-text::after {
  content: ""; position: absolute;
  top: 0; right: -1px; bottom: 0; width: 64px;
  background: linear-gradient(90deg, var(--lb-green) 0%, rgba(92,104,91,0.7) 50%, transparent 100%);
  z-index: 2; pointer-events: none;
}
.hero-split-text-inner { max-width: 620px; width: 100%; }
.hero-split-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 10px 18px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-beige);
  margin-bottom: 36px;
}
.hero-split-chip .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lb-sand);
  box-shadow: 0 0 0 4px rgba(209,166,137,0.3);
  animation: kf-pulse 2s ease-in-out infinite;
}
.hero-split-text .hero-claim {
  color: var(--lb-beige);
  font-size: clamp(48px, 5.6vw, 96px);
  margin-bottom: 28px;
}
.hero-split-text .hero-claim .hc-em { color: var(--lb-sand); }
.hero-split-text .hero-lede {
  color: rgba(245,241,233,0.82);
  margin-bottom: 36px;
}
.hero-split-seats {
  margin-top: 28px;
  font-family: 'Avenir', sans-serif; font-size: 13px;
  color: rgba(245,241,233,0.7);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-split-seats b { color: var(--lb-sand); font-weight: 850; }
.hero-split-image {
  position: relative; overflow: hidden;
}
.hero-split-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 980px) {
  .hero-split-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-split-text { padding: 56px 28px; min-height: 70vh; }
  .hero-split-text::after { display: none; }
  .hero-split-image { min-height: 320px; }
}
.hero-full-topbar {
  position: relative; z-index: 2; padding-top: 28px;
}
.hero-full-topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.hero-date-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  padding: 10px 18px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-beige);
}
.hero-date-chip .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lb-sand);
  box-shadow: 0 0 0 4px rgba(209,166,137,0.3);
  animation: kf-pulse 2s ease-in-out infinite;
}
.hero-seats-chip {
  background: rgba(209,166,137,0.95); color: var(--lb-ink);
  padding: 10px 18px; border-radius: 2px;
  font-family: 'Avenir', sans-serif; font-weight: 500; font-size: 13px;
}
.hero-seats-chip b { font-weight: 850; }
.hero-full-content {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: flex-end;
  padding-bottom: 80px; padding-top: 60px;
}
/* Premieren-Eyebrow — sitzt direkt über dem Hero-Claim */
.hero-premiere {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'GT America', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lb-beige);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 16px 8px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.hero-premiere .hp-star {
  font-size: 13px;
  color: var(--lb-sand);
  transform: translateY(-1px);
}
.hero-premiere .hp-sep {
  opacity: 0.45;
  font-weight: 400;
}
/* Auf hellem Split-Block-Background variante B */
.hero-split-text .hero-premiere {
  background: rgba(255,255,255,0.08);
  color: var(--lb-beige);
}

.hero-claim {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(52px, 8vw, 124px); line-height: 0.96;
  letter-spacing: -0.02em; color: var(--lb-beige);
  margin: 0 0 28px; max-width: 18ch;
  text-wrap: balance;
}
.hero-claim .hc-pre,
.hero-claim .hc-em,
.hero-claim .hc-post { display: block; }
.hero-claim .hc-em { color: var(--lb-sand); font-style: italic; }
.hero-lede {
  font-size: clamp(17px, 1.6vw, 22px); line-height: 1.45;
  color: rgba(245,241,233,0.92); max-width: 56ch;
  margin: 0 0 36px;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-bonus {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-sand);
}
.hero-countdown-block {
  display: inline-flex; align-items: center; gap: 20px;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(8px);
  padding: 14px 22px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.14);
}
.hcb-label {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-sand);
}
.hero-countdown-block .countdown { color: var(--lb-beige); font-size: 14px; }
.hero-countdown-block .countdown .num {
  font-family: 'Recoleta', serif; font-size: 22px;
  padding: 0 4px; font-variant-numeric: tabular-nums;
}
@media (max-width: 820px) {
  .hero-full { min-height: 86vh; }
  .hero-full-content { padding-bottom: 48px; }
  .hero-countdown-block { padding: 10px 14px; gap: 12px; }
}

/* ---- QuickValue ---- */
.qv-section { background: var(--lb-cream); padding: 100px 0 120px; }
.qv-head { text-align: center; margin-bottom: 64px; }
.qv-head .eyebrow { margin-bottom: 18px; }
.qv-title {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(36px, 4.4vw, 58px); line-height: 1.05;
  color: var(--lb-ink); margin: 0;
  letter-spacing: -0.01em;
}
.qv-title em { font-style: normal; }
.qv-title em.gr { color: var(--lb-green); }
.qv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 820px) { .qv-grid { grid-template-columns: 1fr; } }
.qv-item {
  display: flex; flex-direction: column; gap: 0;
  background: var(--lb-paper);
  border: 1px solid var(--lb-beige-2);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.qv-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(60,60,60,0.18);
}
.qv-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--lb-beige);
}
.qv-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.qv-item:hover .qv-img img { transform: scale(1.04); }
.qv-body {
  padding: 32px 32px 36px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.qv-n {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 28px; color: var(--lb-green); opacity: 0.6;
}
.qv-t {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: 26px; line-height: 1.2; margin: 0; color: var(--lb-ink);
}
.qv-d {
  color: var(--lb-ink-soft); font-size: 15px; line-height: 1.55; margin: 0;
}
.qv-cta {
  text-align: center; display: flex; flex-direction: column; gap: 14px;
  align-items: center;
}
.qv-fine {
  font-size: 13px; color: var(--lb-ink-soft);
}

/* ---- Testimonials headline ---- */
.tst-head { text-align: center; margin-bottom: 56px; }
.tst-head .eyebrow { margin-bottom: 18px; }
.tst-title {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px); line-height: 1.15;
  color: var(--lb-ink); margin: 0; max-width: 24ch;
  margin-left: auto; margin-right: auto;
}
.tst-title em { font-style: normal; }
.tst-title em.gr { color: var(--lb-green); }

/* ---- FAQ head ---- */
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head .eyebrow { margin-bottom: 18px; }
.faq-title {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px); line-height: 1.1;
  color: var(--lb-ink); margin: 0;
}

/* ---- Urgency bar (between pricing and FAQ) ---- */
.urgency-bar {
  background: var(--lb-ink); color: var(--lb-beige);
  padding: 28px 0;
}
.urgency-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.ub-left { display: flex; align-items: center; gap: 20px; }
.ub-pulse {
  width: 14px; height: 14px; border-radius: 50%; background: var(--lb-sand);
  box-shadow: 0 0 0 6px rgba(209,166,137,0.25);
  animation: kf-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.ub-top {
  font-family: 'Recoleta', serif; font-size: 22px; color: var(--lb-beige);
  margin-bottom: 4px;
}
.ub-bot {
  font-family: 'Avenir', sans-serif; font-weight: 850;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-sand);
}
.ub-bot .countdown { color: var(--lb-sand); }
.urgency-bar .btn-primary {
  background: var(--lb-sand); color: var(--lb-ink);
}
.urgency-bar .btn-primary:hover { background: #e0b79a; }

/* ============================================================
   Waitlist — Soft-Conversion vor Final CTA
   ============================================================ */
.waitlist-section {
  background: var(--lb-cream);
  border-top: 1px solid var(--lb-beige-2);
  border-bottom: 1px solid var(--lb-beige-2);
  padding: 96px 0;
}
@media (max-width: 760px) { .waitlist-section { padding: 64px 0; } }

.wl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .wl-grid { grid-template-columns: 1fr; gap: 40px; }
}

.wl-intro .eyebrow {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green); margin-bottom: 20px;
}
.wl-title {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08; letter-spacing: -0.005em;
  color: var(--lb-ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
.wl-title em { font-style: normal; }
.wl-title .gr { color: var(--lb-green); }
.wl-lede {
  font-family: 'Avenir LT', sans-serif; font-weight: 300;
  font-size: 16px; line-height: 1.6;
  color: var(--lb-ink-soft);
  margin: 0 0 28px;
  max-width: 46ch; text-wrap: pretty;
}
.wl-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.wl-bullets li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  align-items: flex-start;
  font-size: 15px; line-height: 1.5;
  color: var(--lb-ink);
}
.wl-tick {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--lb-green);
  color: var(--lb-beige);
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}
.wl-tick svg { width: 12px; height: 12px; }

/* ---- Form Card ---- */
.wl-card-wrap { display: flex; }
.wl-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--lb-beige-2);
  padding: 40px 40px 36px;
  box-shadow: 0 30px 60px -40px rgba(60, 60, 60, 0.18);
  border-radius: 4px;
}
@media (max-width: 600px) { .wl-card { padding: 28px 22px; } }

.wl-form-h {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2; letter-spacing: -0.005em;
  margin: 0 0 6px; color: var(--lb-ink);
  text-align: center;
}
.wl-form-sub {
  text-align: center;
  font-size: 13px; color: var(--lb-ink-soft);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.wl-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.wl-field label {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lb-green);
}
.wl-field input[type="email"] {
  font-family: 'Avenir LT', sans-serif; font-weight: 400;
  font-size: 16px; letter-spacing: 0.01em;
  color: var(--lb-ink);
  padding: 16px 18px;
  border: 1px solid var(--lb-beige-2);
  background: var(--lb-paper);
  border-radius: 2px;
  width: 100%;
  transition: border-color .15s, background .15s;
}
.wl-field input:focus {
  outline: none;
  border-color: var(--lb-green);
  background: #fff;
}
.wl-field input::placeholder { color: #b0aea7; font-weight: 300; }

.wl-check-row {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  align-items: flex-start;
  margin: 6px 0 22px;
  font-size: 13px; color: var(--lb-ink-soft);
  line-height: 1.5;
}
.wl-check-row input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--lb-green);
  cursor: pointer;
}
.wl-check-row a { color: var(--lb-green); text-decoration: underline; text-underline-offset: 2px; }

.wl-submit {
  width: 100%;
  background: var(--lb-green); color: var(--lb-beige);
  border: 0; cursor: pointer;
  font-family: 'Avenir LT', sans-serif; font-weight: 500;
  font-size: 15px; letter-spacing: 0.04em;
  padding: 18px 24px; border-radius: 2px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .15s, transform .12s;
}
.wl-submit:hover { background: var(--lb-ink); }
.wl-submit:active { transform: translateY(1px); }
.wl-submit[disabled] { opacity: .6; cursor: not-allowed; }
.wl-submit .arrow { transition: transform .2s; }
.wl-submit:hover .arrow { transform: translateX(4px); }

.wl-fine {
  text-align: center;
  font-size: 12px; color: var(--lb-ink-soft);
  margin: 16px 0 0; letter-spacing: 0.02em;
}
.wl-fine svg { display: inline-block; vertical-align: -3px; margin-right: 6px; }

/* ---- Success state ---- */
.wl-success { text-align: center; padding: 4px 0 8px; }
.wl-success-mark {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--lb-cream);
  display: grid; place-items: center;
  color: var(--lb-green);
}
.wl-success-mark svg { width: 28px; height: 28px; }
.wl-success h3 {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.2; letter-spacing: -0.005em;
  margin: 0 0 12px; color: var(--lb-ink);
}
.wl-success > p {
  color: var(--lb-ink-soft); font-size: 14px;
  max-width: 44ch; margin: 0 auto 22px;
  line-height: 1.6;
}
.wl-next {
  border-top: 1px solid var(--lb-beige-2);
  margin-top: 22px; padding-top: 22px;
  text-align: left;
  display: flex; flex-direction: column; gap: 12px;
}
.wl-step {
  display: grid; grid-template-columns: 32px 1fr; gap: 14px;
  font-size: 14px; color: var(--lb-ink); line-height: 1.5;
}
.wl-step .n {
  font-family: 'Recoleta', serif; font-weight: 400;
  color: var(--lb-green); font-size: 18px;
}

/* ============================================================
   Eindrücke — Foto-Mosaik aus dem letzten Community-Event
   ============================================================ */
.eindruecke-section { padding: 110px 0 100px; background: var(--lb-paper); }
@media (max-width: 760px) { .eindruecke-section { padding: 72px 0; } }

.ein-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.ein-head .eyebrow {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green); margin-bottom: 18px;
}
.ein-title {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--lb-ink); margin: 0 0 18px;
  text-wrap: balance;
}
.ein-title em { font-style: normal; }
.ein-title .gr { color: var(--lb-green); }
.ein-sub {
  font-size: 16px; color: var(--lb-ink-soft);
  line-height: 1.6; margin: 0; text-wrap: pretty;
}

.ein-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 12px;
}
.ein-tile {
  margin: 0; position: relative; overflow: hidden;
  background: var(--lb-cream);
  border-radius: 2px;
}
.ein-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s ease;
}
.ein-tile:hover img { transform: scale(1.05); }

.g-hug      { grid-column: span 5; grid-row: span 4; }
.g-trio     { grid-column: span 7; grid-row: span 4; }
.g-stretch  { grid-column: span 4; grid-row: span 5; }
.g-friends  { grid-column: span 4; grid-row: span 3; }
.g-petra    { grid-column: span 4; grid-row: span 3; }
.g-roland   { grid-column: span 4; grid-row: span 2; }
.g-cheer    { grid-column: span 4; grid-row: span 2; }
.g-dance    { grid-column: span 12; grid-row: span 4; }

@media (max-width: 900px) {
  .ein-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; gap: 10px; }
  .g-hug, .g-trio { grid-column: span 6; grid-row: span 3; }
  .g-stretch, .g-friends, .g-petra { grid-column: span 3; grid-row: span 3; }
  .g-roland, .g-cheer { grid-column: span 3; grid-row: span 2; }
  .g-dance { grid-column: span 6; grid-row: span 3; }
}
@media (max-width: 540px) {
  .ein-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .g-hug, .g-trio, .g-stretch, .g-friends, .g-petra, .g-roland, .g-cheer { grid-column: span 1; grid-row: span 2; }
  .g-hug, .g-dance { grid-column: span 2; }
}

.ein-foot {
  text-align: center;
  margin: 44px auto 0;
  font-family: 'Recoleta', serif; font-weight: 400; font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--lb-green);
  line-height: 1.4; max-width: 38ch;
  text-wrap: balance;
}

/* ============================================================
   Hosts — Roland & Petra Portrait + Quote
   ============================================================ */
section.hosts-section.section {
  padding: 110px 0;
  background: var(--lb-cream);
  border-top: 1px solid var(--lb-beige-2);
  border-bottom: 1px solid var(--lb-beige-2);
}
@media (max-width: 760px) { .hosts-section { padding: 72px 0; } }

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .hosts-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hosts-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--lb-beige);
}
.hosts-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hosts-photo-tag {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(20,24,20,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--lb-beige);
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid rgba(245,241,233,0.18);
}

.hosts-text .eyebrow {
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green); margin-bottom: 18px;
}
.hosts-h {
  font-family: 'Recoleta', serif; font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04; letter-spacing: -0.01em;
  color: var(--lb-ink); margin: 0 0 24px;
  text-wrap: balance;
}
.hosts-h em { font-style: normal; }
.hosts-h .gr { color: var(--lb-green); }
.hosts-q {
  font-family: 'Recoleta', serif; font-weight: 400; font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5; color: var(--lb-ink);
  margin: 0 0 18px; max-width: 38ch;
  text-wrap: pretty;
}
.hosts-cite {
  font-style: normal;
  font-family: 'Avenir LT', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lb-green);
}
