/* ============================================================
   Das Bratwurst-Komplott — Design-System v2
   Kunst-Regie: cinematisches, warmes Ermittlungs-Dossier.
   Filmkorn · Geister-Aktenziffern · Beweisfoto-Rahmen ·
   Wachssiegel-Monogramme · echtes Bild-Grading.
   Kein Framework. Kein Build. Handgeschrieben.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
    /* Papier / Creme */
    --cream-50:  #f7f0e2;
    --cream-100: #f1e7d4;
    --cream-200: #e6d6bb;
    --cream-300: #d8c19c;

    /* Dunkel / warmes Schwarz */
    --noir:      #0b0705;
    --espresso-900: #17100a;
    --espresso-950: #120c08;
    --espresso-800: #241a12;
    --espresso-700: #3a2c20;

    /* Wein */
    --wine-400: #c05058;
    --wine-500: #a3343c;
    --wine-600: #862930;
    --wine-700: #6a1f25;

    /* Messing / Gold */
    --brass-300: #dcc08a;
    --brass-400: #cba969;
    --brass-500: #b48d52;
    --brass-600: #8f6c3c;

    /* Senf — das eine scharfe Beweismittel */
    --senf-400: #e6ad34;
    --senf-500: #d1901f;
    --senf-600: #a9711a;

    --ink:      #221812;
    --ink-soft: #3a2c1e;
    --paper:    var(--cream-50);

    --font-serif: 'Cormorant Garamond', ui-serif, Georgia, serif;
    --font-sans:  'Instrument Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono:  ui-monospace, 'SFMono-Regular', 'Cascadia Mono', Consolas, monospace;

    --wrap:      86rem;
    --wrap-text: 54rem;
    --wrap-wide: 96rem;

    --shadow-lg: 0 40px 90px -40px rgba(11, 7, 5, .7);
    --shadow-md: 0 20px 45px -28px rgba(11, 7, 5, .55);
    --shadow-sm: 0 6px 18px -12px rgba(11, 7, 5, .5);

    --ease: cubic-bezier(.22, .61, .36, 1);
    --hairline: rgba(143, 108, 60, .32);
}

/* ---------- 2. Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 1.06rem;
    line-height: 1.72;
    letter-spacing: .002em;
    font-feature-settings: 'kern', 'liga';
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Filmkorn/Papier-Textur als data-URI — wird pro Sektion (mitscrollend)
   eingesetzt, NICHT als fixed Overlay (das bricht Compositing/Capture). */
:root {
    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
p, li, blockquote, figcaption { text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--senf-500); outline-offset: 3px; border-radius: 2px; }
::selection { background: rgba(163, 52, 60, .22); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 10000;
    background: var(--noir); color: var(--cream-50);
    padding: .8rem 1.2rem; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Typografie-Helfer ---------- */
.font-display { font-family: var(--font-serif); font-weight: 600; letter-spacing: -.012em; line-height: 1.02; }

.kicker {
    font-family: var(--font-mono);
    font-size: .7rem; font-weight: 500;
    letter-spacing: .34em; text-transform: uppercase;
    margin: 0; color: var(--wine-600);
}
.section--dark .kicker, .section--darker .kicker, .hero .kicker { color: var(--brass-400); }

/* Beweis-Etikett */
.tag {
    display: inline-flex; align-items: center; gap: .6em;
    font-family: var(--font-mono); font-size: .68rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
.tag::before { content: ""; width: 1.5em; height: 1px; background: var(--brass-500); }
.section--dark .tag, .section--darker .tag { color: var(--brass-300); }

.lead {
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(1.7rem, 1rem + 2.7vw, 2.75rem);
    line-height: 1.2; letter-spacing: -.01em; color: var(--ink);
}
.section--dark .lead, .section--darker .lead { color: var(--cream-50); }

/* Initiale / Drop-Cap für Erzähl-Einstiege */
.dropcap::first-letter {
    font-family: var(--font-serif); font-weight: 600;
    float: left; font-size: 4.2em; line-height: .74;
    padding: .06em .12em 0 0; color: var(--wine-600);
}

.big-quote {
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(1.7rem, 1.15rem + 2.7vw, 3rem);
    line-height: 1.2; letter-spacing: -.006em;
}

/* Stempel — dezent, gedruckt */
.stamp {
    display: inline-block; font-family: var(--font-mono);
    font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--wine-600); border: 2.5px solid var(--wine-600); border-radius: 4px;
    padding: .55rem 1rem; transform: rotate(-7deg); opacity: .7; line-height: 1;
    mix-blend-mode: multiply;
}
.stamp--cream { color: var(--cream-100); border-color: var(--cream-300); opacity: .85; mix-blend-mode: normal; }

/* Regel mit Mittelpunkt */
.rule {
    display: flex; align-items: center; gap: 1rem; border: 0; margin: 0;
    color: var(--brass-500);
}
.rule::before, .rule::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, currentColor); }
.rule::after { background: linear-gradient(90deg, currentColor, transparent); }
.rule > span { width: 6px; height: 6px; border-radius: 999px; background: currentColor; transform: rotate(45deg); }
hr.rule-brass { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--brass-400), transparent); margin: 0; }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 2.6vw, 2.25rem); }
.wrap--text { max-width: var(--wrap-text); }
.wrap--wide { max-width: var(--wrap-wide); }

.section { position: relative; padding-block: clamp(4.5rem, 3rem + 8vw, 9rem); overflow: hidden; }
[id] { scroll-margin-top: 5rem; }
.section::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: var(--grain); background-size: 180px 180px; opacity: .05;
}
.section--dark::before, .section--darker::before { opacity: .09; }
.section > .wrap { position: relative; z-index: 1; }
.section--tight { padding-block: clamp(3rem, 2rem + 5vw, 5.5rem); }

.section--paper  { background: var(--cream-50); color: var(--ink); }
.section--linen  {
    background-color: var(--cream-100); color: var(--ink);
    background-image:
        radial-gradient(120% 80% at 50% -10%, rgba(203, 169, 105, .14), transparent 60%),
        radial-gradient(rgba(143, 108, 60, .07) 1px, transparent 1px);
    background-size: auto, 20px 20px;
}
.section--dark, .section--darker {
    color: var(--cream-100);
    background: var(--espresso-950);
}
.section--dark {
    background:
        radial-gradient(90% 60% at 15% 0%, rgba(180, 141, 82, .12), transparent 55%),
        radial-gradient(70% 50% at 100% 100%, rgba(134, 41, 48, .18), transparent 60%),
        var(--espresso-950);
}
.section--darker {
    background:
        radial-gradient(80% 60% at 80% 0%, rgba(180, 141, 82, .1), transparent 55%),
        var(--noir);
}
.section--wine {
    color: var(--cream-50);
    background:
        radial-gradient(80% 60% at 50% 0%, rgba(220, 192, 138, .18), transparent 60%),
        var(--wine-700);
}

/* Abschnitts-Kopf mit Geister-Aktenziffer */
.section__head { position: relative; max-width: 58rem; }
.akte-num {
    position: absolute; top: -.42em; right: 0; z-index: 0;
    font-family: var(--font-serif); font-weight: 700; font-style: italic;
    font-size: clamp(6rem, 4rem + 16vw, 15rem); line-height: .7;
    color: var(--brass-500); opacity: .1; pointer-events: none; user-select: none;
}
.section--dark .akte-num, .section--darker .akte-num { color: var(--brass-300); opacity: .12; }
.section__label {
    position: relative; z-index: 1;
    font-family: var(--font-mono); font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--wine-600); margin: 0 0 1.2rem;
    display: inline-flex; align-items: center; gap: .7rem;
}
.section--dark .section__label, .section--darker .section__label { color: var(--brass-400); }
.section__label::before { content: ""; width: 2rem; height: 1px; background: currentColor; }
.section__title {
    position: relative; z-index: 1;
    font-family: var(--font-serif); font-weight: 600; letter-spacing: -.018em; line-height: 1;
    font-size: clamp(2.4rem, 1.2rem + 5vw, 5rem);
}
.section--dark .section__title, .section--darker .section__title { color: var(--cream-50); }
.section__head > p { max-width: 46rem; font-size: 1.12rem; }
.section__head .text-muted { color: var(--ink-soft); }
.section--dark .section__head .text-muted, .section--darker .section__head .text-muted { color: rgba(247, 240, 226, .78); }

/* ---------- 5. Buttons ---------- */
.btn {
    --bg: var(--wine-600); --fg: var(--cream-50);
    display: inline-flex; align-items: center; gap: .6em;
    font-family: var(--font-sans); font-weight: 600; font-size: .96rem; line-height: 1;
    padding: 1rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
    background: var(--bg); color: var(--fg); text-decoration: none; cursor: pointer;
    transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
    box-shadow: 0 14px 30px -16px rgba(106, 31, 37, .8);
}
.btn:hover { background: var(--wine-700); transform: translateY(-2px); box-shadow: 0 20px 40px -18px rgba(106, 31, 37, .9); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; box-shadow: none; opacity: .85; }
.btn--ghost:hover { background: transparent; opacity: 1; transform: translateY(-2px); border-color: var(--brass-400); color: var(--brass-300); }
.btn--small { padding: .68rem 1.15rem; font-size: .88rem; }

.link-line {
    text-decoration: none; font-weight: 600;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%; background-repeat: no-repeat; background-size: 100% 1px;
    padding-bottom: 1px; transition: background-size .35s var(--ease);
}
.link-line:hover { background-size: 0 1px; }

.arrow-link { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; text-decoration: none; color: var(--wine-600); }
.section--dark .arrow-link, .section--darker .arrow-link, .section--wine .arrow-link { color: var(--brass-300); }
.arrow-link svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- 6. Header ---------- */
.site-header {
    position: fixed; inset: 0 0 auto; z-index: 100;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1rem; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; color: inherit; }
.brand__eyebrow { font-family: var(--font-mono); font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; opacity: .75; }
.brand__name { font-family: var(--font-serif); font-weight: 700; font-size: 1.4rem; letter-spacing: -.01em; margin-top: .18rem; }

.site-nav { display: none; align-items: center; gap: 1.7rem; }
.site-nav a { text-decoration: none; font-size: .9rem; font-weight: 500; opacity: .9; transition: opacity .2s, color .2s; }
.site-nav a:hover { opacity: 1; }

.site-header[data-solid="false"] { color: var(--cream-50); }
.site-header[data-solid="false"] .site-nav a:hover { color: var(--brass-300); }
.site-header[data-solid="true"] {
    background: rgba(247, 240, 226, .92); backdrop-filter: blur(12px); color: var(--espresso-900);
    box-shadow: 0 1px 0 var(--hairline), 0 16px 40px -30px rgba(11, 7, 5, .7);
}
.site-header[data-solid="true"] .site-nav a:hover { color: var(--wine-600); }

.nav-toggle { display: inline-flex; background: none; border: 0; color: inherit; cursor: pointer; padding: .35rem; }
.nav-toggle svg { width: 1.7rem; height: 1.7rem; }

.mobile-nav { background: rgba(247, 240, 226, .98); backdrop-filter: blur(12px); border-top: 1px solid var(--hairline); color: var(--espresso-900); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { display: block; padding: .9rem 0; text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(143, 108, 60, .14); }
.mobile-nav a:last-child { border-bottom: 0; }

@media (min-width: 64rem) { .site-nav { display: inline-flex; } .nav-toggle { display: none; } }

/* ---------- 7. Hero ---------- */
.hero { position: relative; background: var(--noir); color: var(--cream-50); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero__media img {
    width: 100%; height: 100%; object-fit: cover; object-position: 72% 70%;
    transform: scale(1.32); transform-origin: 70% 66%;
    animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
    from { transform: scale(1.24) translate3d(0, 0, 0); }
    to   { transform: scale(1.4) translate3d(-2%, -2.5%, 0); }
}
/* Cinematisches Grading: Duotone Espresso↔Messing */
.hero__grade {
    position: absolute; inset: 0; z-index: -2; mix-blend-mode: color;
    background: linear-gradient(120deg, #241708, #4a3316 55%, #6b4a1e);
    opacity: .62;
}
/* Spotlight auf die Wurst + schwerer Rand-Vignette */
.hero__scrim {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(60% 55% at 62% 62%, rgba(230, 173, 52, .16) 0%, transparent 55%),
        radial-gradient(120% 95% at 62% 60%, transparent 0%, rgba(11, 7, 5, .5) 48%, rgba(11, 7, 5, .97) 100%),
        linear-gradient(180deg, rgba(11, 7, 5, .82) 0%, rgba(11, 7, 5, .3) 24%, rgba(11, 7, 5, .38) 52%, rgba(11, 7, 5, .98) 100%);
}
.hero__grain {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background-image: var(--grain); background-size: 200px 200px; opacity: .08;
}
.hero__inner {
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: clamp(6rem, 14vh, 10rem); padding-bottom: clamp(7rem, 12vh, 9rem);
    max-width: 62rem;
}
.hero__dossier {
    display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem;
    font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--brass-300); margin-bottom: 2rem;
    padding-bottom: 1rem; border-bottom: 1px solid rgba(220, 192, 138, .28);
}
.hero__dossier .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--senf-400); box-shadow: 0 0 12px 2px rgba(230, 173, 52, .6); }
.hero__dossier .sep { opacity: .4; }
.hero h1 {
    font-family: var(--font-serif); font-weight: 600; letter-spacing: -.028em; line-height: .9;
    font-size: clamp(3.2rem, 1rem + 9.6vw, 8.8rem);
}
.hero h1 .mark { position: relative; font-style: italic; font-weight: 500; color: var(--senf-400); white-space: nowrap; }
.hero h1 .mark svg { position: absolute; left: -2%; right: -2%; bottom: -.16em; width: 104%; height: .34em; color: var(--senf-500); }
.hero h1 .mark svg path { fill: none; stroke: currentColor; stroke-width: 7; stroke-linecap: round; stroke-dasharray: 640; stroke-dashoffset: 640; }
.hero.is-in h1 .mark svg path { animation: draw 1.1s var(--ease) .5s forwards; }
.hero__sub { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: clamp(1.4rem, 1rem + 2vw, 2.1rem); color: var(--cream-200); margin-top: .7rem; }
.hero__text { margin-top: 1.9rem; max-width: 40rem; color: rgba(247, 240, 226, .85); font-size: 1.1rem; }
.hero__text em { color: var(--brass-300); font-style: italic; }
.hero__cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__status {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
    border-top: 1px solid rgba(220, 192, 138, .22);
    background: linear-gradient(0deg, rgba(11, 7, 5, .85), rgba(11, 7, 5, .3));
    backdrop-filter: blur(2px);
}
.hero__status-inner { display: flex; align-items: center; gap: 1rem; padding-block: 1.05rem; font-family: var(--font-mono); font-size: .8rem; color: var(--cream-200); }
.hero__status .lbl { color: var(--brass-300); letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.hero__status .txt { transition: opacity .5s var(--ease); }
.hero__status .txt::after { content: "▍"; margin-left: .2em; color: var(--senf-400); animation: blink 1.1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.scroll-cue { position: absolute; left: 50%; bottom: 5.2rem; z-index: 1; transform: translateX(-50%); color: var(--brass-300); opacity: .8; }
.scroll-cue svg { width: 1.4rem; height: 1.4rem; animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- 8. Beweisfoto (Sucher-Ecken + Grading) ---------- */
.evidence { position: relative; margin: 0; }
.evidence img { width: 100%; object-fit: cover; display: block; }
.evidence--duotone img { filter: grayscale(.4) sepia(.35) contrast(1.05) brightness(.94); }
.evidence__ticks { position: absolute; inset: 0; pointer-events: none; }
.evidence__ticks::before, .evidence__ticks::after,
.evidence .tk1, .evidence .tk2 { content: ""; position: absolute; width: 20px; height: 20px; border: 2px solid var(--brass-300); }
.evidence__ticks::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.evidence__ticks::after  { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.evidence .tk1 { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.evidence .tk2 { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.evidence__cap {
    position: absolute; left: 12px; bottom: 12px; z-index: 2;
    font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--cream-50); background: rgba(11, 7, 5, .68); padding: .35rem .6rem; backdrop-filter: blur(2px);
}
.evidence--flat { border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-lg); }

.figure { margin: 0; border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-lg); }
.figure img { width: 100%; object-fit: cover; }

.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 56rem) { .split { grid-template-columns: 1fr 1fr; } .split--wide-media { grid-template-columns: 1.25fr .75fr; } .split--media-first > :first-child { order: -1; } }

/* ---------- 9. Bewegungsprofil — laufende Ermittlungskarte ---------- */
.profil {
    margin-top: 2.5rem; position: relative; overflow: hidden;
    background:
        radial-gradient(70% 120% at 15% 0%, rgba(180, 141, 82, .16), transparent 55%),
        radial-gradient(60% 100% at 100% 100%, rgba(134, 41, 48, .16), transparent 60%),
        var(--noir);
    border: 1px solid rgba(220, 192, 138, .28); border-radius: 4px;
    padding: clamp(1.5rem, 3.5vw, 2.4rem); color: var(--cream-100); box-shadow: var(--shadow-md);
}
.profil__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.profil__head .t { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-300); }
.profil__head .n { font-family: var(--font-mono); font-size: .68rem; color: rgba(247, 240, 226, .5); }
.profil__live { display: inline-flex; align-items: center; gap: .45rem; color: var(--senf-400); }
.profil__live::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--senf-400); box-shadow: 0 0 8px 1px rgba(230,173,52,.7); animation: statuspulse 1.6s ease-in-out infinite; }
@keyframes statuspulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.profil__map { position: relative; }
.profil__map svg { display: block; width: 100%; height: auto; }
.map-grid line { stroke: rgba(220, 192, 138, .09); stroke-width: 1; }
.route-base { fill: none; stroke: rgba(220, 192, 138, .28); stroke-width: 1.5; stroke-dasharray: 2 7; stroke-linecap: round; }
.route-trail { fill: none; stroke: var(--senf-400); stroke-width: 2.5; stroke-linecap: round; filter: drop-shadow(0 0 3px rgba(230, 173, 52, .55)); }
.ping-ring { fill: none; stroke: var(--senf-400); stroke-width: 2; transform-box: fill-box; transform-origin: center; }
.dot-core { transform-box: fill-box; transform-origin: center; animation: corepulse 1.5s ease-in-out infinite; }
.dot-glow { transform-box: fill-box; transform-origin: center; animation: glowpulse 1.5s ease-in-out infinite; }
@keyframes corepulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }
@keyframes glowpulse { 0%,100% { opacity: .22; } 50% { opacity: .4; } }
.node-ring { fill: var(--noir); stroke: var(--brass-300); stroke-width: 2; }
.node-ring--start { stroke: var(--brass-300); }
.node-ring--end { stroke: var(--senf-500); stroke-dasharray: 3 3; }
.node-dot { fill: var(--brass-300); }
.node-name { fill: var(--cream-50); font-family: var(--font-mono); font-size: 15px; letter-spacing: .5px; }
.node-role { fill: rgba(247, 240, 226, .5); font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1px; }
.node-num { fill: var(--brass-400); font-family: var(--font-mono); font-size: 10px; }
.map-anno { fill: rgba(247, 240, 226, .35); font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px; }
.profil__foot { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(220, 192, 138, .16); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; color: var(--brass-300); text-align: center; }

/* ---------- 10. Aktenverlauf (Karriere) ---------- */
.verlauf { display: grid; gap: 1.1rem; margin-top: 3rem; counter-reset: phase; }
.verlauf__item {
    position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.2rem 1.6rem; align-items: start;
    background: rgba(247, 240, 226, .035); border: 1px solid rgba(220, 192, 138, .2);
    border-radius: 3px; padding: 1.5rem 1.7rem; overflow: hidden;
}
.verlauf__item::before {
    counter-increment: phase; content: "0" counter(phase);
    position: absolute; right: 1rem; top: -.3rem;
    font-family: var(--font-serif); font-style: italic; font-weight: 700; font-size: 4.5rem;
    color: var(--brass-300); opacity: .12; line-height: 1;
}
.verlauf__badge { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--senf-400); padding-top: .5rem; white-space: nowrap; }
.verlauf__badge::before { content: "Phase"; display: block; color: var(--brass-300); opacity: .7; margin-bottom: .2rem; }
.verlauf__body h3 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); color: var(--cream-50); margin-bottom: .25rem; }
.verlauf__body p { margin: .1rem 0 0; color: rgba(247, 240, 226, .72); }
.verlauf__note { font-family: var(--font-mono); font-size: .68rem; color: var(--brass-300); opacity: .7; margin-top: .6rem; }

/* ---------- 11. Karten / Formular ---------- */
.card {
    position: relative; background: var(--cream-50); border: 1px solid var(--hairline);
    border-radius: 3px; padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
}
/* Perforierter Dossier-Rahmen */
.card--dossier { background: #fbf6ea; box-shadow: var(--shadow-md); }
.card--dossier::before {
    content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(143, 108, 60, .45); pointer-events: none; border-radius: 2px;
}
.section--dark .card, .section--darker .card { background: rgba(247, 240, 226, .04); border-color: rgba(220, 192, 138, .2); color: var(--cream-100); }
/* Dossier bleibt immer helles Papier — auch in dunklen Sektionen */
.section--dark .card--dossier, .section--darker .card--dossier { background: #fbf6ea; color: var(--ink); border-color: var(--hairline); }
.section--dark .card--dossier .tag, .section--darker .card--dossier .tag { color: var(--ink-soft); }
.section--dark .card--dossier .tag::before, .section--darker .card--dossier .tag::before { background: var(--brass-500); }

.formular { font-family: var(--font-mono); font-size: .88rem; position: relative; z-index: 1; }
.formular dl { margin: 0; }
.formular__row { display: grid; grid-template-columns: 1fr; gap: .05rem .8rem; padding: .7rem 0; border-bottom: 1px dashed rgba(143, 108, 60, .3); }
.formular__row:last-child { border-bottom: 0; }
.formular dt { color: var(--brass-600); letter-spacing: .04em; text-transform: uppercase; font-size: .68rem; }
.formular dd { margin: 0; color: var(--ink); font-family: var(--font-sans); font-weight: 600; }
.formular dd.is-void { color: var(--wine-500); font-style: italic; font-weight: 500; }
@media (min-width: 34rem) { .formular__row { grid-template-columns: 11rem 1fr; align-items: baseline; } }

.dossier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; position: relative; z-index: 1; }
.dossier-az { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em; color: var(--wine-600); white-space: nowrap; }

/* Roter Peterhof-Kasten über die volle Breite */
.quote-band {
    position: relative; overflow: hidden;
    margin-top: clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(80% 140% at 12% 0%, rgba(220, 192, 138, .18), transparent 55%),
        var(--wine-700);
    color: var(--cream-50);
    border: 1px solid rgba(220, 192, 138, .25);
    border-radius: 4px;
    padding: clamp(2.2rem, 5vw, 4rem) clamp(1.8rem, 5vw, 4.5rem);
    box-shadow: var(--shadow-lg);
}
.quote-band::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: var(--grain); background-size: 180px 180px; opacity: .09;
}
.quote-band__key {
    position: absolute; right: -1.5rem; top: 50%;
    transform: translateY(-50%) rotate(-16deg);
    width: clamp(9rem, 22vw, 17rem); color: rgba(247, 240, 226, .09); pointer-events: none;
}
.quote-band__key svg { width: 100%; height: auto; }
.quote-band__mark { position: relative; z-index: 1; display: block; font-family: var(--font-serif); font-size: 4.5rem; line-height: .4; color: var(--senf-400); }
.quote-band__text {
    position: relative; z-index: 1; margin: 1rem 0 0; border: 0;
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(1.7rem, 1.1rem + 2.7vw, 3.1rem); line-height: 1.14; letter-spacing: -.01em;
    max-width: 26ch;
}
.quote-band__cite { position: relative; z-index: 1; display: block; margin-top: 1.6rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-300); }

/* Peters Kernaussage */
.peter-punch {
    font-family: var(--font-serif); font-weight: 600; letter-spacing: -.01em;
    font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.9rem); line-height: 1.08;
    color: var(--cream-50); margin: 1.6rem 0;
}
.peter-punch span { color: var(--senf-400); }

/* „Es ist nicht alles Wurst" — Ist-Liste + Dreisatz */
.istliste { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem .8rem; }
@media (min-width: 30rem) { .istliste { grid-template-columns: 1fr 1fr; } .istliste li:last-child { grid-column: 1 / -1; } }
.istliste li {
    display: flex; gap: .75rem; align-items: baseline;
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem); line-height: 1.2; color: var(--ink);
}
.istliste li::before { content: ""; width: 7px; height: 7px; margin-top: .55em; background: var(--senf-500); transform: rotate(45deg); flex-shrink: 0; }

.istliste { max-width: 56rem; }

/* Gerahmte Merktafel (amtliche Notiz) für den Dreisatz */
.merktafel {
    position: relative; max-width: 60rem; margin: 0;
    background: #fbf6ea; border: 1px solid var(--hairline); border-radius: 3px;
    padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.6rem, 4vw, 2.8rem) clamp(2.8rem, 5vw, 3.6rem);
    box-shadow: var(--shadow-md);
}
.merktafel::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(143, 108, 60, .4); border-radius: 2px; pointer-events: none; }
.merktafel__head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1.4rem; }
.merktafel .dreisatz { position: relative; z-index: 1; max-width: none; }
.merktafel .dreisatz p { font-size: clamp(1.45rem, 1rem + 2vw, 2.5rem); }
.merktafel__stamp { position: absolute; right: clamp(1.2rem, 3vw, 2.2rem); bottom: clamp(.9rem, 2.5vw, 1.4rem); z-index: 2; font-size: .68rem; padding: .35rem .7rem; opacity: .6; }

.dreisatz { max-width: 54rem; }
.dreisatz p {
    font-family: var(--font-serif); font-weight: 500; letter-spacing: -.01em;
    font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.8rem); line-height: 1.14; margin: 0 0 .35rem; color: var(--ink);
}
.dreisatz strong { color: var(--wine-600); font-weight: 700; }
.dreisatz__punch { color: var(--wine-700); margin-top: .2rem; }

/* Flüchtiger Verdächtiger (Leberknödel) */
.seal--empty { border-style: dashed; }
.seal--empty::before { border-style: dashed; }
.wurst-card__role--fluechtig { color: var(--senf-600); }
.wurst-card--fluechtig { border-color: rgba(207, 144, 34, .4); }

/* „Bild nicht verfügbar" — leerer Teller mit Stempel */
.missing-shot {
    position: relative; margin: 0; aspect-ratio: 4 / 3; overflow: hidden;
    display: grid; place-items: center; border-radius: 2px; box-shadow: var(--shadow-md);
    color: rgba(220, 192, 138, .38);
    border: 1px solid rgba(220, 192, 138, .22);
    background:
        repeating-linear-gradient(45deg, rgba(220, 192, 138, .035) 0 14px, transparent 14px 28px),
        radial-gradient(70% 90% at 50% 40%, rgba(180, 141, 82, .08), transparent 60%),
        var(--noir);
}
.missing-shot__plate { width: 52%; height: auto; }
.missing-shot__stamp {
    position: absolute; mix-blend-mode: normal;
    color: var(--wine-400); border-color: var(--wine-400); opacity: .9;
    background: rgba(11, 7, 5, .35); font-size: 1.05rem; letter-spacing: .16em;
    line-height: 1.15; text-align: center; padding: .7rem 1.2rem;
}
.missing-shot__stamp small { display: block; margin-top: .3rem; font-size: .58rem; letter-spacing: .22em; opacity: .9; }
.missing-shot__cap {
    position: absolute; left: 12px; bottom: 12px; z-index: 2;
    font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--cream-50); background: rgba(11, 7, 5, .68); padding: .35rem .6rem;
}

/* Peter-Sektion: mitlaufendes Hochformat-Porträt neben dem Text */
@media (min-width: 56rem) {
    #peter { overflow: visible; }
    #peter .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); align-items: start; column-gap: clamp(2.5rem, 4vw, 4rem); }
    #peter .evidence { position: sticky; top: 5.5rem; align-self: start; aspect-ratio: 4 / 5; }
    #peter .evidence img { height: 100%; object-fit: cover; object-position: 50% 36%; }
}

/* ---------- 12. Statement ---------- */
.statement { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.2rem, 1.2rem + 4.4vw, 4.4rem); line-height: 1.06; letter-spacing: -.015em; }
.statement strong { font-weight: 700; color: var(--senf-400); }
.statement__sub { display: block; font-family: var(--font-sans); font-size: 1.1rem; font-weight: 400; letter-spacing: 0; line-height: 1.6; margin-top: 1.7rem; color: rgba(247, 240, 226, .78); }

/* ---------- 13. Wurstfamilie — Wachssiegel-Monogramme ---------- */
.familie-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 3rem; counter-reset: susp; }
@media (min-width: 40rem) { .familie-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .familie-grid { grid-template-columns: repeat(3, 1fr); } }

.wurst-card {
    position: relative; background: #fbf6ea; border: 1px solid var(--hairline); border-radius: 3px;
    padding: 1.8rem 1.7rem 1.6rem; box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.wurst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brass-400); }
.wurst-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.seal {
    width: 3.4rem; height: 3.4rem; border-radius: 999px; display: grid; place-items: center;
    color: var(--wine-600); border: 1.5px solid var(--wine-600); position: relative;
    background: radial-gradient(circle at 35% 30%, rgba(163, 52, 60, .1), transparent 70%);
}
.seal::before { content: ""; position: absolute; inset: 4px; border-radius: 999px; border: 1px solid rgba(134, 41, 48, .35); }
.seal span { font-family: var(--font-serif); font-weight: 700; font-size: 1.7rem; line-height: 1; }
.wurst-card__no { counter-increment: susp; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; color: var(--brass-600); }
.wurst-card__no::before { content: "N° 0" counter(susp); }
.wurst-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.7rem; margin-bottom: .35rem; color: var(--espresso-900); }
.wurst-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.wurst-card__role { display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--wine-600); margin-top: 1.1rem; }
.wurst-card__role::before { content: "Status:"; color: var(--brass-600); }

/* ---------- 14. Schnelltest ---------- */
.test { background: #fbf6ea; border: 1px solid var(--hairline); border-radius: 4px; box-shadow: var(--shadow-lg); overflow: hidden; margin-top: 3rem; }
.test__bar { height: 4px; background: rgba(143, 108, 60, .18); }
.test__bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--senf-500), var(--brass-400)); width: 0; transition: width .45s var(--ease); }
.test__head { background: var(--noir); color: var(--cream-50); padding: 1.5rem clamp(1.5rem, 4vw, 2.4rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.test__head h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.55rem; }
.test__progress { font-family: var(--font-mono); font-size: .72rem; color: var(--brass-300); letter-spacing: .12em; }
.test__body { padding: clamp(1.6rem, 4vw, 2.6rem); }
.test__step-label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; color: var(--wine-600); text-transform: uppercase; }
.test__question { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.1rem); line-height: 1.14; color: var(--espresso-900); }
.test__options { display: grid; gap: .8rem; margin-top: 1.8rem; }
.test__option { display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left; background: var(--cream-100); border: 1.5px solid rgba(143, 108, 60, .28); border-radius: 3px; padding: 1.05rem 1.25rem; font-family: var(--font-sans); font-size: 1.02rem; font-weight: 500; color: var(--ink); cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease); }
.test__option:hover { border-color: var(--wine-500); background: var(--cream-200); transform: translateX(5px); }
.test__option .k { font-family: var(--font-mono); font-size: .82rem; width: 1.8rem; height: 1.8rem; display: inline-flex; align-items: center; justify-content: center; border: 1.5px solid var(--brass-500); border-radius: 4px; color: var(--wine-600); flex-shrink: 0; }
/* Verdächtigen-Auswahl */
.test__suspects { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1.5rem; }
@media (min-width: 34rem) { .test__suspects { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 50rem) { .test__suspects { grid-template-columns: repeat(4, 1fr); } }
.test__suspect {
    display: flex; align-items: center; gap: .7rem; text-align: left;
    background: var(--cream-100); border: 1.5px solid rgba(143, 108, 60, .28); border-radius: 10px;
    padding: .6rem .75rem; font-family: var(--font-sans); font-weight: 600; font-size: .93rem; color: var(--ink);
    cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.test__suspect:hover { border-color: var(--wine-500); background: var(--cream-200); transform: translateY(-2px); }
.seal--sm { width: 2.1rem; height: 2.1rem; flex-shrink: 0; }
.seal--sm span { font-size: 1rem; }
.seal--sm::before { inset: 3px; }
.test__random { display: inline-block; margin-top: 1.1rem; background: none; border: 0; padding: .3rem 0; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; color: var(--wine-600); cursor: pointer; }
.test__random:hover { color: var(--wine-700); text-decoration: underline; }

.test__result { text-align: center; }
.test__result .seal { margin: 0 auto; }
.test__az { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; color: var(--brass-600); margin-top: 1.3rem; }
.test__stamp-wrap { display: flex; justify-content: center; align-items: center; min-height: 4.5rem; margin: .4rem 0 .6rem; }
.test__stamp {
    display: inline-block; font-family: var(--font-mono); font-weight: 700;
    font-size: clamp(1.5rem, 1rem + 2.4vw, 2.4rem); letter-spacing: .16em; text-transform: uppercase;
    color: var(--wine-600); border: 3px solid var(--wine-600); border-radius: 6px;
    padding: .5rem 1.5rem; transform: rotate(-8deg); opacity: .85; mix-blend-mode: multiply;
    animation: stampslam .5s cubic-bezier(.2, .8, .3, 1.2) both;
}
.test__stamp--good { color: var(--brass-600); border-color: var(--brass-600); }
@keyframes stampslam {
    0%   { transform: rotate(-8deg) scale(2.6); opacity: 0; }
    55%  { transform: rotate(-8deg) scale(.9);  opacity: .95; }
    100% { transform: rotate(-8deg) scale(1);   opacity: .85; }
}
@media (prefers-reduced-motion: reduce) { .test__stamp { animation: none; } }
.test__verdict { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.6rem, 1.1rem + 2.6vw, 2.6rem); line-height: 1.12; color: var(--wine-700); margin: 1.3rem 0 .5rem; }
.test__result-note { color: var(--ink-soft); max-width: 32rem; margin-inline: auto; }
.test__restart { margin-top: 1.9rem; }
.no-js .test__body { display: none; }
.no-js .test__nojs { display: block; padding: clamp(1.6rem, 4vw, 2.6rem); }
.test__nojs { display: none; }

/* ---------- 15. Wurstordnung ---------- */
.ordnung { counter-reset: paragraf; display: grid; grid-template-columns: 1fr; gap: 0 3rem; margin-top: 3rem; }
@media (min-width: 50rem) { .ordnung { grid-template-columns: 1fr 1fr; } }
.ordnung__item { counter-increment: paragraf; display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: 1.15rem 0; border-bottom: 1px solid rgba(220, 192, 138, .2); align-items: baseline; }
.ordnung__item::before { content: "§" counter(paragraf); font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--brass-400); white-space: nowrap; min-width: 2.2rem; }
.ordnung__item p { margin: 0; font-family: var(--font-serif); font-size: 1.3rem; line-height: 1.28; color: var(--cream-50); }

/* ---------- 16. Fahndung ---------- */
.fahndung { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
@media (min-width: 58rem) { .fahndung { grid-template-columns: minmax(0, 34rem) minmax(0, 1fr); } }
.plakat { background: #f3e8ce; border: 2px solid var(--espresso-900); box-shadow: 0 40px 80px -34px rgba(0,0,0,.75); padding: clamp(1.7rem, 4vw, 2.6rem); position: relative; color: var(--espresso-950); transform: rotate(-1.4deg); transition: transform .4s var(--ease); }
.plakat:hover { transform: rotate(0deg); }
.plakat::after { content: ""; position: absolute; inset: .6rem; border: 1px solid rgba(23, 16, 10, .4); pointer-events: none; }
.plakat__top { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .34em; text-transform: uppercase; text-align: center; border-bottom: 2px solid var(--espresso-900); padding-bottom: .8rem; }
.plakat__vermisst { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2.6rem, 1.5rem + 5vw, 3.8rem); text-align: center; letter-spacing: .05em; line-height: .95; margin: 1.2rem 0 .35rem; }
.plakat__what { text-align: center; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.plakat__img { margin: 1.3rem auto; width: 100%; max-width: 20rem; filter: grayscale(1) contrast(1.2) brightness(.96); border: 1px solid rgba(23,16,10,.55); position: relative; }
.plakat dl { font-family: var(--font-mono); font-size: .76rem; margin: 1rem 0 0; }
.plakat dl div { display: grid; grid-template-columns: 8rem 1fr; gap: .5rem; padding: .28rem 0; }
.plakat dt { color: var(--wine-700); font-weight: 700; }
.plakat dd { margin: 0; }
.plakat__foot { margin-top: 1.2rem; border-top: 2px solid var(--espresso-900); padding-top: .8rem; font-size: .72rem; text-align: center; font-style: italic; }
.plakat__stamp { position: absolute; top: 6.5rem; right: -1.2rem; z-index: 4; transform: rotate(11deg); font-size: 1.05rem; letter-spacing: .28em; padding: .55rem 1.1rem; border-width: 3px; opacity: .78; background: rgba(247,240,226,.35); }

/* ---------- 17. Newsletter / CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.8rem); line-height: 1.04; }
.newsletter { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 2.2rem; max-width: 35rem; margin-inline: auto; }
.newsletter input[type="email"] { flex: 1 1 16rem; background: rgba(11, 7, 5, .18); border: 1.5px solid rgba(220, 192, 138, .45); border-radius: 999px; padding: 1rem 1.5rem; color: var(--cream-50); font-family: var(--font-sans); font-size: 1rem; }
.newsletter input::placeholder { color: rgba(247, 240, 226, .55); }
.newsletter input:focus { outline: none; border-color: var(--brass-300); }
.newsletter__hint { font-size: .78rem; color: rgba(247, 240, 226, .6); margin-top: 1rem; }
.form-msg { margin-top: 1rem; font-weight: 600; color: var(--brass-300); }
.cta-links { display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: center; margin-top: 2.6rem; }

/* ---------- 18. Footer ---------- */
.site-footer { background: var(--noir); color: var(--cream-100); }
.site-footer__grid { display: grid; gap: 2.6rem; padding-block: clamp(3.5rem, 5vw, 5rem); }
@media (min-width: 54rem) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer h4 { color: var(--brass-400); margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.site-footer a { text-decoration: none; color: rgba(247, 240, 226, .78); }
.site-footer a:hover { color: var(--cream-50); }
.site-footer__brandline { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; }
.site-footer__note { color: rgba(247, 240, 226, .55); font-size: .92rem; max-width: 28rem; margin-top: .8rem; line-height: 1.65; }
.site-footer__bar { border-top: 1px solid rgba(247, 240, 226, .1); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(247, 240, 226, .5); }
.site-footer__bar a { color: rgba(247, 240, 226, .6); }
.site-footer__bar a:hover { color: var(--cream-50); }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 1.3rem; }

.disclaimer { background: var(--espresso-950); border-top: 1px solid rgba(220, 192, 138, .14); font-size: .82rem; color: rgba(247, 240, 226, .55); }
.disclaimer .wrap { padding-block: 1.7rem; }
.disclaimer strong { color: var(--brass-300); }

/* ---------- 19. Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- 20. Utilities ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.center { text-align: center; margin-inline: auto; }
.measure { max-width: 40rem; }
.pfalz { font-style: italic; }
.text-muted { color: var(--ink-soft); }

/* Editorialer Fließtext — linksbündig, kräftig, ruhiger Rhythmus */
.prose { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.75; max-width: 40rem; text-align: left; }
.prose > p { margin: 0; }
.prose > p + p { margin-top: 1.2rem; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { color: var(--ink); }
.section--dark .prose, .section--darker .prose { color: rgba(247, 240, 226, .82); }
.section--dark .prose strong, .section--darker .prose strong,
.section--dark .prose em, .section--darker .prose em { color: var(--cream-50); }
.prose--wide { max-width: 62rem; }
.prose--full { max-width: none; }
.lead--full { max-width: none !important; }

/* Zweispaltiger Zeitungssatz für längere Passagen */
@media (min-width: 46rem) {
    .cols2 { column-count: 2; column-gap: clamp(2rem, 4vw, 3.5rem); column-rule: 1px solid var(--hairline); }
    .cols2 > p { break-inside: avoid; }
    .cols2 > p:first-child { margin-top: 0; }
    .section--dark .cols2, .section--darker .cols2 { column-rule-color: rgba(220, 192, 138, .2); }
}
/* Dreispaltiger Zeitungssatz (füllt die volle Breite) */
.cols3 > p:first-child { margin-top: 0; }
@media (min-width: 46rem) and (max-width: 63.99rem) {
    .cols3 { column-count: 2; column-gap: 2.75rem; column-rule: 1px solid var(--hairline); }
    .cols3 > p { break-inside: avoid; }
}
@media (min-width: 64rem) {
    .cols3 { column-count: 3; column-gap: clamp(2rem, 3vw, 3rem); column-rule: 1px solid var(--hairline); }
    .cols3 > p { break-inside: avoid; }
}
.callout {
    border-left: 3px solid var(--wine-600); padding: .3rem 0 .3rem 1.3rem; margin-top: 1.6rem;
    font-family: var(--font-serif); font-size: clamp(1.3rem, 1rem + 1.2vw, 1.7rem); line-height: 1.3; color: var(--ink);
}
.section--dark .callout, .section--darker .callout { color: var(--cream-50); border-color: var(--senf-500); }
.section--dark .text-muted, .section--darker .text-muted, .section--wine .text-muted { color: rgba(247, 240, 226, .74); }

/* ---------- 22. Marquee / Laufband ---------- */
.marquee {
    background: var(--wine-700); color: var(--cream-50);
    border-block: 1px solid rgba(220, 192, 138, .35);
    overflow: hidden; padding-block: 1.15rem; position: relative;
}
.marquee::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: var(--grain); background-size: 180px; opacity: .08;
}
.marquee__track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track > span {
    font-family: var(--font-serif); font-weight: 600; font-style: italic;
    font-size: clamp(1.5rem, 1rem + 2.2vw, 2.7rem); letter-spacing: -.01em;
    padding-inline: 1.6rem; display: inline-flex; align-items: center; gap: 1.6rem;
}
.marquee__track .star { color: var(--senf-400); font-style: normal; font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 23. Zwei Originale — Duell ---------- */
.duell { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 3.5rem; }
@media (min-width: 52rem) { .duell { grid-template-columns: 1fr 1fr; gap: 0; } }
.duell__side { padding: clamp(1.8rem, 4vw, 3rem); position: relative; }
.duell__side--past { border: 1px solid rgba(220, 192, 138, .22); border-radius: 4px; }
.duell__side--now  { background: rgba(220, 192, 138, .06); border: 1px solid rgba(220, 192, 138, .4); border-radius: 4px; }
@media (min-width: 52rem) {
    .duell__side--past { border-radius: 4px 0 0 4px; border-right: 0; }
    .duell__side--now  { border-radius: 0 4px 4px 0; }
}
.duell__era { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-300); }
.duell__title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.9rem, 1.3rem + 2vw, 2.8rem); line-height: 1.02; margin: .5rem 0 1rem; color: var(--cream-50); }
.duell__side--now .duell__title { color: var(--senf-400); }
.duell__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.duell__list li { display: flex; gap: .7rem; align-items: baseline; color: rgba(247, 240, 226, .82); }
.duell__list li::before { content: ""; width: 5px; height: 5px; margin-top: .55em; border-radius: 999px; background: var(--brass-400); flex-shrink: 0; transform: rotate(45deg); }
.duell__vs {
    position: absolute; z-index: 3; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 3.6rem; height: 3.6rem; border-radius: 999px; display: none; place-items: center;
    background: var(--noir); border: 1px solid var(--brass-400);
    font-family: var(--font-serif); font-style: italic; font-weight: 600; font-size: 1.2rem; color: var(--brass-300);
}
@media (min-width: 52rem) { .duell__vs { display: grid; } }

/* ---------- 24. Wachssiegel (groß) ---------- */
.wax { width: clamp(4.5rem, 8vw, 6.5rem); height: clamp(4.5rem, 8vw, 6.5rem); color: var(--wine-500); flex-shrink: 0; }
.wax svg { width: 100%; height: 100%; }
.section--dark .wax, .section--darker .wax { color: var(--wine-400); }
.verordnung-head { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.2rem); }

/* ---------- 25. Vollflächiges Zitat / Spread ---------- */
.spread { text-align: center; }
.spread__mark { font-family: var(--font-serif); font-size: 5rem; line-height: .5; color: var(--brass-400); opacity: .5; display: block; }
.spread p.big-quote { max-width: 30ch; margin-inline: auto; }

/* ---------- 21. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero h1 .mark svg path { stroke-dashoffset: 0; }
    .profil__dot { left: calc(92% - 11px); }
    .hero__status .txt::after { animation: none; }
    .marquee__track { animation: none; transform: none; }
    .profil__live::before { animation: none; }
    .hero__media img { animation: none; }
    .dot-core, .dot-glow { animation: none; }
}
