/*
  Damaged Justice – Main Stylesheet
  ------------------------------------------------------------
  Änderbare Design-Parameter:
  - --accent: Hauptfarbe / Glow-Farbe
  - --bg: Basis-Hintergrundfarbe
  - --text / --muted: Textfarben
  - --glass: transparente Kartenflächen
  - --radius: Rundung der Karten und großen Elemente
  - --shadow: Tiefenwirkung der Karten
*/

/* ============================================================
   01. Design Tokens / Grundvariablen
   ============================================================ */
:root {
  --accent: #ff3c3c;
  --accent-soft: rgba(255, 60, 60, .18);
  --bg: #050505;
  --text: #ffffff;
  --muted: #cfcfcf;
  --glass: rgba(255, 255, 255, .075);
  --line: rgba(255, 255, 255, .12);
  --radius: 22px;
  --shadow: 0 18px 44px rgba(0, 0, 0, .34);
}

/* ============================================================
   02. Reset / Basiseinstellungen
   ============================================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 60, 60, .18), transparent 34%),
    linear-gradient(rgba(0, 0, 0, .40), rgba(0, 0, 0, .94)),
    url('images/Hintergrund.webp') center / cover no-repeat fixed;
  background-color: #030303;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: -120px -120px auto auto;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 60, 60, .10);
  filter: blur(64px);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .035), transparent 26%, transparent 72%, rgba(255, 60, 60, .035));
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(255, 60, 60, .75);
  outline-offset: 3px;
}

/* ============================================================
   03. Accessibility / Skip Link
   ============================================================ */
.skip-link {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 999999;
  padding: 12px 16px;
  border-radius: 12px;
  background: #000;
}

.skip-link:focus {
  left: 12px;
}

/* ============================================================
   04. Loading Screen
   ============================================================ */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  background: #030303;
  transition: opacity .7s ease, visibility .7s ease;
}

.site-loader img {
  width: min(360px, 74vw);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(255, 60, 60, .35));
  animation: loaderPulse 1.3s ease-in-out infinite alternate;
}

.site-loader span {
  position: absolute;
  bottom: 18%;
  width: 150px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: loaderLine 1.2s ease-in-out infinite;
}

body.loaded .site-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  from { opacity: .55; transform: scale(.98); }
  to { opacity: 1; transform: scale(1.02); }
}

@keyframes loaderLine {
  from { opacity: .35; transform: scaleX(.25); }
  to { opacity: 1; transform: scaleX(1); }
}

/* ============================================================
   05. Header / Hauptnavigation
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(16px, 4vw, 34px);
  background: rgba(0, 0, 0, .72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  display: block;
  width: auto;
  height: 58px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a,
.mobile-nav a,
.bottom-nav a {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding: 12px 10px;
  color: #f5f5f5;
  font-size: .92rem;
}

nav a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

nav a:hover::after,
nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

nav a[aria-current="page"] {
  color: #fff;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background: rgba(0, 0, 0, .96);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* ============================================================
   06. Layout / Sections
   ============================================================ */
.container {
  width: min(1300px, 100%);
  margin: auto;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 4vw, 30px) 122px;
}

.page-intro {
  margin-bottom: 28px;
}

.hero {
  display: grid;
  place-items: center;
  min-height: 58vh;
  text-align: center;
}

.news-hero {
  min-height: 50vh;
}

.hero img,
.gallery-intro-logo {
  max-width: min(420px, 82vw);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(255, 60, 60, .25));
}

.hero-logo {
  display: block;
  margin: 0 auto;
  opacity: 0;
  animation: logoFadeIn 1.4s ease-out .15s forwards;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.96);
    filter: drop-shadow(0 0 0 rgba(255, 60, 60, 0));
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 22px rgba(255, 60, 60, .25));
  }
}

.hero h1 {
  margin: 20px 0 12px;
  font-size: clamp(2.7rem, 8vw, 6rem);
  line-height: .92;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero p,
.section-subtitle {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  margin: 0 auto 8px;
}

.section-title {
  margin: 0 0 28px;
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 60, 60, .18);
}

/* ============================================================
   07. Buttons / Labels / Cards
   ============================================================ */
.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 60, 60, .5);
  border-radius: 999px;
  background: rgba(255, 60, 60, .12);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.button,
.event a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 14px 8px 0;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}

.button.primary,
.event a {
  background: rgba(255, 60, 60, .28);
  border-color: rgba(255, 60, 60, .58);
}

.button:hover,
.event a:hover {
  background: rgba(255, 60, 60, .34);
  transform: translateY(-2px);
}

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .44), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(9px);
}

.card:hover {
  border-color: rgba(255, 60, 60, .28);
}

/* ============================================================
   08. News / Feature Cards
   ============================================================ */
.news-card {
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 30px);
  border-left: 4px solid var(--accent);
  line-height: 1.65;
}

.news-grid,
.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-grid {
  gap: 18px;
  margin: 30px 0;
}

.feature-card {
  padding: 22px;
}

.feature-card h3 {
  margin-top: 0;
}

/* ============================================================
   09. Release / Spotify
   ============================================================ */
.release-highlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 300px) 1fr;
  gap: 26px;
  align-items: center;
  margin: 34px 0;
  padding: clamp(20px, 3vw, 30px);
  overflow: hidden;
}

.release-highlight::before,
.spotify-section::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 60, 60, .12);
  filter: blur(50px);
  pointer-events: none;
}

.release-cover img {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .4);
}

.release-copy h2 {
  margin: .15em 0;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spotify-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 380px);
  gap: 26px;
  align-items: center;
  margin: 34px 0 0;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
}

.spotify-placeholder {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  background: rgba(0, 0, 0, .36);
  text-align: center;
}

.spotify-placeholder svg {
  width: 70px;
  height: 70px;
  fill: #fff;
  filter: drop-shadow(0 0 18px rgba(255, 60, 60, .25));
}

.spotify-placeholder span {
  color: #fff;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================================
   10. About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 18px;
}

.about-member,
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: #111;
}

.about-member img,
.gallery-item img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .28s ease, filter .28s ease;
}

.about-member img {
  height: 280px;
}

.about-member-info,
.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .94));
  opacity: 0;
  transition: opacity .25s ease;
}

.about-member:hover img,
.gallery-item:hover img {
  transform: scale(1.035);
  filter: brightness(.72);
}

.about-member:hover .about-member-info,
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.about-member-info h3,
.gallery-overlay h3 {
  margin: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-member-info p {
  margin: .35rem 0 0;
  color: var(--muted);
}

/* ============================================================
   11. Gallery / Lightbox
   ============================================================ */
.gallery-featured {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.gallery-featured img {
  display: block;
  width: 100%;
  min-height: 260px;
  height: min(420px, 52vw);
  object-fit: cover;
  filter: brightness(.64);
}

.gallery-featured-text {
  position: absolute;
  right: clamp(20px, 4vw, 34px);
  bottom: clamp(20px, 4vw, 34px);
  left: clamp(20px, 4vw, 34px);
  max-width: 700px;
}

.gallery-featured-text h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-featured-text p {
  color: #ddd;
  line-height: 1.6;
}

.gallery-albums,
.gallery {
  display: grid;
  gap: 18px;
}

.gallery-albums {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 28px;
}

.gallery-album {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.gallery-album:hover {
  background: rgba(255, 60, 60, .14);
  transform: translateY(-3px);
}

.gallery-album h3 {
  margin: 0 0 4px;
}

.gallery-album small {
  color: var(--muted);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.gallery-filter {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.gallery-filter.active,
.gallery-filter:hover {
  background: rgba(255, 60, 60, .26);
  border-color: rgba(255, 60, 60, .72);
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
  cursor: pointer;
}

.gallery-item img {
  height: 260px;
}

.gallery-item.hidden {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .96);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 82vh;
  border-radius: 18px;
  object-fit: contain;
}

.close,
.prev,
.next {
  position: absolute;
  z-index: 10001;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.close { top: 18px; right: 22px; }
.prev { left: 22px; }
.next { right: 22px; }

.lightbox-meta {
  position: absolute;
  bottom: 22px;
  left: 50%;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  text-align: center;
  transform: translateX(-50%);
}

/* ============================================================
   12. Music / Audio Player
   ============================================================ */
.music-layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 24px;
}

.player-box {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.cover {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

audio {
  width: 100%;
}

.equalizer {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 28px;
  margin-top: 15px;
}

.equalizer span {
  width: 6px;
  border-radius: 999px;
  background: var(--accent);
  animation: eq .8s infinite alternate;
}

.equalizer span:nth-child(2) { animation-delay: .1s; }
.equalizer span:nth-child(3) { animation-delay: .2s; }
.equalizer span:nth-child(4) { animation-delay: .3s; }

@keyframes eq {
  from { height: 6px; }
  to { height: 28px; }
}

.visualizer-wrap {
  height: 72px;
  margin-top: 18px;
}

#audioVisualizer {
  display: block;
  width: 100%;
  height: 100%;
}

.track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 18px 22px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.track:hover {
  background: rgba(255, 60, 60, .16);
  transform: translateX(4px);
}

.floating-now-playing {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 290px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, .82);
  box-shadow: var(--shadow);
}

.floating-now-playing.visible {
  display: flex;
}

.floating-now-playing img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.floating-now-playing small {
  display: block;
  color: var(--muted);
}

/* ============================================================
   13. Video
   ============================================================ */
.youtube-section {
  margin-bottom: 32px;
}

.youtube-player,
.video-card {
  overflow: hidden;
}

.youtube-player {
  margin-bottom: 22px;
  background: #000;
}

.youtube-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.video-link-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.video-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 43, 43, .5);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .45);
}

.video-thumb-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: transform .35s ease, opacity .35s ease;
}

.video-thumb-link:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(180, 0, 0, .82);
  box-shadow: 0 0 32px rgba(255, 43, 43, .32);
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.video-info {
  padding: 20px;
}

.video-info-featured {
  padding: 0 4px;
}

.video-info-featured p {
  max-width: 700px;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

/* ============================================================
   14. Live / Tourdaten
   ============================================================ */
.event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px 24px;
}

.event h3 {
  margin: 0 0 6px;
}

.event p {
  margin: 0;
  color: var(--muted);
}

.live-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .38);
  box-shadow: var(--shadow);
}

.live-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr .9fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.live-row:last-child {
  border-bottom: 0;
}

.live-head {
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.live-date {
  color: #fff;
  font-weight: 900;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(255, 60, 60, .35);
  border-radius: 999px;
  background: rgba(255, 60, 60, .16);
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge.sold {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: #bdbdbd;
}

.live-row .button {
  min-width: 104px;
  margin: 0;
}

/* ============================================================
   15. Footer / Social Icons
   ============================================================ */
footer {
  padding: 56px 20px 104px;
  color: var(--muted);
  text-align: center;
}

footer a {
  display: inline-flex;
  margin: 5px 10px;
  color: #fff;
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .075);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-links a:hover {
  background: rgba(255, 60, 60, .18);
  border-color: rgba(255, 60, 60, .5);
  transform: translateY(-3px);
}

.social-links svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

/* ============================================================
   16. Bottom Navigation / Mobile App Feeling
   ============================================================ */
.bottom-nav {
  display: none;
}

.bottom-nav a {
  transition: background .2s ease, transform .2s ease;
}

.bottom-nav a:active {
  transform: scale(.96);
}

/* ============================================================
   17. Scroll Reveal Animation
   ============================================================ */
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

/* ============================================================
   18. Responsive Breakpoints
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}

@media (max-width: 900px) {
  .music-layout,
  .release-highlight,
  .spotify-section {
    grid-template-columns: 1fr;
  }

  .player-box {
    position: relative;
    top: auto;
  }

  .floating-now-playing {
    right: 12px;
    bottom: 72px;
    left: 12px;
    max-width: none;
  }

  .release-cover {
    max-width: 260px;
  }

  .release-actions .button {
    width: auto;
    max-width: none;
  }

  .live-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .live-head {
    display: none;
  }

  .live-row .button {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  body::before {
    display: none;
  }

  header {
    padding: 10px 16px;
  }

  header nav {
    display: none;
  }

  .logo {
    height: 46px;
  }

  .burger {
    display: inline-flex;
  }

  .container {
    padding-bottom: 112px;
    scroll-snap-type: y proximity;
  }

  .hero {
    min-height: 55vh;
  }

  .hero h1 {
    letter-spacing: .04em;
  }

  .hero,
  .page-intro,
  .release-highlight,
  .spotify-section,
  .live-board,
  .news-card,
  .feature-card {
    scroll-snap-align: start;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4px;
    padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, .94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(9px);
  }

  .bottom-nav a {
    padding: 8px 5px;
    border-radius: 10px;
    color: #eee;
    font-size: .74rem;
  }

  .bottom-nav a[aria-current="page"] {
    background: rgba(255, 60, 60, .20);
    color: #fff;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .about-member img {
    height: 230px;
  }

  .about-member-info,
  .gallery-overlay {
    opacity: 1;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-filters {
    justify-content: center;
  }

  .button {
    width: 100%;
    max-width: 280px;
  }

  .event {
    align-items: flex-start;
    flex-direction: column;
  }

  .event a {
    width: 100%;
    margin: 4px 0 0;
  }

  .close {
    top: 12px;
    right: 12px;
  }

  .prev,
  .next {
    top: auto;
    bottom: 82px;
  }

  .prev { left: 22px; }
  .next { right: 22px; }

  .social-links a {
    width: 44px;
    height: 44px;
  }

  .site-loader img {
    width: min(300px, 78vw);
  }
}

@media (max-width: 480px) {
  .about-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .gallery-featured-text p {
    display: none;
  }
}

/* ============================================================
   19. Reduced Motion / Barrierefreiheit
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

  .site-loader {
    display: none;
  }

  .hero-logo,
  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

/* ============================================================
   20. Premium Music & Gallery Upgrade
   ============================================================ */
.music-hero,
.release-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(22px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 60, 60, .20), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
}

.music-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 35%;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 60, 60, .18), transparent 62%);
  filter: blur(42px);
  pointer-events: none;
}

.release-art-wrap {
  position: relative;
  isolation: isolate;
}

.release-cover {
  position: relative;
  z-index: 2;
  display: block;
  aspect-ratio: 1;
  width: min(100%, 390px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .52);
}

.vinyl-disc {
  position: absolute;
  top: 9%;
  right: -10%;
  z-index: 1;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #151515 0 9%, #050505 10% 20%, #1a1a1a 21% 22%, #050505 23% 100%),
    repeating-radial-gradient(circle, rgba(255,255,255,.08) 0 1px, transparent 1px 7px);
  opacity: .76;
  animation: vinylSpin 18s linear infinite;
}

@keyframes vinylSpin {
  to { transform: rotate(360deg); }
}

.release-content h1 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5.8rem);
  line-height: .92;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.now-playing-panel {
  display: grid;
  gap: 4px;
  margin: 24px 0 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(0, 0, 0, .34);
}

.now-playing-label,
.section-note,
.track-info small,
.gallery-overlay span {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.native-audio-player {
  display: block;
  margin: 12px 0 0;
}

.streaming-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading-row h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
}

.tracklist-section {
  margin-bottom: 34px;
  padding: clamp(20px, 4vw, 34px);
}

.tracklist {
  display: grid;
  gap: 12px;
}

.track {
  width: 100%;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  font: inherit;
  text-align: left;
}

.track:hover,
.track.is-active {
  border-color: rgba(255, 60, 60, .55);
  background: rgba(255, 60, 60, .14);
  transform: translateX(4px);
}

.track-number {
  color: var(--muted);
  font-weight: 900;
}

.track-info {
  min-width: 0;
}

.track-info strong,
.track-info small {
  display: block;
}

.track-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-eq {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  height: 18px;
  opacity: 0;
}

.track.is-active .track-eq { opacity: 1; }

.track-eq i {
  width: 4px;
  border-radius: 99px;
  background: var(--accent);
  animation: eq .65s infinite alternate;
}

.track-eq i:nth-child(1) { height: 8px; }
.track-eq i:nth-child(2) { height: 15px; animation-delay: .12s; }
.track-eq i:nth-child(3) { height: 11px; animation-delay: .24s; }

.floating-now-playing {
  padding-right: 10px;
  backdrop-filter: blur(14px);
}

#floatingToggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: 4px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255, 60, 60, .18);
  color: #fff;
  cursor: pointer;
}

.gallery-page-intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.gallery-story {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
}

.gallery-story h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 3rem);
  text-transform: uppercase;
}

.gallery-story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-album {
  text-align: left;
  color: #fff;
  font: inherit;
}

.masonry-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; min-height: 480px; }

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
  transition: transform .45s ease, filter .45s ease;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78));
  opacity: 1;
  transform: none;
}

.gallery-overlay h3 {
  margin: 3px 0 0;
  font-size: 1.35rem;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.08) brightness(.86);
}

.lightbox {
  backdrop-filter: blur(10px);
}

.lightbox img {
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
}

@media (max-width: 900px) {
  .music-hero,
  .release-showcase,
  .gallery-story {
    grid-template-columns: 1fr;
  }

  .vinyl-disc {
    right: 2%;
    opacity: .42;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .music-hero,
  .release-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .track {
    grid-template-columns: 34px minmax(0, 1fr) auto;
  }

  .track-eq {
    display: none;
  }

  .track-duration {
    font-size: .9rem;
  }

  .streaming-buttons .button {
    width: 100%;
    justify-content: center;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    min-height: 280px;
  }

  .floating-now-playing {
    right: 10px;
    bottom: 74px;
    left: 10px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vinyl-disc,
  .track-eq i {
    animation: none;
  }
}
