:root {
  --bg: #0d0b12;
  --bg-alt: #14111c;
  --fg: #f2eef7;
  --muted: #a79fb8;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.15);
  --line: rgba(242, 238, 247, 0.12);
  --wrap: 1120px;
  --radius: 14px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Didone-Anmutung wie auf dem Single-Cover, ohne Webfont */
  --font-display: "Bodoni MT", "Bodoni 72", Didot, "Didot LT STD", "Hoefler Text", "Big Caslon", "Times New Roman", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #000;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  transition: padding 0.3s ease;
}
/* Blur liegt auf dem Pseudo-Element, damit der Header kein Containing Block
   für die fixierte Mobil-Navigation wird. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(13, 11, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-header.is-scrolled::before { opacity: 1; }
.site-header.is-scrolled { padding-block: 0.7rem; }

.brand {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-decoration: none;
}

.nav { display: flex; gap: 1.75rem; }
.nav a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;

  z-index: 60;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(13, 11, 18, 0.35) 0%, rgba(13, 11, 18, 0.85) 75%),
    linear-gradient(to bottom, rgba(13, 11, 18, 0.6), rgba(13, 11, 18, 0.2) 40%, var(--bg));
}
.hero__content {
  position: relative;
  padding: 7rem 1.5rem 5rem;
}
.hero__name {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__kicker {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
}
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: 0.01em;
}
.hero__sub {
  max-width: 34ch;
  margin: 1.25rem auto 2.5rem;
  color: var(--muted);
}
.hero__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #14110a; }
.btn--ghost { border-color: var(--line); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--alt { background: var(--bg-alt); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}
.section__lead { color: var(--muted); max-width: 60ch; margin: 0 0 2.5rem; }

/* ---------- Neue Single ---------- */
.section--release {
  background:
    radial-gradient(60% 80% at 20% 0%, rgba(201, 162, 39, 0.12), transparent 70%),
    var(--bg);
}

.release {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.release__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.release__label { margin: 0 0 1.25rem; }
.release__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  line-height: 1.02;
  margin: 0 0 0.75rem;
}
.release__meta {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.release__text { color: var(--muted); max-width: 52ch; margin: 0; }
.release__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.embeds {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.embed iframe { width: 100%; border: 0; border-radius: var(--radius); }
.embed--placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--accent-soft);
}

.platforms {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 2rem 0 0;
}
.platforms a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.platforms a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Über ---------- */
.about {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
}
.about__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.facts dd { margin: 0.3rem 0 0; }

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.gallery button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3 / 4;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
  filter: saturate(0.85);
}
.gallery button:hover img,
.gallery button:focus-visible img { transform: scale(1.06); filter: saturate(1.05); }

/* ---------- Booking ---------- */
.booking__mail {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin: 0 0 1rem;
}
.booking__mail a { text-decoration: none; border-bottom: 1px solid var(--accent); }
.booking__note { color: var(--muted); }
.socials { list-style: none; display: flex; gap: 1.5rem; padding: 0; margin: 2rem 0 0; }
.socials a { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.socials a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }
.footer__inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__nav { display: flex; gap: 1.5rem; align-items: center; }
.footer__nav a { text-decoration: none; }
.footer__nav a:hover { color: var(--accent); }

/* ---------- Lightbox ---------- */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  place-items: center;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(5, 4, 8, 0.94); }
.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox__close,
.lightbox__nav {
  position: fixed;
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox__close { top: 1.25rem; right: 1.25rem; width: 44px; height: 44px; font-size: 1.6rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* ---------- Platzhalter-Markierung (nur während der Entwicklung) ---------- */
[data-todo] { outline: 1px dashed var(--accent); outline-offset: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .release { grid-template-columns: 1fr; }
  .release__cover img { max-width: 420px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-alt);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; }
}

@media (max-width: 560px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
