/* ============================================================
   SILO1 Musik&Kulturlokal — Neon Club Cinematic
   Mobile-first (Basis 390px), Desktop ab 768/1024px
   ============================================================ */

@font-face { font-family: "Anton"; src: url("../fonts/anton-v27-latin-regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("../fonts/space-grotesk-v22-latin-regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("../fonts/space-grotesk-v22-latin-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("../fonts/space-grotesk-v22-latin-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("../fonts/jetbrains-mono-v24-latin-regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("../fonts/jetbrains-mono-v24-latin-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-600.woff2") format("woff2"); font-weight: 600 800; font-display: swap; }

:root {
  --bg: #0a0a0c;
  --bg-blue: #0d1420;
  --panel: #101116;
  --text: #f2f2f0;
  --dim: #9aa3ad;
  --neon: #7fd4ff;
  --neon-deep: #3ea8dc;
  --red: #a83030;
  --red-bright: #c53a3a;
  --cream: #e4cca8;
  --line: rgba(242, 242, 240, 0.14);
  --anton: "Anton", "Arial Narrow", sans-serif;
  --grotesk: "Space Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --topbar-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--grotesk);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--neon); text-decoration: none; }
::selection { background: var(--neon); color: #06121a; }

.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;
}

h1, h2, h3 { line-height: 1.05; font-weight: 400; }
.display {
  font-family: var(--anton);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-title {
  font-family: var(--anton);
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  text-transform: uppercase;
  margin-bottom: 0.4em;
}

.neon-text {
  color: var(--neon);
  text-shadow:
    0 0 6px rgba(127, 212, 255, 0.9),
    0 0 18px rgba(127, 212, 255, 0.55),
    0 0 42px rgba(62, 168, 220, 0.4);
}

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------- FPV-Intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 100;
  background: #000 url("../media/intro-poster.webp") center / cover no-repeat;
  perspective: 900px;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.7s ease;
}
.intro.done { opacity: 0; pointer-events: none; }
.intro video { width: 100%; height: 100%; object-fit: cover; }
.intro-text {
  position: absolute;
  margin: 0;
  font-size: clamp(2.6rem, 9.5vw, 7rem);
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.65),
    0 0 46px rgba(127, 212, 255, 0.35);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}
#it1 { right: 6%; top: 16%; text-align: right; }
#it2 { left: 50%; top: 42%; text-align: center; margin-left: -40vw; width: 80vw; }
#it3 { left: 7%; bottom: 20%; }
.intro-skip {
  position: absolute; right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  min-height: 44px; padding: 0.55rem 1.2rem;
  background: rgba(10, 10, 12, 0.55);
  border: 1px solid rgba(242, 242, 240, 0.35);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.intro-skip:hover { border-color: var(--neon); color: var(--neon); }
body.intro-lock { overflow: hidden; }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: calc(0.6rem + env(safe-area-inset-top, 0px)) 1.1rem 0.6rem;
  background: rgba(10, 10, 12, 0.94);
  border-bottom: 1px solid rgba(242, 242, 240, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.brand {
  font-family: var(--anton);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand span { color: var(--neon); }
.topbar nav { display: none; }
.topbar-right { display: flex; align-items: center; gap: 0.7rem; }
.btn-tickets {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.5rem 1.15rem;
  background: var(--red); color: #fff;
  font-weight: 700; font-size: 0.92rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-tickets:hover { background: var(--red-bright); transform: translateY(-1px); }
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--text); transition: transform 0.25s ease, opacity 0.25s ease; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay-Menü */
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(8, 8, 10, 0.99);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5.5rem 1.6rem 3rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
body.menu-open .menu { opacity: 1; pointer-events: auto; }
.menu a.menu-link {
  font-family: var(--anton);
  font-size: clamp(2.6rem, 11vw, 4.6rem);
  text-transform: uppercase;
  color: var(--text);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(242, 242, 240, 0.08);
}
.menu a.menu-link em { font-style: normal; color: var(--neon); }
.menu .menu-foot { margin-top: 2rem; display: flex; gap: 1.4rem; font-family: var(--mono); font-size: 0.8rem; }
.menu .menu-foot a { color: var(--dim); min-height: 44px; display: inline-flex; align-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: clip;
  padding: calc(var(--topbar-h) + 2rem) 1.2rem 5.5rem;
}
.hero-bg { position: absolute; inset: -8% 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.12) 34%, rgba(10,10,12,0.42) 66%, var(--bg) 97%),
    radial-gradient(120% 60% at 50% 100%, rgba(13, 20, 32, 0.5), transparent 60%);
}
.hero h1 { display: flex; flex-direction: column; gap: 0.9rem; }
.hero .h1-giant {
  font-family: var(--anton);
  font-size: clamp(4.6rem, 24vw, 15rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero .h1-giant .one { color: var(--neon); text-shadow: 0 0 10px rgba(127,212,255,0.85), 0 0 34px rgba(62,168,220,0.5); }
.hero .h1-sub {
  font-family: var(--grotesk);
  font-size: clamp(1rem, 3.6vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
  max-width: 30ch;
  line-height: 1.35;
}
.hero .kicker {
  margin-bottom: 1rem; color: var(--cream);
  display: inline-block; align-self: flex-start;
  background: rgba(10, 10, 12, 0.6);
  padding: 0.35rem 0.65rem; border-radius: 6px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.hero .h1-giant, .hero .h1-sub { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55); }
.panel-cap .kicker { text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 50px; padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-ghost {
  color: var(--neon);
  border: 1.5px solid rgba(127, 212, 255, 0.65);
  box-shadow: inset 0 0 14px rgba(127, 212, 255, 0.12), 0 0 14px rgba(127, 212, 255, 0.12);
}
.btn-ghost:hover { box-shadow: inset 0 0 22px rgba(127,212,255,0.22), 0 0 26px rgba(127,212,255,0.3); transform: translateY(-2px); }
.scroll-hint {
  position: absolute; left: 50%; bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--dim);
}

/* FAB (mobil) */
.fab {
  position: fixed; right: 14px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 50px; padding: 0.7rem 1.3rem;
  background: var(--red); color: #fff;
  font-weight: 700; border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fab.show { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: clip;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-blue);
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--anton);
  font-size: clamp(1.1rem, 4vw, 1.7rem);
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.marquee-track .star { color: var(--red-bright); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Events ---------- */
.events { position: relative; }
.events-banner {
  position: relative;
  height: clamp(300px, 58svh, 560px);
  overflow: clip;
}
.events-banner img { width: 100%; height: 112%; object-fit: cover; object-position: 50% 32%; }
.events-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.55) 0%, transparent 30%, transparent 55%, var(--bg) 96%);
}
.events-list { padding: 1.6rem 1.2rem 3.6rem; max-width: 1060px; margin: 0 auto; }
.countdown {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.6rem;
  border: 1px solid rgba(127, 212, 255, 0.35);
  border-radius: 14px;
  background: rgba(13, 20, 32, 0.85);
  box-shadow: 0 0 30px rgba(62, 168, 220, 0.1);
  padding: 1rem 1.2rem;
  margin-bottom: 1.6rem;
}
.cd-label { font-size: 0.92rem; color: var(--dim); }
.cd-label strong { color: var(--text); }
.cd-timer { display: flex; gap: 1.1rem; margin: 0; }
.cd-timer span {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim);
}
.cd-timer b {
  font-size: 1.5rem; font-weight: 700; color: var(--neon);
  text-shadow: 0 0 12px rgba(127, 212, 255, 0.55);
  font-variant-numeric: tabular-nums;
}
.e-progress { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.45rem; max-width: 300px; }
.e-progress .track { flex: 1; height: 4px; border-radius: 999px; background: rgba(242, 242, 240, 0.14); overflow: hidden; }
.e-progress .bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--red), var(--red-bright)); }
.e-progress span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: #e8918f; white-space: nowrap; }
.events-intro { color: var(--dim); max-width: 52ch; margin-bottom: 1.8rem; }
.event-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  padding: 1.05rem 0.7rem;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  transition: background 0.2s ease;
  align-items: center;
}
.event-row:hover { background: rgba(127, 212, 255, 0.06); }
.e-date {
  grid-row: span 2;
  font-family: var(--mono); font-weight: 700;
  font-size: 0.88rem; line-height: 1.3;
  color: var(--cream);
  border: 1px solid rgba(228, 204, 168, 0.4);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  text-align: center; min-width: 74px;
}
.e-date b { display: block; font-size: 1.25rem; }
.event-row h3 { font-family: var(--grotesk); font-weight: 700; font-size: 1.05rem; line-height: 1.3; }
.e-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-family: var(--mono); font-size: 0.72rem; color: var(--dim); }
.venue-tag {
  display: inline-block; padding: 0.14rem 0.55rem;
  border-radius: 999px; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--text);
}
.venue-tag[data-v="silo1"] { border-color: rgba(197, 58, 58, 0.7); color: #e8918f; }
.venue-tag[data-v="maler"] { border-color: rgba(127, 212, 255, 0.6); color: var(--neon); }
.venue-tag[data-v="schutz"] { border-color: rgba(154, 163, 173, 0.6); color: var(--dim); }
.venue-tag[data-v="fabrik"] { border-color: rgba(228, 204, 168, 0.6); color: var(--cream); }
.e-action { grid-column: 2; justify-self: start; margin-top: 0.3rem; }
.btn-mini {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.45rem 1.15rem;
  border-radius: 999px; font-weight: 700; font-size: 0.85rem;
}
.btn-mini.ticket { background: var(--red); color: #fff; }
.btn-mini.ticket:hover { background: var(--red-bright); }
.btn-mini.reserve { border: 1.5px solid rgba(127, 212, 255, 0.65); color: var(--neon); }
.btn-mini.reserve:hover { box-shadow: 0 0 18px rgba(127, 212, 255, 0.25); }
.soldout {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0.45rem 1.15rem;
  border-radius: 999px; font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(197, 58, 58, 0.16); color: #e8918f;
}
.events-more { margin-top: 1.6rem; text-align: center; }

/* ---------- Freibier-Loop ---------- */
.freibier { position: relative; padding: 4.5rem 1.2rem 4rem; overflow: clip; }
.freibier-bg { position: absolute; inset: -8% 0; z-index: -2; }
.freibier-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.freibier::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10,10,12,0.82) 18%, rgba(10,10,12,0.86) 82%, var(--bg) 100%);
}
.freibier-inner { max-width: 1060px; margin: 0 auto; }
.freibier .lead { max-width: 54ch; color: var(--text); font-size: 1.05rem; margin-bottom: 2.2rem; }
.steps { display: grid; gap: 1rem; margin-bottom: 2.6rem; }
.step {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 17, 22, 0.82);
  padding: 1.2rem 1.2rem 1.3rem;
}
.step .n {
  font-family: var(--anton);
  font-size: 2.6rem;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(127, 212, 255, 0.6);
  line-height: 1;
}
.step h3 { font-weight: 700; font-size: 1.06rem; margin: 0.55rem 0 0.3rem; }
.step p { color: var(--dim); font-size: 0.94rem; }

.upload-card {
  border: 1px solid rgba(127, 212, 255, 0.35);
  border-radius: 18px;
  background: rgba(13, 20, 32, 0.9);
  box-shadow: 0 0 40px rgba(62, 168, 220, 0.12);
  padding: 1.4rem 1.2rem 1.5rem;
  max-width: 640px;
}
.upload-card h3 { font-family: var(--anton); font-size: 1.6rem; text-transform: uppercase; margin-bottom: 1rem; }
.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  border: 1.5px dashed rgba(127, 212, 255, 0.55);
  border-radius: 12px;
  padding: 1.6rem 1rem;
  text-align: center;
  cursor: pointer;
  color: var(--neon);
  font-weight: 500;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.dropzone:hover, .dropzone.drag { background: rgba(127, 212, 255, 0.07); box-shadow: inset 0 0 24px rgba(127, 212, 255, 0.1); }
.dropzone small { color: var(--dim); font-family: var(--mono); font-size: 0.7rem; }
.dropzone input { display: none; }
.field { margin-top: 0.95rem; }
.field label { display: block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 0.3rem; }
.field input[type="text"], .field input[type="email"] {
  width: 100%; min-height: 48px;
  background: rgba(10, 10, 12, 0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--grotesk); font-size: 1rem;
  padding: 0.6rem 0.9rem;
}
.field input:focus { outline: 2px solid var(--neon); outline-offset: 1px; border-color: transparent; }
.insta-wrap { position: relative; }
.insta-wrap::before {
  content: "@"; position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%);
  color: var(--neon); font-weight: 700;
}
.insta-wrap input { padding-left: 2.1rem; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; margin-top: 1.1rem; font-size: 0.85rem; color: var(--dim); }
.consent input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--neon); flex: none; }
.upload-card .btn-primary { width: 100%; margin-top: 1.2rem; }
.form-hint { display: none; margin-top: 0.9rem; font-size: 0.88rem; color: var(--cream); }
.form-hint.show { display: block; }

/* ---------- Letzte Nächte (Insta-Grid) ---------- */
.naechte { padding: 4.5rem 1.2rem 3.5rem; }
.naechte-inner { max-width: 1060px; margin: 0 auto; }
.naechte .kicker a { color: var(--neon); }
.naechte-sub { color: var(--dim); max-width: 48ch; margin-bottom: 1.6rem; }
.naechte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.naechte-grid .tile {
  position: relative; display: block; overflow: hidden;
  border-radius: 12px; aspect-ratio: 1 / 1;
}
.naechte-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.naechte-grid .tile:hover img { transform: scale(1.05); }
.naechte-grid .tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(10, 10, 12, 0.45));
  opacity: 0; transition: opacity 0.3s ease;
}
.naechte-grid .tile:hover::after { opacity: 1; }

/* ---------- Bereiche (Panel-Deck) ---------- */
.bereiche { position: relative; padding-top: 4rem; }
.bereiche .head { padding: 0 1.2rem; max-width: 1060px; margin: 0 auto 1.6rem; }
.deck { position: relative; }
.panel { position: relative; min-height: 86svh; overflow: clip; display: flex; align-items: flex-end; }
.panel-bg { position: absolute; inset: 0; z-index: -1; }
.panel-bg img { width: 100%; height: 100%; object-fit: cover; }
.panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.28) 0%, rgba(10,10,12,0.06) 45%, rgba(10,10,12,0.82) 100%);
}
.panel-cap { position: relative; padding: 1.6rem 1.2rem 2.2rem; max-width: 620px; }
.panel-cap .kicker { color: var(--neon); margin-bottom: 0.3rem; }
.panel-cap h3 { font-family: var(--anton); font-size: clamp(2.2rem, 9vw, 4rem); text-transform: uppercase; }
.panel-cap .tagline { font-weight: 700; color: var(--cream); margin: 0.35rem 0 0.5rem; }
.panel-cap p { color: rgba(242, 242, 240, 0.85); font-size: 0.96rem; max-width: 46ch; }
.panel-cap .btn-mini { margin-top: 0.9rem; }

/* ---------- Story ---------- */
.story { padding: 4.5rem 1.2rem 3.5rem; max-width: 1060px; margin: 0 auto; }
.story-grid { display: grid; gap: 2rem; }
.story-text p { color: var(--dim); margin-bottom: 1rem; max-width: 58ch; }
.story-text p strong { color: var(--text); }
.story-img { border-radius: 16px; overflow: clip; max-height: 520px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.counters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 2.4rem; }
.count-item { border-top: 2px solid var(--red); padding-top: 0.6rem; }
.count-item .num { font-family: var(--mono); font-weight: 700; font-size: clamp(1.9rem, 7vw, 2.8rem); color: var(--text); }
.count-item .lbl { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }

/* ---------- Anfahrt ---------- */
.anfahrt { padding: 3.5rem 1.2rem; max-width: 1060px; margin: 0 auto; }
.anfahrt-grid { display: grid; gap: 1.6rem; }
.addr-block { font-size: 1.02rem; }
.addr-block .adr { font-family: var(--mono); font-size: 0.92rem; color: var(--cream); line-height: 1.8; margin: 0.8rem 0; font-style: normal; }
.maps-consent {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: clip;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(80% 80% at 50% 20%, rgba(62, 168, 220, 0.14), transparent),
    var(--bg-blue);
}
.maps-consent .inner { text-align: center; padding: 1.6rem; max-width: 40ch; }
.maps-consent .inner p { font-size: 0.85rem; color: var(--dim); margin: 0.6rem 0 1rem; }
.maps-consent iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Kontakt ---------- */
.kontakt {
  position: relative;
  padding: 5rem 1.2rem 4rem;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(62, 168, 220, 0.12), transparent 70%),
    var(--bg-blue);
  border-top: 1px solid var(--line);
}
.kontakt-inner { max-width: 1060px; margin: 0 auto; display: grid; gap: 2.4rem; }
.kontakt .mail-cta {
  font-family: var(--anton);
  font-size: clamp(1.6rem, 7.4vw, 3.6rem);
  text-transform: lowercase;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(127, 212, 255, 0.7), 0 0 30px rgba(62, 168, 220, 0.4);
  word-break: break-all;
}
.kontakt-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }
.reviews { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: var(--dim); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 19px; height: 19px; fill: var(--cream); }
.stars .half { opacity: 0.45; }
.qr-box { display: none; }

/* ---------- Footer ---------- */
footer.site-footer {
  padding: 2.6rem 1.2rem calc(2rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  font-size: 0.88rem; color: var(--dim);
}
.footer-grid { max-width: 1060px; margin: 0 auto; display: grid; gap: 1.4rem; }
.footer-grid .f-brand { font-family: var(--anton); font-size: 1.4rem; color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a { color: var(--dim); min-height: 44px; display: inline-flex; align-items: center; }
.footer-links a:hover { color: var(--neon); }
.tablog-credit { font-size: 0.8rem; }
.tablog-credit a { color: #1e6fa7; font-weight: 600; }
.tablog-credit a:hover { color: #f99c00; }

/* ---------- TabLog-Pitch (Demo-Abschnitt) ---------- */
.tablog-pitch {
  background: #0B1624;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  padding: 4rem 1.2rem 4.4rem;
  border-top: 3px solid #1e6fa7;
}
.tablog-pitch .inner { max-width: 760px; margin: 0 auto; text-align: center; }
.tablog-pitch .wordmark { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.6rem; }
.tablog-pitch .wordmark .log { color: #4D9FD6; }
.tablog-pitch h2 { font-family: "Inter", system-ui, sans-serif; font-weight: 700; font-size: clamp(1.6rem, 5.5vw, 2.4rem); letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.tablog-pitch p { color: #CBD5E1; max-width: 58ch; margin: 0 auto 1.8rem; font-size: 1.02rem; line-height: 1.65; }
.pitch-checks {
  list-style: none;
  display: grid; grid-template-columns: 1fr;
  gap: 0.45rem 2.2rem;
  text-align: left;
  max-width: 640px;
  margin: 0 auto 1.9rem;
  padding: 0;
}
.pitch-checks li {
  position: relative;
  padding-left: 1.6rem;
  color: #CBD5E1; font-size: 0.94rem;
}
.pitch-checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: #4D9FD6; font-weight: 700;
}
.tablog-pitch .btn-tablog {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0.8rem 2rem;
  background: #1e6fa7; color: #fff;
  font-weight: 600; font-size: 1.05rem;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tablog-pitch .btn-tablog:hover { background: #f99c00; transform: translateY(-2px); }
.tablog-pitch .demo-note { font-size: 0.78rem; color: #64748B; margin: 1.4rem auto 0; }

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
html.reduced-motion .reveal { opacity: 1; transform: none; }

/* ============================================================
   Tablet / Desktop
   ============================================================ */
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .naechte-grid { grid-template-columns: repeat(4, 1fr); }
  .naechte-grid .tile.big { grid-column: span 2; grid-row: span 2; }
  .countdown { padding: 1.1rem 1.6rem; }
  .cd-timer { margin-left: auto; }
  .pitch-checks { grid-template-columns: 1fr 1fr; }
  .counters { grid-template-columns: repeat(4, 1fr); }
  .story-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
  .anfahrt-grid { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
  .event-row { grid-template-columns: auto 1fr auto; }
  .e-action { grid-column: auto; margin: 0; justify-self: end; }
  .events-list { padding: 2.2rem 2rem 4.5rem; }
}

@media (min-width: 1024px) {
  :root { --topbar-h: 72px; }
  .topbar { padding-left: 2.2rem; padding-right: 2.2rem; }
  .topbar nav { display: flex; gap: 1.8rem; }
  .topbar nav a {
    color: var(--dim); font-weight: 500; font-size: 0.95rem;
    min-height: 44px; display: inline-flex; align-items: center;
    transition: color 0.2s ease;
  }
  .topbar nav a:hover { color: var(--neon); }
  .burger { display: none; }
  .fab { display: none; }
  .hero { padding: calc(var(--topbar-h) + 2rem) 3rem 6rem; }
  .freibier { padding: 6.5rem 3rem; }
  .upload-card { padding: 2rem 2.2rem 2.2rem; }
  .story, .anfahrt { padding-left: 2rem; padding-right: 2rem; }
  .bereiche .head { padding: 0 2rem; }

  /* Panel-Deck: Bühne wird gepinnt, Panels schieben von unten nach */
  .deck { height: 100svh; overflow: clip; }
  .deck .panel { position: absolute; inset: 0; min-height: 0; }
  .deck .panel:not(:first-child) { transform: translateY(103%); }
  .panel-cap { padding: 0 3rem 4rem; }

  .kontakt-inner { grid-template-columns: 1.3fr 0.7fr; align-items: center; }
  .qr-box {
    display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
    background: #f5f2ec; border-radius: 18px; padding: 1.6rem;
    justify-self: end;
  }
  .qr-box img { width: 190px; height: 190px; }
  .qr-box figcaption { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #333; }
  .footer-grid { grid-template-columns: 1fr auto auto; align-items: center; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
html.reduced-motion .marquee-track { animation: none; }
html.reduced-motion .deck { height: auto; }
html.reduced-motion .deck .panel { position: relative; transform: none !important; min-height: 70svh; }
