/* ==========================================================================
   RAVE AND SUN Festival 2027 — Stylesheet (mobile-first)
   ========================================================================== */

/* ---------- Fonts (selbst gehostet) ---------- */
@font-face {
  font-family: "Anton";
  src: url("../assets/fonts/anton-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --c-bg: #0b0a10;
  --c-bg-alt: #110f18;
  --c-surface: rgba(255, 255, 255, 0.04);
  --c-border: rgba(255, 255, 255, 0.1);
  --c-text: #f5f3f7;
  --c-text-muted: rgba(245, 243, 247, 0.65);
  --c-orange: #f4731c;
  --c-orange-light: #ff8a3c;
  /* Ehemals Orange-Rot-Verlauf — auf Wunsch nur noch der Orange-Startwert */
  --grad-brand: var(--c-orange-light);
  --glow-brand: 0 10px 40px -8px rgba(244, 115, 28, 0.55);

  --font-display: "Anton", "Arial Black", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --nav-height: 4rem;
  --radius: 14px;
  --section-pad: clamp(4rem, 10vw, 7.5rem);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

p {
  margin: 0 0 1rem;
}

/* Alle Überschriften komplett in Orange */
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  line-height: 1.1;
  color: var(--c-orange-light);
}

a {
  color: var(--c-orange-light);
}

::selection {
  background: var(--c-orange);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--c-orange-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--c-bg);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: 8px;
}

.skip-link:focus {
  top: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--glow-brand);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 50px -6px rgba(244, 115, 28, 0.7);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn--ghost:hover {
  border-color: var(--c-orange);
  color: var(--c-orange-light);
  transform: translateY(-2px);
}

.btn--big {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}

.btn--small {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Hintergrund/Blur liegen auf dem Pseudo-Element: backdrop-filter direkt auf
   .site-nav würde sie zum Containing Block für das fixed positionierte
   Mobile-Menü machen (Overlay bliebe auf Navbar-Höhe hängen). */
.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background-color 0.3s ease;
}

.site-nav.is-scrolled {
  border-bottom-color: var(--c-border);
}

.site-nav.is-scrolled::before {
  background: rgba(11, 10, 16, 0.8);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}

.site-nav__brand img {
  width: auto;
  height: 1.75rem;
}

.site-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 110;
}

.site-nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile: Menü als Fullscreen-Overlay */
.site-nav__menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 10, 16, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-nav__menu.is-open {
  opacity: 1;
  visibility: visible;
}

.site-nav__menu ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__menu a:not(.btn):hover {
  color: var(--c-orange-light);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Gradient-Poster als Fallback, bis das Video geladen ist */
  background:
    radial-gradient(90rem 40rem at 50% 120%, rgba(244, 115, 28, 0.35), transparent 60%),
    radial-gradient(60rem 30rem at 80% -20%, rgba(255, 138, 60, 0.25), transparent 60%),
    var(--c-bg);
}

/* Media-Layer: nach oben/unten verlängert, damit beim Parallax-Versatz
   keine Ränder sichtbar werden */
.hero__media {
  position: absolute;
  inset: -20% 0;
  will-change: transform;
}

.hero__video,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

/* Mobil: Video; das Bild kommt erst ab Desktop (siehe Media Query) */
.hero__media picture {
  display: none;
}

.hero__content {
  will-change: transform, opacity;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 16, 0.55) 0%, rgba(11, 10, 16, 0.35) 45%, var(--c-bg) 100%),
    radial-gradient(70rem 35rem at 50% 110%, rgba(244, 115, 28, 0.22), transparent 65%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__kicker {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-orange-light);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.75rem;
}

.hero__logo {
  width: min(88%, 34rem);
  height: auto;
  margin: clamp(1rem, 4vw, 2.5rem) 0;
  transform: rotate(-5deg);
  filter: drop-shadow(0 10px 45px rgba(244, 115, 28, 0.35));
}

.hero__meta {
  margin: clamp(0.75rem, 2.5vw, 1.25rem) 0 0;
  font-size: clamp(1.25rem, 4.2vw, 1.75rem);
  color: var(--c-text);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero__meta strong {
  font-weight: 800;
}

.hero__meta-sep {
  display: none;
  color: var(--c-orange);
}

@media (min-width: 480px) {
  .hero__meta {
    flex-direction: row;
    gap: 0.6rem;
  }

  .hero__meta-sep {
    display: inline;
  }
}

/* Countdown */
.countdown {
  display: flex;
  gap: 0.6rem;
  margin: 2rem 0 2.25rem;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.25rem;
  padding: 0.7rem 0.5rem 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.countdown__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.countdown.is-live .countdown__item {
  border-color: var(--c-orange);
}

/* Scroll-Indikator */
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__scroll-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--c-text-muted);
  border-bottom: 2px solid var(--c-text-muted);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
  50%      { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* ---------- Sections (allgemein) ---------- */
.section {
  padding: var(--section-pad) 1.5rem;
}

.section__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 46rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Lineup ---------- */
.lineup {
  background:
    radial-gradient(50rem 25rem at 15% 20%, rgba(255, 138, 60, 0.08), transparent 60%),
    radial-gradient(50rem 25rem at 85% 80%, rgba(244, 115, 28, 0.08), transparent 60%),
    var(--c-bg);
}

.lineup__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4rem, 1.5vw, 0.9rem);
}

.lineup__list li {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7.5vw, 3.6rem);
  line-height: 1.12;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-text);
  cursor: default;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.lineup__list li:hover {
  color: var(--c-orange-light);
  text-shadow: 0 0 35px rgba(244, 115, 28, 0.65);
  transform: scale(1.03);
}

/* Stage-Spalten: mobil untereinander, ab Desktop nebeneinander */
.lineup__stages {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3.5rem, 9vw, 5rem);
}

.lineup__stage-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.5vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.lineup__group + .lineup__group {
  margin-top: clamp(2.25rem, 5vw, 3rem);
}

.lineup__group-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-orange-light);
  text-align: center;
  margin-bottom: 1.5rem;
}

.lineup__list--support li {
  font-size: clamp(1.35rem, 5vw, 2.3rem);
  opacity: 0.92;
}

/* Verlinkte Acts (Instagram) */
.lineup__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: inherit;
  text-decoration: none;
}

.lineup__ig {
  width: 0.42em;
  height: 0.42em;
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity 0.25s ease;
}

.lineup__list li:hover .lineup__ig {
  opacity: 1;
}

/* TBA-Teaser */
.lineup__tba {
  max-width: 34rem;
  margin: 0 auto;
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: calc(var(--radius) + 6px);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lineup__tba-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lineup__tba-text {
  color: var(--c-text-muted);
  margin-bottom: 1.75rem;
}

/* ---------- minus:one Stage ---------- */
.stage {
  background: var(--c-bg-alt);
}

.stage__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.stage__figure {
  margin: 0;
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: 0 20px 60px -20px rgba(255, 138, 60, 0.35);
}

.stage__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stage__lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stage__text p:not(.stage__lead) {
  color: var(--c-text-muted);
}

.stage__text .btn {
  margin-top: 0.5rem;
}

/* ---------- Galerie / Impressionen ---------- */
.gallery {
  background:
    radial-gradient(50rem 25rem at 80% 10%, rgba(244, 115, 28, 0.07), transparent 60%),
    var(--c-bg);
}

.gallery__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 78svh;
  width: 100%;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg-alt);
}

.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.gallery__img.is-active {
  opacity: 1;
  animation: gallery-zoom 7s ease-out forwards;
}

@keyframes gallery-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(11, 10, 16, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--c-text);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.gallery__nav:hover {
  background: rgba(244, 115, 28, 0.75);
  border-color: transparent;
}

.gallery__nav--prev { left: 0.75rem; }
.gallery__nav--next { right: 0.75rem; }

.gallery__counter {
  position: absolute;
  right: 0.9rem;
  bottom: 0.8rem;
  z-index: 2;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 10, 16, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Anfahrt & Location ---------- */
.location {
  background: var(--c-bg-alt);
}

.location__grid {
  display: grid;
  gap: 1.25rem;
}

.location__card {
  padding: 2.25rem 1.75rem;
  text-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: calc(var(--radius) + 6px);
  position: relative;
  overflow: hidden;
}

.location__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-brand);
}

.location__card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.location__address {
  color: var(--c-text-muted);
  margin-bottom: 1.75rem;
}

.location__hints {
  display: grid;
  gap: 1.25rem;
}

.location__hint {
  padding: 1.5rem 1.75rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}

.location__hint h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.location__hint p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */
.faq__list {
  border-top: 1px solid var(--c-border);
}

.faq__item {
  border-bottom: 1px solid var(--c-border);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0.25rem;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--c-orange);
  transition: transform 0.25s ease;
}

.faq__item[open] summary {
  color: var(--c-orange-light);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  padding: 0 0.25rem 1.25rem;
  margin: 0;
  color: var(--c-text-muted);
}

/* ---------- Social ---------- */
.social {
  text-align: center;
  background:
    radial-gradient(60rem 30rem at 50% 120%, rgba(244, 115, 28, 0.14), transparent 65%),
    var(--c-bg-alt);
}

.social__text {
  color: var(--c-text-muted);
  max-width: 32rem;
  margin: -1.5rem auto 2.25rem;
}

.social__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social__btn:hover {
  transform: translateY(-2px);
  border-color: var(--c-orange);
  box-shadow: var(--glow-brand);
}

/* ---------- Footer ---------- */
.footer {
  padding: 3rem 1.5rem 2.5rem;
  border-top: 1px solid var(--c-border);
  background: var(--c-bg);
}

.footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  width: auto;
  height: 1.6rem;
  opacity: 0.9;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer__links a {
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--c-orange-light);
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ---------- Rechtsseiten (Impressum/Datenschutz) ---------- */
.legal {
  padding: calc(var(--nav-height) + 3rem) 1.5rem var(--section-pad);
}

.legal .section__inner {
  max-width: 46rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
}

.legal h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
}

.legal p,
.legal li {
  color: var(--c-text-muted);
}

.legal a {
  word-break: break-word;
}

.legal__source {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

/* Ohne JS: alles sichtbar lassen */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- Tablet (≥768px) ---------- */
@media (min-width: 768px) {
  :root {
    --nav-height: 4.5rem;
  }

  .site-nav__burger {
    display: none;
  }

  .site-nav__menu {
    position: static;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav__menu ul {
    flex-direction: row;
    gap: 2rem;
    height: auto;
  }

  .site-nav__menu a:not(.btn) {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .site-nav__brand img {
    height: 2rem;
  }

  .countdown {
    gap: 0.9rem;
  }

  .countdown__item {
    min-width: 5.5rem;
    padding: 0.9rem 0.75rem 0.7rem;
  }

  .location__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .location__card {
    padding: 3rem 2.5rem;
  }

  .stage__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .gallery__frame {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ---------- Desktop (≥1024px) ---------- */
@media (min-width: 1024px) {
  .hero__logo {
    width: min(60%, 38rem);
  }

  /* Desktop-Hero: Main-Stage-Foto statt Video */
  .hero__media picture {
    display: block;
  }

  .hero__video {
    display: none;
  }

  .lineup__list {
    gap: 0.85rem;
  }

  /* Zwei Stages nebeneinander, mittig getrennt */
  .lineup__stages--split {
    grid-template-columns: 1fr 1fr;
    column-gap: 4.5rem;
    align-items: start;
  }

  .lineup__stages--split::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.75rem;
    bottom: 0.75rem;
    width: 1px;
    background: var(--c-border);
  }

  /* In Spalten etwas kompaktere Namen */
  .lineup__list li {
    font-size: 2.4rem;
  }

  .lineup__list--support li {
    font-size: 1.55rem;
  }

  .stage__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }

  .gallery__frame {
    aspect-ratio: 16 / 9;
  }

  .location__grid {
    grid-template-columns: 5fr 4fr;
    gap: 2rem;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  /* Video wird per JS pausiert; Gradient-Poster bleibt sichtbar */
  .hero__video {
    display: none;
  }
}
