/* TYDES — shared stylesheet
   Design language: warm midnight. Bar before midnight.
   Type: Bricolage Grotesque (display) + Funnel Sans (body)
*/

:root {
  /* ——— Palette ——— */
  --bg:           oklch(0.175 0.016 60);   /* warm midnight brown-black */
  --bg-deep:      oklch(0.095 0.012 55);
  --surface:      oklch(0.18 0.016 55);
  --surface-2:   oklch(0.22 0.018 55);
  --line:         oklch(0.30 0.020 60 / 0.55);
  --line-soft:    oklch(0.30 0.020 60 / 0.25);

  --fg:           oklch(0.94 0.015 85);   /* warm bone */
  --fg-dim:       oklch(0.78 0.015 78);
  --muted:        oklch(0.58 0.015 70);
  --muted-deep:   oklch(0.42 0.012 65);

  /* Akzentfarben aus dem Logo */
  --accent:       oklch(0.86 0.165 88);    /* primärer Gelb-Akzent */
  --accent-warm:  oklch(0.74 0.17 55);     /* Orange */
  --accent-rose:  oklch(0.64 0.17 18);     /* Rot */
  --accent-pink:  oklch(0.62 0.18 350);    /* Pink */
  --accent-blue:  oklch(0.66 0.12 235);    /* Blau */

  /* Type */
  --display: "Bricolage Grotesque", "DM Serif Display", Georgia, serif;
  --sans:    "Funnel Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --slow: 900ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; /* clip statt hidden: kein scroll-container, sticky funktioniert */ }
@keyframes vinyl-drift {
  0%   { --orb1-x: 6%;  --orb1-y: 40%; --orb2-x: 94%; --orb2-y: 95%; }
  25%  { --orb1-x: 14%; --orb1-y: 52%; --orb2-x: 86%; --orb2-y: 82%; }
  50%  { --orb1-x: 10%; --orb1-y: 62%; --orb2-x: 90%; --orb2-y: 72%; }
  75%  { --orb1-x: 4%;  --orb1-y: 48%; --orb2-x: 96%; --orb2-y: 88%; }
  100% { --orb1-x: 6%;  --orb1-y: 40%; --orb2-x: 94%; --orb2-y: 95%; }
}

body {
  font-family: var(--sans);
  background: var(--bg-deep);   /* dunkel wie Footer — overscroll-Bereich zeigt korrekte Farbe */
  background-attachment: fixed;
  opacity: 1;
  color: var(--fg);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;   /* clip statt hidden: kein scroll-container, sticky bleibt funktionstüchtig */
}

/* warm grain — durchgängig über die gesamte Seite, mit organischem Drift */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.68  0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='190' height='190'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.3' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.92  0 0 0 0 0.83  0 0 0 0 0.66  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat, repeat;
  background-position:
    calc(var(--grain-shift, 0px) * 1) calc(var(--grain-shift, 0px) * 1.2),
    calc(var(--grain-shift, 0px) * -0.6) calc(var(--grain-shift, 0px) * 0.7);
  opacity: var(--grain-opacity, 0.88);
  mix-blend-mode: overlay;
  animation: grain-breathe 14s ease-in-out infinite alternate;
  will-change: opacity, background-position;
}
@keyframes grain-breathe {
  0%   { opacity: var(--grain-opacity, 0.82); }
  100% { opacity: calc(var(--grain-opacity, 0.82) + 0.12); }
}
/* subtile Vignette für analoges Plattencover-Feeling */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(ellipse 110% 90% at center, transparent 65%, oklch(0.08 0.012 50 / 0.22) 100%);
}

#orb-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
  background:
    radial-gradient(ellipse 65% 55% at var(--orb1-x, 6%) var(--orb1-y, 40%), oklch(0.24 0.042 50 / 0.35), transparent 65%),
    radial-gradient(ellipse 70% 55% at var(--orb2-x, 94%) var(--orb2-y, 95%), oklch(0.23 0.038 28 / 0.30), transparent 65%),
    radial-gradient(ellipse 85% 55% at 50% 110%, oklch(0.20 0.030 245 / 0.18), transparent 60%);
  animation: vinyl-drift 32s ease-in-out infinite;
}
/* Sektions-spezifische Materialität entfernt — Grain läuft jetzt durchgängig über den Body. */

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg-deep); }

/* ——— Type Scale ——— */
.display, h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.02;
  font-variation-settings: "opsz" 32, "wdth" 100;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 9vw, 140px); font-variation-settings: "opsz" 96, "wdth" 100; }
h2 { font-size: clamp(28px, 3.8vw, 52px); font-variation-settings: "opsz" 72, "wdth" 100; }
h3 { font-size: clamp(24px, 3vw, 36px); font-variation-settings: "opsz" 36, "wdth" 100; }
h4 { font-size: clamp(18px, 1.6vw, 22px); font-variation-settings: "opsz" 24, "wdth" 100; }

p { text-wrap: pretty; }
.lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24, "wdth" 100;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow.no-rule::before { display: none; }

/* ——— Layout helpers ——— */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding: clamp(80px, 12vh, 160px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line-soft); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 6vh, 72px);
  flex-wrap: wrap;
}
.section-head .title { display: flex; flex-direction: column; gap: 14px; }
.section-head .link-more {
  align-self: flex-end;
}

/* ——— Navigation ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;   /* über Grain (z:100), unter Menü (z:200) */
  padding: 18px var(--gutter);
  padding-top: max(18px, env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: backdrop-filter .5s var(--ease), background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
  background: oklch(0.09 0.010 55 / 0);
}
/* Unterseiten: Nav wird erst beim Scrollen solide (wie Startseite) */
body:not(:has(.hero)) .nav.scrolled {
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  background: oklch(0.115 0.012 55 / 0.92);
  border-bottom-color: var(--line-soft);
}
.nav.scrolled {
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  background: oklch(0.115 0.012 55 / 0.92);
  padding-top: max(12px, env(safe-area-inset-top));
  padding-bottom: 12px;
  border-bottom-color: var(--line-soft);
}

/* Logo-Lösung:
   - oben: 5 farbige Punkte (Echo der Logo-Farben)
   - nach dem Hero: die Punkte ziehen zusammen, die Wortmarke blendet ein
*/
.nav-brand {
  position: relative;
  display: flex;
  align-items: center;
  height: 26px;
  min-width: 130px;
}
.nav-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity .55s var(--ease), transform .65s var(--ease), gap .65s var(--ease);
  transform-origin: left center;
}
.nav-dots .d {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  transition: transform .65s var(--ease), opacity .55s var(--ease);
}
.nav-dots .d:nth-child(1) { background: var(--accent-blue); }
.nav-dots .d:nth-child(2) { background: var(--accent); }
.nav-dots .d:nth-child(3) { background: var(--accent-warm); }
.nav-dots .d:nth-child(4) { background: var(--accent-rose); }
.nav-dots .d:nth-child(5) { background: var(--accent-pink); }
.nav-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  height: 24px;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s var(--ease), transform .7s var(--ease);
}
.nav-logo img { height: 100%; width: auto; }

.nav.passed-hero .nav-dots {
  opacity: 0;
  gap: 0;
  transform: scale(0.6);
}
.nav.passed-hero .nav-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
  transition-delay: .15s;
  animation: logo-pulse-nav 5s ease-in-out 0.8s infinite;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
  color: var(--fg-dim);
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ——— Nav-Strich-Farben je Link ———
   Aktuell: alle einheitlich gelb via var(--accent) — die Basis-Regel oben bleibt aktiv.

   Für 5 individuelle Farben (eine je Seite) einfach die folgenden Zeilen einkommentieren
   (d.h. die Schrägstriche und Sternchen am Anfang und Ende entfernen):

   Reihenfolge: 1=Home · 2=Musik · 3=Live · 4=Lyrics · 5=Kontakt
   Farbvariablen stehen in :root ganz oben in dieser Datei.

.nav-links a:nth-child(1)::after { background: var(--accent-blue); }    (Home    → Blau   --accent-blue)
.nav-links a:nth-child(2)::after { background: var(--accent); }          (Musik   → Gelb   --accent)
.nav-links a:nth-child(3)::after { background: var(--accent-warm); }     (Live    → Orange --accent-warm)
.nav-links a:nth-child(4)::after { background: var(--accent-rose); }     (Lyrics  → Rot    --accent-rose)
.nav-links a:nth-child(5)::after { background: var(--accent-pink); }     (Kontakt → Pink   --accent-pink)

*/

.burger {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 60;
}
.burger span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--fg);
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 22px; }
.burger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { top: 17px; transform: rotate(-45deg); }

/* ——— Hero ——— */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-deep);  /* solider Füller, falls Foto je transparent wäre */
}
.hero-img {
  position: absolute;
  top: -8%;
  left: 0;
  right: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 38% 62%;
  z-index: -2;
  transform: scale(1.04);
  filter: saturate(0.82) contrast(1.02) brightness(0.88);
}
/* Weicher Fade vom Hero in den nächsten Abschnitt */
.hero + .section,
.hero + .news-banner + .section {
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 55%, oklch(0.10 0.012 50 / 0.35) 82%, oklch(0.135 0.014 58) 100%);
}
.hero::before {
  /* Sanfter Fade ins Dunkle nach oben, damit das Bild nicht hart an die Nav stößt */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 28%;
  z-index: -1;
  background: linear-gradient(180deg,
    oklch(0.10 0.012 50 / 0.70) 0%,
    oklch(0.10 0.012 50 / 0.35) 45%,
    oklch(0.10 0.012 50 / 0.08) 80%,
    transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gutter);
  padding-bottom: clamp(130px, 18vh, 200px);  /* Platz für News-Streifen + Scroll-Hint */
}
@keyframes logo-pulse {
  0%, 100% { opacity: 1;    filter: brightness(1); }
  50%       { opacity: 0.88; filter: brightness(1.03) drop-shadow(0 0 4px oklch(0.75 0.18 60 / 0.08)); }
}
@keyframes logo-pulse-nav {
  0%, 100% { opacity: 1;    filter: brightness(1); }
  50%       { opacity: 0.78; filter: brightness(1.06); }
}

.hero-logo {
  width: clamp(280px, 46vw, 720px);
  opacity: 0;
  transform: translateY(20px);
  animation:
    rise .9s var(--ease) 0.4s forwards,
    logo-pulse 7s ease-in-out 1.4s infinite;
}
.hero-meta {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  opacity: 0;
  animation: fade 1.5s var(--ease) 1s forwards;
  z-index: 1;
}

/* News-Streifen — ruhig, statisch, im Hero unten platziert */
.hero-news {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px var(--gutter) 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, transparent, oklch(0.08 0.012 50 / 0.65) 30%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-top: 1px solid oklch(0.95 0.10 88 / 0.18);
  opacity: 0;
  transform: translateY(8px);
  animation: rise 1s var(--ease) 1s forwards;
  z-index: 2;
}
.hero-news[hidden] { display: none; }
.hero-news .news-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 0 oklch(0.86 0.165 88 / 0.55);
  animation: news-pulse 2.4s ease-out infinite;
}
@keyframes news-pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.86 0.165 88 / 0.55); }
  70%  { box-shadow: 0 0 0 14px oklch(0.86 0.165 88 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.86 0.165 88 / 0); }
}
.hero-news .news-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-news .news-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 17px);
  font-variation-settings: "opsz" 18, "wdth" 100;
  letter-spacing: 0.005em;
  color: var(--fg);
  flex: 1;
  min-width: 0;
}
.hero-news .news-text a { border-bottom: 1px solid var(--accent); padding-bottom: 1px; transition: color .3s var(--ease); }
.hero-news .news-text a:hover { color: var(--accent); }
.hero-news .news-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  margin: 0 14px 2px;
  vertical-align: middle;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(78px, 10vh, 110px);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fade 1.2s var(--ease) 1.4s forwards;
  z-index: 2;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--fg-dim));
  animation: scroll-line-v 2.4s ease-in-out infinite;
}
@keyframes scroll-line-v {
  0%   { transform: scaleY(0.2); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1);   transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0);   transform-origin: bottom; opacity: 0.4; }
}


@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade { to { opacity: 1; } }



/* ——— Band Intro — einspaltig, ruhig ——— */
.band-head { margin-bottom: clamp(28px, 4vh, 44px); }
.band-head .eyebrow { margin-bottom: 0; }

.band-text {
  max-width: 72ch;
}
.band-text .lead { margin-bottom: 28px; }
.band-text .extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .7s var(--ease);
}
.band-text .extra > div { overflow: hidden; }
.band-text.open .extra { grid-template-rows: 1fr; }
.band-text.open .extra > div { padding-top: 8px; }

.band-text p { color: var(--fg-dim); margin-bottom: 20px; }
.band-text p.body-strong { color: var(--fg); }

/* Zitate als luftiger Stack */
.pull-quotes {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vh, 32px);
  margin: clamp(36px, 6vh, 56px) 0 clamp(28px, 4vh, 40px);
  padding-left: clamp(20px, 4vw, 44px);
  border-left: 1px solid var(--line);
  max-width: 64ch;
}
.quote { display: flex; flex-direction: column; gap: 8px; }
.quote .q {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  font-variation-settings: "opsz" 24, "wdth" 100;
  text-wrap: balance;
}
.quote .src {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  margin-top: 0;
  transition: gap .35s var(--ease), border-color .35s var(--ease);
  cursor: pointer;
}
.expand-btn:hover { gap: 18px; border-color: var(--accent); }
.expand-btn .arrow {
  display: inline-block;
  transition: transform .4s var(--ease);
  font-family: var(--display);
}
.band-text.open .expand-btn .arrow { transform: rotate(180deg); }

/* ——— Image breaker ——— */
.breaker {
  position: relative;
  padding: 0 !important;
  border-top: 0 !important;
  height: clamp(420px, 80vh, 760px);
  overflow: hidden;
}
.breaker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  will-change: transform;
  filter: saturate(0.82) contrast(1.02) brightness(0.88);
}
/* warmer Multiply-Overlay */
.breaker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: oklch(0.55 0.06 60 / 0.10);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
/* Leichte Abschattung oben/unten */
.breaker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.10 0.012 50 / 0.35) 0%,
    transparent 20%,
    transparent 80%,
    oklch(0.10 0.012 50 / 0.40) 100%
  );
  pointer-events: none;
  z-index: 2;
}
/* Linien-Overlay — von links und rechts schräg, kreuzen sich, Mitte frei */
.breaker-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.breaker-lines span {
  position: absolute;
  width: 1px;
  background: oklch(0.06 0.01 50 / 0.55);
}
/* Von links kommend — schräg nach rechts unten */
.breaker-lines span:nth-child(1) {
  left: 4%; top: -10%; bottom: -10%;
  transform: rotate(22deg);
  transform-origin: top left;
  background: oklch(0.06 0.01 50 / 0.52);
}
.breaker-lines span:nth-child(2) {
  left: 10%; top: -10%; bottom: -10%;
  transform: rotate(17deg);
  transform-origin: top left;
  background: oklch(0.06 0.01 50 / 0.38);
}
.breaker-lines span:nth-child(3) {
  left: 18%; top: -10%; bottom: -10%;
  transform: rotate(28deg);
  transform-origin: top left;
  background: oklch(0.06 0.01 50 / 0.28);
}
/* Von rechts kommend — schräg nach links unten */
.breaker-lines span:nth-child(4) {
  right: 5%; top: -10%; bottom: -10%;
  transform: rotate(-19deg);
  transform-origin: top right;
  background: oklch(0.06 0.01 50 / 0.48);
}
.breaker-lines span:nth-child(5) {
  right: 13%; top: -10%; bottom: -10%;
  transform: rotate(-25deg);
  transform-origin: top right;
  background: oklch(0.06 0.01 50 / 0.35);
}
.breaker-lines span:nth-child(6) {
  right: 22%; top: -10%; bottom: -10%;
  transform: rotate(-14deg);
  transform-origin: top right;
  background: oklch(0.06 0.01 50 / 0.24);
}

/* ——— Releases ——— */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.release-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
/* Kein Rahmen mehr — die Cover stehen frei.
   Integration durch:
   - weichen warmen Drop-Shadow ("liegt auf dem Untergrund")
   - hauchfeiner Innen-Vignette die zum Bildrand abdunkelt (verbindet alle drei)
   - subtiler Vintage-Filter
*/
.release-cover {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-deep);
  filter: drop-shadow(0 24px 32px oklch(0 0 0 / 0.55))
          drop-shadow(0 4px 8px oklch(0 0 0 / 0.25));
  transition: filter .6s var(--ease), transform .6s var(--ease);
}
.release-card:hover .release-cover {
  filter: drop-shadow(0 32px 44px oklch(0 0 0 / 0.65))
          drop-shadow(0 6px 10px oklch(0 0 0 / 0.30));
  transform: translateY(-2px);
}
.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: saturate(0.88) contrast(1.02) brightness(0.96);
}
.release-card:hover .release-cover img {
  transform: scale(1.04);
  filter: saturate(1.0) contrast(1.0) brightness(1.0);
}
/* Sehr leichte warme Multiply-Tönung — vereinheitlicht die Wirkung der drei Cover */
.release-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: oklch(0.55 0.06 60 / 0.08);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
/* Innen-Vignette — zieht den Blick zur Mitte, löst den harten Rand auf */
.release-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 100% at center, transparent 55%, oklch(0 0 0 / 0.28) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.release-card .meta {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -4px;
}
.release-card .meta .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}
.release-card .title {
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36, "wdth" 100;
}
.release-card .actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--fg);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: gap .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn-link:hover { gap: 14px; border-color: var(--accent); color: var(--accent); }
.btn-link .ico { width: 12px; height: 12px; }
.btn-ghost {
  color: var(--muted);
  border-bottom-color: transparent;
}
.btn-ghost:hover { color: var(--fg-dim); border-bottom-color: var(--line); }

/* ——— Videos — links bündig mit Content, rechts offen bis Viewport-Rand ——— */
.videos-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 32vw, 460px);
  gap: 24px;
  overflow-x: auto;
  padding: 0 24px 20px max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
/* Aus dem max-width-Container ausbrechen, damit die Row tatsächlich bis ans rechte Fenster-Ende läuft */
.section .container > .videos-row {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.videos-row::-webkit-scrollbar { height: 4px; }
.videos-row::-webkit-scrollbar-thumb { background: var(--line); }
.video-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.video-frame iframe,
.video-frame .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame .placeholder {
  background: linear-gradient(135deg, oklch(0.22 0.018 55), oklch(0.16 0.015 55));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.video-frame .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease);
  z-index: 2;
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video-card .label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  align-items: baseline;
  gap: 14px;
}
.video-card .label .title {
  color: var(--fg);
  font-family: var(--display);
  font-size: 17px;
  font-variation-settings: "opsz" 20, "wdth" 100;
}
.video-card .label .tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— Live / Shows ——— */
.shows-list { display: flex; flex-direction: column; }
.show {
  display: grid;
  grid-template-columns: 96px minmax(180px, 1.2fr) minmax(0, 1.8fr) minmax(160px, auto);
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  text-align: left;
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.show:hover { padding-left: 14px; padding-right: 14px; }
.show::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width .4s var(--ease);
}
.show:hover::before { width: 3px; }
.show .date {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  font-variation-settings: "opsz" 36, "wdth" 100;
  text-align: left;
}
.show .date .day { display: block; }
.show .date .month {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 500;
}
.show .city {
  font-size: 14px;
  color: var(--fg-dim);
  text-align: left;
  justify-self: start;
}
.show .city .country {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
  font-family: var(--sans);
  font-weight: 500;
  vertical-align: middle;
}
.show .venue {
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-variation-settings: "opsz" 24, "wdth" 100;
  text-align: left;
  justify-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.show-note {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.show .ticket {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
  justify-self: end;
}
.show .ticket:hover { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }
.show .ticket.passive {
  color: var(--muted);
  border-color: var(--line-soft);
  pointer-events: none;
}
.show.past .ticket {
  border-color: transparent;
  color: var(--muted);
  padding-left: 0; padding-right: 0;
}
.show.past { opacity: 0.82; }

.shows-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
  font-family: var(--display);
  font-size: 20px;
  font-variation-settings: "opsz" 24, "wdth" 100;
}

/* ——— Footer ——— */
.footer {
  background: var(--bg-deep);
  padding: 40px var(--gutter) 32px;
  padding-bottom: max(32px, calc(24px + env(safe-area-inset-bottom)));
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  font-size: 13px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { height: 18px; opacity: 0.78; }
.footer-logo img { height: 100%; width: auto; }
.footer-social { display: flex; gap: 22px; }
.footer-social a { color: var(--muted); transition: color .3s var(--ease); }
.footer-social a:hover { color: var(--accent); }
.footer-copy { color: var(--muted-deep); font-size: 12px; letter-spacing: 0.04em; }

/* ——— Reveal animation ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.out {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ——— Subpage hero — kompakt ——— */
.subhead {
  /* nur vertikales Padding setzen — links/rechts kommt von .container,
     sonst klebt der Text am Bildschirmrand (vorher: padding: 140px 0 60px) */
  padding-top: 140px;
  padding-bottom: 60px;
}
.subhead .eyebrow { margin-bottom: 18px; }
.subhead .subtitle {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-variation-settings: "opsz" 60, "wdth" 100;
  letter-spacing: -0.015em;
  line-height: 1.02;
}
.subhead .subnote {
  margin-top: 18px;
  color: var(--fg-dim);
  max-width: 580px;
}

/* ——— Music page extras ——— */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.single-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.single-card:hover { border-color: var(--accent); background: var(--surface-2); transform: translateY(-2px); }
.single-card .thumb {
  width: 72px; height: 72px;
  background: var(--bg-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  color: var(--accent);
  font-variation-settings: "opsz" 24, "wdth" 100;
  letter-spacing: -0.02em;
  border: 1px solid var(--line-soft);
}
.single-card .info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.single-card .info .name {
  font-family: var(--display);
  font-size: 16px;
  font-variation-settings: "opsz" 18, "wdth" 100;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single-card .info .yr {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.streaming-row { display: flex; gap: 14px; flex-wrap: wrap; }
.streaming-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.streaming-row a:hover { background: var(--fg); color: var(--bg-deep); border-color: var(--fg); }
.streaming-row a .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* big release detail row (music page) */
.release-row {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(40px, 7vh, 80px) 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.release-row:last-child { border-bottom: 0; }
.release-row .cover-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-deep);
  filter: drop-shadow(0 24px 32px oklch(0 0 0 / 0.55))
          drop-shadow(0 4px 8px oklch(0 0 0 / 0.25));
}
.release-row .cover-wrap > .cover-frame {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}
.release-row .cover-wrap > .cover-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: oklch(0.55 0.06 60 / 0.08);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.release-row .cover-wrap > .cover-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 110% 100% at center, transparent 55%, oklch(0 0 0 / 0.28) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.release-row .cover-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.96);
}
.release-row .info h3 { margin-bottom: 18px; }
.release-row .info .meta {
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}
.release-row .info .meta .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  display: inline-block;
  flex-shrink: 0;
}
.release-row .info p { color: var(--fg-dim); margin-bottom: 22px; max-width: 56ch; }
.tracklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  gap: 0 48px;
  margin-bottom: 28px;
  list-style: none;
  counter-reset: tl;
}
.tracklist li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--fg-dim);
  gap: 0 12px;
}
.tracklist li::before {
  counter-increment: tl;
  content: counter(tl, decimal-leading-zero);
  font-family: var(--display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  justify-self: start;
}
.tracklist li .t {
  color: var(--fg);
  text-align: left;
  justify-self: start;
  min-width: 0;
  word-break: break-word;
  hyphens: auto;
}
.tracklist li .dur {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
  padding-left: 8px;
  white-space: nowrap;
}

/* ——— Lyrics page ——— */
.lyrics-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  min-height: 60vh;
}
.song-list {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}
.song-list-section { margin-bottom: 30px; }
.song-list-section h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.song-list-section ul { list-style: none; display: flex; flex-direction: column; }
.song-list-section li button {
  display: block;
  text-align: left;
  width: 100%;
  padding: 10px 14px 10px 0;
  font-size: 15px;
  color: var(--fg-dim);
  border-left: 2px solid transparent;
  padding-left: 14px;
  transition: color .3s var(--ease), border-color .3s var(--ease), padding-left .3s var(--ease);
}
.song-list-section li button:hover { color: var(--fg); padding-left: 18px; }
.song-list-section li button.active {
  color: var(--accent);
  border-left-color: var(--accent);
}
.lyric-pane h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.1;
}
.lyric-pane .lyric-meta {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.lyric-pane pre {
  font-family: var(--display);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 400;
  font-variation-settings: "opsz" 24, "wdth" 100;
  line-height: 1.7;
  color: var(--fg);
  white-space: pre-wrap;
  word-wrap: break-word;
  max-width: 56ch;
  text-wrap: pretty;
}
.lyric-pane pre em {
  color: var(--muted);
  font-style: italic;
}

/* ——— Kontakt page ——— */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.contact-card {
  background: transparent;
  border: 1px solid var(--line-soft);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-card .role {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-card .name {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-variation-settings: "opsz" 28, "wdth" 100;
}
.contact-card .desc { color: var(--fg-dim); font-size: 14px; margin-bottom: 6px; }
.contact-card .mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: gap .35s var(--ease), border-color .35s var(--ease);
  align-self: flex-start;
}
.contact-card .mail:hover { gap: 14px; border-color: var(--accent); }

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.merch-item {
  border: 1px solid var(--line-soft);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .4s var(--ease), background .4s var(--ease);
  overflow: hidden;
}
.merch-item:hover { border-color: var(--accent); background: var(--surface); }
.merch-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.9);
  transition: filter .4s var(--ease);
}
.merch-item:hover .merch-img { filter: saturate(1) brightness(0.95); }
.merch-item .num,
.merch-item .name,
.merch-item .desc {
  padding-left: 18px;
  padding-right: 18px;
}
.merch-item .num {
  font-family: var(--display);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 18px;
}
.merch-item .name {
  font-family: var(--display);
  font-size: 20px;
  font-variation-settings: "opsz" 24, "wdth" 100;
  padding-top: 6px;
}
.merch-item .desc { font-size: 13px; color: var(--muted); padding-bottom: 18px; }

.merch-note {
  padding: 28px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  margin-bottom: 40px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.merch-note .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
}
.merch-note .pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(0.5); opacity: 1; }
  to { transform: scale(1.8); opacity: 0; }
}
.merch-note p { color: var(--fg-dim); font-size: 15px; }
.merch-note p strong { color: var(--fg); font-weight: 500; }

/* ——— Mobile menu overlay ——— */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: oklch(0.09 0.010 55);   /* vollständig deckend — kein Durchscheinen */
  z-index: 200;   /* über Grain (z:100) und allem anderen */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 var(--gutter);
  padding-top: calc(90px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overflow-x: hidden;   /* kein Horizontal-Spill im Landscape */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateY(-120%);   /* extra Puffer (war -101%) */
  opacity: 0;   /* doppelt abgesichert — kein Rubber-Band-Durchscheinen */
  visibility: hidden;
  transition: transform .55s var(--ease), opacity .5s var(--ease), visibility 0s linear .55s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .55s var(--ease), opacity .4s var(--ease), visibility 0s linear 0s;
}
.mobile-menu-close {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: var(--gutter);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  cursor: pointer;
  color: var(--fg);
  font-size: 18px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.mobile-menu-close:hover { border-color: var(--accent); color: var(--accent); }
.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(32px, 7vw, 52px);
  letter-spacing: -0.02em;
  padding: 10px 0;
  display: block;
  color: var(--fg);
  font-variation-settings: "opsz" 48, "wdth" 100;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .mm-foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.mobile-menu .mm-foot a { font-family: var(--sans); font-size: 13px; border: 0; padding: 0; color: var(--muted); }

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .releases-grid { grid-template-columns: 1fr 1fr; }
  .lyrics-layout { grid-template-columns: 1fr; }
  .song-list { position: static; max-height: none; display: none; }
  .lyrics-select-wrap { display: block !important; }   /* !important: überschreibt base display:none (später im File) */
  .release-row { grid-template-columns: 1fr; }
  .release-row .cover-wrap { max-width: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .burger { display: block; }

  /* Nav nahtlos oben - kein Schlitz */
  .nav {
    padding-top: max(14px, env(safe-area-inset-top));
    padding-bottom: 14px;
    background: oklch(0.09 0.010 55) !important;   /* solid — kein halbtransparentes Blur */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Safe-Area-Fill mobil: immer solid — kein Gradient */
  .safe-area-fill {
    background: oklch(0.085 0.010 55) !important;
  }

  /* body: background-attachment:fixed ist auf iOS broken */
  body { background-attachment: scroll; }

  /* Unterseiten-Padding */
  .container {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .releases-grid { grid-template-columns: 1fr; gap: 40px; }
  .show {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto auto;
    gap: 6px 20px;
    padding: 22px 0;
    align-items: start;
  }
  .show .date { grid-row: 1 / span 3; align-self: center; }
  .show .venue { grid-column: 2; grid-row: 1; font-size: 16px; }
  .show .city { grid-column: 2; grid-row: 2; font-size: 13px; }
  .show .ticket {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    align-self: start;
    margin-top: 8px;
    padding: 10px 14px;
    font-size: 11px;
  }
  .show .city .country { display: block; margin-left: 0; margin-top: 4px; }

  /* Tracklist einzeilig */
  .tracklist { grid-template-columns: 1fr; grid-auto-flow: row; }

  .pull-quotes { padding-left: 18px; gap: 22px; margin: 28px 0; }
  .hero-meta { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  /* News-Streifen bleibt am unteren Hero-Rand - kein Versatz */
  .hero-news {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 12px var(--gutter);
    padding-bottom: max(14px, calc(env(safe-area-inset-bottom) + 8px));
  }
  .hero-news .news-eyebrow { font-size: 10px; }

  /* Hero: mehr Platz für Logo + Scroll-Hint + News */
  .hero-content {
    padding-bottom: clamp(100px, 22vh, 180px);
    padding-top: max(80px, calc(env(safe-area-inset-top) + 60px));
  }
  .hero-logo { width: clamp(200px, 70vw, 320px); }

  /* Scroll-Hint sichtbar, zwischen Logo und News-Streifen */
  .scroll-hint {
    display: flex;
    bottom: clamp(72px, 14vh, 120px);
  }

  /* Reveal auf Mobile - etwas schneller als Desktop */
  .reveal { transition: opacity .5s var(--ease), transform .5s var(--ease); transform: translateY(18px); }
  .reveal.in { transform: translateY(0); }
  .reveal.out { transition: opacity .35s var(--ease), transform .35s var(--ease); transform: translateY(-8px); }

  /* Kontakt subtitle klein auch auf Mobile */
  .subhead .subtitle { font-size: clamp(22px, 6vw, 32px); }
}

/* ——— Landscape Mobile: siehe „MOBILE & LANDSCAPE HARDENING" am Dateiende ——— */

/* Orb-layer auch auf Unterseiten sichtbar */
body:not(:has(.hero)) #orb-layer {
  opacity: 0.6;
  transition: none;
}

/* ——— Impressum ——— */
.impressum-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.impressum-block .eyebrow { margin-bottom: 16px; }
.impressum-block p {
  color: var(--fg-dim);
  line-height: 1.7;
}
.impressum-block a {
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease);
}
.impressum-block a:hover { border-color: var(--accent); color: var(--accent); }

.footer-copy a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.footer-copy a:hover { color: var(--fg); border-bottom-color: var(--line); }

/* ——— Live-Unterseite: h2 Headlines kleiner ——— */
.live-page .section-head h2 {
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.1;
}

/* ——— Singles-Sektion Beschreibungstext ——— */
.singles-blurb {
  color: var(--fg-dim);
  max-width: 580px;
  margin-bottom: 36px;
  margin-top: -8px;
}

/* ——— Reveal auf Unterseiten (bidirektional wie Hauptseite) ——— */

/* ——— Lyrics Mobile Custom Dropdown ——— */
.lyrics-select-wrap {
  display: none;
  position: sticky;
  top: calc(60px + env(safe-area-inset-top, 0px));
  z-index: 20;
  margin-bottom: 28px;
  background: oklch(0.135 0.014 58);
  padding: 8px 0;
}
.lyrics-dropdown { position: relative; }
.lyrics-dropdown-btn {
  width: 100%;
  background: oklch(0.135 0.014 58);
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color .3s var(--ease);
}
.lyrics-dropdown-btn:focus { outline: 1px solid var(--accent); }
.lyrics-dropdown-btn[aria-expanded="true"] { border-color: var(--accent); }
.lyrics-dropdown-btn svg { flex-shrink: 0; transition: transform .3s var(--ease); }
.lyrics-dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lyrics-dropdown-label { flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lyrics-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: oklch(0.135 0.014 58);
  border: 1px solid var(--accent);
  border-top: none;
  max-height: 50vh;
  overflow-y: auto;
  list-style: none;
  display: none;
  z-index: 30;
}
.lyrics-dropdown-list.open { display: block; }
.lyrics-dropdown-group {
  padding: 8px 16px 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--sans);
  border-top: 1px solid var(--line-soft);
}
.lyrics-dropdown-group:first-child { border-top: none; }
.lyrics-dropdown-list li button {
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--fg-dim);
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lyrics-dropdown-list li button:hover,
.lyrics-dropdown-list li button.active {
  background: var(--surface-2);
  color: var(--fg);
}
.lyrics-dropdown-list li button.active { color: var(--accent); }
@media (max-width: 720px) {
  .lyrics-select-wrap { display: block; }
  .song-list { display: none; }
  .lyrics-layout { grid-template-columns: 1fr; }
}

/* ——— Archiv Mehr-anzeigen Button ——— */
.archive-more-btn {
  display: block;
  margin: 28px auto 0;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.archive-more-btn:hover { color: var(--fg); border-color: var(--accent); }

/* ——— Kontakt: Social full-width card ——— */
.social-card-full {
  grid-column: 1 / -1;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
}
.social-entry {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.social-entry-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-variation-settings: "opsz" 28, "wdth" 100;
  color: var(--fg);
}
@media (max-width: 720px) {
  .social-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ——— Kontakt: 2 Karten, kleinere Überschrift ——— */
.contact-grid-2 { grid-template-columns: 1fr 1fr; }
.contact-subtitle {
  font-size: clamp(24px, 3.2vw, 42px) !important;
  line-height: 1.1;
}
@media (max-width: 720px) {
  .contact-grid-2 { grid-template-columns: 1fr; }
}

/* ——— Safe-Area Statusleiste abdecken (iOS) ——— */
.safe-area-fill {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background: oklch(0.09 0.010 55 / 0.98);
  z-index: 51;
  pointer-events: none;
}

/* ——— Startseite: abwechselnde Hintergründe ——— */
/* Hero → dunkel → dunkel → hell → bild → hell → dunkel → footer */
#band {
  background: oklch(0.135 0.014 58);
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
#releases,
#videos {
  background: var(--bg);
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
#live {
  background: oklch(0.135 0.014 58);
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ——— Unterseiten: Subhead + erste Sektion dunkel, zweite Sektion hell ——— */

/* Alle Unterseiten ohne Hero: Body-Hintergrund dunkel */
body:not(:has(.hero)) {
  background-color: var(--bg-deep);   /* match Footer-Hintergrund */
}

/* Erste Inhaltssektion auf Musik und Live ebenfalls dunkel — erbt vom body */

/* Singles und Archiv hell */
.singles-section,
.archive-section {
  background: var(--bg);
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
}

/* ============================================================
   MOBILE & LANDSCAPE HARDENING — v2.1
   (Bugfixes: iOS Statusleisten-Schlitz + Landscape-Layout)
   ============================================================ */

/* Dunkler Grundton hinter allem — verhindert helle Blitzer beim
   iOS-Overscroll (Gummiband) am oberen/unteren Rand. */
html { background: var(--bg-deep); }

/* — Container global mit Safe-Area: Inhalt klebt nie unter der Notch
   (betrifft Landscape, wo env(safe-area-inset-left/right) > 0). — */
.container {
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}

/* — Nav global mit seitlicher Safe-Area — */
.nav {
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}

/* ——— Bug 1: iOS-Schlitz über der Header-Leiste ———
   Ein solider, voll deckender Balken (OHNE backdrop-filter) füllt die
   Safe-Area der Statusleiste/Dynamic Island zuverlässig. Liegt über der
   Nav. Auf Geräten ohne Notch ist die Höhe 0 → unsichtbar. */
.safe-area-fill {
  height: env(safe-area-inset-top, 0px);
  background: oklch(0.085 0.010 55);
  z-index: 201;   /* über Mobile-Menü (z:200) — immer sichtbar */
}
/* Desktop: über ungescrolltem Hero sanft einblenden */
@media (min-width: 721px) {
  body:has(.hero):not(:has(.nav.scrolled)) .safe-area-fill {
    background: linear-gradient(180deg,
      oklch(0.07 0.01 50 / 0.85) 0%,
      oklch(0.07 0.01 50 / 0.40) 70%,
      oklch(0.07 0.01 50 / 0) 100%);
  }
}

/* ——— Bug 2: Landscape-Phones ———
   In Landscape ist die Breite oft > 720px, daher griff der Mobile-Breakpoint
   nicht und die Desktop-Nav blieb cramped stehen. Wir schalten in flachen
   Landscape-Viewports konsequent auf das Burger-Menü um. */
@media (orientation: landscape) and (max-height: 560px) {
  /* Desktop-Nav auch in Landscape — kein Burger */
  .nav {
    background: oklch(0.09 0.010 55);   /* solid */
    border-bottom-color: var(--line-soft);
    padding-top: max(10px, env(safe-area-inset-top));
    padding-bottom: 10px;
  }
  /* Safe-Area-Fill auch in Landscape immer solid */
  .safe-area-fill {
    background: oklch(0.085 0.010 55) !important;
  }
  /* Hero: 100svh = Höhe ohne Browser-Chrome → News-Streifen initial sichtbar */
  .hero { height: 100svh; min-height: 0; }
  /* Alle drei Köpfe sichtbar halten */
  .hero-img { object-position: 50% 50%; }
  .hero-content {
    justify-content: center;
    padding-top: max(64px, calc(env(safe-area-inset-top) + 52px));
    padding-bottom: clamp(64px, 16vh, 92px);
  }
  .hero-logo { width: clamp(150px, 30vw, 260px); }
  .scroll-hint { display: none; }
  .hero-news {
    padding: 8px max(var(--gutter), env(safe-area-inset-left)) 8px max(var(--gutter), env(safe-area-inset-right));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  /* Subhead in Landscape nicht riesig & kompakter */
  .subhead { padding-top: 96px; padding-bottom: 36px; }
  .subhead .subtitle,
  .contact-subtitle { font-size: clamp(22px, 4.4vw, 34px) !important; }
  .footer-inner { flex-direction: row; align-items: center; flex-wrap: wrap; }
}

