/* =========================================================
   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;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
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); }

/* ---------- Cursor ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .15s ease, height .15s ease, background .15s ease;
  mix-blend-mode: difference;
}
.cursor {
  width: 32px; height: 32px;
  border: 1.5px solid var(--fg);
  border-radius: 50%;
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--fg);
  border-radius: 50%;
}
.cursor.is-hover { width: 64px; height: 64px; background: var(--accent); border-color: var(--accent); }
.cursor.is-hover ~ .cursor-dot { background: var(--fg); }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ---------- 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: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
}
.top-marquee { font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--bg); }
.bottom-marquee { font-size: clamp(40px, 6vw, 80px); 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;
}
.marquee-track > span {
  position: relative;
  padding-right: 40px;
  flex-shrink: 0;
}
.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: auto 1fr auto;
    justify-items: start;
  }
  .nav-logo { justify-self: center; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 30px var(--pad-x);
    gap: 22px;
    transform: translateY(-120%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    font-size: 18px;
    align-items: flex-start;
  }
  .nav-links--right { padding-top: 8px; }
  .nav.is-open .nav-links { transform: translateY(0); }
  .nav-burger { display: flex; position: static; transform: none; }
  .nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .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); }
  .lang-toggle { margin-left: 0; align-self: flex-start; }
}

/* ---------- 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(.5) saturate(.65) contrast(1.1) brightness(.42);
  opacity: .55;
}
.manifest-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,10,7,.78) 0%, rgba(13,10,7,.55) 30%, rgba(13,10,7,.55) 70%, rgba(13,10,7,.92) 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;
  cursor: none;
  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);
}

.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-prices {
  display: flex; gap: 40px;
  flex-wrap: wrap;
  margin: 0 0 50px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.ticket-price {
  display: flex; align-items: baseline; gap: 14px;
  padding: 6px 0;
}
.ticket-price__label {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  min-width: 200px;
}
.ticket-price__value {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-2);
}
.ticket-price__note {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--fg-muted);
}
@media (max-width: 760px) {
  .ticket-prices { gap: 12px; flex-direction: column; }
  .ticket-price__label { min-width: 0; }
}

/* ---------- 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: relative;
  min-height: 500px;
  border: 2px solid var(--fg);
  overflow: hidden;
}
.location-map .embed-target { min-height: 500px; }
.location-map .embed-target iframe {
  min-height: 500px;
  filter: sepia(.7) saturate(.6) hue-rotate(-10deg) contrast(1.05) brightness(.92);
}

@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: none;
  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;
}
.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; }

/* ---------- 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; }
}

/* ---------- 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; }
}
