:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --surface: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4efe9;
  --muted: rgba(244, 239, 233, 0.72);
  --faint: rgba(244, 239, 233, 0.46);
  --accent: #d7a16d;
  --accent-soft: rgba(215, 161, 109, 0.18);
  --content: 1180px;
  --content-text: 720px;
  --gutter: clamp(1rem, 2vw, 2rem);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

button, a, img {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Layout helpers */
.container,
.footer-inner {
  width: min(calc(100% - 2 * var(--gutter)), var(--content));
  margin: 0 auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

/* -----------------------------
   HEADER
----------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.94) 0%, rgba(4, 4, 4, 0.6) 60%, rgba(4, 4, 4, 0) 100%);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Links - Mitte - Rechts */
  align-items: center;
  width: min(calc(100% - 2 * var(--gutter)), var(--content));
  margin: 0 auto;
  min-height: 6rem;
  padding: 0.5rem 0;
}

.site-nav {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
}

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

/* Logo Mitte groß */
.brand {
  display: flex;
  justify-content: center;
}

.brand-logo {
  height: clamp(7rem, 9vw, 11rem);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.72));
}

/* Social Icons Rechts */
.social-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.social-nav a {
  color: var(--muted);
  display: flex;
  transition: color 180ms ease, transform 180ms ease;
}

.social-nav a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.social-nav svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}


/* -----------------------------
   HERO BEREICH
----------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--bg);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 1;
}

/* Text Container Oben */
.hero-inner {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 2 * var(--gutter)), var(--content));
  margin: 0 auto;
  padding-top: clamp(10rem, 20vh, 14rem);
  text-align: center;
}

.hero-copy {
  max-width: 60rem; /* Platz für breite Headline */
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1.05;
  margin: 0 0 1.5rem 0;
  text-wrap: balance; /* Bricht den Text wunderschön um */
}

.hero-lead {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 0.95rem + 0.65vw, 1.45rem);
}

/* Foto Container Unten */
.hero-media {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  align-items: flex-end; /* Pinnt das Bild an den unteren Rand */
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
  padding: 0 1rem;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 55vh; /* Verhindert, dass das Bild über den Text wächst */
  object-fit: contain; /* FOTO ZU 100% SICHTBAR, nichts abgeschnitten */
  object-position: bottom center;
  filter: saturate(0.94) contrast(1.05) brightness(1.15);
}

/* Leichter Verlauf von unten, damit der Footer weich ansetzt */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0) 25%);
  z-index: 3;
  pointer-events: none;
}


/* -----------------------------
   SECTIONS & TYPOGRAFIE
----------------------------- */
h2 {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.94;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0 0;
}

.section-head {
  display: grid;
  gap: 0.5rem;
  max-width: 50rem;
}

.section-kicker,
.empty-label {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-intro,
.text-flow p,
.live-item span,
.live-item a,
.live-empty,
.site-footer {
  color: var(--muted);
}

/* Band Info */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.text-flow {
  display: grid;
  gap: 1.35rem;
  max-width: var(--content-text);
}

.text-flow p { margin: 0; }
.text-flow p:first-child {
  color: var(--text);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
}

.quote-column {
  position: sticky;
  top: 8rem;
  display: grid;
  gap: 0.5rem;
}

.quote-column p {
  margin: 0;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 3rem);
  line-height: 0.92;
}

/* Live section */
.live {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: radial-gradient(circle at 0 0, rgba(215, 161, 109, 0.15), transparent 50%), var(--bg-soft);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.live-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.live-item {
  display: grid;
  grid-template-columns: minmax(9rem, 0.8fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.live-item:last-child { border-bottom: none; }

.live-item time {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.live-item strong {
  display: block;
  font-weight: 600;
}

.live-item span { font-size: 0.92rem; }

.live-item a {
  justify-self: end;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-empty { padding: 1.25rem 0 0; }
.empty-label { margin-bottom: 0.25rem; }
.empty-title { margin: 0; font-family: "Oswald", system-ui, sans-serif; text-transform: uppercase; font-weight: 600; }

/* Kontakt */
.contact-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  font-size: 0.86rem;
  color: var(--faint);
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 320ms ease, transform 320ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------
   RESPONSIV (Mobile Anpassungen)
----------------------------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .quote-column { position: static; }
  .live-item {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }
  .live-item a { justify-self: flex-start; }
}

@media (max-width: 768px) {
  /* Header Mobile: Logo Oben, Menüpunkte und Socials als Flexbox gestapelt */
  .header-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 0 1rem;
  }
  
  .brand { order: 1; }
  .site-nav { order: 2; justify-content: center; width: 100%; }
  .social-nav { order: 3; justify-content: center; width: 100%; }

  .hero-inner { padding-top: 14rem; } /* Mehr Platz oben wegen dem höheren Menü */
}
