/* ════════════════════════════════════════════════════════════════════════════
   SCORDALUS — Global Stylesheet
   Mobile-first. Breakpoints: 375 (base) · 768 (tablet) · 1280 (desktop).
   ════════════════════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────────────────
   1. CUSTOM PROPERTIES
   ────────────────────────────────────────────────────────────────────────── */
:root {

  /* ── Brand ── */
  --c-bg:           #000000;
  --c-text:         #ffffff;
  --c-accent:       #ff0000;
  --c-accent-dark:  #cc0000;
  --c-accent-light: #ff2a2a;

  /* ── Text-Grauwerte (heller → dunkler) ── */
  --c-text-soft:    #e0e0e0;   /* About-Body */
  --c-text-mute:    #d6d6d6;   /* Avatar-Blurb */
  --c-text-dim:     #d0d0d0;   /* Nav-Links */
  --c-text-fade:    #cccccc;   /* Copyright, Legal */
  --c-text-low:     #bbbbbb;   /* Poll-Footer */
  --c-text-low2:    #aaaaaa;   /* Drop-a, Void-Archive */
  --c-text-low3:    #888888;   /* Subhead, Caption, Affiliate-Note */

  /* ── UI-Greys (heller → dunkler) ── */
  --c-grey-1:       #555555;
  --c-grey-2:       #444444;
  --c-grey-3:       #3a3a3a;
  --c-grey-4:       #333333;
  --c-grey-5:       #1e1e1e;
  --c-grey-6:       #1a1a1a;
  --c-grey-7:       #111111;
  --c-grey-8:       #0e0e0e;
  --c-grey-9:       #0a0a0a;
  --c-grey-10:      #060606;
  --c-grey-11:      #020202;

  /* ── Overlays ── */
  --o-black-25:     rgba(0,0,0,0.25);
  --o-black-30:     rgba(0,0,0,0.30);
  --o-black-40:     rgba(0,0,0,0.40);
  --o-black-55:     rgba(0,0,0,0.55);
  --o-black-60:     rgba(0,0,0,0.60);
  --o-black-70:     rgba(0,0,0,0.70);
  --o-black-85:     rgba(0,0,0,0.85);
  --o-black-88:     rgba(0,0,0,0.88);
  --o-black-92:     rgba(0,0,0,0.92);
  --o-black-95:     rgba(0,0,0,0.95);
  --o-red-30:       rgba(255,0,0,0.30);
  --o-red-35:       rgba(255,0,0,0.35);
  --o-red-40:       rgba(255,0,0,0.40);
  --o-red-45:       rgba(255,0,0,0.45);
  --o-red-50:       rgba(255,0,0,0.50);
  --o-red-60:       rgba(255,0,0,0.60);
  --o-white-25:     rgba(255,255,255,0.25);
  --o-white-70:     rgba(255,255,255,0.70);

  /* ── Typografie ── */
  --ff-mono:        "Courier New", Courier, monospace;
  --ff-display:     "bmx-radical", "Metal Mania", sans-serif;

  /* ── Layout ── */
  --layout-max:     1100px;
  --layout-pad:     20px;       /* mobile-first */
  --nav-h:          58px;
  --touch-min:      44px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  overflow-x: hidden;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}


/* ──────────────────────────────────────────────────────────────────────────
   3. UTILITIES
   ────────────────────────────────────────────────────────────────────────── */

/* Layout-Container — zentriert, max 1100px */
.inner {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--layout-pad);
}

/* Inhaltliche Sektion */
.section {
  position: relative;
}

/* Visually-hidden — für a11y-Texte */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Weiß-Filter für SVG-Icons mit beliebiger Original-Farbe */
.icon-white {
  filter: brightness(0) invert(1);
}

/* BMX-Radical Display-Headline (rot, glow) */
.bmx-display {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
  color: var(--c-accent);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px var(--o-red-30);
  margin: 0;
}

/* CTA-Link mit Pfeil (Text-Variante) */
.cta-link {
  display: block;
  text-align: right;
}

.cta-link a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.cta-link a:hover { opacity: 0.65; }

/* Outline-Button rot — Merch / Poll / Votes-Reset */
.btn-outline-red {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: bold;
  color: var(--c-accent);
  background: transparent;
  border: 1.5px solid var(--c-accent);
  padding: 12px 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: var(--touch-min);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline-red:hover {
  background: var(--c-accent);
  color: var(--c-text);
  transform: scale(1.03);
}

/* Outline-Button weiß */
.btn-outline-white {
  display: inline-block;
  border: 1px solid var(--c-text);
  color: var(--c-text);
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 13px 36px;
  min-height: var(--touch-min);
  transition: background 0.2s, color 0.2s;
}

.btn-outline-white:hover {
  background: var(--c-text);
  color: var(--c-bg);
}

/* Section-Divider: line + Text + line */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-divider .line {
  flex: 1;
  max-width: 240px;
  height: 2px;
  background: var(--c-text);
}

.section-divider .label {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--c-text);
  text-align: center;
  white-space: nowrap;
}


/* ──────────────────────────────────────────────────────────────────────────
   4. TABLET (≥ 768 px)
   ────────────────────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  :root {
    --layout-pad: 32px;
  }
  body { font-size: 15px; }
  .btn-outline-red { font-size: 16px; padding: 14px 38px; }
  .cta-link a { font-size: 17px; }
  .section-divider { gap: 20px; }
  .section-divider .line { max-width: 240px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   5. DESKTOP (≥ 1280 px)
   ────────────────────────────────────────────────────────────────────────── */
@media (min-width: 1280px) {
  :root {
    --layout-pad: 48px;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   6. NAV — fixed top bar (alle Seiten außer votes.html)
   Mobile-first: Burger sichtbar, Links versteckt; ab 880 px voll inline.
   ────────────────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  height: var(--nav-h);
  background: linear-gradient(
    to bottom,
    var(--o-black-85) 0%,
    rgba(0,0,0,0) 100%
  );
}

.nav-logo {
  display: block;
  line-height: 0;
}

.nav-logo img {
  height: 42px;
  width: auto;
  margin-top: 8px;
}

/* ── Burger (Mobile-Default) ── */
.nav-burger {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: var(--touch-min);
  height: var(--touch-min);
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-grey-6);
  box-shadow: 0 2px 10px var(--o-black-60);
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Links (Mobile: Drop-Down-Panel) ── */
.nav-links {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-grey-6);
  padding: 22px 0;
  transform: translateY(-200%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 1000;
}

.nav-links.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.3s ease, visibility 0s linear 0s;
}

.nav-links li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--touch-min);
}

/* Separator-Pipes nur Desktop */
.nav-links .sep,
.nav-links li.sep { display: none; }

.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--ff-mono);
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  padding: 10px 16px;
  min-height: var(--touch-min);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--c-accent); }

/* ── Dropdown ── */
.nav-links li.has-drop {
  flex-direction: column;
}

.drop {
  display: none;
  width: 100%;
  text-align: center;
  background: transparent;
  margin-top: 6px;
}

.nav-links li.has-drop.open .drop {
  display: block;
}

.drop a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--c-text-low2);
  text-transform: uppercase;
  min-height: var(--touch-min);
}

.drop a:hover { color: var(--c-accent); }

/* ── Social Icons ── */
.nav-social {
  display: none; /* Mobile: ausgeblendet */
  align-items: center;
  gap: 10px;
  margin-right: 50px; /* Platz für Burger */
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  height: var(--touch-min);
  opacity: 0.7;
  line-height: 0;
  transition: opacity 0.15s;
}

.nav-social a:hover { opacity: 1; }

.nav-social svg {
  width: 18px;
  height: 18px;
  fill: var(--c-text);
  filter: drop-shadow(0 1px 2px var(--o-black-85));
}

.nav-social .threads-icon {
  width: 14px;
  height: auto;
  filter: brightness(0) invert(1);
}


/* ── Tablet (≥ 560 px) — Social-Icons sichtbar ── */
@media (min-width: 560px) {
  .nav-social { display: flex; }
}


/* ── Desktop-Nav (≥ 880 px) — voll inline ── */
@media (min-width: 880px) {
  .nav {
    padding: 0 28px;
  }

  .nav-logo img {
    height: 63px;
    margin-top: 20px;
  }

  .nav-burger { display: none; }

  .nav-links {
    position: static;
    flex-direction: row;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border-top: none;
    padding: 0;
    gap: 0;
  }

  .nav-links li {
    width: auto;
    min-height: 0;
    position: relative;
  }

  .nav-links .sep,
  .nav-links li.sep {
    display: flex;
    color: var(--c-grey-2);
    font-size: 13px;
    padding: 0 10px;
    pointer-events: none;
  }

  .nav-links a {
    width: auto;
    padding: 4px 0;
    min-height: 0;
  }

  /* Dropdown wird Desktop zu Hover-Panel */
  .nav-links li.has-drop {
    flex-direction: row;
  }

  .drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 140px;
    margin-top: 0;
    background: var(--o-black-92);
    border: 1px solid var(--c-grey-6);
    padding: 6px 0;
    text-align: left;
  }

  .nav-links li.has-drop:hover .drop,
  .nav-links li.has-drop.open .drop {
    display: block;
  }

  .drop a {
    padding: 7px 16px;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--c-text-low2);
    text-transform: uppercase;
    white-space: nowrap;
    min-height: 0;
  }

  .drop a:hover {
    color: var(--c-text);
    background: var(--c-grey-7);
  }

  .nav-social {
    margin-right: 0;
    gap: 14px;
  }

  .nav-social a {
    width: 28px;
    height: 28px;
  }

  .nav-social svg {
    width: 16px;
    height: 16px;
    filter: none;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   7. SITE-FOOTER (shared) — Bandfoto + Affiliate + Legal
   Verwendet auf index, about, photos, releases (nicht votes.html).
   ────────────────────────────────────────────────────────────────────────── */

.site-footer {
  position: relative;
  width: 100%;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin-top: 80px;
  isolation: isolate;
}

.site-footer-img {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  z-index: 0;
}

/* Overlay sitzt unten über dem Foto — Inhalte gradient-fade */
.site-footer-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  text-align: center;
  padding: 0 20px 28px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    var(--o-black-55) 50%,
    var(--o-black-92) 100%
  );
  pointer-events: none;
}

/* Pointer-Events nur für interaktive Children erlauben */
.site-footer-overlay > * { pointer-events: auto; }

.site-footer-logo {
  width: 110px;
  max-width: 35%;
  height: auto;
  display: block;
  margin: 50px auto 6px;
  filter: drop-shadow(0 4px 14px var(--o-black-70));
}

.site-footer-trust {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--c-accent);
  letter-spacing: 0.06em;
  margin: 0 0 22px;
  text-shadow: 0 0 14px var(--o-red-40);
  transform: rotate(-2deg);
  display: inline-block;
  line-height: 1;
}

.affiliate-list {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0 0 8px;
}

.affiliate-list a {
  color: var(--c-text);
  font-weight: bold;
  padding: 4px 2px;
  display: inline-block;
}

.affiliate-list a:hover { color: var(--c-accent); }

.affiliate-list .star {
  color: var(--c-accent);
  font-weight: bold;
}

.affiliate-note {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-text-low3);
  margin: 6px 0 28px;
}

.copyright {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text-fade);
  margin: 0 0 8px;
}

.legal-links {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text-fade);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.legal-links a {
  color: var(--c-text-fade);
  font-weight: bold;
  padding: 4px 2px;
  display: inline-block;
}

.legal-links a:hover { color: var(--c-accent); }

.legal-links .dot {
  color: var(--c-grey-1);
  margin: 0 6px;
}

/* Vote-Stats-Cross (nur index.html) */
.votes-x {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: bold;
  color: var(--c-grey-2);
  text-decoration: none;
  padding: 8px 12px;
  letter-spacing: 0.05em;
  line-height: 1;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  transition: color 0.15s, transform 0.15s;
}

.votes-x:hover {
  color: var(--c-accent);
  transform: scale(1.2);
}


/* ── Tablet (≥ 768 px) ── */
@media (min-width: 768px) {
  .site-footer { margin-top: 100px; }
  .site-footer-overlay { padding: 0 20px 36px; }
  .site-footer-logo {
    width: 150px;
    margin: 60px auto 6px;
  }
  .site-footer-trust {
    font-size: 28px;
    margin: 0 0 26px;
    transform: translate(40px, -20px) rotate(-2deg);
  }
  .affiliate-list { font-size: 14px; }
  .affiliate-note { font-size: 12px; margin: 6px 0 32px; }
  .copyright { font-size: 13px; }
  .legal-links { font-size: 13px; }
  .legal-links .dot { margin: 0 8px; }
}


/* ── Desktop (≥ 1280 px) ── */
@media (min-width: 1280px) {
  .site-footer-logo {
    width: 180px;
    margin: 70px auto 6px;
  }
  .site-footer-trust {
    font-size: 32px;
    margin: 0 0 28px;
    transform: translate(80px, -30px) rotate(-2deg);
  }
  .affiliate-list { font-size: 15px; }
  .affiliate-note { margin: 6px 0 36px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   8. HERO — full-viewport image / video (index)
   Mobile: 70 svh · Desktop: 100 vh + min 600 px.
   Nav schwebt transparent darüber.
   ────────────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;        /* fallback */
  height: 100svh;       /* mobile: voller sichtbarer Viewport (ohne URL-Bar) */
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

/* Querformat (Mobile/Tablet) — niedriger Hero damit nicht alles voll Bild ist */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    height: 100svh;
    min-height: 360px;
  }
  .hero-img {
    object-position: center 35%;
  }
}

/* Gradient: oben leicht dunkel · in der Mitte transparent · unten schwarz */
.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--o-black-30) 0%,
    rgba(0,0,0,0)     35%,
    rgba(0,0,0,0)     55%,
    var(--o-black-70) 85%,
    rgba(0,0,0,1)     100%
  );
}


/* ── Tablet (≥ 768 px) ── */
@media (min-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 600px;
  }
  .hero-img {
    object-position: center 20%;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   9. STREAM-BAR — 5 Plattform-Logos + Tagline
   Liegt mit negativem margin-top über dem Hero-Gradient.
   ────────────────────────────────────────────────────────────────────────── */

.stream-bar {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  padding: 24px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: linear-gradient(to bottom, transparent 0%, var(--c-bg) 60%);
}

.stream-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.stream-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 6px 4px;
  line-height: 0;
  transition: opacity 0.2s;
}

.stream-logos img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.stream-logos a:hover img { opacity: 1; }

/* Per-Plattform-Höhen (SVG-Aspekte unterscheiden sich, optisch angeglichen) */
.stream-logos a[title="Spotify"]       img { height: 22px; }
.stream-logos a[title="Apple Music"]   img { height: 22px; }
.stream-logos a[title="YouTube Music"] img { height: 22px; }
.stream-logos a[title="Amazon Music"]  img { height: 20px; }
.stream-logos a[title="Deezer"]        img { height: 22px; }

.stream-tagline {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text);
  text-align: center;
  margin: 0;
}


/* ── Tablet (≥ 768 px) ── */
@media (min-width: 768px) {
  .stream-bar {
    margin-top: -100px;
    padding: 30px 32px 26px;
    gap: 18px;
  }
  .stream-logos { gap: 32px; }
  .stream-logos img,
  .stream-logos a[title="Spotify"]       img,
  .stream-logos a[title="Apple Music"]   img,
  .stream-logos a[title="YouTube Music"] img,
  .stream-logos a[title="Deezer"]        img { height: 26px; }
  .stream-logos a[title="Amazon Music"]  img { height: 24px; }
  .stream-tagline {
    font-size: 13px;
    letter-spacing: 0.4em;
  }
}


/* ── Desktop (≥ 1280 px) ── */
@media (min-width: 1280px) {
  .stream-bar {
    margin-top: -130px;
    padding: 34px 40px 28px;
    gap: 20px;
  }
  .stream-logos { gap: 44px; }
  .stream-logos img,
  .stream-logos a[title="Spotify"]       img,
  .stream-logos a[title="Apple Music"]   img,
  .stream-logos a[title="YouTube Music"] img,
  .stream-logos a[title="Deezer"]        img { height: 30px; }
  .stream-logos a[title="Amazon Music"]  img { height: 28px; }
  .stream-tagline {
    font-size: 15px;
    letter-spacing: 0.45em;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   10. RELEASE / OUT NOW — Aktuelles Release (index #music)
   Out-Now-Headline · Title-Lockup · YouTube-Embed · Release-Card · Archive.
   ────────────────────────────────────────────────────────────────────────── */

.release {
  background: var(--c-bg);
  padding: 40px 0 50px;
  text-align: center;
  border-top: 1px solid var(--c-grey-7);
}

/* "OUT NOW" Headline-Reihe: Strich — SVG — Strich */
.out-now-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 0 var(--layout-pad);
}

.out-now-row .line {
  flex: 1;
  max-width: 90px;
  height: 3px;
  background: var(--c-text);
}

.out-now-row img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* "The Last Will" Song-Title-Bild */
.title-lockup {
  margin: 0 auto 32px;
  display: block;
  max-width: 280px;
  width: 80%;
}

.title-lockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* YouTube Embed */
.video-frame {
  position: relative;
  max-width: 820px;
  margin: 0 var(--layout-pad) 50px;
  aspect-ratio: 16 / 9;
  background: var(--c-grey-9);
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .video-frame { margin-left: auto; margin-right: auto; }
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 10px;
}

/* Release-Card: Cover + Text */
.release-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 360px;
  margin: 0 auto 50px;
  padding: 0 var(--layout-pad);
  text-align: center;
}

.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-text {
  width: 100%;
}

.release-text h3 {
  font-family: var(--ff-mono);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 10px;
}

.release-text .tagline {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 22px;
  line-height: 1.4;
}

/* Watch-Video / Stream-Now Reihen */
.release-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.release-row .label {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  cursor: pointer;
  transition: opacity 0.2s;
}

.release-row a.label:hover { opacity: 0.75; }

.release-row .icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.release-row .yt-logo img {
  height: 24px;
  width: auto;
}

.release-row .stream-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 6px;
  line-height: 0;
  transition: opacity 0.2s;
}

.release-row .stream-icons a:hover { opacity: 0.7; }

.release-row .stream-icons img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Archive-Footer: Strich — Text — Strich */
.archive {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 0 var(--layout-pad);
}

.archive .line {
  flex: 1;
  width: 80px;
  max-width: 240px;
  height: 2px;
  background: var(--c-text);
}

.archive .archive-text {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text);
  letter-spacing: 0.05em;
  text-align: center;
}

.archive .archive-text a {
  color: var(--c-text);
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 4px 2px;
  display: inline-block;
  transition: opacity 0.2s;
}

.archive .archive-text a:hover { opacity: 0.7; }


/* ── Tablet (≥ 768 px) ── */
@media (min-width: 768px) {
  .release { padding: 50px 0 60px; }

  .out-now-row {
    gap: 20px;
    margin-bottom: 24px;
  }
  .out-now-row .line {
    max-width: 200px;
    height: 2px;
  }
  .out-now-row img { height: 52px; }

  .title-lockup {
    max-width: 340px;
    width: 60%;
    margin: 0 auto 40px;
  }

  .video-frame {
    margin-bottom: 70px;
    border-radius: 12px;
  }
  .video-frame iframe { border-radius: 12px; }

  .release-card {
    flex-direction: row;
    gap: 30px;
    max-width: 660px;
    text-align: left;
    align-items: center;
  }
  .release-cover {
    width: 220px;
    flex-shrink: 0;
  }

  .release-text h3 { font-size: 20px; }
  .release-text .tagline {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .release-row {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    justify-content: flex-start;
  }
  .release-row .label {
    font-size: 15px;
    min-width: 150px;
  }
  .release-row .icons { justify-content: flex-start; }

  .archive {
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
  }
  .archive .line {
    width: auto;
    max-width: 220px;
  }
  .archive .archive-text { font-size: 13px; }
}


/* ── Desktop (≥ 1280 px) ── */
@media (min-width: 1280px) {
  .release { padding: 50px 0 70px; }

  .out-now-row {
    gap: 20px;
    margin-bottom: 24px;
  }
  .out-now-row .line { max-width: 260px; }
  .out-now-row img { height: 56px; }

  .title-lockup {
    max-width: 372px;
    width: 48%;
    margin: 0 auto 50px;
  }

  .video-frame { margin-bottom: 80px; }

  .release-card {
    gap: 38px;
    max-width: 720px;
    margin: 0 auto 70px;
  }
  .release-cover { width: 240px; }

  .release-text h3 { font-size: 22px; }
  .release-text .tagline {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .release-row { gap: 22px; }
  .release-row .label {
    font-size: 16px;
    min-width: 160px;
  }
  .release-row .icons { gap: 14px; }
  .release-row .stream-icons img { height: 22px; }

  .archive .archive-text { font-size: 14px; }
}


/* Spotify-Album-Embed unterhalb der Release-Card */
.release-spotify-embed {
  max-width: 760px;
  margin: 40px auto 40px;
  padding: 0 var(--layout-pad);
}

.release-spotify-embed iframe {
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 12px;
  display: block;
  background: var(--c-grey-9);
}

@media (min-width: 768px) {
  .release-spotify-embed { margin: 50px auto 50px; }
}

@media (min-width: 1280px) {
  .release-spotify-embed { margin: 70px auto 70px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   11. SUPPORT — Crowd-Foto + FEED THE FIRE + Ko-fi-Widget (index #support)
   Mobile: alles gestackt · Desktop: überlappendes Layout (Foto links,
   Headline drüber, Ko-fi-Widget rechts oberhalb).
   ────────────────────────────────────────────────────────────────────────── */

.support {
  background: var(--c-bg);
  padding: 50px 0;
  overflow: visible;
}

.support .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
}

.support-photo-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}

.support-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* "FEED THE FIRE" + Support-Us-SVG */
.support-titles {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feed-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.support-titles .feed {
  font-size: 42px;
  letter-spacing: 0.01em;
  line-height: 0.85;
  margin: 0;
  text-align: center;
}

.support-titles .support-us {
  display: block;
  margin-top: 4px;
  width: 110px;
  height: auto;
}

/* CTA-Block */
.support-cta {
  position: relative;
  z-index: 3;
  margin: 8px auto 0;
  font-family: var(--ff-mono);
  display: block;
  text-align: center;
}

.support-cta p {
  color: var(--c-text);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

.support-cta .cta-link {
  text-align: center;
}

.support-cta a {
  color: var(--c-text);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 4px;
  transition: opacity 0.2s;
}

.support-cta a:hover { opacity: 0.65; }

/* Ko-fi-Widget */
.support-right {
  width: 100%;
  max-width: 380px;
  margin: 12px auto 0;
}

.kofi-wrap {
  width: 100%;
  background: transparent;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 60px var(--o-black-60);
  height: 580px;
}

.kofi-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  padding: 4px;
  background: #f9f9f9;        /* Ko-fi-Standard-BG, nicht überschreiben */
  margin-bottom: -60px;        /* trimmt Ko-fi-eigenen Bottom-Bereich */
}


/* ── Tablet (≥ 768 px) — größere Headline, Stack bleibt ── */
@media (min-width: 768px) {
  .support { padding: 70px 0; }
  .support .inner { gap: 32px; }
  .support-photo-wrap { max-width: 600px; }
  .support-titles .feed { font-size: 56px; }
  .support-titles .support-us { width: 140px; }
  .support-cta p { font-size: 15px; }
  .support-cta a { font-size: 17px; }
  .support-right { max-width: 480px; }
  .kofi-wrap { height: 652px; }
}


/* ── Desktop (≥ 1280 px) — überlappendes Layout ── */
@media (min-width: 1280px) {
  .support { padding: 70px 0 90px; }

  .support .inner {
    display: block;          /* Block-Layout für absolute children */
    padding: 0 var(--layout-pad);
  }

  /* Foto rückt nach links, 78 % der inner-Breite */
  .support-photo-wrap {
    width: 78%;
    max-width: none;
    margin: 0;
  }

  /* Headlines überlappen das Foto unten */
  .support-titles {
    margin-top: -70px;
    padding-left: 60px;
    padding-right: 20px;
    width: 62%;
  }

  .support-titles .feed {
    font-size: clamp(64px, 5.6vw, 84px);
    white-space: nowrap;
    transform: rotate(-1deg);
    transform-origin: center center;
  }

  .support-titles .support-us {
    margin-top: -6px;
    width: clamp(140px, 13vw, 180px);
  }

  /* CTA rückt nach rechts unter den Headlines */
  .support-cta {
    margin: 22px 0 0;
    margin-left: clamp(160px, 22vw, 320px);
    display: inline-block;
    text-align: left;
  }

  .support-cta p {
    font-size: 15px;
    text-align: left;
  }

  .support-cta .cta-link {
    text-align: right;
  }

  /* Ko-fi-Widget absolut positioniert oben rechts */
  .support-right {
    position: absolute;
    top: calc(22% - 40px);
    right: 0;
    width: 36%;
    max-width: 380px;
    margin: 0;
    z-index: 4;
  }

  .kofi-wrap { height: 652px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   12. MERCH — WEAR THE DARK + Merch-Foto + Outline-Button (index #merch)
   Mobile: column-reverse Stack (Foto oben, Text unten zentriert).
   Desktop: 2-Spalten-Grid mit versetztem BMX-Layout.
   ────────────────────────────────────────────────────────────────────────── */

.merch {
  background: var(--c-bg);
  padding: 60px 0 50px;
  overflow: hidden;
}

.merch .inner {
  display: flex;
  flex-direction: column-reverse;   /* Foto zuerst auf Mobile */
  gap: 24px;
  padding: 0 var(--layout-pad);
  max-width: 100%;
}

.merch-text {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.merch-text * { text-align: center; }

/* "WEAR THE DARK" Headline */
.merch-text .wear {
  font-size: 42px;
  letter-spacing: 0.01em;
  line-height: 0.85;
  margin: 0;
  white-space: normal;
}

/* "MERCH" SVG */
.merch-text .merch-svg {
  display: block;
  margin: 4px auto 0;
  width: 80px;
  height: auto;
}

/* CTA-Block: Subtitle + Take-it-Button */
.merch-cta {
  margin: 8px auto 0;
  display: block;
}

.merch-cta p {
  color: var(--c-text);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

/* CTA-Button-Container */
.merch-cta .cta-link {
  display: block;
  text-align: center;
  margin-top: 6px;
}

/* Merch-Foto */
.merch-photo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.merch-photo {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}


/* ── Tablet (≥ 768 px) — Stack bleibt, größere Maße ── */
@media (min-width: 768px) {
  .merch { padding: 80px 0 60px; }
  .merch .inner { gap: 32px; }
  .merch-text .wear { font-size: 56px; }
  .merch-text .merch-svg { width: 100px; }
  .merch-cta p { font-size: 15px; }
  .merch-photo { max-width: 480px; }
}


/* ── Desktop (≥ 1280 px) — 2-Spalten-Grid mit versetztem Layout ── */
@media (min-width: 1280px) {
  .merch { padding: 90px 0 70px; }

  .merch .inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    flex-direction: row;
    gap: 0;
    align-items: center;
    padding: 0;
  }

  .merch-text {
    padding-left: clamp(90px, 9vw, 160px);
    padding-right: 30px;
    align-items: flex-start;
    text-align: left;
  }

  .merch-text * { text-align: left; }

  .merch-text .wear {
    font-size: clamp(64px, 5.6vw, 84px);
    margin: 0 0 0 50px;
    white-space: nowrap;
    transform: rotate(-1deg);
    transform-origin: left center;
  }

  .merch-text .merch-svg {
    margin-top: -17px;
    margin-left: clamp(210px, 23vw, 270px);
    margin-right: 0;
    width: clamp(80px, 8vw, 111px);
  }

  .merch-cta {
    margin-top: 13px;
    margin-left: clamp(190px, 22vw, 250px);
    margin-right: 0;
    display: inline-block;
  }

  .merch-cta p {
    font-size: 15px;
    text-align: left;
  }

  .merch-cta .cta-link { text-align: right; }

  .merch-photo-wrap { justify-content: flex-end; }
  .merch-photo { max-width: 100%; width: 100%; }
}


/* ──────────────────────────────────────────────────────────────────────────
   13. FROM THE VOID — Foto-Slideshow mit Auto-Advance + Lightbox (index #void)
   Mobile: 2 Bilder pro Viewport · Desktop: 3 Bilder.
   Auto-advance + manuelle Pfeile → main.js (Schritt 10).
   ────────────────────────────────────────────────────────────────────────── */

.void {
  background: var(--c-bg);
  padding: 50px 0;
  text-align: center;
  overflow: hidden;
}

.void-title {
  font-size: clamp(42px, 7vw, 80px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 32px;
  text-shadow: 0 0 20px var(--o-red-30);
  text-align: center;
}

.void-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.void-viewport {
  overflow: hidden;
  width: 100%;
}

.void-track {
  display: flex;
  gap: 8px;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* Mobile: 2 Bilder gleichzeitig */
.void-track img {
  flex: 0 0 calc((100% - 8px) / 2);
  width: calc((100% - 8px) / 2);
  height: 200px;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  cursor: zoom-in;
}

/* Pfeile L/R */
.void-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--c-text);
  width: var(--touch-min);
  height: var(--touch-min);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.void-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
}

.void-arrow svg {
  width: 24px;
  height: 24px;
}

.void-prev { left: 8px; }
.void-next { right: 8px; }

/* Caption unter der Slideshow */
.void-caption {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text);
  margin: 18px 0;
  padding: 0 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Archive-Reihe: Strich — "See more: [ALL PHOTOS]" — Strich */
.void-archive {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--layout-pad);
  text-align: center;
}

.void-archive .archive-line {
  flex: 1;
  width: 60px;
  height: 2px;
  background: var(--c-text);
  opacity: 1;
}

.void-archive .archive-text {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text);
  letter-spacing: 0.05em;
  white-space: normal;
}

.void-archive .archive-text a,
.void-archive .cta-link {
  color: var(--c-text);
  font-weight: 700;
  padding: 4px 2px;
  display: inline-block;
  transition: color 0.15s;
}

.void-archive .archive-text a:hover { color: var(--c-accent); }


/* ── Tablet (≥ 768 px) — 3 Bilder pro Viewport ── */
@media (min-width: 768px) {
  .void { padding: 70px 0 80px; }
  .void-title { margin-bottom: 36px; }
  .void-track img {
    flex: 0 0 calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    height: 280px;
  }
  .void-arrow {
    width: 56px;
    height: 56px;
  }
  .void-arrow svg {
    width: 32px;
    height: 32px;
  }
  .void-prev { left: 14px; }
  .void-next { right: 14px; }
  .void-caption {
    font-size: 14px;
    margin: 24px 0;
  }
  .void-archive {
    flex-direction: row;
    gap: 20px;
    padding: 0 30px;
  }
  .void-archive .archive-line {
    width: auto;
    height: 1px;
  }
  .void-archive .archive-text {
    font-size: 13px;
    white-space: nowrap;
  }
}


/* ── Desktop (≥ 1280 px) ── */
@media (min-width: 1280px) {
  .void { padding: 70px 0 90px; }
  .void-title { margin-bottom: 40px; }
  .void-track { gap: 8px; }
  .void-track img { height: 320px; }
  .void-arrow svg {
    width: 36px;
    height: 36px;
  }
  .void-caption {
    font-size: 14px;
    margin: 30px 0;
  }
  .void-archive .archive-text { font-size: 14px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   14. POLL — WHAT DO YOU WANT NEXT? (index #poll)
   4 Radio-artige Buttons + Vote-CTA. Persistenz via localStorage (main.js).
   ────────────────────────────────────────────────────────────────────────── */

.poll {
  background: var(--c-bg);
  padding: 60px var(--layout-pad);
  text-align: center;
}

.poll-heading {
  font-size: 34px;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  text-shadow: 0 0 20px var(--o-red-30);
  line-height: 1;
  text-align: center;
}

.poll-sub {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 720px;
}

/* Optionen — Mobile: vertikal gestapelt */
.poll-opts {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  max-width: 320px;
  margin: 0 auto 24px;
}

.poll-opt {
  background: transparent;
  border: none;
  padding: 12px 8px;
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: bold;
  color: var(--c-text);
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--touch-min);
  transition: opacity 0.15s;
}

.poll-opt:hover { opacity: 0.85; }

.poll-opt .box {
  color: var(--c-accent);
  font-weight: bold;
  display: inline-block;
  min-width: 28px;
}

.poll-opt.sel .box,
.poll-opt[aria-checked="true"] .box { color: var(--c-accent); }

/* Footer-Zeile + Vote-CTA */
.poll-foot {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text-low);
  margin: 18px 0 22px;
}

.poll-cta {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: bold;
  color: var(--c-accent);
  background: transparent;
  border: 1.5px solid var(--c-accent);
  padding: 12px 28px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: var(--touch-min);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.poll-cta:hover {
  background: var(--c-accent);
  color: var(--c-text);
  transform: scale(1.03);
}


/* ── Tablet (≥ 768 px) — Optionen horizontal ── */
@media (min-width: 768px) {
  .poll { padding: 80px var(--layout-pad); }
  .poll-heading { font-size: 56px; margin: 0 0 28px; }
  .poll-sub { font-size: 15px; margin: 0 auto 32px; }
  .poll-opts {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto 28px;
  }
  .poll-opt { font-size: 16px; }
  .poll-foot { font-size: 13px; margin: 22px 0 28px; }
  .poll-cta { font-size: 15px; padding: 14px 34px; }
}


/* ── Desktop (≥ 1280 px) ── */
@media (min-width: 1280px) {
  .poll { padding: 100px var(--layout-pad); }
  .poll-heading { font-size: 80px; margin: 0 0 28px; }
  .poll-sub { font-size: 16px; margin: 0 auto 36px; }
  .poll-opts { gap: 36px; margin: 0 auto 28px; }
  .poll-opt { font-size: 17px; }
  .poll-foot { font-size: 14px; margin: 24px 0 30px; }
  .poll-cta { font-size: 16px; padding: 14px 38px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   15. ABOUT PAGE — about-scordalus.html
   Hero-Foto (full-bleed) + ABOUT-US-Headline + Tagline + Body + 4 Avatare.
   ────────────────────────────────────────────────────────────────────────── */

.about-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  position: relative;     /* eigener Stacking-Kontext */
  z-index: 2;             /* liegt über .about-hero */
}

/* Hero-Bild — full-bleed (steht im DOM AUSSERHALB der .about-page) */
.about-hero {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 1;             /* explizit unter .about-page */
}

.about-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* "ABOUT US" Schriftzug */
.about-headline {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  text-align: center;
  pointer-events: none;
}

.about-headline img {
  width: 140px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 6px 20px var(--o-black-85));
}

/* Tagline (rot, BMX) */
.about-tagline {
  margin: 8px auto 0;
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 9vw, 44px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--c-accent);
  text-shadow: 0 0 18px var(--o-red-35);
  padding: 0 var(--layout-pad);
}

/* Body — pre-line erhält Zeilenumbrüche aus dem Source */
.about-body {
  margin: 32px auto 0;
  padding: 0 var(--layout-pad);
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--c-text-soft);
  white-space: pre-line;
  max-width: 760px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* "The Avatars" Trenner (line — label — line) */
.archive-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 60px auto 24px;
  padding: 0 var(--layout-pad);
}

.archive-divider .line {
  flex: 1;
  max-width: 360px;
  height: 1px;
  background: var(--c-text);
  opacity: 0.85;
}

.archive-divider .label {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text);
  font-weight: bold;
  white-space: nowrap;
}

/* ── Avatar-Blöcke (Mobile: Stack — Foto → Name → Rolle → Blurb) ── */
.avatar-block,
.avatar-block.flip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px var(--layout-pad);
}

.avatar-block .avatar-photo { order: 1; width: 100%; }
.avatar-block .avatar-name  { order: 2; }

.avatar-photo {
  line-height: 0;
}

.avatar-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.avatar-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  transform: none;
}

.avatar-name img {
  height: 110px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  display: block;
}

.avatar-role {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--c-accent);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 14px var(--o-red-35);
  transform: rotate(-2deg);
  margin: 8px 0 0;
}

.avatar-blurb {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px var(--layout-pad) 40px;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-text-mute);
  line-height: 1.5;
}

.avatar-blurb strong {
  color: var(--c-text);
  font-weight: 700;
}


/* ── Tablet (≥ 768 px) — etwas mehr Luft, Stack bleibt ── */
@media (min-width: 768px) {
  .about-headline { margin-top: 28px; }
  .about-headline img { width: 170px; }
  .about-tagline { font-size: clamp(36px, 6vw, 50px); }
  .about-body {
    margin: 50px auto 0;
    font-size: 15px;
    line-height: calc(1.7em - 3px);
  }
  .archive-divider {
    gap: 20px;
    margin: 90px auto 28px;
    padding: 0 30px;
  }
  .archive-divider .label { font-size: 13px; }
  .avatar-block,
  .avatar-block.flip {
    gap: 22px;
    padding: 40px var(--layout-pad);
  }
  .avatar-name img { height: 140px; }
  .avatar-role { font-size: 40px; }
  .avatar-blurb {
    padding: 18px var(--layout-pad) 50px;
    font-size: 14px;
  }
}


/* ── Desktop (≥ 1280 px) — versetztes Grid-Layout aus dem Design ── */
@media (min-width: 1280px) {
  .about-page { padding: 0 var(--layout-pad); }

  /* Headline-SVG zieht sich -120 px ins Foto rein */
  .about-headline { margin-top: -120px; }
  .about-headline img { width: clamp(126px, 19.6vw, 210px); }

  .about-tagline { font-size: clamp(48px, 6vw, 64px); }

  .about-body {
    margin: 60px auto 0;
    font-size: clamp(15px, 1.4vw, 17px);
  }

  .archive-divider { margin: 110px auto 30px; }

  /* Standard-Block: Name links, Foto rechts */
  .avatar-block {
    display: grid;
    grid-template-columns: 1fr 54vw;
    gap: 0;
    align-items: center;
    padding: 30px 0;
  }

  .avatar-block .avatar-photo { order: 0; width: auto; }
  .avatar-block .avatar-name  { order: 0; }

  /* Flip: Foto links, Name rechts */
  .avatar-block.flip {
    display: grid;
    grid-template-columns: 54vw 1fr;
    gap: 0;
    align-items: center;
    padding: 30px 0;
  }

  .avatar-block.flip .avatar-photo { grid-column: 1; }
  .avatar-block.flip .avatar-name  {
    grid-column: 2;
    padding: 0;
  }

  /* Name + Rolle als shrink-to-fit Box.
     width: max-content → Container = Breite des breitesten Kindes (= Name-SVG).
     Damit ist die Role IMMER genau unterhalb des Namens zentriert,
     egal wie viel schmaler ihr Text ist. */
  .avatar-name {
    align-items: center;
    padding: 0;
    width: max-content;
  }

  /* Normal (AVENA, NYRA): Name+Role am rechten Rand der Col 1, leicht ins Foto */
  .avatar-block .avatar-name {
    justify-self: end;
    transform: translate(60px, 75px);
  }

  /* Flip (RAVYN, KAIDA): Name+Role am linken Rand der Col 2, leicht ins Foto */
  .avatar-block.flip .avatar-name {
    justify-self: start;
    transform: translate(-60px, 75px);
  }

  .avatar-name img {
    height: 200px;
    margin-left: 0;
  }

  /* Per-Avatar Höhen-Overrides */
  .avatar-block.is-nyra .avatar-name img { height: 170px; }
  .avatar-block.flip.is-ravyn .avatar-name img { height: 170px; }

  .avatar-role {
    font-size: clamp(38px, 4.5vw, 56px);
    margin-top: 12px;
    margin-left: 0;
  }

  .avatar-photo img { aspect-ratio: 16 / 9; object-fit: contain; }

  .avatar-blurb {
    padding: 26px 24px 60px;
    font-size: 15px;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   16. PAGE-HEAD (wiederverwendbar) — photos / releases / votes
   ────────────────────────────────────────────────────────────────────────── */

.page-head {
  padding: 100px var(--layout-pad) 24px;
  text-align: center;
}

.page-head h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(48px, 12vw, 64px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--c-accent);
  text-shadow: 0 0 20px var(--o-red-30);
  margin: 0;
}

.page-head .crumb {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--c-text-low3);
  margin-top: 14px;
  text-transform: uppercase;
}

.page-head .crumb a {
  color: var(--c-text-low3);
  padding: 4px 2px;
  display: inline-block;
  transition: color 0.15s;
}

.page-head .crumb a:hover { color: var(--c-accent); }

.page-head .crumb span {
  color: var(--c-grey-2);
  padding: 0 8px;
}

/* Schmale Variante (z.B. zweite Headline auf releases-Seite) */
.page-head-tight {
  padding: 24px var(--layout-pad) 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-head-tight { padding: 28px 30px 10px; }
}

@media (min-width: 1280px) {
  .page-head-tight { padding: 30px 40px 10px; }
}


@media (min-width: 768px) {
  .page-head {
    padding: 120px 30px 28px;
  }
  .page-head h1 { font-size: clamp(56px, 8vw, 80px); }
  .page-head .crumb { font-size: 12px; margin-top: 16px; }
}


@media (min-width: 1280px) {
  .page-head { padding: 140px 40px 30px; }
  .page-head h1 { font-size: clamp(64px, 7vw, 96px); }
}


/* ──────────────────────────────────────────────────────────────────────────
   17. PHOTOS-PAGE — Gallery-Grid mit Lightbox
   ────────────────────────────────────────────────────────────────────────── */

.gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px var(--layout-pad) 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-auto-rows: 22vw; /* Mobile: ca. 4:3 bei 2-Spalten-Layout */
  gap: 8px;
}

/* Fallback für direkte img-Tags ohne Wrapper */
.gallery > img,
.gallery-item {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  overflow: hidden;
  position: relative;
}

.gallery > img {
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter 0.25s, transform 0.3s;
}

.gallery-item img:hover {
  filter: grayscale(0) contrast(1.1);
  transform: scale(1.015);
}


@media (min-width: 768px) {
  .gallery {
    padding: 30px 24px 80px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 165px;
    gap: 10px;
  }
}


@media (min-width: 1280px) {
  .gallery {
    padding: 30px 24px 100px;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: clamp(150px, 16vw, 220px);
    gap: 12px;
  }
}


/* Gallery Controls („Load More"-Button + Tagline + Counter) */
.gallery-controls {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--layout-pad) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.load-more-btn {
  background: var(--c-accent);
  color: #fff;
  border: none;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.load-more-btn:hover {
  background: var(--c-accent-light);
  transform: scale(1.03);
}

.load-more-tagline {
  font-family: "Courier New", Courier, monospace;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 0;
  opacity: 0.85;
  text-align: center;
}

.gallery-count {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

@media (min-width: 768px) {
  .gallery-controls { padding: 0 24px 100px; }
  .load-more-btn { font-size: 14px; padding: 15px 36px; }
  .load-more-tagline { font-size: 13px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   18. RELEASES-PAGE — releases-of-scordalus.html
   Music-Videos-Embed + All-Songs-Divider + Discography-Embed + Cover-Grid.
   ────────────────────────────────────────────────────────────────────────── */

.releases-eyebrow {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(36px, 9vw, 48px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--c-accent);
  text-shadow: 0 0 18px var(--o-red-35);
  margin-bottom: 8px;
  display: inline-block;
}

.section-headline {
  display: block;
  margin: 0 auto;
  width: clamp(180px, 50vw, 280px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 18px var(--o-black-70));
}

.section-headline.is-small {
  width: clamp(140px, 40vw, 200px);
}

/* YouTube Music-Videos-Embed */
.videos-stage {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px var(--layout-pad) 24px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--c-grey-9);
  border: 1px solid var(--c-grey-6);
  border-radius: 10px;
  box-shadow: 0 0 60px rgba(255,0,0,0.08);
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* Platform-Row (YouTube · Vevo · Facebook) */
.platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 22px 0 16px;
  flex-wrap: wrap;
}

.platform-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 6px;
  line-height: 0;
  color: var(--c-text);
  opacity: 0.9;
  transition: opacity 0.2s;
}

.platform-row a:hover { opacity: 1; }

.platform-row img,
.platform-row svg {
  height: 24px;
  width: auto;
  display: block;
}

.platform-row img { filter: brightness(0) invert(1); }
.platform-row img.no-invert { filter: none; }

/* Blurb-Text unter dem Embed */
.section-blurb {
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #cfcfcf;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--layout-pad);
}

.section-blurb strong {
  display: block;
  color: var(--c-text);
  font-weight: bold;
  margin-top: 4px;
}

/* Spotify Discography-Embed */
.spotify-stage {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px var(--layout-pad) 24px;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--c-grey-6);
  box-shadow: 0 0 60px rgba(255,0,0,0.08);
}

/* Stream-Bar (Releases-Variante — kein negatives margin) */
.releases-stream-bar {
  background: transparent;
  padding: 24px var(--layout-pad) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 24px auto 40px;
  position: relative;
  z-index: 10;
}

.releases-stream-bar .stream-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.releases-stream-bar .stream-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 6px 4px;
  line-height: 0;
  transition: opacity 0.2s;
}

.releases-stream-bar .stream-logos img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.releases-stream-bar .stream-logos a:hover img { opacity: 1; }

/* Cover-Grid: 21 Releases */
.cover-grid {
  max-width: 1280px;
  margin: 24px auto 40px;
  padding: 0 var(--layout-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cover-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--c-grey-9);
  border: 1px solid var(--c-grey-6);
  overflow: visible;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s, z-index 0s 0.3s;
}

.cover-grid a:hover {
  transform: scale(1.18);
  box-shadow: 0 14px 40px var(--o-black-70), 0 0 30px var(--o-red-35);
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s, z-index 0s;
}

.cover-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.05) contrast(1.05);
  transition: filter 0.25s;
}

.cover-grid a:hover img {
  filter: grayscale(0) contrast(1.1);
}


/* ── Tablet (≥ 768 px) — 5 Spalten Cover-Grid ── */
@media (min-width: 768px) {
  .releases-eyebrow { font-size: clamp(48px, 6vw, 56px); margin-bottom: 10px; }
  .section-headline { width: clamp(240px, 32vw, 320px); }
  .section-headline.is-small { width: clamp(160px, 22vw, 220px); }

  .videos-stage { padding: 18px 24px 28px; }
  .platform-row { gap: 36px; margin: 24px 0 18px; }
  .platform-row img,
  .platform-row svg { height: 28px; }
  .section-blurb { font-size: 14px; }

  .spotify-stage { padding: 20px 24px 28px; }

  .releases-stream-bar {
    padding: 28px 32px 18px;
    gap: 18px;
    margin: 28px auto 50px;
  }
  .releases-stream-bar .stream-logos { gap: 36px; }
  .releases-stream-bar .stream-logos img { height: 26px; }

  .cover-grid {
    margin: 28px auto 50px;
    padding: 0 24px;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}


/* ── Desktop (≥ 1280 px) — 7 Spalten Cover-Grid ── */
@media (min-width: 1280px) {
  .releases-eyebrow { font-size: clamp(56px, 6vw, 64px); }
  .section-headline { width: clamp(280px, 32vw, 360px); }
  .section-headline.is-small { width: clamp(200px, 22.4vw, 252px); }

  .videos-stage { padding: 20px 24px 30px; }
  .platform-row { gap: 44px; }
  .platform-row img,
  .platform-row svg { height: 30px; }

  .spotify-stage { padding: 30px 24px 30px; }

  .releases-stream-bar {
    padding: 30px 40px 20px;
    margin: 30px auto 60px;
  }
  .releases-stream-bar .stream-logos { gap: 44px; }
  .releases-stream-bar .stream-logos img { height: 30px; }

  .cover-grid {
    margin: 30px auto 50px;
    padding: 0 24px;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   19. VOTES-PAGE — votes.html (Bar-Chart aus localStorage)
   ────────────────────────────────────────────────────────────────────────── */

.nav-back {
  position: fixed;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--c-text);
  text-decoration: none;
  z-index: 10;
  padding: 10px 14px;
  border: 1px solid var(--c-grey-5);
  min-height: var(--touch-min);
  transition: color 0.15s, border-color 0.15s;
}

.nav-back:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
}

.votes-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 90px var(--layout-pad) 60px;
  text-align: center;
}

.votes-wrap h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(40px, 11vw, 56px);
  color: var(--c-accent);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  text-shadow: 0 0 20px var(--o-red-30);
  line-height: 1;
}

.votes-wrap .sub {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--c-text);
  margin: 0 0 40px;
  line-height: 1.7;
}

.votes-wrap .total {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text-low2);
  letter-spacing: 0.1em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.votes-wrap .total strong {
  color: var(--c-accent);
  font-size: 17px;
}

.votes-wrap .chart {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: left;
}

.votes-wrap .row {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  align-items: center;
  gap: 10px;
}

.votes-wrap .row .label {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: bold;
  color: var(--c-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.votes-wrap .row .label .box {
  color: var(--c-accent);
  margin-right: 6px;
}

.votes-wrap .bar-wrap {
  position: relative;
  height: 22px;
  background: var(--c-grey-9);
  border: 1px solid var(--c-grey-6);
  overflow: hidden;
}

.votes-wrap .bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--c-accent-dark)  0%,
    var(--c-accent)       60%,
    var(--c-accent-light) 100%
  );
  box-shadow: 0 0 14px var(--o-red-45) inset;
  transition: width 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.votes-wrap .row .count {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--c-accent);
  font-weight: bold;
  text-align: right;
  letter-spacing: 0.05em;
}

.votes-wrap .row .count .pct {
  color: var(--c-text);
  opacity: 0.55;
  font-weight: normal;
  font-size: 11px;
  margin-left: 4px;
}

.votes-wrap .reset {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: bold;
  color: var(--c-accent);
  background: transparent;
  border: 1.5px solid var(--c-accent);
  padding: 12px 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: var(--touch-min);
  transition: background 0.2s, color 0.2s;
}

.votes-wrap .reset:hover {
  background: var(--c-accent);
  color: var(--c-text);
}

.votes-wrap .empty {
  color: var(--c-grey-1);
  font-size: 13px;
  margin: 30px 0 50px;
}


@media (min-width: 768px) {
  .nav-back { top: 22px; left: 22px; font-size: 13px; padding: 10px 16px; }
  .votes-wrap { padding: 110px 30px 70px; }
  .votes-wrap h1 { font-size: clamp(56px, 8vw, 70px); margin: 0 0 16px; }
  .votes-wrap .sub { font-size: 16px; margin: 0 0 50px; }
  .votes-wrap .total { font-size: 13px; margin: 0 0 32px; }
  .votes-wrap .total strong { font-size: 18px; }
  .votes-wrap .chart { gap: 22px; margin: 0 auto 56px; }
  .votes-wrap .row {
    grid-template-columns: 140px 1fr 70px;
    gap: 16px;
  }
  .votes-wrap .row .label { font-size: 14px; }
  .votes-wrap .row .count { font-size: 14px; }
}


@media (min-width: 1280px) {
  .votes-wrap { padding: 120px 30px 80px; }
  .votes-wrap h1 { font-size: clamp(64px, 7vw, 80px); }
}


/* ──────────────────────────────────────────────────────────────────────────
   20. LEGAL / PRIVACY PAGES — legal.html, privacy.html
   ────────────────────────────────────────────────────────────────────────── */

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--layout-pad) 60px;
}

.legal-meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--c-text-low3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 50px;
}

.legal-section {
  margin: 0 auto 40px;
}

.legal-section h2 {
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 14px;
}

.legal-section h3 {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 24px 0 10px;
}

.legal-section p {
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-soft);
  margin: 0 0 14px;
}

.legal-section a {
  color: var(--c-text);
  text-decoration: underline;
  font-weight: bold;
  word-break: break-word;
}

.legal-section a:hover { color: var(--c-accent); }

/* Email-Reveal-Button — sieht aus wie ein Link, nicht wie ein Button.
   Bot-Schutz: keine Email-Adresse im HTML, wird erst on-click via JS gebaut. */
.email-reveal {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--c-text);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  font-weight: bold;
  cursor: pointer;
  word-break: break-word;
}
.email-reveal:hover,
.email-reveal:focus-visible {
  color: var(--c-accent);
  outline: none;
}
.email-reveal::before {
  content: "✉ ";
  opacity: 0.8;
  font-weight: normal;
}
.email-revealed {
  color: var(--c-text);
  text-decoration: underline;
  font-weight: bold;
  word-break: break-word;
}
.email-revealed:hover { color: var(--c-accent); }

/* Adress-Block (Website Operator) */
.legal-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--c-grey-6);
  padding: 18px 20px;
  margin: 0 0 14px;
}

.legal-block address {
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-soft);
}

.legal-block address strong {
  color: var(--c-text);
}

/* Bullet-Listen */
.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 14px;
}

.legal-section ul li {
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-soft);
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}

.legal-section ul li::before {
  content: '›';
  color: var(--c-accent);
  position: absolute;
  left: 4px;
  font-weight: bold;
}

.legal-section strong {
  color: var(--c-text);
  font-weight: bold;
}

/* Tabellen (Third-Party-Services / Legal-Basis / Data-Retention) */
.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
  -webkit-overflow-scrolling: touch;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text-soft);
  min-width: 480px;
}

.legal-table th,
.legal-table td {
  padding: 10px 12px;
  border: 1px solid var(--c-grey-6);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.legal-table th {
  background: var(--o-red-30);
  color: var(--c-text);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

.legal-table a {
  color: var(--c-text);
  text-decoration: underline;
  word-break: break-all;
  font-weight: normal;
}

.legal-table a:hover { color: var(--c-accent); }

@media (min-width: 768px) {
  .legal-section ul li { font-size: 15px; }
  .legal-table { font-size: 13px; }
  .legal-table th { font-size: 11px; }
}


@media (min-width: 768px) {
  .legal-page { padding: 0 30px 80px; }
  .legal-meta { font-size: 12px; margin-bottom: 60px; }
  .legal-section { margin-bottom: 48px; }
  .legal-section h2 { font-size: 15px; }
  .legal-section p { font-size: 15px; }
  .legal-block address { font-size: 15px; }
}


@media (min-width: 1280px) {
  .legal-page { padding: 0 40px 100px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   21. CONSENT — Cookie-Banner + Preferences-Modal + Embed-Placeholder
   DSGVO/CCPA. Steuert YouTube/Spotify/Ko-fi-Embeds via
   body.consent-allowed-marketing.
   ────────────────────────────────────────────────────────────────────────── */

/* Body-Lock wenn Modal offen */
body.consent-modal-open { overflow: hidden; }


/* ── BANNER (fixed bottom) ──────────────────────────────────────────── */
.consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--c-bg);
  border-top: 1px solid var(--c-accent);
  box-shadow: 0 -4px 30px var(--o-black-70);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  font-family: var(--ff-mono);
}
.consent-banner.show { transform: translateY(0); }

.consent-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px var(--layout-pad);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consent-text-wrap { flex: 1; min-width: 0; }

.consent-title {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 6px;
}

.consent-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-text-soft);
  margin: 0;
}

.consent-link {
  color: var(--c-text);
  text-decoration: underline;
  font-weight: bold;
  white-space: nowrap;
  margin-left: 4px;
}
.consent-link:hover { color: var(--c-accent); }

.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

/* Mobile-Hochformat: Accept nach oben, Reject nach unten (Prefs bleibt mittig) */
.consent-actions .consent-btn-accept { order: -1; }
.consent-actions .consent-btn-reject { order:  1; }


/* ── BUTTONS (Banner + Modal) ───────────────────────────────────────── */
.consent-btn {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  min-height: var(--touch-min);
  cursor: pointer;
  border: 1.5px solid var(--c-accent);
  background: transparent;
  color: var(--c-accent);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.consent-btn-accept {
  background: var(--c-accent);
  color: var(--c-text);
}
.consent-btn-accept:hover {
  background: var(--c-accent-light);
  border-color: var(--c-accent-light);
  transform: scale(1.02);
}

.consent-btn-reject:hover {
  background: var(--c-accent);
  color: var(--c-text);
}

.consent-btn-prefs {
  border-color: var(--c-grey-2);
  color: var(--c-text);
}
.consent-btn-prefs:hover { border-color: var(--c-text); }

.consent-btn-save {
  background: var(--c-text);
  color: var(--c-bg);
  border-color: var(--c-text);
}
.consent-btn-save:hover {
  background: var(--c-text-fade);
  border-color: var(--c-text-fade);
}


/* Tablet+: horizontal */
@media (min-width: 768px) {
  .consent-banner-inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 18px 28px;
  }
  .consent-actions { flex-direction: row; }
  /* Querformat/Desktop: HTML-Reihenfolge wiederherstellen (Reject – Prefs – Accept) */
  .consent-actions .consent-btn-accept,
  .consent-actions .consent-btn-reject { order: 0; }
  .consent-btn { padding: 12px 18px; font-size: 13px; }
  .consent-title { font-size: 13px; }
  .consent-text { font-size: 13px; }
}


/* ── MODAL ──────────────────────────────────────────────────────────── */
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  font-family: var(--ff-mono);
  padding: 16px;
}
.consent-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.consent-modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--o-black-85);
  cursor: pointer;
}

.consent-modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--c-bg);
  border: 1px solid var(--c-accent);
  box-shadow: 0 30px 80px var(--o-black-85), 0 0 60px var(--o-red-30);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 32px);
}

.consent-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-grey-6);
  flex-shrink: 0;
}

.consent-modal-head h2 {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
}

.consent-modal-close {
  background: transparent;
  border: none;
  color: var(--c-text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}
.consent-modal-close:hover { color: var(--c-accent); }

.consent-modal-body {
  padding: 18px 20px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.consent-modal-intro {
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-text-soft);
  margin: 0 0 18px;
}
.consent-modal-intro strong { color: var(--c-text); }

.consent-cat {
  border: 1px solid var(--c-grey-6);
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.015);
}

.consent-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.consent-cat-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
  user-select: none;
}

.consent-cat-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--c-grey-2);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}
.consent-cat-label input[type="checkbox"]:checked {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.consent-cat-label input[type="checkbox"]:checked::after {
  content: '✕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.consent-cat-label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.consent-cat-title {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
}

.consent-cat-status {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-low3);
  white-space: nowrap;
}

.consent-cat-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--c-text-low2);
  margin: 0;
  padding-left: 28px;
}

.consent-modal-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--c-grey-6);
  background: var(--c-grey-11);
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .consent-modal-foot {
    flex-direction: row;
    justify-content: flex-end;
  }
  .consent-modal-foot .consent-btn { padding: 11px 16px; }
}


/* ── EMBED-PLACEHOLDER (wenn kein Marketing-Consent) ───────────────── */
.consent-block-marketing { position: relative; }

/* iframe komplett verstecken solange kein consent */
body:not(.consent-allowed-marketing) .consent-block-marketing > iframe {
  visibility: hidden;
}

.consent-block-placeholder {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--c-grey-9);
  border: 1px solid var(--c-grey-6);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.consent-block-inner {
  text-align: center;
  font-family: var(--ff-mono);
  max-width: 320px;
}

.consent-block-icon {
  font-size: 32px;
  color: var(--c-accent);
  margin-bottom: 10px;
  line-height: 1;
}

.consent-block-title {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.consent-block-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-text-low2);
  margin: 0 0 14px;
}

.consent-block-btn {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: transparent;
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent);
  cursor: pointer;
  min-height: var(--touch-min);
  transition: background 0.2s, color 0.2s;
}
.consent-block-btn:hover {
  background: var(--c-accent);
  color: var(--c-text);
}


/* Footer-Cookie-Settings-Link */
.consent-footer-link {
  cursor: pointer;
}


/* Floating-Trigger (kleines Cookie-Icon, fixiert in der unteren linken Ecke). */
.consent-trigger {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 8500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1.5px solid var(--c-accent);
  color: var(--c-accent);
  cursor: pointer;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px var(--o-black-70), 0 0 0 0 var(--o-red-40);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.consent-trigger.show {
  display: inline-flex;
}

.consent-trigger:hover,
.consent-trigger:focus-visible {
  background: var(--c-accent);
  color: var(--c-text);
  transform: scale(1.08);
  box-shadow: 0 6px 24px var(--o-black-70), 0 0 16px var(--o-red-40);
  outline: none;
}

.consent-trigger:active {
  transform: scale(0.96);
}

.consent-trigger svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Tablet+ — etwas größer */
@media (min-width: 768px) {
  .consent-trigger {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
  }
  .consent-trigger svg {
    width: 24px;
    height: 24px;
  }
}


/* Media-Kit Download-Button (großer prominenter Filled-Button mit Icon) */
.media-kit-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  background: var(--c-accent);
  border: 1.5px solid var(--c-accent);
  padding: 16px 22px;
  text-decoration: none;
  min-height: var(--touch-min);
  text-align: center;
  line-height: 1.3;
  margin: 8px 0;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.media-kit-download:hover {
  background: var(--c-accent-light);
  border-color: var(--c-accent-light);
  color: var(--c-text);
  transform: scale(1.02);
  box-shadow: 0 8px 24px var(--o-red-40);
}

.media-kit-download:active {
  transform: scale(0.98);
}

.media-kit-download svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .media-kit-download {
    font-size: 13px;
    padding: 18px 30px;
    gap: 14px;
  }
  .media-kit-download svg { width: 20px; height: 20px; }
}


/* "Open Cookie Settings"-Button auf Privacy-Page */
.privacy-cookie-btn {
  display: inline-block;
  margin: 8px 0 8px;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: transparent;
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent);
  cursor: pointer;
  min-height: var(--touch-min);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.privacy-cookie-btn:hover {
  background: var(--c-accent);
  color: var(--c-text);
  transform: scale(1.02);
}


/* ════════════════════════════════════════════════════════════════════════════
   Ende der Sektionen.
   ════════════════════════════════════════════════════════════════════════════ */
