/* ================= V3 layer styles ================= */

    /* never let free-placed cards widen the page (protects fixed nav on mobile) */
    html, body { overflow-x: hidden; overflow-x: clip; }
    body { position: relative; }
    /* the card playfield: exactly canvas-sized, clips cards at the edges */
    .playfield {
      position: absolute; inset: 0; z-index: 30;
      overflow: clip; pointer-events: none;
    }
    .playfield .deck-card { pointer-events: auto; }

    /* --- Global texture layers (static — painted once, zero ongoing cost) --- */
    .grain {
      position: fixed; inset: 0; z-index: 100; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.05;
      transform: translateZ(0);
    }
    .glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
    .spielplan { position: absolute; pointer-events: none; opacity: 0.14; z-index: 0; }

    /* --- Nav (fixed bar anchored to viewport edges — never depends on canvas size) --- */
    .nav {
      position: fixed; top: 0.9rem; left: 0.9rem; right: 0.9rem; z-index: 60;
      margin-inline: auto; max-width: 1240px;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      padding: 0.5rem 0.55rem 0.5rem 1.1rem;
      background: rgba(5, 18, 11, 0.55);
      backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
      border: 1px solid rgba(180, 198, 185, 0.22);
      border-radius: 999px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    }
    .nav img.logo { width: 44px; flex: 0 0 auto; }
    .nav .links {
      display: flex; gap: 1rem; flex: 1 1 auto; justify-content: center; min-width: 0;
    }
    .nav .links a {
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--mw-sage-1); text-decoration: none; transition: color 0.2s; white-space: nowrap;
    }
    .nav .links a:hover { color: var(--mw-white); }
    @media (max-width: 860px) { .nav .links { display: none; } }
    .nav .btn { flex: 0 0 auto; margin: 0; }

    /* --- Buttons --- */
    .btn {
      position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
      font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
      text-transform: uppercase; letter-spacing: 0.07em;
      padding: 0.95rem 1.9rem; border-radius: 999px; border: 2px solid transparent;
      text-decoration: none; cursor: pointer; overflow: hidden; white-space: nowrap;
      transition: color 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .btn--lime { background: var(--mw-lime); color: var(--mw-night); }
    .btn--lime:hover { box-shadow: 0 8px 32px rgba(216, 255, 107, 0.35); }
    .btn--lime::after {
      content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
      background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
      transform: skewX(-20deg); transition: left 0.6s var(--ease-out);
    }
    .btn--lime:hover::after { left: 130%; }
    .btn--ghost { background: rgba(255, 255, 255, 0.04); color: var(--mw-white); border-color: rgba(255, 255, 255, 0.35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
    .btn--ghost:hover { border-color: var(--mw-lime); color: var(--mw-lime); }
    .btn--white { background: var(--mw-white); color: var(--mw-night); }
    .btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3); }
    .btn--nav { padding: 0.65rem 1.35rem; font-size: 0.78rem; }
    /* small pill button for cards */
    .btn--sm { padding: 0.55rem 1.15rem; font-size: 0.75rem; letter-spacing: 0.08em; }
    .btn--outline-lime { background: transparent; color: var(--mw-lime); border-color: rgba(216, 255, 107, 0.45); }
    .btn--outline-lime:hover { background: var(--mw-lime); color: var(--mw-night); border-color: var(--mw-lime); }

    /* --- Hero --- */
    .hero {
      position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end;
      overflow: hidden; isolation: isolate;
    }
    .hero .bg-wrap { position: absolute; inset: -12% 0; z-index: -2; }
    .hero .bg-picture { display: block; width: 100%; height: 100%; }
    .hero img.bg { width: 100%; height: 100%; object-fit: cover; }
    @media (max-width: 768px) {
      .hero img.bg { object-position: 50% 30%; }
    }
    .hero::after {
      content: ""; position: absolute; inset: 0; z-index: -1;
      background:
        linear-gradient(-78deg, rgba(5, 18, 11, 0.92) 5%, rgba(5, 18, 11, 0.5) 45%, rgba(5, 18, 11, 0.1) 75%),
        linear-gradient(0deg, var(--mw-night) 2%, transparent 30%);
    }
    @media (max-width: 768px) {
      .hero::after {
        background: linear-gradient(0deg, rgba(5, 18, 11, 0.9) 18%, rgba(5, 18, 11, 0.42) 55%, rgba(5, 18, 11, 0.12) 100%);
      }
    }
    .hero .spielplan { right: -4%; top: 8%; width: 46vw; max-width: 720px; opacity: 0.1; }
    .hero .inner { position: relative; margin-left: auto; padding: clamp(2rem, 6vw, 5rem); padding-top: 7.5rem; padding-bottom: clamp(4rem, 8vw, 6.5rem); max-width: 900px; z-index: 2; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 0.75rem;
      font-size: var(--text-eyebrow); font-weight: 700; letter-spacing: var(--tracking-eyebrow);
      text-transform: uppercase; color: var(--mw-lime); margin-bottom: 1.6rem;
    }
    .eyebrow::before { content: ""; width: 2.4rem; height: 2px; background: var(--mw-lime); }
    .eyebrow--red { color: var(--mw-red-soft); }
    .eyebrow--red::before { background: var(--mw-red-soft); }

    .hero h1 { font-size: clamp(2.6rem, 7.2vw, 6rem); font-weight: var(--display-weight-heavy); margin-bottom: 1.7rem; }
    .hero h1 .line { display: block; overflow: hidden; padding-top: 0.12em; margin-top: -0.12em; }
    .hero h1 .word { display: inline-block; will-change: transform; }
    /* Underlining the second line's first word is a flourish aimed at one
       specific word — "nicht", on the homepage's first saying. On a subpage,
       or on another slide of the rotating hero, it lands on an arbitrary word,
       so it is scoped to exactly that case. */
    .hero:not(.hero--sub):not(.hero--rotate) h1 .line:nth-child(2) .word:first-child,
    .hero--rotate[data-slide="0"] h1 .line:nth-child(2) .word:first-child { text-decoration: underline; text-decoration-thickness: 0.07em; text-underline-offset: 0.14em; }
    .hero h1 .line--lime { color: var(--mw-lime); }
    .hero p.lead { color: var(--mw-sage-1); font-size: var(--text-lead); max-width: 33rem; margin-bottom: 2.3rem; font-weight: 500; }
    .hero .btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

    .hero-chip {
      position: absolute; left: clamp(1.5rem, 5vw, 5rem); bottom: clamp(4rem, 8vw, 6.5rem); z-index: 3;
      max-width: 330px; padding: 1.4rem 1.6rem;
      background: rgba(5, 18, 11, 0.5); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(180, 198, 185, 0.25); border-radius: var(--radius-card);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .hero-chip .stars { color: var(--mw-lime); letter-spacing: 0.25em; font-size: 0.8rem; margin-bottom: 0.6rem; }
    .hero-chip p { font-size: 0.92rem; color: var(--mw-sage-1); margin-bottom: 0.7rem; }
    .hero-chip cite { font-style: normal; font-weight: 700; font-size: 0.82rem; color: var(--mw-white); }
    @media (max-width: 900px) { .hero-chip { display: none; } }

    /* --- Section sheets --- */
    .sheet { position: relative; z-index: 2; border-radius: 30px 30px 0 0; margin-top: -30px; }
    .sheet-top { border-radius: 30px 30px 0 0; }
    .ds-section { padding-block: var(--space-section); position: relative; overflow: hidden; }
    .container { position: relative; z-index: 2; }
    .ds-label {
      display: flex; align-items: center; gap: 0.9rem;
      font-size: var(--text-eyebrow); font-weight: 700; letter-spacing: var(--tracking-eyebrow);
      text-transform: uppercase; color: var(--mw-sage-3); margin-bottom: 2.2rem;
    }
    .ds-label::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: 0.3; }
    .section-title { font-size: var(--text-h1); margin-bottom: 1.2rem; }
    .split .line { padding-top: 0.12em; margin-top: -0.12em; }
    .section-title .word { display: inline-block; }
    .section-sub { color: var(--mw-sage-1); max-width: 36rem; font-size: var(--text-lead); margin-bottom: 3rem; }

    /* --- Pain (cream) --- */
    .on-cream { background: var(--bg-light); color: var(--text-on-light); }
    /* #97a49b on cream measured 1.85:1 — unreadable, and it failed on every
       engine. Ink keeps the label quiet through size and case, at 6.6:1. */
    .on-cream .ds-label { color: var(--mw-ink); }
    .on-cream .section-sub { color: var(--mw-ink); opacity: 0.75; }
    .pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
    .pain-card {
      position: relative; background: var(--mw-white); border-radius: 22px; padding: 2rem 1.8rem 1.9rem;
      border: 1px solid rgba(60, 74, 64, 0.1);
      box-shadow: 0 1px 2px rgba(11, 36, 23, 0.05), 0 18px 45px -18px rgba(11, 36, 23, 0.18);
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
      overflow: hidden;
    }
    .pain-card::before {
      content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--mw-red), var(--mw-red-soft));
      transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease-out);
    }
    .pain-card:hover { transform: translateY(-6px); box-shadow: 0 2px 4px rgba(11, 36, 23, 0.06), 0 30px 60px -18px rgba(11, 36, 23, 0.28); }
    .pain-card:hover::before { transform: scaleX(1); }
    .pain-card .num {
      font-family: var(--font-display); font-weight: var(--display-weight-heavy); font-size: 2.1rem;
      color: rgba(196, 46, 34, 0.3); display: block; margin-bottom: 0.9rem;
    }
    .pain-card h3 { color: var(--mw-night); font-size: 1.12rem; margin-bottom: 0.55rem; }
    .pain-card p { font-size: 0.94rem; color: var(--mw-ink); opacity: 0.85; }

    /* --- KICO steps (night) --- */
    .kico { background: var(--mw-night); }
    .step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: clamp(1.6rem, 5vw, 5rem); padding: 3rem 0; align-items: start; }
    @media (max-width: 700px) {
      .step { grid-template-columns: 1fr; gap: 0.5rem; }
      .step .n { font-size: 3.4rem; }
    }
    .step > div { min-width: 0; }
    .step .rule { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: rgba(180, 198, 185, 0.25); transform-origin: left; }
    .step .n {
      font-family: var(--font-display); font-weight: var(--display-weight-heavy);
      font-size: clamp(4rem, 9vw, 7.5rem); line-height: 0.9;
      color: rgba(255, 122, 110, 0.35);
    }
    .step h3 { font-size: var(--text-h2); margin-bottom: 0.7rem; }
    .step p { color: var(--mw-sage-1); max-width: 46rem; font-size: var(--text-lead); }

    /* --- Aufstellung (pitch) --- */
    .aufstellung { background: linear-gradient(160deg, #1d5536 0%, var(--mw-pitch) 45%, #123b22 100%); }
    .aufstellung .spielplan { left: -6%; bottom: -8%; width: 55vw; opacity: 0.1; }
    .aufstellung .glow { right: -10%; top: -20%; width: 500px; height: 500px; background: rgba(216, 255, 107, 0.07); }
    .offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    @media (max-width: 1100px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .offer-grid { grid-template-columns: 1fr; } }
    .offer-card {
      position: relative; display: flex; flex-direction: column; gap: 0.8rem;
      padding: 2rem 1.7rem; border-radius: 22px;
      background: rgba(5, 18, 11, 0.45);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(180, 198, 185, 0.2);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 50px -20px rgba(0, 0, 0, 0.5);
      transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
    }
    .offer-card:hover {
      transform: translateY(-7px); border-color: rgba(216, 255, 107, 0.55);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 34px 70px -20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(216, 255, 107, 0.08);
    }
    .offer-card .n { font-family: var(--font-display); font-weight: var(--display-weight-heavy); color: var(--mw-lime); font-size: 1rem; }
    .offer-card h3 { font-size: 1.3rem; }
    .offer-card p { color: var(--mw-sage-1); font-size: 0.93rem; flex: 1; }
    .offer-card .btn { align-self: flex-start; margin-top: 0.4rem; }

    /* --- Testimonial --- */
    .testimonial { background: var(--mw-night); }
    .testimonial .glow { left: -12%; top: 10%; width: 460px; height: 460px; background: rgba(196, 46, 34, 0.09); }
    .quote-wrap { position: relative; max-width: 900px; margin-inline: auto; text-align: center; }
    .quote-mark {
      font-family: var(--font-display); font-weight: var(--display-weight-heavy);
      font-size: clamp(6rem, 14vw, 11rem); line-height: 0.6; color: var(--mw-lime);
      display: block; margin-bottom: 1.6rem; opacity: 0.9;
    }
    .quote-wrap blockquote { font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.45; font-weight: 500; color: var(--mw-white); margin-bottom: 2rem; }
    .quote-wrap .stars { color: var(--mw-red-soft); letter-spacing: 0.4em; margin-bottom: 1.4rem; }
    .quote-person { display: inline-flex; align-items: center; gap: 1rem; text-align: left; }
    .quote-person img {
      width: 68px; height: 68px; border-radius: 50%; object-fit: cover;
      border: 2px solid var(--mw-lime); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    .quote-person cite { font-style: normal; font-weight: 700; color: var(--mw-white); display: block; }
    .quote-person .role { color: var(--mw-sage-3); font-size: 0.88rem; }

    /* --- Episode deck (full width, overlapping draggable stack, newest on top) --- */
    .ep-deck-wrap { margin-top: 3rem; }
    .ep-deck {
      position: relative; height: clamp(300px, 42vw, 480px);
      user-select: none; -webkit-user-select: none;
    }
    .deck-card {
      position: absolute; left: 50%; top: 0;
      width: min(600px, 82vw); aspect-ratio: 16/9;
      border-radius: 20px; overflow: hidden;
      cursor: grab; touch-action: none;
      user-select: none; -webkit-user-select: none; -webkit-touch-callout: none;
      box-shadow: 0 30px 70px -18px rgba(11, 36, 23, 0.55), 0 4px 12px rgba(11, 36, 23, 0.2);
      will-change: transform;
    }
    .deck-card .badge { touch-action: manipulation; }
    .deck-card:active { cursor: grabbing; }
    .deck-card img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
    .deck-card .badge {
      position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--mw-lime); color: var(--mw-night);
      font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.5rem 0.95rem; border-radius: 999px; text-decoration: none;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.25s var(--ease-out);
    }
    .deck-card .badge:hover { transform: scale(1.06); }
    .deck-card .new-flag {
      position: absolute; right: 1rem; top: 1rem; z-index: 2;
      background: var(--mw-red); color: var(--mw-white);
      font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.45rem 0.85rem; border-radius: 999px;
    }
    .ep-deck-ui {
      display: flex; align-items: center; justify-content: flex-end; gap: 1rem;
      margin-top: 1.4rem; flex-wrap: wrap;
    }
    .btn--pitch { background: var(--mw-pitch); color: var(--mw-white); }
    .btn--pitch:hover { background: var(--mw-night); transform: translateY(-2px); }

    /* --- Finale --- */
    .finale { background: var(--mw-red); text-align: center; overflow: hidden; }
    .finale .bgword {
      position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
      font-family: var(--font-display); font-weight: var(--display-weight-heavy);
      font-size: clamp(10rem, 28vw, 24rem); line-height: 1; white-space: nowrap;
      color: rgba(255, 255, 255, 0.07);
      pointer-events: none; user-select: none;
    }
    .finale .container { position: relative; z-index: 2; }
    .finale h2 { font-size: var(--text-h1); margin-bottom: 1.4rem; }
    .finale p { max-width: 34rem; margin: 0 auto 2.3rem; color: rgba(255, 255, 255, 0.88); font-size: var(--text-lead); }
    .finale .eyebrow { color: var(--mw-white); justify-content: center; }
    .finale .eyebrow::before { background: var(--mw-white); }

    /* --- Footer --- */
    .footer { background: var(--mw-night-deep); border-top: 1px solid rgba(180, 198, 185, 0.15); position: relative; overflow: hidden; }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
      padding: 4rem 0 3rem;
    }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer img.logo { width: 72px; margin-bottom: 1.2rem; }
    .footer .tagline { color: var(--mw-sage-3); font-size: 0.95rem; max-width: 22rem; margin-bottom: 1.6rem; }
    .footer h4 {
      font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--mw-sage-4); margin-bottom: 1.1rem;
    }
    .footer ul { list-style: none; display: grid; gap: 0.65rem; }
    .footer ul a {
      color: var(--mw-sage-1); text-decoration: none; font-size: 0.95rem;
      transition: color 0.2s, padding-left 0.25s var(--ease-out);
    }
    .footer ul a:hover { color: var(--mw-lime); padding-left: 6px; }
    .social-row { display: flex; gap: 0.7rem; }
    .social-row a {
      display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
      border: 1px solid rgba(180, 198, 185, 0.3); color: var(--mw-sage-1);
      transition: color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
    }
    .social-row a:hover { color: var(--mw-lime); border-color: var(--mw-lime); transform: translateY(-3px); }
    .social-row svg { width: 18px; height: 18px; }
    .footer .contact-note { color: var(--mw-sage-3); font-size: 0.88rem; margin-bottom: 0.9rem; }
    .footer-bottom {
      border-top: 1px solid rgba(180, 198, 185, 0.12);
      padding: 1.4rem 0 1.8rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
      color: var(--mw-sage-4); font-size: 0.84rem;
    }
    .footer-bottom .legal { display: flex; gap: 1.5rem; }
    .footer-bottom .legal a { color: var(--mw-sage-4); text-decoration: none; transition: color 0.2s; }
    .footer-bottom .legal a:hover { color: var(--mw-white); }

    /* ============================================================
       SUBPAGE COMPONENTS
       Added when the site grew from one page to five. Same vocabulary
       as above — tokens only, no new colours, no new type scale.
       ============================================================ */

    /* --- Mobile navigation ---------------------------------------
       The pill nav hides .links below 860px. That was survivable on a
       one-page site; with five real pages it was a dead end. --- */
    .nav-home { display: flex; flex: 0 0 auto; }
    .nav .links a[aria-current="page"] { color: var(--mw-lime); }
    .nav-toggle {
      display: none; flex: 0 0 auto; width: 44px; height: 44px;
      background: transparent; border: 0; cursor: pointer;
      padding: 0; align-items: center; justify-content: center; flex-direction: column;
    }
    .nav-toggle span {
      display: block; width: 22px; height: 2px; border-radius: 2px;
      background: var(--mw-sage-1); margin: 3px 0;
      transition: transform 0.3s var(--ease-out), opacity 0.2s;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    @media (max-width: 860px) {
      .nav-toggle { display: flex; }
      .nav { padding-right: 0.35rem; }
    }
    /* The booking button is the money button — it stays in the bar even on a
       390px phone rather than hiding inside the drawer. It fits: logo 44 +
       button ~141 + toggle 44 is well inside the pill's inner width. */
    @media (max-width: 560px) {
      .nav { padding-left: 0.75rem; gap: 0.5rem; }
      .nav .btn--nav { padding: 0.6rem 0.9rem; font-size: 0.7rem; letter-spacing: 0.05em; }
      .nav img.logo { width: 36px; }
    }

    .nav-drawer {
      position: fixed; inset: 0; z-index: 59;
      background: rgba(5, 18, 11, 0.94);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      display: grid; place-items: center;
      opacity: 0; transition: opacity 0.3s var(--ease-out);
    }
    .nav-drawer[hidden] { display: none; }
    .nav-drawer.open { opacity: 1; }
    .nav-drawer-inner { display: grid; gap: 1.5rem; text-align: center; padding: 2rem; }
    .nav-drawer-inner a {
      font-family: var(--font-display); font-weight: var(--display-weight);
      font-size: clamp(1.45rem, 6vw, 2.1rem); text-transform: uppercase;
      letter-spacing: -0.01em; color: var(--mw-white); text-decoration: none;
    }
    .nav-drawer-inner a[aria-current="page"] { color: var(--mw-lime); }
    .nav-drawer-cta { justify-self: center; margin-top: 0.6rem; font-size: 0.92rem; }

    /* --- Subpage hero: shorter than the homepage full viewport --- */
    .hero--sub { min-height: 68vh; min-height: 68svh; }
    .hero--sub .inner { padding-top: 8.5rem; max-width: 860px; }
    /* Sized so the written line breaks survive: at 4.4rem the longest sub-hero
       lines wrapped mid-phrase ("COMMITMENT-" / "CLUB"), which reads as a typo. */
    .hero--sub h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
    @media (max-width: 768px) { .hero--sub { min-height: 80svh; } }

    /* --- Two wide offer cards (Impulsvortrag / Workshop) --- */
    .offer-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
    @media (max-width: 860px) { .offer-grid--2 { grid-template-columns: 1fr; } }
    .offer-card .kicker {
      font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--mw-lime);
    }
    .offer-card ul { list-style: none; display: grid; gap: 0.6rem; margin: 0.3rem 0 0.6rem; flex: 1; }
    .offer-card ul li {
      position: relative; padding-left: 1.6rem; color: var(--mw-sage-1); font-size: 0.93rem; line-height: 1.45;
    }
    .offer-card ul li::before {
      content: ""; position: absolute; left: 0; top: 0.5em;
      width: 0.7rem; height: 0.38rem; border-left: 2px solid var(--mw-lime);
      border-bottom: 2px solid var(--mw-lime); transform: rotate(-45deg);
    }
    .offer-card--featured { border-color: rgba(216, 255, 107, 0.5); }
    .offer-card .flag {
      position: absolute; right: 1.2rem; top: 1.2rem;
      background: var(--mw-lime); color: var(--mw-night);
      font-weight: 700; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.3rem 0.7rem; border-radius: 999px;
    }

    /* --- Voices: several shorter quotes side by side --- */
    .voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
    /* Four quotes in an auto-fit grid leave a lone card stranded on row two. */
    .voice-grid--2 { grid-template-columns: repeat(2, 1fr); }
    @media (max-width: 860px) { .voice-grid--2 { grid-template-columns: 1fr; } }
    .voice {
      display: flex; flex-direction: column; gap: 1rem;
      padding: 2rem 1.8rem; border-radius: 22px;
      background: rgba(5, 18, 11, 0.4);
      border: 1px solid rgba(180, 198, 185, 0.2);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 50px -22px rgba(0, 0, 0, 0.5);
    }
    .voice .mark {
      font-family: var(--font-display); font-weight: var(--display-weight-heavy);
      font-size: 2.6rem; line-height: 0.5; color: var(--mw-lime); opacity: 0.85;
    }
    .voice blockquote { color: var(--mw-sage-1); font-size: 0.97rem; line-height: 1.6; flex: 1; }
    .voice cite { font-style: normal; font-weight: 700; font-size: 0.85rem; color: var(--mw-white); }
    .voice .role { display: block; color: var(--mw-sage-3); font-size: 0.82rem; font-weight: 400; }
    .on-cream .voice {
      background: var(--mw-white); border-color: rgba(60, 74, 64, 0.12);
      box-shadow: 0 1px 2px rgba(11, 36, 23, 0.05), 0 18px 45px -18px rgba(11, 36, 23, 0.18);
    }
    .on-cream .voice blockquote { color: var(--mw-ink); }
    .on-cream .voice cite { color: var(--mw-night); }

    /* --- Club tiers --- */
    .tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
    @media (max-width: 1000px) { .tier-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; } }
    .tier {
      position: relative; display: flex; flex-direction: column; gap: 0.9rem;
      padding: 2.2rem 1.9rem; border-radius: 22px;
      background: rgba(5, 18, 11, 0.45);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(180, 198, 185, 0.2);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 50px -20px rgba(0, 0, 0, 0.5);
      transition: transform 0.35s var(--ease-out), border-color 0.35s;
    }
    .tier:hover { transform: translateY(-6px); border-color: rgba(216, 255, 107, 0.45); }
    .tier--featured { border-color: rgba(216, 255, 107, 0.55); background: rgba(36, 102, 63, 0.35); }
    .tier .for {
      font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--mw-lime);
    }
    .tier h3 { font-size: 1.35rem; }
    .tier > p { color: var(--mw-sage-1); font-size: 0.93rem; }
    .tier ul { list-style: none; display: grid; gap: 0.6rem; flex: 1; margin-top: 0.2rem; }
    .tier ul li {
      position: relative; padding-left: 1.6rem; color: var(--mw-sage-1); font-size: 0.92rem; line-height: 1.45;
    }
    .tier ul li::before {
      content: ""; position: absolute; left: 0; top: 0.5em;
      width: 0.7rem; height: 0.38rem; border-left: 2px solid var(--mw-lime);
      border-bottom: 2px solid var(--mw-lime); transform: rotate(-45deg);
    }
    .tier .btn { align-self: flex-start; margin-top: 0.5rem; }

    /* --- Podcast platforms --- */
    .plat-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
    .plat {
      display: inline-flex; align-items: center; gap: 0.65rem;
      padding: 0.85rem 1.4rem; border-radius: 999px; text-decoration: none;
      border: 1px solid rgba(180, 198, 185, 0.3); color: var(--mw-sage-1);
      font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em;
      transition: color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
    }
    .plat:hover { color: var(--mw-lime); border-color: var(--mw-lime); transform: translateY(-3px); }
    .plat svg { width: 18px; height: 18px; flex: 0 0 auto; }
    .on-cream .plat { border-color: rgba(60, 74, 64, 0.25); color: var(--mw-ink); }
    .on-cream .plat:hover { color: var(--mw-night); border-color: var(--mw-night); }

    /* --- Aktuelles list --- */
    .news-list { display: grid; gap: 1.1rem; }
    .news-item {
      display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center;
      padding: 1.6rem 1.8rem; border-radius: 20px;
      background: var(--mw-white); border: 1px solid rgba(60, 74, 64, 0.1);
      box-shadow: 0 1px 2px rgba(11, 36, 23, 0.05), 0 18px 45px -20px rgba(11, 36, 23, 0.18);
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
      text-decoration: none; color: inherit;
    }
    .news-item:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(11, 36, 23, 0.06), 0 28px 60px -20px rgba(11, 36, 23, 0.26); }
    @media (max-width: 720px) {
      .news-item { grid-template-columns: 1fr; gap: 0.7rem; align-items: start; }
    }
    .news-date {
      font-family: var(--font-display); font-weight: var(--display-weight-heavy);
      font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--mw-red); white-space: nowrap;
    }
    .news-item h3 { font-size: 1.1rem; color: var(--mw-night); margin-bottom: 0.3rem; }
    .news-item p { font-size: 0.93rem; color: var(--mw-ink); opacity: 0.85; }
    .news-go { color: var(--mw-pitch); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
    .news-empty { color: var(--mw-ink); opacity: 0.8; }

    /* --- Narrow prose column & centred blocks --- */
    .prose { max-width: var(--container-narrow); }
    .prose p { color: var(--mw-sage-1); font-size: var(--text-lead); margin-bottom: 1.1rem; }
    .on-cream .prose p { color: var(--mw-ink); }
    .center { text-align: center; }
    .center .ds-label { justify-content: center; }
    .center .ds-label::after { display: none; }
    .center .section-sub { margin-inline: auto; }
    .center .eyebrow { justify-content: center; }
    .btn-row--center { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

    /* --- Qualifying checklist ("ist etwas für dich, wenn") --- */
    .check-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 2.2rem; }
    @media (max-width: 760px) { .check-list { grid-template-columns: 1fr; } }
    .check-list li {
      position: relative; padding-left: 2.4rem; font-size: var(--text-lead);
      font-weight: 500; line-height: 1.45; color: var(--mw-ink);
    }
    .check-list li::before {
      content: ""; position: absolute; left: 0; top: 0.1em;
      width: 1.5rem; height: 1.5rem; border-radius: 50%;
      background: var(--mw-pitch);
    }
    .check-list li::after {
      content: ""; position: absolute; left: 0.42rem; top: 0.52em;
      width: 0.66rem; height: 0.34rem;
      border-left: 2px solid var(--mw-lime); border-bottom: 2px solid var(--mw-lime);
      transform: rotate(-45deg);
    }

    /* --- Before / after contrast --- */
    .ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: stretch; }
    @media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; } }
    .ba {
      display: flex; flex-direction: column; gap: 1rem;
      padding: 2.2rem 2rem; border-radius: 22px;
      border: 1px solid rgba(180, 198, 185, 0.2);
      background: rgba(5, 18, 11, 0.4);
    }
    .ba--now { border-color: rgba(255, 122, 110, 0.35); }
    .ba--club { border-color: rgba(216, 255, 107, 0.45); background: rgba(36, 102, 63, 0.3); }
    .ba .ba-label {
      font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--mw-red-soft);
    }
    .ba--club .ba-label { color: var(--mw-lime); }
    .ba h3 { font-size: 1.25rem; color: var(--mw-white); }
    .ba ul { list-style: none; display: grid; gap: 0.75rem; margin-top: 0.3rem; }
    .ba ul li {
      position: relative; padding-left: 1.7rem; color: var(--mw-sage-1);
      font-size: 0.96rem; line-height: 1.5;
    }
    /* the "now" column gets a minus, the club column a check — the shape carries
       the meaning even where colour is not perceived */
    .ba--now ul li::before {
      content: ""; position: absolute; left: 0; top: 0.65em;
      width: 0.8rem; height: 2px; background: var(--mw-red-soft);
    }
    .ba--club ul li::before {
      content: ""; position: absolute; left: 0; top: 0.5em;
      width: 0.7rem; height: 0.38rem;
      border-left: 2px solid var(--mw-lime); border-bottom: 2px solid var(--mw-lime);
      transform: rotate(-45deg);
    }

    /* --- Episode list (Aktuelles: real episodes, newest first) --- */
    .ep-list { display: grid; gap: 1rem; }
    .ep-row {
      display: grid; grid-template-columns: 148px 1fr auto; gap: 1.5rem; align-items: center;
      padding: 1rem 1.4rem 1rem 1rem; border-radius: 20px;
      background: rgba(5, 18, 11, 0.42);
      border: 1px solid rgba(180, 198, 185, 0.18);
      text-decoration: none; color: inherit;
      transition: transform 0.3s var(--ease-out), border-color 0.3s;
    }
    .ep-row:hover { transform: translateY(-4px); border-color: rgba(216, 255, 107, 0.5); }
    .ep-row img { width: 148px; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; }
    .ep-row h3 { font-size: 1rem; color: var(--mw-white); text-transform: none; letter-spacing: -0.01em; line-height: 1.35; }
    .ep-row .num {
      font-family: var(--font-display); font-weight: var(--display-weight-heavy);
      font-size: 0.78rem; letter-spacing: 0.1em; color: var(--mw-lime); display: block; margin-bottom: 0.35rem;
    }
    .ep-row .go { color: var(--mw-lime); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
    @media (max-width: 760px) {
      .ep-row { grid-template-columns: 96px 1fr; gap: 1rem; }
      .ep-row .go { display: none; }
    }

    /* --- Empty state that does not look broken --- */
    .empty-note {
      display: grid; gap: 1.2rem; justify-items: start;
      padding: 2.4rem 2rem; border-radius: 22px;
      background: var(--mw-white); border: 1px dashed rgba(60, 74, 64, 0.28);
    }
    .empty-note p { color: var(--mw-ink); font-size: var(--text-lead); max-width: 34rem; }

    /* --- Rotating hero: three images, each carrying one saying --------------
       Only the images crossfade; the copy is swapped inside the existing
       elements, so the page keeps exactly one <h1> and one set of CTAs. --- */
    .hero--rotate .bg-wrap .hero-img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      opacity: 0; transition: opacity 1s var(--ease-out);
    }
    .hero--rotate .bg-wrap .hero-img.is-active { opacity: 1; }
    @media (prefers-reduced-motion: reduce) {
      .hero--rotate .bg-wrap .hero-img { transition: none; }
    }

    /* The dots are a control, so they have to stay in view. The hero's copy is
       already taller than 100vh on a 900px-high laptop, so anything at the end
       of the flow lands below the fold. On desktop they ride the right edge,
       vertically centred and out of the flow; on phones the column is short
       enough that they can simply follow the buttons. */
    .hero-dots { display: flex; gap: 0.55rem; margin-top: 1.4rem; }
    @media (min-width: 901px) {
      .hero-dots {
        position: absolute; right: clamp(1rem, 2.2vw, 2rem); top: 50%;
        transform: translateY(-50%); flex-direction: column; margin: 0; z-index: 4;
      }
      .hero-dots .hero-dot { width: 4px; height: 38px; }
      .hero-dots .hero-dot[aria-selected="true"] { transform: scaleX(1.5); }
      .hero-dot::before { inset: -4px -14px; }
    }
    .hero-dot {
      width: 38px; height: 4px; padding: 0; border: 0; border-radius: 2px;
      background: rgba(255, 255, 255, 0.28); cursor: pointer;
      transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
      position: relative;
    }
    /* the visible bar is thin, the touch target is not */
    .hero-dot::before { content: ""; position: absolute; inset: -14px -4px; }
    .hero-dot:hover { background: rgba(255, 255, 255, 0.5); }
    .hero-dot[aria-selected="true"] { background: var(--mw-lime); transform: scaleY(1.5); }
    .hero-dot:focus-visible { outline: 2px solid var(--mw-lime); outline-offset: 6px; }

    /* --- "Meine Lösung für dich": portrait beside the promise --- */
    .sol-grid {
      display: grid; grid-template-columns: 0.85fr 1fr;
      gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
    }
    @media (max-width: 900px) { .sol-grid { grid-template-columns: 1fr; } }
    .sol-media { position: relative; }
    .sol-media img {
      width: 100%; border-radius: 24px; aspect-ratio: 4/5; object-fit: cover;
      box-shadow: 0 30px 70px -22px rgba(11, 36, 23, 0.55);
    }
    .sol-media .sol-badge {
      position: absolute; right: -1rem; bottom: 1.6rem;
      background: var(--mw-lime); color: var(--mw-night);
      font-family: var(--font-display); font-weight: var(--display-weight-heavy);
      font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.7rem 1.1rem; border-radius: 14px;
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
    }
    @media (max-width: 900px) { .sol-media img { aspect-ratio: 16/10; } .sol-media .sol-badge { right: 1rem; } }
    .sol-body p { color: var(--mw-sage-1); font-size: var(--text-lead); margin-bottom: 1.1rem; }
    .on-cream .sol-body p { color: var(--mw-ink); }
    .sol-body ul { list-style: none; display: grid; gap: 0.8rem; margin: 1.6rem 0 2rem; }
    .sol-body ul li {
      position: relative; padding-left: 2.2rem; font-weight: 600;
      font-size: 1.02rem; line-height: 1.4;
    }
    .sol-body ul li::before {
      content: ""; position: absolute; left: 0; top: 0.05em;
      width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--mw-pitch);
    }
    .sol-body ul li::after {
      content: ""; position: absolute; left: 0.4rem; top: 0.44em;
      width: 0.6rem; height: 0.32rem;
      border-left: 2px solid var(--mw-lime); border-bottom: 2px solid var(--mw-lime);
      transform: rotate(-45deg);
    }
