/* ══════════════════════════════════════════════════════════════════
   NOSA RAP — Stylesheet  ·  Design „GOLDLICHT"
   Prestige-Street: tiefes Schwarz, warmes Gold, Bühnenlicht.
   Display: Bebas Neue · Labels: Oswald · Text: Inter   (alle selbst gehostet)
   Bewusst OHNE Rot — klare Abgrenzung zur Dagrin-Welt.
   ══════════════════════════════════════════════════════════════════ */

/* ---------- Schriften: selbst gehostet (kein Google-CDN → DSGVO) ---------- */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/assets/fonts/bebas-neue.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal; font-weight: 200 700; font-display: swap;
  src: url('/assets/fonts/oswald.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('/assets/fonts/inter.woff2') format('woff2');
}

:root {
  --ink:        #0b0b0c;
  --ink-2:      #0f0f11;
  --ink-3:      #16161a;
  --panel:      #1b1b1f;
  --bone:       #f4efe6;
  --bone-dim:   #cbc6ba;
  --muted:      #97938a;
  --gold:       #e7b43c;
  --gold-2:     #f4d98c;
  --gold-deep:  #b8862b;
  --grad-gold:  linear-gradient(135deg, #f4d98c 0%, #e7b43c 45%, #b8862b 100%);
  --line:       rgba(231,180,60,.16);
  --line-strong:rgba(244,239,230,.18);
  --hair:       rgba(244,239,230,.08);
  --maxw:       1180px;
  --nav-h:      68px;
  --r:          14px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --shadow:     0 30px 70px -30px rgba(0,0,0,.85);
}

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth; scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--bone);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--gold); color: #1a1304; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 500;
  background: var(--gold); color: #1a1304; padding: .7em 1.1em; border-radius: 8px;
  font-family: 'Oswald', sans-serif; font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
.section { padding-block: clamp(4rem, 10vw, 7.5rem); position: relative; }
.section--lift { background: var(--ink-2); border-block: 1px solid var(--hair); }

/* ---------- Typografie-Utilities ---------- */
.h2 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif; font-weight: 400;
  line-height: .9; letter-spacing: .012em; text-transform: uppercase;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
}
.h3 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif; font-weight: 400;
  line-height: .96; letter-spacing: .02em; text-transform: uppercase;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}
.eyebrow {
  font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase;
  letter-spacing: .26em; font-size: .76rem; color: var(--gold);
  display: inline-flex; align-items: center; gap: .8em; margin-bottom: 1rem;
}
.eyebrow--hero { font-size: .82rem; }
.tick { display: inline-block; width: 1.7em; height: 2px; background: var(--gold); opacity: .9; }
.gold { color: var(--gold); }
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__head { max-width: 42rem; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section__lead { color: var(--bone-dim); font-size: 1.08rem; margin-top: 1rem; max-width: 38rem; }

/* ---------- Legacy-Reveal (.reveal) — data-fx-Effekte liegen in fx.css ---------- */
html.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Filmkorn ---------- */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .42;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 170px 170px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; font-size: .92rem; line-height: 1;
  padding: .95em 1.6em; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn--gold { background: var(--grad-gold); color: #1a1304; box-shadow: 0 10px 32px -12px rgba(231,180,60,.55); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 42px -12px rgba(231,180,60,.75); }
.btn--ghost { border-color: var(--line-strong); color: var(--bone); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(231,180,60,.06); }

/* ---------- Chips ---------- */
.chip {
  display: inline-block; font-family: 'Oswald', sans-serif; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem;
  padding: .45em .9em; border-radius: 999px; border: 1px solid var(--line);
  color: var(--bone-dim);
}
.chip--gold { color: var(--gold); border-color: rgba(231,180,60,.45); background: rgba(231,180,60,.07); }

/* ══════════════════ NAVIGATION ══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,11,.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem,4vw,2.2rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav__logo { width: 38px; height: auto; }
.nav__name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .06em; color: var(--bone); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__links a {
  font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; font-size: .85rem; color: var(--bone-dim); text-decoration: none;
  position: relative; padding-block: .4em; transition: color .2s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .25s var(--ease);
}
.nav__links a:not(.nav__cta):hover, .nav__links a.active { color: var(--bone); }
.nav__links a.active::after, .nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--grad-gold); color: #1a1304 !important; padding: .6em 1.2em;
  border-radius: 999px; font-weight: 600;
}
.nav__cta:hover { transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--bone); transition: transform .25s var(--ease), opacity .25s var(--ease); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; gap: .25rem;
    background: rgba(10,10,11,.97); backdrop-filter: blur(16px);
    padding: 1.2rem clamp(1.1rem,4vw,2.2rem) 2rem; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .28s var(--ease), opacity .28s var(--ease);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1.1rem; padding: .7em 0; width: 100%; }
  .nav__cta { margin-top: .6rem; text-align: center; }
}

/* ══════════════════ HERO ══════════════════ */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__video { position: absolute; inset: 0; overflow: hidden; opacity: 0; transition: opacity 1.1s var(--ease); }
.hero__video.ready { opacity: .4; }
.hero__video iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; border: 0; pointer-events: none; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, var(--ink) 4%, rgba(11,11,12,.35) 42%, rgba(11,11,12,.55) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(231,180,60,.16), transparent 60%);
}
.hero__inner { position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 0 clamp(1.1rem,4vw,2.2rem) clamp(3.5rem, 9vh, 6rem); }
.hero__title { font-family: 'Bebas Neue', sans-serif; font-weight: 400; line-height: .8; letter-spacing: .01em; margin: .2rem 0 1.2rem; }
.hero__title .line { display: block; font-size: clamp(4.5rem, 19vw, 13rem); text-shadow: 0 10px 50px rgba(0,0,0,.5); }
.hero__tag { font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(1.05rem, 2.4vw, 1.5rem); color: var(--bone); }
.hero__tag strong { color: var(--gold); font-weight: 600; }
.hero__sub { color: var(--bone-dim); max-width: 36rem; margin: 1rem 0 1.8rem; font-size: 1.05rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid var(--line-strong); border-radius: 999px; display: grid; place-items: start center; padding-top: 7px; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 999px; background: var(--gold); animation: scrolldot 1.7s var(--ease) infinite; }
@keyframes scrolldot { 0%{ transform: translateY(0); opacity: 1; } 70%{ transform: translateY(14px); opacity: 0; } 100%{ opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll span { animation: none; } }

/* ══════════════════ TICKER / LAUFBAND ══════════════════ */
.ticker { overflow: hidden; background: var(--ink-3); border-block: 1px solid var(--line); }
.ticker__track { display: flex; align-items: center; gap: 1.6rem; width: max-content; padding-block: .85rem; white-space: nowrap; animation: ticker 34s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker span { font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; font-size: .9rem; color: var(--bone-dim); }
.ticker .dot { color: var(--gold); font-size: .6rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; flex-wrap: wrap; white-space: normal; } }

/* ══════════════════ ÜBER UNS ══════════════════ */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__text p { color: var(--bone-dim); margin-bottom: 1.1rem; font-size: 1.06rem; }
.about__text strong { color: var(--bone); font-weight: 600; }
.about__more { color: var(--bone) !important; }
.about__crewlink { margin-top: .5rem; }
.about__media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--hair); }
.about__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about__badge {
  position: absolute; bottom: 1rem; left: 1rem; background: rgba(11,11,12,.82); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 999px; padding: .5em 1em;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: .05em;
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden; margin-top: clamp(2.5rem, 6vw, 4rem); }
.stat { background: var(--ink-2); padding: clamp(1.4rem, 3vw, 2.2rem) 1.2rem; text-align: center; }
.stat__num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; color: var(--gold); }
.stat__label { display: block; margin-top: .5rem; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; color: var(--muted); line-height: 1.4; }

/* Cause */
.cause { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(2.5rem, 6vw, 4rem); padding: clamp(1.6rem, 4vw, 2.6rem); background: var(--ink-2); border: 1px solid var(--hair); border-left: 3px solid var(--gold); border-radius: var(--r); }
.cause__text p { color: var(--bone-dim); margin-top: .9rem; }
.cause__text strong { color: var(--bone); }
.cause__list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.cause__list li { position: relative; padding-left: 1.4rem; color: var(--bone-dim); font-size: .96rem; }
.cause__list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: .25em; }

/* ══════════════════ MUSIK ══════════════════ */
.music__featured { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.video { cursor: pointer; }
.video--wide { grid-column: span 2; }
.video__thumb { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--hair); }
.video__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .3s var(--ease); }
.video:hover .video__thumb img { transform: scale(1.05); filter: brightness(1.05); }
.video__thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,12,.55), transparent 55%); }
.video__play { position: absolute; inset: 0; margin: auto; width: 68px; height: 68px; border-radius: 999px; border: 0; cursor: pointer; background: var(--grad-gold); display: grid; place-items: center; z-index: 2; transition: transform .25s var(--ease), box-shadow .25s var(--ease); box-shadow: 0 10px 30px -8px rgba(231,180,60,.6); }
.video__play::before { content: ''; width: 0; height: 0; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #1a1304; margin-left: 4px; }
.video:hover .video__play { transform: scale(1.1); }
.video__tag { position: absolute; top: .8rem; left: .8rem; z-index: 2; font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; background: rgba(11,11,12,.78); color: var(--gold); padding: .4em .8em; border-radius: 999px; border: 1px solid rgba(231,180,60,.4); }
.video__meta { padding-top: .9rem; }
.video__meta h3 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 1.7rem; letter-spacing: .03em; }
.video__meta span { color: var(--muted); font-size: .85rem; }

.music__sub { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 1.9rem; letter-spacing: .03em; margin: clamp(2.5rem,6vw,3.5rem) 0 1.4rem; }
.releases { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 2vw, 1.2rem); }
.release { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1/1; cursor: pointer; border: 1px solid var(--hair); }
.release img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.release::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,12,.85), transparent 60%); }
.release:hover img { transform: scale(1.07); }
.release:hover { border-color: rgba(231,180,60,.45); }
.release__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 999px; border: 0; cursor: pointer; background: rgba(11,11,12,.7); backdrop-filter: blur(4px); z-index: 2; display: grid; place-items: center; transition: background .2s var(--ease), transform .2s var(--ease); }
.release__play::before { content: ''; width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent var(--gold); margin-left: 3px; }
.release:hover .release__play { background: var(--gold); transform: translate(-50%,-50%) scale(1.08); }
.release:hover .release__play::before { border-left-color: #1a1304; }
.release__title { position: absolute; left: .9rem; right: .9rem; bottom: .8rem; z-index: 2; font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; }
.release__title em { color: var(--gold); font-style: normal; font-weight: 400; }
.music__links { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: clamp(2rem,5vw,3rem); }

/* ── Fallback für Browser OHNE aspect-ratio (älteres iOS <15 / Android-WebView <88 /
   In-App-Browser von IG/TikTok/FB): Höhe per padding erzwingen, damit Thumbnails &
   Kacheln nicht auf Höhe 0 kollabieren und unsichtbar werden. Auf modernen Browsern inert. ── */
@supports not (aspect-ratio: 1 / 1) {
  .video__thumb { height: 0; padding-top: 56.25%; }   /* 16:9 */
  .release      { height: 0; padding-top: 100%; }     /* 1:1  */
  .video__thumb img, .release img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .about__media img, .feature__media img { height: auto; }
  .lightbox__frame { height: 56.25vw; max-height: 78vh; }
}

/* ══════════════════ NEWS / PRESSE ══════════════════ */
.feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.2rem); align-items: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.feature--rev .feature__media { order: 2; }
.feature__media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--hair); }
.feature__media::before { content: ''; position: absolute; inset: 0; z-index: 2; border-radius: var(--r); box-shadow: inset 0 0 0 1px rgba(231,180,60,.18); pointer-events: none; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.feature__body .chip { margin-bottom: 1rem; }
.feature__body .h3 { margin-bottom: .9rem; }
.feature__body p { color: var(--bone-dim); margin-bottom: .9rem; }
.feature__body strong { color: var(--bone); }

.press__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); margin-top: clamp(1rem, 3vw, 2rem); }
.card {
  position: relative; min-height: 280px; border-radius: var(--r); overflow: hidden;
  display: flex; align-items: flex-end; padding: 1.4rem; isolation: isolate;
  background-image: var(--img); background-size: cover; background-position: center;
  border: 1px solid var(--hair); transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(11,11,12,.92) 8%, rgba(11,11,12,.35) 60%, rgba(11,11,12,.15)); transition: background .3s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: rgba(231,180,60,.4); }
.card__tag { display: inline-block; font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; color: var(--gold); margin-bottom: .5rem; }
.card__body h3 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 1.5rem; letter-spacing: .03em; margin-bottom: .4rem; }
.card__body p { color: var(--bone-dim); font-size: .92rem; line-height: 1.55; }

.awards { margin-top: clamp(2.5rem, 6vw, 4rem); padding: clamp(1.4rem,3.5vw,2.2rem); background: var(--ink-2); border: 1px solid var(--hair); border-radius: var(--r); display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.awards__label { font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--gold); }
.awards__list { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.awards__list li { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; color: var(--bone-dim); padding: .45em .9em; border: 1px solid var(--line); border-radius: 999px; }

/* ══════════════════ ROSTER ══════════════════ */
.artist { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; background: var(--ink-2); border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden; }
.artist__photo { background-image: var(--img); background-size: cover; background-position: center; min-height: 340px; position: relative; }
.artist__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(11,11,12,.5)); }
.artist__info { padding: clamp(1.6rem, 4vw, 2.6rem); }
.artist__name { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(2.4rem, 5vw, 3.4rem); letter-spacing: .03em; margin-bottom: .9rem; }
.artist__desc { color: var(--bone-dim); margin-bottom: .9rem; }
.artist__desc strong { color: var(--gold); font-weight: 600; }
.artist__videos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.4rem 0; }
.video--sm .video__thumb { aspect-ratio: 16/9; }
.video--sm .video__play { width: 50px; height: 50px; }
.video--sm .video__play::before { border-width: 8px 0 8px 13px; }
.video--sm .video__meta h3 { font-size: 1.25rem; }
.artist__social { display: flex; flex-wrap: wrap; gap: .7rem; }
.artist__social a {
  font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem; text-decoration: none; color: var(--bone-dim);
  padding: .5em 1em; border: 1px solid var(--line); border-radius: 999px;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.artist__social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(231,180,60,.06); }

/* ══════════════════ TERMINE ══════════════════ */
.dates__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.date { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.4rem; padding: 1.2rem 1.5rem; background: var(--ink-2); border: 1px solid var(--hair); border-radius: var(--r); transition: border-color .25s var(--ease), transform .25s var(--ease); }
.date:hover { border-color: rgba(231,180,60,.4); transform: translateX(4px); }
.date__day { text-align: center; min-width: 64px; line-height: 1; }
.date__day strong { display: block; font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 2.6rem; color: var(--gold); }
.date__day span { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--muted); }
.date__title { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .03em; }
.date__place { display: block; color: var(--bone-dim); font-size: .9rem; }
.date__btn { font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; text-decoration: none; color: var(--gold); padding: .55em 1.1em; border: 1px solid var(--line); border-radius: 999px; transition: background .2s var(--ease), color .2s var(--ease); }
.date__btn:hover { background: var(--gold); color: #1a1304; }
.dates__empty { text-align: center; padding: 2.5rem; background: var(--ink-2); border: 1px dashed var(--line); border-radius: var(--r); }
.dates__empty p { color: var(--bone-dim); margin-bottom: 1rem; }

/* ══════════════════ KONTAKT ══════════════════ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__intro p { color: var(--bone-dim); margin-bottom: 1.5rem; }
.contact__direct { display: flex; flex-direction: column; gap: .8rem; }
.social-tile { display: flex; align-items: center; gap: .9rem; padding: .9rem 1.1rem; background: var(--ink-2); border: 1px solid var(--hair); border-radius: var(--r); text-decoration: none; color: var(--bone); transition: border-color .2s var(--ease), transform .2s var(--ease); }
.social-tile:hover { border-color: rgba(231,180,60,.45); transform: translateX(4px); }
.social-tile svg { color: var(--gold); flex-shrink: 0; }
.social-tile span { font-size: .85rem; color: var(--muted); line-height: 1.4; }
.social-tile strong { color: var(--bone); font-weight: 600; }

.form { background: var(--ink-2); border: 1px solid var(--hair); border-radius: var(--r); padding: clamp(1.4rem, 4vw, 2.2rem); display: flex; flex-direction: column; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { display: flex; flex-direction: column; gap: .4rem; }
.form__field span { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--muted); }
.form__field input, .form__field select, .form__field textarea {
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--bone);
  background: var(--ink); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: .8em .9em; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form__field textarea { resize: vertical; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(231,180,60,.15); }
.form__field input::placeholder, .form__field textarea::placeholder { color: #6d6a62; }
.form__submit { margin-top: .3rem; }
.form__note { font-size: .9rem; min-height: 1.2em; }
.form__note.ok { color: #8fd28a; }
.form__note.err { color: #e7a14a; }

/* ══════════════════ FOOTER ══════════════════ */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-top: clamp(2.5rem, 6vw, 4rem); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__brand img { width: 56px; margin-bottom: .9rem; }
.footer__brand p { color: var(--muted); font-size: .92rem; }
.footer__nav { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a { text-decoration: none; color: var(--bone-dim); font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; transition: color .2s var(--ease); }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: .7rem; align-items: flex-start; flex-wrap: wrap; }
.footer__social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; color: var(--bone-dim); transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-block: 1.4rem; border-top: 1px solid var(--hair); color: var(--muted); font-size: .85rem; }
.footer__legal { display: flex; gap: 1.2rem; }
.footer__legal a { color: var(--muted); text-decoration: none; transition: color .2s var(--ease); }
.footer__legal a:hover { color: var(--gold); }

/* ══════════════════ UNTERSEITEN: IMPRESSUM & DATENSCHUTZ ══════════════════ */
.legal { padding-block: clamp(3rem, 8vw, 5rem); max-width: 56rem; }
.legal h1 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: .015em; line-height: .92;
  font-size: clamp(2.6rem, 7vw, 4.4rem); margin-bottom: 1.6rem;
}
.legal h2 {
  font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: 1.02rem; color: var(--gold); margin: 2.2rem 0 .7rem;
}
.legal p, .legal li { color: var(--bone-dim); }
.legal ul, .legal ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .35rem; }
.legal p a { color: var(--gold-2); text-underline-offset: 3px; }
.legal__back {
  display: inline-block; margin-bottom: 2.2rem; text-decoration: none;
  font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; font-size: .85rem; color: var(--bone-dim);
  transition: color .2s var(--ease);
}
.legal__back:hover { color: var(--gold); }

/* ══════════════════ LIGHTBOX ══════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(5,5,6,.92); backdrop-filter: blur(8px); display: grid; place-items: center; padding: clamp(1rem, 5vw, 3rem); }
.lightbox[hidden] { display: none; }
.lightbox__frame { width: min(100%, 1000px); aspect-ratio: 16/9; }
.lightbox__frame iframe { width: 100%; height: 100%; border: 0; border-radius: var(--r); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(11,11,12,.6); color: var(--bone); font-size: 1.8rem; line-height: 1; cursor: pointer; transition: border-color .2s var(--ease), color .2s var(--ease); }
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 980px) {
  .about__grid, .cause, .contact__grid, .artist { grid-template-columns: 1fr; }
  .feature, .feature--rev { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .press__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .artist__photo { min-height: 240px; }
}
@media (max-width: 600px) {
  .music__featured { grid-template-columns: 1fr; }
  .video--wide { grid-column: span 1; }
  .releases { grid-template-columns: repeat(2, 1fr); }
  .press__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .artist__videos { grid-template-columns: 1fr; }
  .date { grid-template-columns: auto 1fr; }
  .date__btn { grid-column: 2; justify-self: start; }
}
