/* ==========================================================================
   Volume X Festival – Stylesheet
   Farben & Schrift orientieren sich an der bisherigen Seite:
   Navy #0F273A / #2A394A, Gelb #FFED00, Weiß, Montserrat
   ========================================================================== */

:root {
  --navy: #0f273a;
  --navy-2: #2a394a;
  --navy-deep: #08161f;
  --navy-3: #1a2f43;
  --yellow: #ffed00;
  --yellow-dark: #e0d000;
  --white: #ffffff;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.12);
  --accent: var(--yellow);
  --accent-rgb: 255, 237, 0;
  --accent-text: var(--navy);
  --font: 'Montserrat', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
  --radius: 6px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --container: 1200px;
  --header-h: 92px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --marquee-duration: 40s;
  color-scheme: dark;
}

/* Snowstrike-Seiten: türkis als Akzent (wie das Snowstrike-Logo) */
.page-snowstrike, .site-header--snowstrike {
  --accent: #35d6d1;
  --accent-rgb: 53, 214, 209;
  --accent-text: #08161f;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy);
  overflow-x: hidden;
}
body.nav-open, body.lightbox-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
strong { font-weight: 700; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { max-width: 860px; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-muted); max-width: 60ch; }
.lead--center { margin-inline: auto; text-align: center; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--accent); color: var(--accent-text); padding: 0.6rem 1rem; border-radius: var(--radius); font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1.2; text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }
.btn--primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.page-snowstrike .btn--primary:hover, .site-header--snowstrike .btn--primary:hover { background: #22bfba; border-color: #22bfba; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.82rem; }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn svg { width: 1.1em; height: 1.1em; flex: 0 0 auto; }
.btn--ghost svg { transition: transform 0.2s ease; }
.btn--ghost:hover svg { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; padding: 0.75rem 0; background: transparent; }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 64px; padding: 0.45rem 0.6rem 0.45rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 55%, rgba(var(--accent-rgb), 0.06) 100%), rgba(15, 39, 58, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled .site-header__inner {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(var(--accent-rgb), 0.05) 100%), rgba(15, 39, 58, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 16px 40px rgba(0, 0, 0, 0.4);
}
.site-header__logo img { width: 150px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0.2rem; }
.site-nav__list > li > a, .site-nav__more-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.55rem 0.85rem; border-radius: var(--radius);
  color: var(--white); font-weight: 600; font-size: 0.92rem; text-decoration: none;
  background: none; border: 0; font-family: inherit; cursor: pointer;
}
.site-nav__list > li > a:hover, .site-nav__more-btn:hover { background: rgba(255, 255, 255, 0.08); text-decoration: none; }
.site-nav__list > li > a[aria-current="page"] { color: var(--accent); }
.site-nav__more-btn svg { width: 1em; height: 1em; transition: transform 0.2s; }
.site-nav__more.is-open .site-nav__more-btn svg { transform: rotate(180deg); }
.site-nav__more { position: relative; }
.site-nav__dropdown {
  list-style: none; margin: 0; padding: 0.5rem;
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  display: none; z-index: 20;
}
.site-nav__more.is-open .site-nav__dropdown { display: block; }
.site-nav__dropdown a { display: block; padding: 0.55rem 0.8rem; border-radius: var(--radius); color: var(--white); font-weight: 600; font-size: 0.9rem; }
.site-nav__dropdown a:hover { background: rgba(255, 255, 255, 0.08); text-decoration: none; }
.site-nav__dropdown a[aria-current="page"] { color: var(--accent); }
.site-nav__extra { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 8px; border: 0; background: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 3px; width: 100%; background: var(--white); border-radius: 3px; transition: transform 0.25s, opacity 0.25s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Sprachwahl */
.lang-switch { display: inline-flex; align-items: center; gap: 0.15rem; padding: 0.2rem; border: 1px solid var(--line); border-radius: 999px; }
.lang-switch > svg { width: 1.1rem; height: 1.1rem; margin: 0 0.25rem 0 0.45rem; opacity: 0.7; }
.lang-switch__item {
  display: inline-flex; align-items: center; padding: 0.3rem 0.6rem; border-radius: 999px;
  color: var(--text-muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-decoration: none;
}
.lang-switch__item:hover { color: var(--white); text-decoration: none; }
.lang-switch__item.is-active { background: var(--accent); color: var(--accent-text); }
.lang-switch__name { display: none; }
.lang-switch--footer { border-color: rgba(255, 255, 255, 0.2); }
.lang-switch--footer .lang-switch__item { padding: 0.4rem 0.8rem; }

/* Mobile */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0; height: calc(100vh - var(--header-h) - 4px); height: calc(100dvh - var(--header-h) - 4px); z-index: 90; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 1.5rem;
    padding: 1.5rem 1.25rem 3rem; overflow-y: auto;
    background: var(--navy); border-top: 1px solid var(--line);
    clip-path: inset(0 0 0 100%); visibility: hidden;
    transition: clip-path 0.3s ease, visibility 0s linear 0.3s;
  }
  body.nav-open .site-nav { clip-path: inset(0); visibility: visible; transition-delay: 0s; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .site-nav__list > li > a, .site-nav__more-btn { width: 100%; font-size: 1.15rem; padding: 0.8rem 0.6rem; justify-content: space-between; }
  .site-nav__dropdown { position: static; display: block; box-shadow: none; border: 0; background: rgba(255, 255, 255, 0.04); margin-top: 0.3rem; }
  .site-nav__dropdown a { font-size: 1rem; padding: 0.7rem 1rem; }
  .site-nav__more-btn svg { display: none; }
  .site-nav__extra { flex-direction: column; align-items: stretch; gap: 1rem; }
  .site-nav__extra .btn { width: 100%; padding: 1rem; font-size: 1rem; }
  .lang-switch--nav { justify-content: center; }
  .lang-switch__name { display: inline; margin-left: 0.4rem; }
}

/* Hinweisleisten */
.notice { background: var(--navy-2); border-bottom: 1px solid var(--line); font-size: 0.9rem; padding: 0.6rem 0; }
.notice--fallback { background: #3a3f1a; }
.lang-suggest { background: var(--accent); color: var(--accent-text); font-weight: 600; font-size: 0.92rem; }
.lang-suggest__inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; padding: 0.55rem 0; }
.lang-suggest .btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lang-suggest__close { background: none; border: 0; font-size: 1.5rem; line-height: 1; cursor: pointer; color: inherit; padding: 0 0.3rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; z-index: 1; min-height: calc(100svh - var(--header-h)); display: grid; place-items: center;
  text-align: center; padding: 5rem 0 clamp(6rem, 9vw, 8rem); isolation: isolate;
  overflow-x: clip; overflow-y: visible;
}
.hero__bg, .stage__bg, .page-hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img, .stage__bg img, .page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 39, 58, 0.55) 0%, rgba(15, 39, 58, 0.35) 45%, rgba(15, 39, 58, 0.5) 100%);
}
.hero__content { display: grid; justify-items: center; gap: 0.6rem; }
.hero__eyebrow { margin: 0; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.85rem; color: var(--accent); }
.hero__logo img { width: min(640px, 82vw); filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55)); }
.hero__logo--snow img { width: min(560px, 80vw); }
.hero__title {
  font-size: clamp(2.4rem, 7.5vw, 5.6rem); font-weight: 900; margin: 0.4rem 0 0; text-transform: uppercase; line-height: 1;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6); letter-spacing: -0.03em;
}
.hero__location { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__location svg { width: 1.2em; height: 1.2em; color: var(--accent); }
.hero__date { font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 700; margin: 0; color: var(--white); text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); }
.hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-top: 1.4rem; }
.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; width: 26px; height: 42px; margin-left: -13px;
  border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 14px;
}
.hero__scroll::after { content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--white); animation: scroll-dot 1.8s infinite; }
@keyframes scroll-dot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* Hero-Video (lokal oder YouTube) – füllt den Hero wie object-fit: cover */
.hero__video, .hero__yt {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-width: 177.78vh; min-height: 100%;
  opacity: 0; transition: opacity 1.2s ease; pointer-events: none;
}
.hero__yt { min-width: calc(177.78vh + 200px); width: calc(100vw + 200px); height: calc(56.25vw + 112px); }
.hero__yt iframe { width: 100%; height: 100%; border: 0; }
.hero__video { object-fit: cover; width: 100%; height: 100%; min-width: 0; min-height: 0; }
.hero__bg.is-video .hero__video, .hero__bg.is-video .hero__yt { opacity: 1; }
.hero__bg.is-video > img { opacity: 0; transition: opacity 1.2s ease; }
.hero--video .hero__bg { animation: none; }

/* Unterseiten-Hero */
.page-hero { position: relative; isolation: isolate; padding: 6rem 0 4rem; min-height: 380px; display: grid; align-items: end; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 39, 58, 0.6), rgba(15, 39, 58, 0.97)); }
.page-hero h1 { margin-bottom: 0.4rem; }
.page-hero .eyebrow { margin-bottom: 0.4rem; }
.page-hero .lead { margin: 0; }

/* --------------------------------------------------------------------------
   Sektionen
   -------------------------------------------------------------------------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section__title { margin-bottom: 2rem; }
.section__title--center { text-align: center; }
.section--facts { background: var(--navy); padding: clamp(1.6rem, 3vw, 2.6rem) 0 clamp(3rem, 6vw, 5rem); }
.section--partners { background: var(--accent); color: var(--accent-text); padding: 3rem 0 2.5rem; }
.section--partners .section__title { color: var(--accent-text); margin-bottom: 1.5rem; font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
.section--partners .section__title::before { background: var(--accent-text); box-shadow: none; }
.section--ready { background: var(--navy); }
.section--teaser { background: var(--navy-3); text-align: center; }
.section--about { background: var(--navy-2); }
.section--aftermovie { background: var(--navy); }
.section--camping { background: var(--navy-2); }
.section--cta { background: linear-gradient(135deg, var(--accent), var(--yellow-dark)); color: var(--accent-text); text-align: center; }
.page-snowstrike .section--cta { background: linear-gradient(135deg, #35d6d1, #1aa9a4); }
.section--404 { min-height: 50vh; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible, html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.facts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; text-align: center; }
.facts li {
  position: relative; display: grid; align-content: center; gap: 0.45rem; padding: 2.1rem 1.4rem 1.9rem; min-width: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 55%, rgba(var(--accent-rgb), 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.facts li::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 44px; height: 3px; border-radius: 0 0 3px 3px; background: var(--accent);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.55);
}
.facts li:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb), 0.45); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(var(--accent-rgb), 0.12); }
.facts strong { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 900; color: var(--accent); line-height: 1.05; letter-spacing: -0.02em; }
.facts span { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.5; overflow-wrap: break-word; }
@media (max-width: 700px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } .facts li { padding: 1.6rem 0.8rem 1.4rem; } .facts span { font-size: 0.7rem; letter-spacing: 0.04em; } }

.stats { list-style: none; margin: 1.5rem 0 2rem; padding: 0; display: flex; gap: 2rem; flex-wrap: wrap; }
.stats li { display: grid; }
.stats strong { font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stats span { color: var(--text-muted); font-size: 0.9rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__text { order: 2; }
.split__text h2 { margin-bottom: 1rem; }
.split__media { margin: 0; }
.split__media img { border-radius: var(--radius-xl); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.split__media--badge { position: relative; }
.media-badge { position: absolute; left: 1.2rem; bottom: 1.2rem; background: var(--accent); color: var(--accent-text); padding: 0.55rem 1rem; border-radius: 999px; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); }
.split__media--stack { display: grid; gap: 1rem; }
.split__media--stack img:nth-child(2) { margin-left: 12%; }
@media (max-width: 899px) { .split { grid-template-columns: 1fr; } .split--reverse .split__text { order: 0; } }

.teaser { display: grid; justify-items: center; gap: 1rem; }
.teaser h2 { margin: 0; }
.teaser p { max-width: 60ch; color: var(--text-muted); margin: 0; }
.section--earlybird { background: var(--navy-2); }

/* Line-Up (Snowstrike) */
.section--lineup { position: relative; overflow: hidden; text-align: center; background: radial-gradient(60% 90% at 50% 0%, rgba(var(--accent-rgb), 0.10), transparent 60%), var(--navy); }
.lineup { position: relative; }
.lineup h2 { margin-bottom: 0.4em; }
.lineup__list {
  list-style: none; margin: 1.8rem auto 2.4rem; padding: 0; max-width: 1000px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline;
  column-gap: clamp(1.4rem, 3.2vw, 2.8rem); row-gap: 0.7rem;
}
.lineup__act {
  font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.15;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem); color: var(--white); white-space: nowrap;
  transition: color 0.2s ease, text-shadow 0.2s ease; cursor: default;
}
.lineup__act:hover { color: var(--accent); text-shadow: 0 0 26px rgba(var(--accent-rgb), 0.5); }
.lineup__act--sm { font-size: clamp(1.05rem, 2vw, 1.55rem); font-weight: 800; color: rgba(255, 255, 255, 0.82); }
.lineup__cc { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); vertical-align: super; margin-left: 0.4rem; }
.spray-x--lineup { right: -60px; bottom: -70px; width: clamp(220px, 22vw, 340px); aspect-ratio: 1; transform: rotate(10deg); opacity: 0.1; }
.lineup__note { color: var(--text-muted); margin: -0.4rem 0 0; }
.lineup__act--secret { cursor: default; }
.lineup__act--secret .lineup__mask { display: inline-block; white-space: nowrap; user-select: none; }
.lineup__rnd, .lineup__fixchar, .lineup__sp {
  display: inline-block; width: 1.12ch; text-align: center; overflow: visible;
  vertical-align: top; height: 1.15em; line-height: 1.15;
}
.lineup__sp { width: 0.65ch; }
.lineup__rnd { color: rgba(255, 255, 255, 0.34); text-shadow: 0 0 16px rgba(var(--accent-rgb), 0.25); }
.lineup__fixchar { color: var(--accent); font-style: normal; text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.6); }
.lineup__act--secret:hover .lineup__rnd { color: rgba(var(--accent-rgb), 0.55); }
@media (max-width: 700px) { .lineup__act { white-space: normal; } }

/* Marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4rem; width: max-content; }
.marquee.is-ready .marquee__track { animation: marquee var(--marquee-duration) linear infinite; }
html:not(.js) .marquee__track { width: auto; flex-wrap: wrap; justify-content: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track li { flex: 0 0 auto; }
.section--partners .marquee__track li { display: grid; place-items: center; height: 96px; padding: 0.9rem 1.8rem; background: #fff; border-radius: 18px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.section--partners .marquee__track li:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2); }
.section--partners .marquee__track img { height: 56px; width: auto; max-width: 220px; object-fit: contain; }
.section--partners .marquee__track img[src$="tickee.svg"] { height: 30px; }
.marquee--partners .marquee__track { gap: 1.4rem; }
.section--sponsors { background: var(--navy); padding: 2.6rem 0 3rem; border-top: 1px solid var(--line); }
.section--sponsors .partners__label { color: var(--text-muted); opacity: 1; }
.sponsors-main--compact { margin-bottom: 0; }
.sponsors-main--compact a, .sponsors-main--compact div { padding: 1.1rem 1.9rem; border-radius: 16px; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3); }
.sponsors-main--compact img { height: 56px; max-width: 200px; }
.sponsors-main--compact span { font-size: 0.7rem; }
.partners__label { text-align: center; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-text); opacity: 0.65; margin: 0 0 1rem; }
.sponsors-main { list-style: none; margin: 0 auto 2.4rem; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; }
.sponsors-main a, .sponsors-main div {
  display: grid; justify-items: center; gap: 0.7rem; padding: 1.5rem 2.6rem 1.2rem;
  background: #fff; border-radius: 20px; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sponsors-main a:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24); text-decoration: none; }
.sponsors-main img { height: 84px; width: auto; max-width: 260px; object-fit: contain; }
.sponsors-main span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; color: #24303c; }
@media (max-width: 600px) { .sponsors-main a, .sponsors-main div { padding: 1.1rem 1.6rem 0.9rem; } .sponsors-main img { height: 60px; } }
.marquee--images .marquee__track { gap: 1rem; }
.marquee--images img { height: clamp(180px, 26vw, 320px); width: auto; border-radius: var(--radius); object-fit: cover; }
.gallery-strip { padding: 0 0 0.5rem; background: var(--navy-3); }
@keyframes marquee { to { transform: translateX(calc(-1 * var(--marquee-shift, 50%))); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } .marquee { mask-image: none; -webkit-mask-image: none; } }

/* Sektionen mit Hintergrundbild */
.section--has-bg { position: relative; isolation: isolate; overflow: hidden; }
.section__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.section__bg img { width: 100%; height: 100%; object-fit: cover; }
.section__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 39, 58, 0.93), rgba(15, 39, 58, 0.86) 50%, rgba(15, 39, 58, 0.94)); }
.section--teaser .section__bg::after { background: rgba(15, 39, 58, 0.82); }
.section--about .section__bg::after { background: linear-gradient(270deg, rgba(15, 39, 58, 0.95) 0%, rgba(15, 39, 58, 0.85) 55%, rgba(15, 39, 58, 0.6) 100%); }
.section--camping .section__bg::after { background: linear-gradient(90deg, rgba(15, 39, 58, 0.96) 0%, rgba(15, 39, 58, 0.85) 55%, rgba(15, 39, 58, 0.6) 100%); }
.section--info-cards .section__bg::after { background: rgba(8, 22, 31, 0.86); }

/* Spray-X: dekoratives, gesprühtes X in Akzentfarbe */
.spray-x { position: absolute; pointer-events: none; color: var(--accent); z-index: 0; }
.spray-x svg { width: 100%; height: 100%; display: block; }
.spray-x--hero { right: -3vw; top: 10%; width: clamp(260px, 32vw, 540px); aspect-ratio: 1; transform: rotate(9deg); opacity: 0.14; z-index: -1; }
.spray-x--about { left: max(-70px, -5vw); bottom: -50px; width: clamp(220px, 24vw, 360px); aspect-ratio: 1; transform: rotate(-11deg); opacity: 0.12; z-index: -1; }
.spray-x--teaser { right: 3vw; top: 50%; width: clamp(180px, 18vw, 280px); aspect-ratio: 1; transform: translateY(-50%) rotate(12deg); opacity: 0.12; z-index: -1; }
.spray-x--cta { left: 3vw; top: 50%; width: clamp(170px, 16vw, 260px); aspect-ratio: 1; transform: translateY(-50%) rotate(-8deg); opacity: 0.14; color: var(--accent-text); }
.section--cta--image .spray-x--cta { color: var(--accent); opacity: 0.2; }
.spray-x--footer { right: 1vw; bottom: -70px; width: clamp(240px, 22vw, 380px); aspect-ratio: 1; transform: rotate(7deg); opacity: 0.06; }
@media (max-width: 899px) { .spray-x--about, .spray-x--teaser { display: none; } .spray-x--hero { opacity: 0.1; } }

/* Bento-Grid (Über das Festival, Camping, Snowstrike) */
.bento { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; height: clamp(380px, 40vw, 560px); }
.bento figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bento figure:hover img { transform: scale(1.05); }
.bento__big { grid-row: 1 / 3; border-radius: var(--radius-xl) !important; }
.bento__badge {
  display: grid; align-content: center; justify-items: center; text-align: center; gap: 0.2rem; padding: 1rem;
  background: var(--accent); color: var(--accent-text); border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.35), var(--shadow);
}
.bento__badge strong { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.bento__badge span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
@media (max-width: 899px) {
  .bento { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .bento__big { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16 / 10; }
  .bento__small { aspect-ratio: 1; }
  .bento__badge { min-height: 100%; }
}

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 0 0 1.4rem; }
.chips li {
  padding: 0.4rem 0.85rem; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.stage__text .chips { margin-top: 0.2rem; }

/* Bühnen */
.stage { position: relative; isolation: isolate; padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; }
.stage__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 39, 58, 0.96) 0%, rgba(15, 39, 58, 0.85) 50%, rgba(15, 39, 58, 0.55) 100%); }
.stage--flip .stage__bg::after { background: linear-gradient(270deg, rgba(15, 39, 58, 0.96) 0%, rgba(15, 39, 58, 0.85) 50%, rgba(15, 39, 58, 0.55) 100%); }
.stage__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.stage--flip .stage__text { order: 2; }
.stage__text h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.stage__text p { color: var(--text); font-size: 1.05rem; }
.stage__note { font-size: 0.88rem !important; color: var(--text-muted) !important; border-left: 3px solid var(--accent); padding-left: 0.8rem; }
.stage__media { margin: 0; }
.stage__media img { border-radius: var(--radius-xl); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transform: rotate(-1.5deg); }
.stage--flip .stage__media img { transform: rotate(1.5deg); }
@media (max-width: 899px) { .stage__grid { grid-template-columns: 1fr; } .stage--flip .stage__text { order: 0; } .stage__bg::after, .stage--flip .stage__bg::after { background: rgba(15, 39, 58, 0.88); } }

/* Botschafter */
.section--ambassador { position: relative; isolation: isolate; overflow: hidden; }
.section--ambassador .stage__bg::after { background: rgba(8, 22, 31, 0.8); }
.ambassador { text-align: center; display: grid; justify-items: center; gap: 0.8rem; max-width: 820px; padding: clamp(2rem, 5vw, 3.5rem); background: rgba(8, 22, 31, 0.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: var(--radius-xl); }
.ambassador h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0; }
.ambassador p { color: var(--text-muted); font-size: 1.05rem; }

/* Aftermovie */
.section--aftermovie { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.aftermovie { display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem); }
.aftermovie h2 { margin: 0 0 1.2rem; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.aftermovie__text h2::before { margin-inline: 0 !important; }
@media (max-width: 899px) { .aftermovie { grid-template-columns: 1fr; } }
.video { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__play {
  position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 0.8rem;
  background: none; border: 0; cursor: pointer; color: var(--white); font-family: inherit; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.video__play svg { width: 72px; height: 72px; padding: 18px; border-radius: 50%; background: var(--accent); color: var(--accent-text); transition: transform 0.2s; }
.video__play:hover svg { transform: scale(1.08); }
.aftermovie__link { font-size: 0.9rem; margin: 0; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-bottom: 3rem; }
.card {
  position: relative; display: block; padding: 1.6rem 1.6rem 3.4rem; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--white); text-decoration: none; transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.card--static { padding-bottom: 1.6rem; }
.card__arrow { position: absolute; right: 1.2rem; bottom: 1.2rem; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: var(--white); transition: background 0.2s, color 0.2s, transform 0.2s; }
.card__arrow svg { width: 20px; height: 20px; }
a.card:hover .card__arrow { background: var(--accent); color: var(--accent-text); transform: translateX(3px); }
a.card:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb), 0.6); background: rgba(255, 255, 255, 0.09); text-decoration: none; }
.card h2, .card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; text-transform: none; }
.card p { color: var(--text-muted); margin: 0; }
.card--static .btn { margin-top: 1.2rem; }

.cta { display: grid; justify-items: center; gap: 1.2rem; }
.cta h2 { margin: 0; color: var(--accent-text); }

/* --------------------------------------------------------------------------
   Inhaltsseiten (Prose), FAQ, Galerie
   -------------------------------------------------------------------------- */
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose h4 { margin-top: 1.4rem; color: var(--accent); }
.prose p, .prose li { color: rgba(255, 255, 255, 0.9); }
.prose li { margin-bottom: 0.3em; }
.prose--legal { font-size: 0.95rem; }
.prose--legal h2 { font-size: 1.4rem; text-transform: none; }
.prose--legal h3 { font-size: 1.1rem; }
.prose > :first-child { margin-top: 0; }

.callout { border-left: 4px solid var(--accent); background: rgba(255, 255, 255, 0.05); padding: 1rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; }
.callout > :last-child { margin-bottom: 0; }
.callout--legal { font-size: 0.9rem; color: var(--text-muted); }
.infobox { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; margin: 1.8rem 0; }
.infobox > :last-child { margin-bottom: 0; }
.infobox h3 { margin-top: 0; }

.faq__group { margin-top: 3rem; font-size: 1.4rem; }
.faq__list { display: grid; gap: 0.6rem; margin-bottom: 2rem; }
.faq__item { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; list-style: none;
  padding: 1rem 1.3rem; font-weight: 700; font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { flex: 0 0 auto; width: 1.2rem; height: 1.2rem; color: var(--accent); transition: transform 0.2s; }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item summary:hover { background: rgba(255, 255, 255, 0.04); }
.faq__answer { padding: 0 1.3rem 1.2rem; color: rgba(255, 255, 255, 0.88); }
.faq__answer > :last-child { margin-bottom: 0; }
.faq__answer h4 { margin: 1rem 0 0.4rem; color: var(--accent); font-size: 1rem; }

.contact-box { margin-top: 3rem; padding: 2rem; border-radius: var(--radius-lg); background: var(--navy-2); border: 1px solid var(--line); text-align: center; }
.contact-box h2 { font-size: 1.5rem; }
.contact-box p { color: var(--text-muted); }
.contact-box .btn { text-transform: none; letter-spacing: 0; }

.photo-grid { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); grid-auto-rows: 210px; grid-auto-flow: dense; gap: 0.8rem; }
.photo-grid li:nth-child(7n+1), .photo-grid li:nth-child(7n+5) { grid-column: span 2; grid-row: span 2; }
.photo-grid a { display: block; height: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-2); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.photo-grid a:hover img { transform: scale(1.04); }
@media (max-width: 600px) { .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; } }

.image-page { display: grid; gap: 2rem; }
.image-page__item { margin: 0; }
.image-page__item img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; background: var(--navy-2); }
.image-page--grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.image-page--grid .image-page__item img { border-radius: var(--radius); box-shadow: none; aspect-ratio: 1; object-fit: cover; }
.image-page__item figcaption { margin-top: 0.6rem; color: var(--text-muted); font-size: 0.9rem; text-align: center; }

.shop-embed { border-radius: var(--radius-lg); overflow: hidden; background: #fff; margin: 1rem 0 2rem; }
.shop-embed iframe { width: 100%; height: 720px; border: 0; display: block; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(5, 12, 18, 0.95); display: grid; place-items: center; }
.lightbox[hidden], .lang-suggest[hidden], [hidden] { display: none !important; }
.lightbox__figure { margin: 0; max-width: 92vw; max-height: 92vh; display: grid; gap: 0.6rem; justify-items: center; }
.lightbox__figure img { max-width: 92vw; max-height: 84vh; width: auto; height: auto; border-radius: var(--radius); }
.lightbox__figure figcaption { color: var(--text-muted); font-size: 0.9rem; text-align: center; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255, 255, 255, 0.1); color: var(--white); border: 0; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; line-height: 1; display: grid; place-items: center;
}
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--accent); color: var(--accent-text); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { position: relative; overflow: hidden; background: var(--navy-deep); padding: 4rem 0 2rem; border-top: 1px solid var(--line); font-size: 0.95rem; }
.site-footer > .container { position: relative; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer__brand img { width: 200px; margin-bottom: 1rem; }
.site-footer__brand p { color: var(--text-muted); max-width: 32ch; }
.site-footer__title { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--accent); }
.social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: var(--white); }
.social a:hover { background: var(--accent); color: var(--accent-text); }
.social svg { width: 20px; height: 20px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 0.85rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.2rem; flex-wrap: wrap; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Festival-Effekte: Parallax, pulsierende Buttons, Ticker, Hero-FX, Zähler
   ========================================================================== */

/* Parallax-Hintergründe: Container schneidet ab, Bild ist größer und wird per JS verschoben */
.hero__bg, .stage__bg, .page-hero__bg { overflow: hidden; }
[data-parallax] { will-change: transform; transform: scale(1.4); transform-origin: center; }

/* Hero: langsamer Ken-Burns-Zoom + Lichtstrahlen + Körnung */
.hero__bg { animation: kenburns 28s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero__fx { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; mix-blend-mode: screen; }
.hero__fx::before, .hero__fx::after {
  content: ''; position: absolute; left: 50%; top: -60%; width: 140vw; height: 220%;
  background: conic-gradient(from 0deg at 50% 0%, transparent 0 22%, rgba(var(--accent-rgb), 0.16) 24%, transparent 26%, transparent 46%, rgba(255, 255, 255, 0.10) 48%, transparent 50%, transparent 70%, rgba(var(--accent-rgb), 0.12) 72%, transparent 74%);
  transform-origin: 50% 0; animation: beams 26s linear infinite; opacity: 0.9;
}
.hero__fx::after { animation-duration: 38s; animation-direction: reverse; opacity: 0.6; }
@keyframes beams { from { transform: translateX(-50%) rotate(-8deg); } to { transform: translateX(-50%) rotate(8deg); } }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__title { animation: hero-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.15s; text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.35), 0 10px 40px rgba(0, 0, 0, 0.6); }
.hero__logo { animation: hero-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero__date, .hero__actions, .hero__eyebrow { animation: hero-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.3s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Aufgerissene Kante am Hero-Ende (Into-The-Madness-Style) */
.hero__tear { position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(42px, 5.5vw, 78px); z-index: 2; pointer-events: none; }
.hero__tear svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.tear-main { fill: var(--navy); }
.tear-shadow { fill: rgba(4, 11, 17, 0.45); }
.tear-acc { fill: none; stroke: var(--accent); stroke-width: 6; stroke-linecap: round; }
.spray-x--tear-a, .spray-x--tear-b { opacity: 1; z-index: 3; filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5)); }
.spray-x--tear-a { left: 4%; bottom: calc(-0.22 * clamp(74px, 8vw, 118px)); width: clamp(74px, 8vw, 118px); aspect-ratio: 1; transform: rotate(-11deg); }
.spray-x--tear-b { right: 9%; bottom: 4px; width: clamp(40px, 4.5vw, 64px); aspect-ratio: 1; transform: rotate(8deg); }
.hero--video .hero__scroll { bottom: clamp(60px, 8vw, 110px); }
@media (max-width: 700px) { .spray-x--tear-b { right: 5%; } }

/* Pulsierende Ticket-Buttons mit Glanz */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary > span { position: relative; z-index: 1; }
.btn--pulse { animation: btn-pulse 2.2s ease-in-out infinite; }
.btn--pulse::after {
  content: ''; position: absolute; top: -20%; left: -80%; width: 45%; height: 140%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-22deg); animation: btn-shine 3.2s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.6), 0 6px 22px rgba(var(--accent-rgb), 0.25); transform: translateY(0) scale(1); }
  50% { box-shadow: 0 0 0 14px rgba(var(--accent-rgb), 0), 0 10px 32px rgba(var(--accent-rgb), 0.5); transform: translateY(0) scale(1.035); }
}
@keyframes btn-shine { 0% { left: -80%; } 35%, 100% { left: 140%; } }
.btn--pulse:hover { animation-play-state: paused; transform: translateY(-2px) scale(1.04); box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.25), 0 12px 36px rgba(var(--accent-rgb), 0.55); }
.btn--ghost { position: relative; }
.btn--ghost:hover { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08), 0 8px 28px rgba(0, 0, 0, 0.35); }

/* Laufband unter dem Hero */
.ticker-wrap { position: relative; overflow: hidden; background: var(--navy); padding: clamp(1.6rem, 2.4vw, 2.8rem) 0; }
.ticker-wrap::before {
  content: ''; position: absolute; left: -5vw; right: -5vw; top: 50%; height: 3.2rem; margin-top: -1.6rem;
  background: rgba(var(--accent-rgb), 0.16); transform: rotate(1.4deg);
}
.ticker {
  position: relative; width: 110vw; margin-left: -5vw; transform: rotate(-1.4deg);
  background: var(--accent); color: var(--accent-text); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: clamp(0.8rem, 1.1vw, 1rem); line-height: 1;
}
.ticker .marquee { mask-image: none; -webkit-mask-image: none; }
.ticker .marquee__track { gap: 0; padding: 1rem 0; align-items: center; }
.ticker .marquee__track li { display: inline-flex; align-items: center; padding: 0 1.6rem; white-space: nowrap; }
.ticker .marquee__track li::before { content: '✦'; margin-right: 1.6rem; opacity: 0.55; font-size: 0.85em; }
.marquee--ticker .marquee__track { --marquee-duration: 45s; }

/* Akzentbalken an Überschriften + Sektions-Glow */
.split__text h2::before, .stage__text h2::before, .teaser h2::before, .ambassador h2::before, .aftermovie h2::before {
  content: ''; display: block; width: 64px; height: 6px; margin-bottom: 1rem; background: var(--accent);
  transform: skewX(-24deg); box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.6);
}
.teaser h2::before, .ambassador h2::before, .aftermovie h2::before, .section--partners .section__title::before { margin-inline: auto; }
.section--ready { background: radial-gradient(70% 90% at 85% 15%, rgba(var(--accent-rgb), 0.10), transparent 60%), var(--navy); }
.section--teaser { background: radial-gradient(60% 100% at 50% 100%, rgba(var(--accent-rgb), 0.12), transparent 65%), var(--navy-3); }
.section--aftermovie { background: radial-gradient(50% 80% at 15% 80%, rgba(var(--accent-rgb), 0.08), transparent 60%), var(--navy); }
.section--camping { background: radial-gradient(60% 90% at 90% 90%, rgba(var(--accent-rgb), 0.08), transparent 60%), var(--navy-2); }
.section--cta { position: relative; overflow: hidden; }
.section--cta::before { content: ''; position: absolute; inset: -40%; background: conic-gradient(from 0deg, transparent 0 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%); animation: beams 18s linear infinite alternate; pointer-events: none; }
.section--cta .container { position: relative; }
.section--cta .btn--primary { --accent-rgb: 8, 22, 31; background: var(--navy); color: var(--yellow); border-color: var(--navy); box-shadow: 0 10px 30px rgba(8, 22, 31, 0.35); }
.section--cta .btn--primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.section--cta .btn--pulse::after { background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%); }

/* CTA mit Bildhintergrund (Snowstrike): heller Text, Akzent-Button auf dunklem Bild */
.section--cta--image { background: var(--navy); color: var(--white); }
.section--cta--image::before { display: none; }
.section--cta--image .cta h2 { color: var(--white); text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5); }
.section--cta--image .section__bg::after { background: linear-gradient(180deg, rgba(8, 22, 31, 0.8), rgba(8, 22, 31, 0.66) 50%, rgba(8, 22, 31, 0.85)); }
.section--cta--image .btn--primary { --accent-rgb: 53, 214, 209; background: var(--accent); color: var(--accent-text); border-color: var(--accent); box-shadow: none; }
.section--cta--image .btn--primary:hover { background: #22bfba; border-color: #22bfba; }
.section--cta--image .btn--pulse::after { background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%); }
.facts strong, .stats strong { text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.28); }

/* Galerie-Streifen: Bilder heben sich beim Hover */
.marquee--images img { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.marquee--images li:hover img { transform: scale(1.05) rotate(-1deg); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5); }
.stage__media img { transition: transform 0.5s ease; }
.stage:hover .stage__media img { transform: rotate(0deg) scale(1.02); }

@media (prefers-reduced-motion: reduce) {
  .hero__bg, .hero__fx::before, .hero__fx::after, .btn--pulse, .btn--pulse::after, .section--cta::before, .hero__title, .hero__logo, .hero__date, .hero__actions, .hero__eyebrow { animation: none; }
  [data-parallax] { transform: none; }
}

/* ==========================================================================
   Consent (externe Inhalte) + Embed-Platzhalter
   ========================================================================== */
.consent { position: fixed; inset: auto 0 0 0; z-index: 950; padding: 1rem; display: grid; justify-items: center; pointer-events: none; }
.consent[hidden] { display: none !important; }
.consent__card {
  pointer-events: auto; width: min(680px, 100%); padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 55%, rgba(var(--accent-rgb), 0.06) 100%), rgba(10, 25, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 24px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.consent__card h2 { font-size: 1.05rem; text-transform: none; margin-bottom: 0.4rem; }
.consent__card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.consent__toggle { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; font-weight: 600; cursor: pointer; margin-bottom: 1rem; }
.consent__toggle input { position: absolute; opacity: 0; }
.consent__switch { flex: 0 0 auto; width: 42px; height: 24px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); position: relative; transition: background 0.2s; }
.consent__switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--white); transition: transform 0.2s; }
.consent__toggle input:checked + .consent__switch { background: var(--accent); }
.consent__toggle input:checked + .consent__switch::after { transform: translateX(18px); background: var(--accent-text); }
.consent__toggle input:focus-visible + .consent__switch { outline: 3px solid var(--accent); outline-offset: 2px; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--white); cursor: pointer; }
.linklike:hover { color: var(--accent); text-decoration: underline; }

.shop-embed { background: var(--navy-2); }
.embed-consent { display: grid; justify-items: center; gap: 1rem; padding: 3.5rem 1.5rem; text-align: center; }
.embed-consent p { color: var(--text-muted); max-width: 46ch; margin: 0; }
.video__note { display: block; margin-top: 0.5rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.02em; text-transform: none; color: rgba(255, 255, 255, 0.75); text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); }

/* ==========================================================================
   Baustellen-Look (XCircus-Umbau-Teaser)
   ========================================================================== */
.stage--construction { overflow: hidden; }
.stage--construction .stage__bg img { filter: saturate(0.45) brightness(0.75); }
.tape {
  position: absolute; left: -5%; width: 110%; z-index: 1; pointer-events: none;
  background: var(--yellow); color: #131313; padding: 0.4rem 0;
  font-weight: 900; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border-top: 3px solid #131313; border-bottom: 3px solid #131313;
}
.tape--a { top: 18px; transform: rotate(-2.2deg); }
.tape--b { bottom: 18px; transform: rotate(1.8deg); }
.constr-badge {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-bottom: 1rem; padding: 0.45rem 0.9rem;
  background: var(--yellow); color: #131313; border: 2px dashed #131313; border-radius: 6px;
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  transform: rotate(-1.5deg);
}
.stage--construction .stage__text h2::after { content: ' 🚧'; }
.stage--construction .stage__media img {
  border-radius: 10px;
  border: 8px solid #131313;
  border-image: repeating-linear-gradient(45deg, #ffed00 0 16px, #131313 16px 32px) 8;
  filter: saturate(0.75);
}
.constr-stamp {
  position: absolute; top: 16px; left: -10px; transform: rotate(-5deg);
  background: rgba(19, 19, 19, 0.88); color: var(--yellow); border: 2px solid var(--yellow);
  padding: 0.5rem 1rem; border-radius: 6px;
  font-weight: 900; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
@media (max-width: 899px) { .tape--a { top: 10px; } .tape--b { bottom: 10px; } }
