:root {
  --bg: #070707;
  --panel: #101010;
  --text: #f4f1ea;
  --muted: #a8a39b;
  --red: #d11f1f;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: linear-gradient(to bottom, rgba(0,0,0,.92), rgba(0,0,0,0));
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(5,5,5,.94);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}
.brand, .menu-button, .nav a, h1, h2, h3, .claim, .eyebrow, .button, .tracklist {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}
.brand { font-weight: 900; font-size: 1.5rem; letter-spacing: .06em; }
.nav { display: flex; gap: 2rem; font-weight: 700; }
.nav a { color: #ddd; letter-spacing: .06em; }
.nav a:hover { color: var(--red); }
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.76) 0%,
      rgba(0,0,0,.62) 28%,
      rgba(0,0,0,.22) 58%,
      rgba(0,0,0,.38) 100%),
    linear-gradient(to top,
      rgba(7,7,7,.96) 0%,
      rgba(7,7,7,.28) 27%,
      rgba(0,0,0,.08) 60%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 24%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 620px;

    padding-top: 82px;

    margin-left: 10vw;

    transform: none;
}

.hero-title {
  width: min(48vw, 730px);
  margin: 0;
}

.hero-title-line {
  display: block;
}

.hero-title-line-one,
.hero-title-line-two,
.hero-kicker,
.hero-claim,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEnter .75s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-kicker { animation-delay: .25s; }
.hero-title-line-one { animation-delay: .42s; }
.hero-title-line-two { animation-delay: .56s; }
.hero-claim { animation-delay: .72s; }
.hero-actions { animation-delay: .88s; }
.eyebrow {
  color: var(--red);
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(5rem, 10.5vw, 10.4rem);
  line-height: .76;
  margin: 0;
  letter-spacing: -.045em;
  text-shadow: 0 12px 34px rgba(0,0,0,.78);
}
.claim {
  font-size: clamp(1.3rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: .16em;
  margin: 2rem 0;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  font-weight: 800;
  letter-spacing: .08em;
  border: 1px solid white;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.button:hover {
  transform: translateY(-2px) scale(1.025);
}
.button.primary {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(209,31,31,.18);
}
.button.primary:hover { background: #f02b2b; border-color: #f02b2b; }
.button.ghost:hover { background: white; color: black; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  font-size: 2rem;
  animation: bounce 1.8s infinite;
}

.section {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 110px 0;
}
.section-head { max-width: 760px; margin-bottom: 48px; }
h2 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: .85;
  margin: 0 0 1.2rem;
  letter-spacing: -.03em;
}
.section-head p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.release-card {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #141414, #0b0b0b);
}
.artwork-wrap { overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.artwork-wrap img { aspect-ratio: 1; object-fit: cover; transition: transform .7s ease; }
.release-card:hover img { transform: scale(1.025); }
.release-label { color: var(--red); font-weight: 800; letter-spacing: .12em; }
.release-copy h3 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: .88;
  margin: .5rem 0 1.5rem;
}
.release-copy > p { color: var(--muted); line-height: 1.75; }
.platforms, .social-links { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.platforms a, .social-links a {
  border-bottom: 2px solid var(--red);
  padding: .35rem 0;
  font-weight: 700;
}
.platforms a:hover, .social-links a:hover { color: var(--red); }

.music {
  position: relative;
}
.tracklist {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.tracklist li {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  transition: padding-left .2s ease, color .2s ease;
}
.tracklist li:hover { padding-left: 12px; color: var(--red); }
.tracklist span { color: #686868; font-size: .8em; }

.about { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
}
.about-copy {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  padding-top: 2rem;
}
.about-copy strong { color: white; }

.contact { text-align: center; }
.contact-box {
  padding: clamp(2rem, 8vw, 7rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(8,8,8,.84), rgba(8,8,8,.9)),
    url("assets/brennpunkt-backcover.png") center/cover;
}
.contact-box .eyebrow { margin-bottom: 1.2rem; }
.contact-box h2 { margin-bottom: 1rem; }
.contact-box p { color: var(--muted); }
.contact-box .social-links { justify-content: center; }
.mail {
  display: inline-block;
  margin-top: 2rem;
  color: white;
  font-weight: 700;
}

footer {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 32px 0 50px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #777;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 800px) {
  .site-header { height: 66px; background: rgba(0,0,0,.92); }
  .menu-button { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    padding: 1.5rem 4vw 2rem;
    background: rgba(0,0,0,.97);
    flex-direction: column;
  }
  .nav.open { display: flex; }

  .hero {
    align-items: flex-end;
    min-height: 100svh;
  }

  .hero-video {
    object-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(to top,
        rgba(0,0,0,.94) 0%,
        rgba(0,0,0,.58) 48%,
        rgba(0,0,0,.28) 100%);
  }

  .hero-content {
    padding-top: 86px;
    padding-bottom: 16vh;
    transform: none;
  }

  .hero-title {
    width: 100%;
  }

  h1 {
    font-size: clamp(4.4rem, 22vw, 7.2rem);
    line-height: .78;
  }

  .claim {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
    margin: 1.5rem 0;
  }

  .hero-actions {
    gap: .75rem;
  }

  .button {
    min-height: 48px;
    padding: 0 1.1rem;
  }

  .release-card, .about-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .tracklist li { grid-template-columns: 48px 1fr; }
  footer { flex-direction: column; }
}
