/* =========================================================
   HOFLÄRM 2026 — Dark Brutalism Stylesheet
   ========================================================= */

/* Google Fonts: Space Mono — modern brutalism mono for body/UI */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* TG Transit — brand font.
   Note: renders umlauts (Ä/Ö/Ü) without their dots; for branded headlines
   we use the HEADER.png logo (correct umlauts). Section titles intentionally
   inherit the brand quirk. */
@font-face {
  font-family: 'TG Transit';
  src: url('assets/fonts/TG-Transit-Condensed.otf') format('opentype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- HEAVY PASTORAL palette ------- */
:root {
  /* Dark sepia-tinted blacks */
  --bg: #0d0a07;
  --bg-2: #1a1611;
  --bg-3: #251c12;

  /* Bone tones for text */
  --fg: #d4b890;
  --fg-dim: #8b7355;
  --fg-muted: #5a4a36;

  /* Burnt orange accent */
  --accent: #c2410c;
  --accent-2: #e1671d;
  --accent-soft: #a83c0e;
  --danger: #8b1f1f;

  /* Lines, all bone-based */
  --line: rgba(212, 184, 144, 0.12);
  --line-strong: rgba(212, 184, 144, 0.28);

  --f-display: 'TG Transit', 'Arial Narrow', Impact, sans-serif;
  --f-body: 'Space Mono', 'SF Mono', Menlo, Consolas, monospace;
  --f-mono: 'Space Mono', 'SF Mono', Menlo, Consolas, monospace;

  --container: 1440px;
  --pad-x: clamp(20px, 4vw, 60px);
  --radius: 0;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

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

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Noise / Grain ---------- */
.noise {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: .14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/></svg>");
}

/* Halftone dot pattern utility (apply via class) */
.halftone {
  position: relative;
}
.halftone::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--fg) 0.6px, transparent 1.2px);
  background-size: 6px 6px;
  opacity: .08;
  mix-blend-mode: overlay;
}

/* ---------- Marquees ---------- */
.top-marquee, .bottom-marquee {
  background: var(--accent);
  color: var(--fg);
  border-bottom: 2px solid var(--bg);
  overflow: hidden;
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
}
.top-marquee { font-size: 18px; padding: 10px 0; border-bottom: 1px solid var(--bg); }
.bottom-marquee { font-size: clamp(44px, 6.5vw, 90px); padding: 18px 0; border-top: 2px solid var(--bg); border-bottom: 2px solid var(--bg); }
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
  font-family: var(--f-display);
}
.marquee-track > span {
  position: relative;
  padding-right: 40px;
  flex-shrink: 0;
  font-family: var(--f-display);
}
.marquee-track > span::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  opacity: .7;
}
.bottom-marquee .marquee-track { gap: 64px; animation-duration: 60s; }
.bottom-marquee .marquee-track > span { padding-right: 64px; }

/* Seamless loop: the content is duplicated exactly 2x in HTML
   so 50% translation = exactly one set length.
   Animation: 0 → -50% then jumps invisibly to 0 again. */
.marquee-track--reverse { animation-direction: reverse; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px var(--pad-x);
  background: rgba(13, 10, 7, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center;
  height: 42px;
  justify-self: center;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  opacity: .95;
  transition: opacity .2s;
}
.nav-logo:hover img { opacity: 1; }

.nav-links {
  display: flex; align-items: center;
  font-family: var(--f-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-links--left { justify-content: flex-start; gap: 28px; }
.nav-links--right { justify-content: flex-end; gap: 24px; }

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { right: 0; }

.lang-toggle {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .1em;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  text-transform: uppercase;
  transition: border-color .2s, background .2s, color .2s;
  margin-left: 8px;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
.lang-toggle__sep { opacity: .4; margin: 0 4px; }
.lang-toggle__alt { opacity: .5; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px; padding: 8px;
  position: absolute; right: var(--pad-x); top: 50%; transform: translateY(-50%);
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--fg); transition: transform .2s; }

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    padding: 14px var(--pad-x);
    align-items: center;
  }
  .nav-logo {
    grid-column: 2;
    justify-self: center;
    height: 36px;
  }
  .nav-burger {
    display: flex;
    position: static;
    transform: none;
    grid-column: 3;
    justify-self: end;
    z-index: 1002;
    padding: 10px;
    margin: 0 -10px 0 0;
  }
  .nav-burger span { width: 26px; height: 2.5px; }

  /* Default: navs versteckt auf mobile, langtoggle auch */
  .nav-links {
    display: none;
  }

  /* Burger-Menü-Overlay: .nav wird zum Fullscreen-Container */
  .nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 80px var(--pad-x) 40px;
    overflow-y: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
    grid-template-columns: none;
  }
  .nav.is-open .nav-burger {
    position: fixed;
    top: 14px;
    right: var(--pad-x);
    z-index: 1003;
    margin: 0;
  }
  .nav.is-open .nav-logo {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1003;
    height: 36px;
  }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    font-size: clamp(28px, 7vw, 38px);
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: .01em;
    padding: 0;
  }
  .nav.is-open .nav-links--left {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
  }
  .nav.is-open .nav-links a {
    display: block;
    padding: 14px 0;
    width: 100%;
    font-weight: 700;
    transition: color .2s, transform .2s;
    color: var(--fg);
  }
  .nav.is-open .nav-links a:hover,
  .nav.is-open .nav-links a:active {
    color: var(--accent);
    transform: translateX(8px);
  }
  .nav.is-open .nav-links a::after { display: none; }

  .nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
  .nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

  .lang-toggle {
    margin: 24px 0 0;
    align-self: flex-start;
    padding: 14px 22px;
    font-size: 15px;
    border-width: 2px;
    letter-spacing: .15em;
  }

  /* Body lock when menu open */
  body.nav-open { overflow: hidden; }
}

@media (max-width: 1100px) and (max-height: 640px) {
  /* Landscape / kurzes Viewport: kompakter */
  .nav.is-open { padding-top: 68px; padding-bottom: 24px; }
  .nav.is-open .nav-links { font-size: 22px; }
  .nav.is-open .nav-links a { padding: 8px 0; }
  .nav.is-open .nav-links--left { padding-bottom: 14px; margin-bottom: 14px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 2px solid var(--fg);
  background: transparent;
  color: var(--fg);
  transition: background .15s, color .15s, transform .15s, border-color .15s;
  position: relative;
}
.btn:hover { background: var(--fg); color: var(--bg); }
.btn--primary { background: var(--accent); color: var(--fg); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--bg); }
.btn--ghost { background: transparent; }
.btn--xl { padding: 20px 30px; font-size: 15px; }
.btn__arrow { display: inline-block; transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- Section Heads ---------- */
.section-head {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--fg-dim);
}
.section-num {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--fg);
  font-weight: 700;
}
.section-tag::before { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--line-strong); vertical-align: middle; margin-right: 12px; }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: 800;
}
.section-title .accent { color: var(--accent); display: inline-block; }
.section-title span { display: block; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
}
.tag--accent { background: var(--accent); color: var(--fg); border-color: var(--accent); font-weight: 700; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(60px, 8vw, 100px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.08) brightness(.78);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(13,10,7,.6) 80%),
    linear-gradient(180deg, rgba(13,10,7,.55) 0%, rgba(13,10,7,.15) 40%, rgba(13,10,7,.95) 100%);
}

.hero-grid {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}

.hero-title {
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Hero logo */
.hero-logo {
  width: 100%;
  max-width: 880px;
  height: auto;
  display: block;
  opacity: .9;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, .45));
}
.hero-title__sub {
  font-family: var(--f-mono);
  font-size: clamp(12px, 1.3vw, 16px);
  letter-spacing: .22em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.hero-info {
  display: flex; justify-content: center;
  gap: 24px;
  padding-top: 6px;
}
.hero-info__block { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.hero-info__block .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.countdown { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.countdown > span {
  display: inline-flex; flex-direction: column; align-items: center;
  padding-right: 16px;
  border-right: 1px solid var(--line-strong);
}
.countdown > span:last-child { border-right: 0; padding-right: 0; }
.countdown b {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.countdown i {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- MANIFEST ---------- */
.manifest {
  padding: clamp(80px, 10vw, 160px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.manifest-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.manifest-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(.35) saturate(.8) contrast(1.05) brightness(.78);
  opacity: .9;
}
.manifest-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,10,7,.55) 0%, rgba(13,10,7,.22) 30%, rgba(13,10,7,.22) 70%, rgba(13,10,7,.72) 100%);
}
.manifest .container { position: relative; z-index: 1; }
.manifest-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 130px);
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 60px;
}
.manifest-title span { display: block; }
.manifest-title .accent { color: var(--accent); }
.manifest-body {
  max-width: 720px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--fg);
  display: grid; gap: 1em;
}
.manifest-body .manifest-claim {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.2vw, 56px);
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1;
  color: var(--accent-2);
  margin-bottom: .2em;
}

/* ---------- LINE-UP ---------- */
.lineup {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.lineup::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('assets/img/bg-poster.jpg');
  background-position: center;
  background-size: cover;
  opacity: .08;
  pointer-events: none;
  mix-blend-mode: screen;
}
.lineup .container { position: relative; z-index: 1; }
.lineup-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.day {
  border-right: 1px solid var(--line);
  padding: 30px clamp(16px, 2vw, 32px);
}
.day:last-child { border-right: 0; }
.day-head {
  text-align: center;
  border-bottom: 2px solid var(--fg);
  padding-bottom: 14px;
  margin-bottom: 30px;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.day-date {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: .02em;
}
.day-date sup {
  font-size: .55em;
  vertical-align: top;
  position: relative; top: .15em;
  margin-right: 2px;
  letter-spacing: 0;
}
.day-bands { display: grid; gap: 0; text-align: center; list-style: none; }
.band {
  display: block;
  padding: 10px 0;
  transition: color .2s ease, letter-spacing .2s ease;
  position: relative;
  color: var(--fg);
  text-decoration: none;
}
.band:hover { color: var(--accent-2); letter-spacing: .015em; }
.band-name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: 1.05;
  display: block;
}
.band-time {
  display: block;
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.band:hover .band-time { color: var(--accent-2); }
.band--headliner .band-name { font-size: clamp(30px, 3.2vw, 44px); }
.band--coheadliner .band-name { font-size: clamp(26px, 2.7vw, 36px); }
.band--tba .band-name { color: var(--fg-muted); }
.band--tba:hover { color: var(--fg-muted); letter-spacing: .005em; }
.band--late .band-time::before {
  content: '★ ';
  color: var(--accent-2);
}

/* Inline Spotify preview — minimal, fits the rhythm of the line-up list */
.band-player {
  margin: 2px auto 6px;
  max-width: 460px;
  text-align: center;
}
.band-player summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 3px 8px;
  border: 1px solid transparent;
  transition: color .2s, border-color .2s, background .2s;
  list-style: none;
  user-select: none;
  width: fit-content;
  margin: 0 auto;
  opacity: .65;
}
.band-player summary::-webkit-details-marker { display: none; }
.band-player summary::marker { display: none; }
.band-player summary:hover {
  color: var(--accent-2);
  border-color: rgba(194,65,12,.5);
  opacity: 1;
}
.band-player[open] summary {
  color: var(--accent-2);
  border-color: rgba(194,65,12,.5);
  opacity: 1;
  margin-bottom: 8px;
}
.band-player__icon {
  display: inline-block;
  color: var(--accent-2);
  font-size: 7px;
  transform: translateY(-.5px);
  transition: transform .2s;
}
.band-player[open] .band-player__icon { transform: rotate(90deg); }
.band-player__frame {
  margin-top: 4px;
  margin-bottom: 6px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}
.band-player__frame iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #121212;
}

.lineup-foot {
  margin-top: 30px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

@media (max-width: 900px) {
  .lineup-days { grid-template-columns: 1fr; }
  .day { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .day:last-child { border-bottom: 0; }
}

/* ---------- STATS / FACTS CARDS (modern, scattered) ---------- */
.stats {
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stats-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  min-height: 580px;
  gap: 0;
  list-style: none;
  padding: 40px 0;
}
.stat-card {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 24px 50px rgba(0,0,0,.55),
    0 4px 12px rgba(0,0,0,.4);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  overflow: hidden;
  list-style: none;
  /* GPU acceleration for smooth hover */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Modern accent corner */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 4px;
  background: var(--accent);
  z-index: 4;
  transition: width .4s ease;
}
.stat-card:hover::before { width: 100%; }

/* Paper-texture overlay (Hellfest-style aged polaroid) */
.stat-card::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image:
    /* fold/crease lines */
    linear-gradient(118deg, transparent 49.6%, rgba(255, 245, 220, .10) 50%, transparent 50.4%),
    linear-gradient(82deg, transparent 49.4%, rgba(255, 245, 220, .07) 50%, transparent 50.6%),
    linear-gradient(155deg, transparent 49.5%, rgba(255, 245, 220, .06) 50%, transparent 50.5%),
    /* grain */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.93  0 0 0 0 0.78  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23p)' opacity='0.7'/></svg>");
  opacity: .55;
}
/* Inner vignette + worn edges */
.stat-card__inner-shadow {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, .45),
    inset 0 0 18px rgba(0, 0, 0, .4);
}

/* Scattered layout: each card in its own grid cell with strong vertical offset
   Double-class selector wins over .reveal.is-visible specificity.
   Using translate3d to force GPU rendering. */
.stat-card.stat-card--1 {
  grid-column: 1 / span 3;
  transform: translate3d(0, -70px, 0) rotate(-3deg);
}
.stat-card.stat-card--2 {
  grid-column: 4 / span 3;
  transform: translate3d(0, 80px, 0) rotate(2deg);
}
.stat-card.stat-card--3 {
  grid-column: 7 / span 3;
  transform: translate3d(0, -50px, 0) rotate(-1.5deg);
}
.stat-card.stat-card--4 {
  grid-column: 10 / span 3;
  transform: translate3d(0, 100px, 0) rotate(3deg);
}
.stat-card:hover {
  transform: translate3d(0, -10px, 0) rotate(0);
  z-index: 10;
  box-shadow:
    0 36px 70px rgba(0,0,0,.6),
    0 6px 16px rgba(194, 65, 12, .35);
}

.stat-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.3) contrast(1.1) brightness(.55);
  z-index: 0;
  transition: filter .5s ease;
}
.stat-card:hover .stat-card__bg {
  filter: grayscale(0) contrast(1.05) brightness(.7);
}
.stat-card__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,10,7,.15) 0%, rgba(13,10,7,.5) 55%, rgba(13,10,7,.95) 100%);
}
.stat-card__body {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  text-align: left;
  display: flex; flex-direction: column; gap: 4px;
}
.stat-card__big {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .005em;
  color: var(--fg);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.stat-card__small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}
@media (max-width: 900px) {
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    min-height: 0;
  }
  .stat-card { transform: none !important; aspect-ratio: 3/4; grid-column: auto !important; }
  .stat-card--1, .stat-card--3 { transform: translateY(0) rotate(-1deg) !important; }
  .stat-card--2, .stat-card--4 { transform: translateY(20px) rotate(1deg) !important; }
}

/* ---------- TICKETS ---------- */
.tickets {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
/* ----- Ticket Cards (Hellfest-inspired) ----- */
.ticket-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin: 0 0 70px;
  padding: 40px 0 80px;
  list-style: none;
  perspective: 1400px;
}
.ticket-price {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: stretch;
  min-height: clamp(180px, 22vw, 240px);
  background: var(--accent);
  color: var(--bg);
  border: 3px solid var(--bg);
  box-shadow:
    0 24px 50px rgba(0,0,0,.55),
    0 8px 18px rgba(0,0,0,.4),
    inset 0 0 70px rgba(0,0,0,.22);
  transition: transform .5s cubic-bezier(.2,.85,.25,1.05), box-shadow .4s ease, filter .4s ease;
  overflow: hidden;
  will-change: transform;
  cursor: default;
}
.ticket-price--1 { transform: rotate(-3deg); }
.ticket-price--2 { transform: rotate(2.5deg); background: var(--accent-2); }

/* Paper texture overlay — Hellfest-grain on the brand orange */
.ticket-price::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  mix-blend-mode: multiply;
  opacity: .35;
}

/* Stub — gezackte Trennlinie wie bei einem Abriss-Ticket */
.ticket-stub {
  position: relative;
  background: inherit;
  border-right: 3px dashed rgba(13,10,7,.45);
  z-index: 2;
}
.ticket-stub::before,
.ticket-stub::after {
  content: '';
  position: absolute;
  right: -16px;
  width: 28px; height: 28px;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(0,0,0,.0);
}
.ticket-stub::before { top: -16px; }
.ticket-stub::after { bottom: -16px; }

.ticket-body {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px) clamp(22px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.ticket-price__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: .85;
}
.ticket-price__meta > span:first-child {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: .02em;
  opacity: 1;
  line-height: 1;
}
.ticket-price__dates {
  font-variant-numeric: tabular-nums;
}

.ticket-price__value {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  line-height: .9;
  color: var(--bg);
  letter-spacing: -.02em;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.ticket-price__value small {
  font-size: .42em;
  font-weight: 800;
  align-self: flex-start;
  margin-top: .25em;
}

.ticket-price__note {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: .8;
}

/* Diagonal-Stempel */
.ticket-stamp {
  position: absolute;
  top: 22px;
  right: -64px;
  z-index: 5;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 70px;
  transform: rotate(32deg);
  white-space: nowrap;
  box-shadow:
    0 6px 14px rgba(0,0,0,.45),
    inset 0 -2px 0 rgba(255,255,255,.08);
  border-top: 1px solid rgba(212,184,144,.25);
  border-bottom: 1px solid rgba(212,184,144,.25);
}
.ticket-stamp--hot {
  background: var(--danger);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(0,0,0,.3);
  box-shadow:
    0 6px 14px rgba(139,31,31,.6),
    inset 0 -2px 0 rgba(0,0,0,.2);
  animation: stamp-pulse 2.4s ease-in-out infinite;
}
@keyframes stamp-pulse {
  0%, 100% { box-shadow: 0 6px 14px rgba(139,31,31,.55), inset 0 -2px 0 rgba(0,0,0,.2); }
  50% { box-shadow: 0 8px 22px rgba(139,31,31,.85), 0 0 0 4px rgba(139,31,31,.18), inset 0 -2px 0 rgba(0,0,0,.2); }
}
@media (prefers-reduced-motion: reduce) {
  .ticket-stamp--hot { animation: none; }
}

/* Hover: gerade richten, anheben */
@media (hover: hover) {
  .ticket-price:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.025);
    box-shadow:
      0 36px 70px rgba(0,0,0,.7),
      0 14px 28px rgba(194,65,12,.4);
    filter: brightness(1.05);
    z-index: 10;
  }
  .ticket-price:hover .ticket-stamp {
    transform: rotate(28deg) scale(1.05);
    transition: transform .35s cubic-bezier(.2,.85,.25,1.2);
  }
}

/* Reveal-Override: schöner Drop-Effekt für die Tickets */
.ticket-price.reveal { opacity: 0; }
.ticket-price--1.reveal { transform: rotate(-12deg) translateY(60px) scale(.85); }
.ticket-price--2.reveal { transform: rotate(12deg) translateY(60px) scale(.85); }
.ticket-price.reveal.is-visible { opacity: 1; transition: opacity .8s ease, transform .9s cubic-bezier(.2,.85,.25,1.1); }
.ticket-price--1.reveal.is-visible { transform: rotate(-3deg); }
.ticket-price--2.reveal.is-visible { transform: rotate(2.5deg); }

@media (max-width: 760px) {
  .ticket-prices {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 0 60px;
  }
  .ticket-price { min-height: 170px; }
  .ticket-price--1 { transform: rotate(-2deg); }
  .ticket-price--2 { transform: rotate(2deg); }
  .ticket-price--1.reveal.is-visible { transform: rotate(-2deg); }
  .ticket-price--2.reveal.is-visible { transform: rotate(2deg); }
  .ticket-stamp {
    top: 16px;
    right: -54px;
    padding: 6px 60px;
    font-size: 12px;
  }
}

/* ---------- Embed / Consent ---------- */
.embed-frame {
  border: 2px solid var(--fg);
  background: var(--bg);
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.embed-consent {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 30px;
  background:
    repeating-linear-gradient(45deg, rgba(194, 65, 12, .05) 0 10px, transparent 10px 20px),
    var(--bg);
}
.embed-consent.is-hidden { display: none; }
.embed-consent__inner { max-width: 520px; text-align: center; display: grid; gap: 14px; justify-items: center; }
.embed-consent__inner h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.embed-consent__inner p { color: var(--fg-dim); font-size: 14px; }
.embed-consent__inner p a { color: var(--accent); text-decoration: underline; }
.embed-consent__inner .btn { margin-top: 6px; }
.embed-target { min-height: 600px; }
.embed-target iframe { width: 100%; min-height: 600px; border: 0; display: block; background: var(--bg); }
.embed-target--video iframe { aspect-ratio: 16/9; min-height: 0; height: auto; width: 100%; }

/* ---------- LOCATION ---------- */
.location {
  padding: clamp(80px, 10vw, 160px) 0;
  border-bottom: 1px solid var(--line);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}
.address-card {
  border: 2px solid var(--fg);
  padding: 30px;
  margin-bottom: 24px;
}
.address-card__label {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--fg);
  margin-bottom: 16px;
}
.address-card p {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}
.camping-card {
  border: 2px solid var(--accent);
  padding: 24px 26px;
  margin-bottom: 24px;
  background:
    repeating-linear-gradient(135deg, rgba(194,65,12,.06) 0 12px, transparent 12px 24px),
    var(--bg);
}
.camping-card__label {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--fg);
  margin-bottom: 14px;
}
.camping-card__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.15;
}
.camping-card__list { display: grid; gap: 8px; padding: 0; list-style: none; }
.camping-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.camping-card__list li::before {
  content: '→';
  position: absolute; left: 0; top: 0;
  color: var(--accent-2);
}

.travel-list { display: grid; gap: 18px; }
.travel-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
}
.travel-list__icon {
  display: grid; place-items: center;
  font-size: 22px;
  color: var(--accent);
}
.travel-list strong { display: block; margin-bottom: 4px; font-family: var(--f-display); font-size: 20px; text-transform: uppercase; }
.travel-list p { font-size: 14px; color: var(--fg-dim); }

.location-map {
  position: sticky;
  top: 90px;
  align-self: start;
  height: 500px;
  border: 2px solid var(--fg);
  overflow: hidden;
}
.location-map .embed-target {
  position: absolute;
  inset: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
}
.location-map .embed-target iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  display: block;
  filter: sepia(.7) saturate(.6) hue-rotate(-10deg) contrast(1.05) brightness(.92);
}
@media (max-width: 900px) {
  .location-map {
    position: relative;
    top: auto;
    height: clamp(360px, 60vh, 500px);
  }
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.infos {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.faq { border-top: 1px solid var(--line-strong); }
.faq-item {
  border-bottom: 1px solid var(--line-strong);
  transition: background .2s;
}
.faq-item[open] { background: var(--bg-3); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.faq-plus {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--accent);
  transition: transform .25s ease;
  margin-left: 12px;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a { padding: 0 0 24px; max-width: 70ch; color: var(--fg-dim); font-size: 16px; line-height: 1.6; }

/* ---------- GALLERY ---------- */
.gallery {
  padding: clamp(80px, 10vw, 160px) 0;
  border-bottom: 1px solid var(--line);
}
.gallery-video {
  position: relative;
  border: 2px solid var(--fg);
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.gallery-video .embed-consent,
.gallery-video .embed-target { aspect-ratio: 16/9; }
.gallery-video .embed-target { min-height: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  grid-auto-flow: dense;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg-2);
}
.gallery-tile--lg { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
.gallery-tile--md { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(.55) saturate(.85) contrast(1.05) brightness(.95);
  transition: transform .6s ease, filter .35s;
}
.gallery-tile:hover img { transform: scale(1.06); filter: sepia(0) saturate(1) contrast(1.05) brightness(1); }
.gallery-tile::after {
  content: '↗';
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--accent); color: var(--fg);
  opacity: 0; transition: opacity .25s;
  font-weight: 700;
}
.gallery-tile:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile--lg { grid-column: span 2; aspect-ratio: 1/1; }
  .gallery-tile--md { grid-column: span 2; aspect-ratio: 2/1; }
}

/* ---------- AFTERMOVIE ---------- */
.aftermovie {
  padding: clamp(80px, 10vw, 160px) 0;
  border-bottom: 1px solid var(--line);
}
.aftermovie-video {
  border: 2px solid var(--fg);
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 16/9;
  position: relative;
  min-height: 0;
}
.aftermovie-video .embed-consent,
.aftermovie-video .embed-target {
  position: absolute;
  inset: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
}

/* Aftermovie consent — show poster image like a YouTube preview */
.aftermovie-video .embed-consent {
  background:
    linear-gradient(rgba(13,10,7,.55), rgba(13,10,7,.78)),
    url('assets/img/aftermovie-poster.jpg') center/cover no-repeat;
}
.aftermovie-video .embed-consent::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(70px, 9vw, 110px);
  height: clamp(70px, 9vw, 110px);
  border-radius: 50%;
  background: rgba(194, 65, 12, .92);
  border: 3px solid var(--fg);
  box-shadow: 0 12px 30px rgba(0,0,0,.55);
  z-index: 0;
  pointer-events: none;
  transition: transform .25s, background .25s;
}
.aftermovie-video .embed-consent::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(calc(-50% + 5px), -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: clamp(16px, 2vw, 24px) 0 clamp(16px, 2vw, 24px) clamp(26px, 3.2vw, 38px);
  border-color: transparent transparent transparent var(--fg);
  z-index: 1;
  pointer-events: none;
}
.aftermovie-video .embed-consent:hover::before {
  background: var(--accent-2);
  transform: translate(-50%, -50%) scale(1.06);
}
.aftermovie-video .embed-consent__inner {
  position: relative;
  z-index: 2;
  margin-top: clamp(140px, 18vw, 220px); /* push text below the play icon */
  background: rgba(13,10,7,.7);
  padding: 18px 26px;
  border: 1px solid rgba(212,184,144,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 580px;
}
.aftermovie-video .embed-consent__inner h3 {
  font-size: clamp(18px, 1.8vw, 24px);
}
.aftermovie-video .embed-consent__inner p {
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .aftermovie-video .embed-consent__inner {
    margin-top: clamp(110px, 30vw, 160px);
    padding: 14px 18px;
  }
  .aftermovie-video .embed-consent__inner p { font-size: 12px; }
}
.aftermovie-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.aftermovie-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---------- PARTNERS (text only) ---------- */
.partners {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.partners-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
}
.partners-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .005em;
  color: var(--fg);
  text-align: center;
  transition: color .2s ease, letter-spacing .2s ease;
}
.partners-list li:hover { color: var(--accent-2); letter-spacing: .02em; }
.partners-foot {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--fg-dim);
  margin-top: 30px;
}
.partners-foot a { color: var(--accent-2); text-decoration: underline; }
@media (max-width: 760px) {
  .partners-list { grid-template-columns: 1fr; }
}

/* ---------- CREW (kompakt) ---------- */
.crew {
  padding: clamp(50px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--bg);
}
.crew::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('assets/img/bg-poster.jpg');
  background-position: center;
  background-size: cover;
  opacity: .07;
  mix-blend-mode: screen;
  pointer-events: none;
}
.crew .container { position: relative; z-index: 1; }
.crew-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.crew-text { flex: 1; min-width: 280px; }
.crew-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin-bottom: 12px;
  line-height: 1;
}
.crew-body {
  max-width: 640px;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--fg-dim);
}

/* ---------- KONTAKT FORM ---------- */
.contact {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.contact-form {
  max-width: 720px;
  display: grid; gap: 22px;
}
.contact-row {
  display: grid; gap: 8px;
}
.contact-row label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 2px solid var(--line-strong);
  font-family: var(--f-mono);
  font-size: 15px;
  color: var(--fg);
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 140px; font-family: var(--f-body); }
.contact-note {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--fg-muted);
}
.contact-note a { color: var(--accent-2); text-decoration: underline; }

.contact-status {
  font-family: var(--f-mono);
  font-size: 13px;
  padding: 14px 18px;
  border: 2px solid var(--line-strong);
  background: var(--bg);
  letter-spacing: .04em;
}
.contact-status[data-state="success"] {
  border-color: var(--accent);
  color: var(--fg);
  background: rgba(194, 65, 12, .12);
}
.contact-status[data-state="error"] {
  border-color: var(--danger);
  color: var(--fg);
  background: rgba(139, 31, 31, .15);
}
.contact-status[data-state="sending"] {
  border-color: var(--line-strong);
  color: var(--fg-dim);
}
.contact-form.is-sending button[type="submit"] {
  opacity: .6;
  pointer-events: none;
}

/* ---------- INSTAGRAM ---------- */
.instagram {
  padding: clamp(80px, 10vw, 160px) 0;
  border-bottom: 1px solid var(--line);
}
.ig-frame {
  border: 2px solid var(--fg);
  background: var(--bg);
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.ig-frame .embed-target { min-height: 480px; }
.ig-frame .embed-target iframe { width: 100%; min-height: 480px; border: 0; display: block; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg);
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand__logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 18px;
  opacity: .92;
}
.footer-brand p {
  font-family: var(--f-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-dim);
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .005em;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- MOBILE STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: var(--accent);
  color: var(--fg);
  border: 3px solid var(--bg);
  box-shadow:
    0 18px 40px rgba(0,0,0,.55),
    0 4px 12px rgba(194,65,12,.45);
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  animation: stickyPulse 3s ease-in-out infinite;
  transition: transform .15s, background .2s;
}
.sticky-cta:hover,
.sticky-cta:active {
  background: var(--accent-2);
  transform: translateY(-2px);
}
.sticky-cta__arrow {
  font-size: 20px;
  transition: transform .2s;
}
.sticky-cta:hover .sticky-cta__arrow,
.sticky-cta:active .sticky-cta__arrow {
  transform: translateX(4px);
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(0,0,0,.55), 0 4px 12px rgba(194,65,12,.45); }
  50%      { box-shadow: 0 22px 50px rgba(0,0,0,.6), 0 6px 18px rgba(194,65,12,.65); }
}
.sticky-cta.is-hidden { display: none !important; }

/* Show only on mobile/tablet, hide when nav-menu open, hide when at tickets section */
@media (max-width: 900px) {
  .sticky-cta { display: flex; }
  body.nav-open .sticky-cta,
  body.at-tickets .sticky-cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { animation: none; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 150;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  max-width: 720px;
  margin: 0 auto;
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.cookie-banner__text h3 {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin-bottom: 8px;
  color: var(--fg);
}
.cookie-banner__text p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-dim);
}
.cookie-banner__text a {
  color: var(--accent-2);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-banner__actions .btn { font-size: 12px; padding: 10px 16px; }
@media (max-width: 600px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; border-bottom: 0; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(13,10,7,.97);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox-img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--accent); color: var(--fg);
  font-size: 18px; font-weight: 700;
}

/* ---------- i18n ---------- */
[data-lang="de"] [data-i18n][data-lang-text-en]::after { content: none; }
.lang-toggle__alt { transition: opacity .2s; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
