/* ============================================================
   DRK WEEZE — Digitaler Flyer
   Print-feel · Magazinstil · Papier-Dokument auf Desk
   ============================================================ */

:root {
    /* Brand */
    --drk-red: #E2001A;
    --drk-red-deep: #B30015;
    --drk-red-glow: rgba(226, 0, 26, 0.4);

    /* Editorial neutrals — kühles Grau */
    --ink: #0E1014;
    --ink-soft: #2A2D33;
    --ink-mute: #6B6F77;
    --ink-line: #E3E6EB;

    /* Paper — kaltweiß-Abstufungen */
    --paper: #FFFFFF;
    --paper-soft: #F4F6F9;
    --paper-edge: #E8ECF1;
    --pure: #FFFFFF;

    /* Stage (Seiten-Hintergrund) — kaltweiß */
    --stage: #EDF0F4;
    --stage-soft: #E1E5EB;

    /* Type */
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing — relative to the flyer document */
    --doc-pad: clamp(28px, 5vw, 72px);

    /* Easing */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background: var(--stage);
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, #F6F8FB 0%, var(--stage) 65%),
        var(--stage);
    cursor: none;
    min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection {
    background: var(--drk-red);
    color: var(--pure);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
* { cursor: none !important; }

.cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: opacity 0.2s ease;
}

.cursor__ring {
    position: fixed;
    width: 34px; height: 34px;
    border: 1.5px solid var(--pure);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease-out),
                height 0.25s var(--ease-out),
                border-color 0.25s var(--ease-out),
                background 0.25s var(--ease-out);
    will-change: transform;
}

.cursor__dot {
    position: fixed;
    width: 6px; height: 6px;
    background: var(--pure);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.cursor.is-hover .cursor__ring {
    width: 60px; height: 60px;
    background: var(--pure);
}

.cursor.is-drag .cursor__ring {
    width: 80px; height: 80px;
    border-color: var(--drk-red);
    background: var(--drk-red);
}

.cursor.is-drag .cursor__dot {
    width: 0; height: 0;
}

@media (pointer: coarse), (hover: none) {
    body, * { cursor: auto !important; }
    .cursor { display: none; }
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: transparent;
    z-index: 100;
    pointer-events: none;
}

.progress__bar {
    height: 100%;
    width: 0%;
    background: var(--drk-red);
    transition: width 0.1s linear;
}

/* ============================================================
   STAGE / DESK
   ============================================================ */
.stage {
    padding: clamp(24px, 4vw, 64px) clamp(20px, 4vw, 48px);
    display: flex;
    justify-content: center;
}

@media (max-width: 720px) {
    .stage { padding: 0; }
}

/* ============================================================
   FLYER — DAS PAPIERDOKUMENT
   ============================================================ */
.flyer {
    width: 100%;
    max-width: 1100px;
    background: var(--paper);
    border-radius: clamp(8px, 1vw, 18px);
    box-shadow:
        0 0 0 1px rgba(14,16,20,0.06),
        0 20px 40px -16px rgba(14,16,20,0.16),
        0 40px 90px -40px rgba(14,16,20,0.18);
    position: relative;
    isolation: isolate;
    /* NOTE: no overflow:hidden — would break position:sticky inside */
}

/* subtle paper grain (clipped to flyer shape) */
.flyer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
    opacity: 0.55;
    z-index: 1;
}

.flyer > * { position: relative; z-index: 2; }

/* Round the top of the first section and bottom of the last to match flyer corners */
.flyer__head {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.flyer__foot {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

@media (max-width: 720px) {
    .flyer {
        border-radius: 0;
        box-shadow: none;
    }
}

/* ============================================================
   FLYER HEAD (Logo + Edition)
   ============================================================ */
.flyer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(20px, 3vw, 32px) var(--doc-pad);
    border-bottom: 1px solid var(--ink-line);
    background: var(--paper);
    flex-wrap: wrap;
}

.flyer__logo {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.25s ease;
}

.flyer__logo:hover { opacity: 0.78; }

.flyer__logo-img {
    height: clamp(40px, 5vw, 60px);
    width: auto;
}

/* Fallback if logo image missing */
.flyer__logo-fallback { display: none; }
.flyer__logo--fallback .flyer__logo-fallback {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.cross {
    position: relative;
    width: 44px; height: 44px;
    background: var(--drk-red);
    border-radius: 6px;
    display: grid; place-items: center;
    flex-shrink: 0;
}

.cross span {
    position: absolute;
    background: var(--pure);
}

.cross span:nth-child(1) { width: 62%; height: 18%; }
.cross span:nth-child(2) { height: 62%; width: 18%; }

.ftxt {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
}

.ftxt__a,
.ftxt__b {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.ftxt__b { font-weight: 500; color: var(--ink-soft); }

.ftxt__sep {
    width: 1px;
    height: 36px;
    background: var(--ink-line);
}

/* Edition tag */
.flyer__edition {
    text-align: right;
    font-family: var(--font-display);
}

.flyer__edition-tag {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--drk-red);
    margin-bottom: 4px;
}

.flyer__edition-num {
    font-size: 12px;
    color: var(--ink-mute);
    font-weight: 500;
    letter-spacing: 0.06em;
}

@media (max-width: 540px) {
    .flyer__head { padding: 18px 20px; }
    .flyer__edition { text-align: left; }
}

/* ============================================================
   COMMON
   ============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.eyebrow--light { color: var(--pure); }

.eyebrow__dot {
    width: 8px; height: 8px;
    background: var(--drk-red);
    border-radius: 50%;
    animation: pulse 2s var(--ease-in-out) infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--drk-red-glow); }
    50% { box-shadow: 0 0 0 8px transparent; }
}

/* Page header (number + chapter) */
.page__hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: clamp(28px, 4vw, 56px);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ink-line);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.page__num { color: var(--drk-red); }
.page__chap { color: var(--ink-mute); }

.page__hd--light {
    border-bottom-color: rgba(255,255,255,0.15);
}
.page__hd--light .page__chap { color: rgba(255,255,255,0.55); }

/* ============================================================
   COVER
   ============================================================ */
.cover {
    position: relative;
    color: var(--pure);
    background: var(--ink);
    padding: clamp(80px, 9vw, 140px) var(--doc-pad) clamp(40px, 5vw, 64px);
    overflow: hidden;
    min-height: 540px;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 32px;
}

.cover__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cover__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.06);
    transition: transform 1.4s var(--ease-out);
}

.flyer.is-ready .cover__media img { transform: scale(1); }

.cover__media--fallback {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(226,0,26,0.4), transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(226,0,26,0.2), transparent 50%),
        linear-gradient(135deg, #2a0006 0%, #0E0E10 100%);
}
.cover__media--fallback img { display: none; }

.cover__media-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(14,14,16,0.55) 0%, rgba(14,14,16,0.2) 35%, rgba(14,14,16,0.92) 100%),
        linear-gradient(90deg, rgba(14,14,16,0.6) 0%, transparent 65%);
}

.cover__body {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 760px;
}

.cover__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 9vw, 124px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.035em;
    margin: 22px 0 28px;
}

.cover__title .line {
    display: block;
    overflow: hidden;
}

.cover__title .line > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease-out);
}

.flyer.is-ready .cover__title .line > span { transform: translateY(0); }
.flyer.is-ready .cover__title .line:nth-child(2) > span { transition-delay: 0.1s; }

.cover__title em {
    font-style: normal;
    color: var(--drk-red);
}

.cover__lede {
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}

.cover__foot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 36px);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.18);
    flex-wrap: wrap;
}

.cover__foot-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cover__foot-label {
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.cover__foot-value {
    font-size: 14px;
    color: var(--pure);
    font-weight: 500;
}

.cover__foot-rule {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.18);
}

@media (max-width: 540px) {
    .cover { padding-left: 20px; padding-right: 20px; }
    .cover__foot-rule { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    background: var(--drk-red);
    color: var(--pure);
    padding: 18px 0;
    overflow: hidden;
}

.marquee__track {
    display: flex;
    gap: 32px;
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 600;
    letter-spacing: -0.005em;
    animation: marquee 38s linear infinite;
    will-change: transform;
}

.marquee__dot { color: rgba(255,255,255,0.55); font-size: 0.5em; }

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ============================================================
   PAGE (innerhalb des Flyers)
   ============================================================ */
.page {
    padding: clamp(48px, 7vw, 96px) var(--doc-pad);
    background: var(--paper);
    position: relative;
}

.page + .page { border-top: 1px solid var(--ink-line); }

/* ============================================================
   INTRO PAGE
   ============================================================ */
.intro__grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.intro__headline {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.8vw, 44px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.018em;
    margin-bottom: 24px;
}

.intro__headline em {
    font-style: italic;
    color: var(--drk-red);
}

.intro__text {
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--ink-soft);
    line-height: 1.7;
}

.intro__sidebox {
    background: var(--paper-soft);
    border: 1px solid var(--ink-line);
    border-left: 3px solid var(--drk-red);
    border-radius: 6px;
    padding: 24px;
}

.intro__sidetag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--drk-red);
    margin-bottom: 10px;
}

.intro__sidebox p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
}

@media (max-width: 720px) {
    .intro__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HORIZONTAL — Aufgaben (inside flyer)
   ============================================================ */
.page--horizontal { padding-left: 0; padding-right: 0; }
.page--horizontal .page__hd { margin-left: var(--doc-pad); margin-right: var(--doc-pad); }

.horizontal {
    position: relative;
    background: var(--paper-soft);
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
}

.horizontal__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: clamp(24px, 4vw, 40px) 0;
}

.horizontal__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 var(--doc-pad);
    margin-bottom: clamp(20px, 3vw, 36px);
}

.horizontal__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.02em;
    max-width: 620px;
}

.horizontal__title em {
    font-style: italic;
    color: var(--drk-red);
}

.horizontal__hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    flex-shrink: 0;
}

.horizontal__hint svg {
    width: 22px; height: 16px;
    animation: nudge 1.8s var(--ease-in-out) infinite;
}

@keyframes nudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.horizontal__track {
    display: flex;
    gap: 20px;
    padding: 0 var(--doc-pad);
    flex: 1;
    min-height: 0;
    will-change: transform;
}

/* desktop = pinned horizontal scroll driven by JS */
@media (min-width: 821px) {
    .horizontal {
        height: 300vh;
    }
}

/* mobile = native horizontal swipe */
@media (max-width: 820px) {
    .horizontal { height: auto; }
    .horizontal__sticky {
        position: relative;
        height: auto;
    }
    .horizontal__track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 24px;
        scrollbar-width: none;
    }
    .horizontal__track::-webkit-scrollbar { display: none; }
}

/* PANELS */
.panel {
    flex: 0 0 clamp(290px, 36vw, 440px);
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: var(--pure);
    border: 1px solid var(--ink-line);
    display: flex;
    flex-direction: column;
    position: relative;
    scroll-snap-align: start;
}

@media (max-width: 820px) {
    .panel { height: clamp(400px, 64vh, 520px); }
}

.panel__media {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--paper-edge), var(--paper-soft));
    overflow: hidden;
}

.panel__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.panel:hover .panel__media img { transform: scale(1.05); }

.panel__media--fallback::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(226,0,26,0.22), transparent 60%),
        linear-gradient(135deg, var(--paper-soft) 0%, var(--paper-edge) 100%);
}

.panel__body {
    padding: 24px;
    background: var(--pure);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Fill remaining panel space only when a media sibling is above */
.panel__media + .panel__body { flex: 1; }

.panel__index {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--drk-red);
    text-transform: uppercase;
}

.panel__h {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.panel__body p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
}

.panel--accent {
    background: var(--drk-red);
    border: none;
    justify-content: flex-end;
    color: var(--pure);
}

.panel--accent .panel__body {
    background: transparent;
    padding: 32px;
    color: var(--pure);
}

.panel--accent .panel__index { color: rgba(255,255,255,0.7); }
.panel--accent p { color: rgba(255,255,255,0.88); }

.panel__decor {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}

.panel__decor span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}

.panel__decor span:nth-child(1) {
    width: 240px; height: 240px;
    top: -80px; right: -80px;
}

.panel__decor span:nth-child(2) {
    width: 140px; height: 140px;
    bottom: 40px; left: -30px;
}

.panel--dark {
    background: var(--ink);
    color: var(--pure);
    border: none;
    justify-content: flex-end;
}

.panel--dark .panel__body { background: transparent; padding: 32px; color: var(--pure); }
.panel--dark .panel__index { color: var(--drk-red); }
.panel--dark p { color: rgba(255,255,255,0.7); }

/* ============================================================
   STATS PAGE
   ============================================================ */
.stats__title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.2vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.stats__title em { font-style: italic; color: var(--drk-red); }

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--ink-line);
    border: 1px solid var(--ink-line);
    border-radius: 12px;
    overflow: hidden;
}

.stat {
    background: var(--paper);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.3s var(--ease-out);
}

.stat:hover { background: var(--pure); }

.stat__num {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 600;
    line-height: 1;
    color: var(--drk-red);
    letter-spacing: -0.03em;
}

.stat__label {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.45;
}

@media (max-width: 880px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   STORY PAGE — Gruppenfoto in voller Pracht + Zitat
   ============================================================ */
.page--story {
    padding: clamp(48px, 7vw, 96px) var(--doc-pad);
    background: var(--paper-soft);
    color: var(--ink);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 56px);
}

.story__media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ink-line);
    background: var(--paper);
}

.story__media img {
    width: 100%; height: 100%;
    object-fit: contain;
    opacity: 1;
}

.story__media--fallback {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(226,0,26,0.22), transparent 70%),
        linear-gradient(135deg, var(--paper-edge), var(--paper-soft));
}
.story__media--fallback img { display: none; }

.story__overlay {
    position: relative;
    max-width: 820px;
    text-align: center;
    padding: 0;
    margin: 0 auto;
}

.story__quote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.012em;
    color: var(--ink);
}

.story__quote em { font-style: italic; color: var(--drk-red); }

.story__mark {
    display: block;
    font-size: 1.6em;
    color: var(--drk-red);
    line-height: 0.5;
    margin-bottom: 12px;
}

.story__cite {
    display: block;
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-mute);
}

@media (max-width: 820px) {
    .page--story { gap: 24px; }
}

/* ============================================================
   MITMACHEN PAGE
   ============================================================ */
.join__title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.2vw, 52px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: clamp(32px, 4vw, 56px);
}

.join__title em { font-style: italic; color: var(--drk-red); }

.join__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.reason {
    background: var(--pure);
    border: 1px solid var(--ink-line);
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.reason:hover {
    transform: translateY(-3px);
    border-color: var(--drk-red);
}

.reason__num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--drk-red);
    letter-spacing: 0.2em;
    margin-bottom: 22px;
}

.reason__h {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}

.reason p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reason__list {
    list-style: none;
    border-top: 1px solid var(--ink-line);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reason__list li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    color: var(--ink);
}

.reason__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 12px;
    height: 1px;
    background: var(--drk-red);
}

@media (max-width: 880px) {
    .join__grid { grid-template-columns: 1fr; }
}

/* ===== Dienstabend-Banner ===== */
.schedule {
    margin-top: clamp(28px, 4vw, 48px);
    padding: clamp(26px, 4vw, 40px);
    background: var(--drk-red);
    color: var(--pure);
    border-radius: 16px;
    display: grid;
    grid-template-areas:
        "label  label"
        "when   where"
        "hint   hint";
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 48px);
    box-shadow: 0 12px 30px -12px rgba(226, 0, 26, 0.45);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.schedule:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -14px rgba(226, 0, 26, 0.55);
}

.schedule__label {
    grid-area: label;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

.schedule__dot {
    width: 8px; height: 8px;
    background: var(--pure);
    border-radius: 50%;
    animation: pulse-white 2s var(--ease-in-out) infinite;
}

@keyframes pulse-white {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    50%      { box-shadow: 0 0 0 8px transparent; }
}

.schedule__col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: inherit;
}

.schedule__col--when  { grid-area: when; }
.schedule__col--where {
    grid-area: where;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.schedule__col--where:hover { opacity: 0.85; transform: translateX(2px); }

.schedule__col-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.schedule__big {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.018em;
    line-height: 1.2;
    color: var(--pure);
}

.schedule__sub {
    font-size: clamp(13px, 1.2vw, 15px);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 4px;
}

.schedule__map {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    width: max-content;
}

.schedule__map svg { width: 12px; height: 12px; }

.schedule__hint {
    grid-area: hint;
    margin: 0;
    padding-top: clamp(14px, 2vw, 20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

@media (max-width: 720px) {
    .schedule {
        grid-template-areas:
            "label"
            "when"
            "where"
            "hint";
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   KONTAKT — Back Cover (hell)
   ============================================================ */
.page--contact {
    background: var(--paper);
    color: var(--ink);
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
    color: var(--ink);
}

.contact__intro {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: clamp(36px, 5vw, 56px);
    max-width: 540px;
}

.contact__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

@media (max-width: 720px) {
    .contact__cards { grid-template-columns: 1fr; }
}

.person {
    background: var(--paper-soft);
    border: 1px solid var(--ink-line);
    border-radius: 14px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.person:hover {
    transform: translateY(-3px);
    background: var(--pure);
    border-color: var(--drk-red);
}

.person__name { color: var(--ink); }

.person__avatar {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--drk-red), var(--drk-red-deep));
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--pure);
    box-shadow: 0 8px 22px var(--drk-red-glow);
}

.person__role {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--drk-red);
    margin-bottom: 6px;
}

.person__name {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.1;
}

.person__rule {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--drk-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out);
}

.person:hover .person__rule { transform: scaleX(1); }

/* Mail CTA */
.contact__mail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    background: var(--drk-red);
    color: var(--pure);
    border-radius: 14px;
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.contact__mail:hover {
    transform: translateY(-3px);
    background: var(--drk-red-deep);
}

.contact__mail-label {
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    display: block;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
}

.contact__mail-addr {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 600;
    letter-spacing: -0.012em;
    word-break: break-word;
}

.contact__mail svg { width: 28px; height: 28px; flex-shrink: 0; }

@media (max-width: 600px) {
    .contact__mail { padding: 22px; }
}

/* Bottom CTA back-to-top */
.contact__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.contact__cta:hover {
    background: var(--ink);
    color: var(--pure);
    border-color: var(--ink);
}

.contact__cta svg { width: 14px; height: 14px; }

/* ============================================================
   FLYER FOOT (Impressum-Zeile)
   ============================================================ */
.flyer__foot {
    background: var(--paper-soft);
    padding: 22px var(--doc-pad);
    border-top: 1px solid var(--ink-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
}

.flyer__foot-brand {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.flyer__foot-brand:hover { opacity: 0.7; }

.flyer__foot-brand img {
    height: clamp(28px, 3.5vw, 38px);
    width: auto;
    display: block;
}

.flyer__foot-meta a {
    color: var(--drk-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================================
   FAQ
   ============================================================ */
.page--faq {
    background: var(--paper-soft);
}

.faq__title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.2vw, 52px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.faq__title em { font-style: italic; color: var(--drk-red); }

.faq__intro {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: clamp(32px, 4vw, 48px);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 880px;
}

.faq__item {
    background: var(--pure);
    border: 1px solid var(--ink-line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.faq__item[open] {
    border-color: var(--drk-red);
    box-shadow: 0 8px 24px -16px rgba(226, 0, 26, 0.35);
}

.faq__q {
    list-style: none;
    cursor: pointer;
    padding: 20px 28px 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 600;
    letter-spacing: -0.008em;
    color: var(--ink);
    position: relative;
    transition: color 0.25s var(--ease-out);
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { display: none; content: ''; }

.faq__q::before {
    content: '';
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: var(--paper-soft);
    border: 1px solid var(--ink-line);
    border-radius: 50%;
    background-image: linear-gradient(currentColor, currentColor),
                      linear-gradient(currentColor, currentColor);
    background-size: 10px 1.5px, 1.5px 10px;
    background-position: center, center;
    background-repeat: no-repeat;
    transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
    color: var(--ink);
}

.faq__item[open] .faq__q::before {
    transform: rotate(45deg);
    background-color: var(--drk-red);
    border-color: var(--drk-red);
    color: var(--pure);
    background-size: 10px 1.5px, 0 0;
}

.faq__item:hover .faq__q { color: var(--drk-red); }

.faq__a {
    padding: 0 28px 24px 64px;
    font-size: clamp(14px, 1.2vw, 15.5px);
    color: var(--ink-soft);
    line-height: 1.65;
}

.faq__a p + p { margin-top: 12px; }
.faq__a strong { color: var(--ink); font-weight: 600; }

@media (max-width: 640px) {
    .faq__q { padding: 18px 22px 18px 20px; font-size: 15px; }
    .faq__a { padding: 0 22px 20px 56px; }
}

/* ============================================================
   IMPRESSUM / LEGAL
   ============================================================ */
.page--legal {
    padding: clamp(48px, 6vw, 80px) var(--doc-pad) clamp(48px, 6vw, 80px);
}

.legal__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}

.legal__intro {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: clamp(40px, 5vw, 64px);
    max-width: 640px;
}

.legal__intro strong {
    color: var(--ink);
    font-weight: 600;
}

.legal__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 3.6vw, 44px) clamp(32px, 4vw, 56px);
    max-width: 920px;
    margin-bottom: clamp(40px, 5vw, 56px);
}

.legal__block--wide { grid-column: 1 / -1; }

.legal__block-h {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--drk-red);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ink-line);
}

.legal__block p {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7;
}

.legal__block p + p {
    margin-top: 12px;
}

.legal__block--wide p {
    color: var(--ink-soft);
    max-width: 760px;
}

.legal__block a {
    color: var(--drk-red);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: opacity 0.2s ease;
}

.legal__block a:hover { opacity: 0.7; }

.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.legal__back svg { width: 14px; height: 14px; }

.legal__back:hover {
    background: var(--ink);
    color: var(--pure);
    transform: translateX(-3px);
}

@media (max-width: 720px) {
    .legal__grid { grid-template-columns: 1fr; }
    .legal__block--wide { grid-column: auto; }
}

/* Footer: kommagetrennte Meta-Links */
.flyer__foot-meta a + a { margin-left: 0; }
.flyer__foot-meta a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--drk-red);
    transition: color 0.2s ease;
}
.flyer__foot-meta a:hover { color: var(--drk-red); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].is-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .cover__title .line > span { transform: none; }
    .cover__media img { transform: none; }
}
