/* ============================================================
   NOXQS Friday — Designsystem
   Dark Theme · Rot #E51D2E · Bebas Neue + Inter · Film-Grain
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --black: #0B0B0C;
  --anthracite: #141416;
  --surface: #141416;
  --offwhite: #FAFAF7;
  --muted: #9A9A9A;
  --red: #E51D2E;
  --red-dim: #B31624;
  --border: #232325;

  --maxw: 1200px;
  --maxw-wide: 1440px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-dur: 0.7s;

  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
/* Icons dürfen in Flex-Containern nicht auf 0 schrumpfen (sonst kollabiert z. B. der mobile Menü-Button). */
.icon { flex-shrink: 0; }

/* ---- Sprachumschalter (DE/EN, optional 4-sprachig via data-lang-switch="de,en,tr,es") ---- */
.lang-switch { display: inline-flex; gap: 2px; padding: 2px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,0.04); flex-shrink: 0; }
.lang-switch__btn { font: inherit; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1; color: var(--muted); background: transparent; border: 0; border-radius: 999px; padding: 0.32rem 0.55rem; cursor: pointer; transition: background 0.15s, color 0.15s; }
.lang-switch__btn:hover { color: var(--offwhite); }
.lang-switch__btn.is-active { background: var(--red); color: #fff; }
/* Mehr als 2 Sprachen (z.B. charity.html DE|EN|TR|ES): etwas kompakter, damit die Desktop-Nav nicht überläuft */
.lang-switch--compact .lang-switch__btn { padding: 0.32rem 0.42rem; }
.nav__links:has(.lang-switch--compact) { gap: 1.35rem; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input { font-family: inherit; }

/* hidden-Attribut muss display-Regeln (z. B. .dash{display:flex}) schlagen */
[hidden] { display: none !important; }

::selection { background: var(--red); color: var(--offwhite); }

/* ---------- Film-Grain Overlay ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ---------- Typografie-Helfer ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--red);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
}

.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.wrap--wide { max-width: var(--maxw-wide); }
.wrap--narrow { max-width: 760px; }
.wrap--mid { max-width: 960px; }

.section { padding-block: 6rem; }
.section--alt { background: var(--anthracite); }

.section-head { margin-bottom: 3.5rem; }
.section-head--center { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.divider {
  height: 1px;
  background: var(--border);
  max-width: var(--maxw-mid, 1000px);
  margin-inline: auto;
  opacity: 0.4;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 1rem 2rem;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.12s var(--ease), border-color 0.2s var(--ease);
  border: 1px solid transparent;
}
.btn--red { background: var(--red); color: var(--offwhite); }
.btn--red:hover { background: var(--red-dim); transform: translateY(-2px); }
.btn--outline { border-color: var(--red); color: var(--red); }
.btn--outline:hover { background: var(--red); color: var(--offwhite); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.7rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- Scroll Reveal (Progressive Enhancement) ----------
   Ohne JS (kein .js auf <html>) bleibt der Inhalt sichtbar.
   Erst mit JS wird der Startzustand versteckt und per Observer eingeblendet. */
.reveal {
  transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease);
  will-change: opacity, transform;
}
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--border);
}
.nav__inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  transition: color 0.2s;
}
.nav__logo:hover { color: var(--red); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--offwhite); }
.nav__burger { display: none; padding: 0.5rem; color: var(--offwhite); }
.nav__mobile { display: none; }

/* Mobile menu open */
.nav__mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}
.nav__mobile .nav__link { font-size: 0.85rem; }

/* Sticky bottom CTA (mobile) */
.sticky-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-block: 6rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(229, 29, 46, 0.22), transparent 55%),
    radial-gradient(90% 70% at 80% 90%, rgba(229, 29, 46, 0.12), transparent 60%),
    linear-gradient(180deg, #161013 0%, var(--black) 70%);
}
.hero__bg::before {
  /* optionales Foto: assets/img/hero.jpg drüberlegen */
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 12, 0.6) 80%, var(--black) 100%);
}
.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 1.1em;
  transition: opacity 0.5s var(--ease);
  margin-top: 1rem;
}
.hero__title.is-fading { opacity: 0; }
.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 38rem;
  margin: 1.5rem auto 0;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__meta .sep { opacity: 0.3; }
.hero__cta { margin-top: 3rem; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 4rem;
}
.countdown__item { display: flex; flex-direction: column; align-items: center; }
.countdown__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  z-index: 2;
  animation: bob 1.8s infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   MANIFEST
   ============================================================ */
.manifest { text-align: center; }
.manifest__quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: none;
  margin-top: 2rem;
}
.manifest__text {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 44rem;
  margin: 2rem auto 0;
}

/* ============================================================
   PILLARS / HIGHLIGHTS GRID
   ============================================================ */
.grid-3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  border: 1px solid var(--border);
  background: var(--black);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  overflow: hidden;
}
.pillar:hover { border-color: var(--red); transform: translateY(-4px); }
/* Foto-Header der Event-Karten: läuft randlos bis an die Kartenkante */
.pillar__photo {
  display: block;
  width: calc(100% + 4rem);
  max-width: none; /* globales img-max-width aufheben, sonst kein Rand-Bleed */
  height: 190px;
  object-fit: cover;
  margin: -2.5rem -2rem 1.75rem;
  border-bottom: 1px solid var(--border);
  filter: saturate(0.95);
  transition: filter 0.3s var(--ease), transform 0.4s var(--ease);
}
.pillar:hover .pillar__photo { filter: saturate(1.05); transform: scale(1.02); }

/* ============================================================
   SPLIT (Text + Bild Zweispalter, z.B. Konzept/Ausstattung)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media--tall { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 4 / 3; }

/* ============================================================
   EVENT-KALENDER (Termine 2026)
   ============================================================ */
.cal-lead { text-align: center; color: var(--muted); font-size: 0.9rem; margin: 0 auto 2.5rem; max-width: 46rem; }
.cal-lead strong { color: var(--offwhite); }
.cal-list { display: flex; flex-direction: column; gap: 0.85rem; max-width: 60rem; margin: 0 auto; }
.cal-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 1.4rem;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--black);
  padding: 1.15rem 1.4rem;
  text-decoration: none;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
a.cal-item:hover { border-color: var(--red); transform: translateX(5px); }
.cal-item--soon { border-style: dashed; }
.cal-item--highlight {
  border-color: rgba(229, 29, 46, 0.55);
  background: radial-gradient(120% 140% at 0% 0%, rgba(229, 29, 46, 0.14), transparent 60%), var(--black);
}
.cal-item__date {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 1.2rem;
  line-height: 1;
}
.cal-item__day { font-family: var(--font-display); font-size: 2.4rem; color: var(--offwhite); display: block; }
.cal-item__mon { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); display: block; margin-top: 0.3rem; }
.cal-item__body { min-width: 0; }
.cal-item__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.45rem; }
.cal-tag {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 0.16rem 0.55rem; line-height: 1.4;
}
.cal-tag--accent { color: #fff; background: var(--red); border-color: var(--red); }
.cal-item__title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--offwhite); margin: 0 0 0.25rem; }
.cal-item__desc { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.55; }
.cal-item__cta { color: var(--red); font-size: 1.3rem; flex-shrink: 0; }

/* ---- Partner-Wall (Logo-Kacheln, eckige Ecken, zentriert) ---- */
.partner-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; max-width: 56rem; margin: 0 auto; }
.partner {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 clamp(120px, calc(33.333% - 0.667rem), 260px); box-sizing: border-box;
  background: #fff; border: 1px solid var(--border); border-radius: 0;
  padding: 1.5rem 1.2rem; min-height: 110px; text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.partner:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45); }
.partner img { height: 56px; width: auto; max-width: 80%; object-fit: contain; display: block; margin: 0 auto; }
@media (max-width: 640px) { .partner { flex: 0 0 calc(50% - 0.5rem); padding: 1.2rem 0.8rem; min-height: 90px; } }

/* ============================================================
   ABC · AFTER BUSINESS CLUB (Unterseite)
   ============================================================ */
.abc-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.abc-pill { border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem 0.95rem; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--muted); }

/* WineTime: Text + vertikales Recap-Video */
.abc-winetime { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: center; }
.abc-wt__list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.abc-wt__list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.7rem; color: var(--offwhite); font-size: 0.95rem; }
.abc-wt__list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.abc-video { position: relative; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: #000; box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
.abc-video video { width: 100%; height: auto; display: block; }
.abc-video__cap { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(229,29,46,0.92); color: #fff; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 999px; pointer-events: none; }
@media (max-width: 880px) { .abc-winetime { grid-template-columns: 1fr; gap: 2rem; } .abc-video { max-width: 320px; margin: 0 auto; } }

/* Vergangene Events – Karten mit Cover */
.abc-events { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem; }
.abc-ev { border: 1px solid var(--border); background: var(--black); border-radius: 14px; overflow: hidden; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.abc-ev:hover { border-color: var(--red); transform: translateY(-4px); }
.abc-ev__img { width: 100%; height: 178px; object-fit: cover; display: block; filter: saturate(0.95); }
.abc-ev__b { padding: 1.05rem 1.25rem 1.3rem; }
.abc-ev__date { color: var(--red); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.abc-ev__t { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.04em; text-transform: uppercase; margin: 0.3rem 0 0.45rem; color: var(--offwhite); line-height: 1.05; }
.abc-ev__d { font-size: 0.84rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* Galerien je Party */
.abc-galblock { margin-bottom: 2.75rem; }
.abc-galhead { display: flex; align-items: baseline; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1rem; }
.abc-galhead h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase; margin: 0; color: var(--offwhite); }
.abc-galhead span { color: var(--red); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
.abc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 0.6rem; }
.abc-shot { display: block; position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 1 / 1; cursor: pointer; border: 0; padding: 0; background: var(--anthracite); }
.abc-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.abc-shot:hover img { transform: scale(1.07); }
.abc-shot::after { content: '⤢'; position: absolute; right: 8px; bottom: 6px; color: #fff; font-size: 0.85rem; opacity: 0; transition: opacity 0.25s; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
.abc-shot:hover::after { opacity: 0.9; }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.94); display: flex; align-items: center; justify-content: center; }
.lb[hidden] { display: none; }
.lb__img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lb__btn { position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lb__btn:hover { background: var(--red); border-color: var(--red); }
.lb__close { top: 20px; right: 20px; }
.lb__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: 0.8rem; letter-spacing: 0.1em; }
@media (max-width: 640px) { .lb__prev { left: 8px; } .lb__next { right: 8px; } .lb__btn { width: 42px; height: 42px; } }
@media (max-width: 640px) {
  .cal-item { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1rem; }
  .cal-item__date { padding-right: 0.8rem; }
  .cal-item__day { font-size: 1.9rem; }
  .cal-item__cta { display: none; }
  .cal-item__title { font-size: 1.25rem; }
}
.pillar__icon { color: var(--red); margin-bottom: 1.5rem; }
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pillar__body { color: var(--muted); font-size: 0.9rem; }

/* Highlights — 4er Grid mit 1px-Linien */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.highlight {
  background: var(--black);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background-color 0.3s var(--ease);
}
.highlight:hover { background: #100f10; }
.highlight__icon { color: var(--red); }
.highlight__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.highlight__body { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   TIMELINE / PROGRAMM
   ============================================================ */
.timeline { position: relative; }
.timeline__item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 2rem;
}
.timeline__time {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding-top: 0.1rem;
}
.timeline__body {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 2.5rem;
  border-left: 1px solid var(--border);
}
.timeline__item:last-child .timeline__body { border-left-color: transparent; }
.timeline__body::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--black);
}
.timeline__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.timeline__desc { color: var(--muted); font-size: 0.88rem; }
.timeline__cta { margin-top: 1.25rem; }
.timeline__more { margin-top: 2rem; text-align: right; }

/* ============================================================
   MONATS-SPECIAL
   ============================================================ */
.special__card {
  background: var(--black);
  border: 1px solid rgba(229, 29, 46, 0.3);
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}
.special__media {
  width: 18rem;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(229,29,46,0.35), transparent 60%),
    linear-gradient(135deg, #1c1417, #0b0b0c);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.special__body { flex: 1; }
.badge {
  display: inline-block;
  border: 1px solid rgba(229, 29, 46, 0.4);
  color: var(--red);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}
.special__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.special__text { color: var(--muted); font-size: 0.92rem; max-width: 34rem; margin-bottom: 2rem; }
.special__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ============================================================
   TICKETS
   ============================================================ */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin-inline: auto;
}
.ticket-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--black);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ticket-card--featured { border-color: var(--red); background: var(--anthracite); }
.ticket-card:hover { transform: translateY(-4px); }
.ticket-card__flag {
  position: absolute;
  top: 0;
  right: 1.5rem;
  transform: translateY(-50%);
  background: var(--red);
  color: var(--offwhite);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}
.ticket-card__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.ticket-card--featured .ticket-card__name { color: var(--red); }
.ticket-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ticket-card--featured .ticket-card__price { color: var(--red); }
.ticket-card__note { color: var(--muted); font-size: 0.8rem; margin-bottom: 1.75rem; }
.ticket-card__features { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.ticket-card__features li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.88rem;
}
.ticket-card__features svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.tickets-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  max-width: 40rem;
  margin: 2.5rem auto 0;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.map-embed {
  height: 22.5rem; /* 360px */
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.map-route-link {
  display: inline-block;
  margin-top: 0.625rem;
  font-size: 0.78rem;
  color: #E51D2E;
  text-decoration: none;
  letter-spacing: 0.06em;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.map-route-link:hover { opacity: 1; text-decoration: underline; }
.location__photo {
  position: relative;
  overflow: hidden;
  height: 18rem;
  border: 1px solid var(--border);
  background: #0D1017;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
/* echtes Foto im Location-Kasten; Label bleibt lesbar darüber */
.location__photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.location__photo span { position: relative; z-index: 1; color: var(--offwhite); text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
.location__logo-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 2.5rem; }
.location__bmslogo { max-width: 80%; max-height: 65%; width: auto; height: auto; object-fit: contain; display: block; }
/* Galerie – 7 Fotos: 3 Querformat + 4 Hochkant – GLightbox */
.loc-gallery { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.loc-gallery__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.loc-gallery__row--port4 { grid-template-columns: repeat(4, 1fr); }
.loc-gallery__item { overflow: hidden; border: 1px solid var(--border); border-radius: 6px; box-shadow: 0 2px 12px rgba(0,0,0,.45); transition: box-shadow .3s ease, transform .3s ease; }
.loc-gallery__item:hover { box-shadow: 0 6px 24px rgba(229,29,46,.25); transform: translateY(-2px); }
.loc-gallery__item--land { aspect-ratio: 4/3; }
.loc-gallery__item--port { height: 200px; }
.loc-gallery__item a { display: block; width: 100%; height: 100%; }
.loc-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease, opacity .35s ease; }
.loc-gallery__item:hover img { transform: scale(1.05); opacity: .9; }
/* GLightbox dark skin overrides — NOXQS red accents */
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev { background: rgba(13,16,23,.85); border: 1px solid rgba(229,29,46,.4); }
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover,
.glightbox-clean .gclose:hover { background: #E51D2E; border-color: #E51D2E; }
@media (max-width: 700px) {
  .loc-gallery__row { grid-template-columns: 1fr; }
  .loc-gallery__row--port4 { grid-template-columns: repeat(2, 1fr); }
  .loc-gallery__item--land { aspect-ratio: 4/3; }
  .loc-gallery__item--port { height: 160px; }
  .loc-videos { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .loc-gallery__row { grid-template-columns: 1fr; gap: .5rem; }
  .loc-gallery__row--port4 { grid-template-columns: 1fr; }
}
/* Video-Grid in Location */
.loc-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-top: .75rem;
}
.loc-video__item {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.loc-video__item video {
  width: 100%;
  height: auto;
  display: block;
}
.loc-video__label {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  padding: .4rem .75rem .5rem;
  letter-spacing: .02em;
}
.address { font-style: normal; line-height: 1.7; margin-top: 1.5rem; }
.location__meta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.meta-row dt { color: var(--muted); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; }
.meta-row dd { font-size: 0.78rem; min-width: 0; overflow-wrap: anywhere; word-break: break-word; text-align: right; }

/* ============================================================
   ÜBER / PILLS
   ============================================================ */
.about { text-align: center; }
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.about__text { color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem); max-width: 40rem; margin: 0 auto 1.25rem; }
.pills { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 3rem; }
.pill {
  border: 1px solid rgba(229, 29, 46, 0.4);
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
}
.about__highlight { color: var(--offwhite); font-weight: 600; }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.accordion { border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.4rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}
.accordion__trigger:hover { color: var(--red); }
.accordion__icon { color: var(--red); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.accordion__panel-inner { padding-bottom: 1.5rem; color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   NEWSLETTER / FORMS
   ============================================================ */
.newsletter { text-align: center; }
.field {
  width: 100%;
  background: var(--anthracite);
  border: 1px solid var(--border);
  color: var(--offwhite);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.field::placeholder { color: var(--muted); }
.field:focus { outline: none; border-color: var(--red); }
.field--error { border-color: var(--red); }
.form-error { color: var(--red); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.4rem; text-align: left; }
.form-note { color: var(--muted); font-size: 0.65rem; letter-spacing: 0.05em; margin-top: 1rem; }
.form-note a { text-decoration: underline; }
.form-note a:hover { color: var(--red); }
.form-msg { font-size: 0.85rem; margin-top: 1rem; }
.form-msg--ok { color: #4ade80; }
.form-msg--err { color: var(--red); }
.honeypot { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding-block: 3rem; }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer__logo { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.18em; }
.footer__tag { color: var(--muted); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0.4rem; }
.footer__social { display: flex; gap: 1.25rem; }
.footer__social a { color: var(--muted); transition: color 0.2s; }
.footer__social a:hover { color: var(--red); }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; }
.footer__legal a:hover { color: var(--offwhite); }
.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.footer__bottom p { color: var(--muted); font-size: 0.72rem; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.page { padding-top: 6rem; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.back-link:hover { color: var(--red); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.checkout-grid * { min-width: 0; }
.field-group { margin-bottom: 3rem; }
.field-label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ticket-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--black);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.ticket-option:hover { border-color: rgba(229, 29, 46, 0.4); }
.ticket-option.is-selected { border-color: var(--red); background: var(--anthracite); }
.ticket-option__name { font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.ticket-option__flag { color: var(--red); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.ticket-option__desc { color: var(--muted); font-size: 0.72rem; margin-top: 0.25rem; }
.ticket-option__price { color: var(--red); font-weight: 700; font-variant-numeric: tabular-nums; }
.ticket-option.is-soldout { opacity: 0.45; pointer-events: none; }

.qty { display: flex; align-items: center; gap: 1rem; }
.qty__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.qty__btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.qty__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.qty__value { font-family: var(--font-display); font-size: 1.5rem; width: 2rem; text-align: center; }

.field-stack > * + * { margin-top: 1rem; }
.promo-toggle { color: var(--muted); font-size: 0.72rem; text-decoration: underline; text-underline-offset: 4px; margin-top: 1.5rem; transition: color 0.2s; }
.promo-toggle:hover { color: var(--red); }
.promo-row { display: flex; gap: 0.5rem; margin-top: 1rem; }
.promo-row .field { max-width: 220px; }

.summary {
  position: sticky;
  top: 6rem;
  background: var(--anthracite);
  border: 1px solid var(--border);
  padding: 2rem;
}
.summary__title { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem; }
.summary__line { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.75rem; }
.summary__line .muted { color: var(--muted); }
.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  padding-top: 1rem;
}
.summary__total span:first-child { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.summary__total span:last-child { font-family: var(--font-display); font-size: 2rem; color: var(--red); }
.summary__secure { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.72rem; margin-top: 1.5rem; }
.summary__secure svg { color: var(--red); }
.summary__fineprint { color: var(--muted); font-size: 0.65rem; text-align: center; margin-top: 1rem; opacity: 0.7; }
.summary__recap { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; }
.summary__recap .meta-row { border: none; padding: 0; }

/* ============================================================
   CHECKOUT WIZARD (Stepper, Schritte, Ticket-Auswahl)
   ============================================================ */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 3rem;
  max-width: 540px;
}
.stepper__step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}
.stepper__num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.stepper__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stepper__bar {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 0.75rem;
  min-width: 1.5rem;
}
.stepper__step.is-active .stepper__num { background: var(--red); border-color: var(--red); color: #fff; }
.stepper__step.is-active .stepper__label { color: var(--offwhite); }
.stepper__step.is-done .stepper__num { background: transparent; border-color: var(--red); color: var(--red); }
@media (max-width: 600px) {
  .stepper__label { display: none; }
  .stepper { max-width: 320px; }
}

.wizard-step { display: none; }
.wizard-step.is-current { display: block; animation: fadeStep 0.3s var(--ease); }
@keyframes fadeStep { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.step-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.35rem; }
.step-hint { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.75rem; }

/* Ticket-Auswahlkarte mit Stepper */
.ticket-pick {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  background: var(--surface, var(--black));
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: border-color 0.2s var(--ease);
}
.ticket-pick.is-chosen { border-color: var(--red); }
.ticket-pick__name { font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.ticket-pick__flag { color: var(--red); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid var(--red); border-radius: 999px; padding: 0.1rem 0.5rem; }
.ticket-pick__desc { color: var(--muted); font-size: 0.8rem; margin-top: 0.35rem; }
.ticket-pick__voucher { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--red); font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }
.ticket-pick__price { font-family: var(--font-display); font-size: 1.6rem; white-space: nowrap; }
.ticket-pick__right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.ticket-pick.is-soldout { opacity: 0.5; }
.ticket-pick__soldout { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* Gast-Felder */
.guest-fields { display: flex; flex-direction: column; gap: 0.85rem; }
.guest-field__label { display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.guest-field__badge { color: var(--red); }

/* Review-Liste */
.review-list { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; }
.review-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.review-row:last-child { border-bottom: none; }
.review-row dt { color: var(--muted); }
.review-row dd { text-align: right; }

.consent { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1.5rem 0; font-size: 0.82rem; color: var(--muted); }
.consent input { margin-top: 0.2rem; width: 1.05rem; height: 1.05rem; accent-color: var(--red); flex-shrink: 0; }
.consent a { color: var(--red); text-decoration: underline; }

.wizard-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.wizard-nav .btn { min-width: 8rem; }

/* Voucher-Erklärbox */
.voucher-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(229, 29, 46, 0.06);
  border: 1px solid rgba(229, 29, 46, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.voucher-note svg { color: var(--red); flex-shrink: 0; margin-top: 1px; }
.voucher-note strong { color: var(--offwhite); }

/* Empty-State */
.cart-empty { color: var(--muted); font-size: 0.85rem; font-style: italic; }

/* ============================================================
   CONFIRMATION
   ============================================================ */
.confirm { text-align: center; }
.confirm__icon { color: var(--red); margin-bottom: 1.5rem; display: inline-block; }
.confirm__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.confirm__card {
  background: var(--anthracite);
  border: 1px solid rgba(229, 29, 46, 0.3);
  padding: 2rem;
  text-align: left;
  max-width: 32rem;
  margin: 2.5rem auto 0;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--black);
}
.detail-row:last-of-type { border-bottom: none; }
.detail-row dt { color: var(--muted); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.detail-row dd { font-size: 0.88rem; }
.detail-row dd.ref { color: var(--red); font-variant-numeric: tabular-nums; }
.qr {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black);
  display: flex;
  justify-content: center;
}
.qr__box {
  width: 8rem;
  height: 8rem;
  border: 1px solid var(--border);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem;
}
.steps { max-width: 32rem; margin: 3rem auto 0; text-align: left; background: var(--anthracite); padding: 2rem; }
.step { display: flex; gap: 1.5rem; }
.step + .step { margin-top: 2rem; }
.step__num { font-family: var(--font-display); font-size: 2.25rem; color: var(--red); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.step__title { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.step__desc { color: var(--muted); font-size: 0.8rem; }
.confirm__actions { display: flex; flex-wrap: wrap; gap: 1rem; max-width: 32rem; margin: 3rem auto 0; }
.confirm__actions .btn { flex: 1; }
.cal-buttons { display: flex; gap: 1rem; flex-wrap: wrap; max-width: 32rem; margin: 2.5rem auto 0; }

/* ---------- Ausgestellte Tickets (Confirmation) ---------- */
.tix { display: flex; flex-direction: column; gap: 1.25rem; max-width: 36rem; margin: 0 auto; }
.tix-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  background: var(--anthracite);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: left;
}
.tix-card__type { font-size: 1rem; font-weight: 600; }
.tix-card__guest { color: var(--muted); font-size: 0.8rem; margin-bottom: 1rem; }
.tix-code { margin-top: 0.75rem; }
.tix-code__label { color: var(--muted); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; }
.tix-code__value { font-family: monospace; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.05em; }
.tix-code__value--voucher { color: var(--red); }
.tix-card__qr {
  width: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}
.tix-card__qr canvas, .tix-card__qr img, .tix-card__qr svg { width: 104px; height: 104px; background: #fff; padding: 6px; border-radius: 8px; }
.tix-card__qr-cap { color: var(--muted); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
.tix-card__qr-fallback { width: 104px; height: 104px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 0.55rem; text-align: center; padding: 6px; }
@media (max-width: 540px) {
  .tix-card { grid-template-columns: 1fr; }
  .tix-card__qr { flex-direction: row; width: auto; justify-content: flex-start; gap: 1rem; }
}

/* ============================================================
   CREW / EINLASS-SCAN-TOOL
   ============================================================ */
.crew { max-width: 560px; margin: 0 auto; padding: 1.25rem; }
.crew__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem;
}
.crew__brand { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.16em; }
.crew__logout { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.crew__logout:hover { color: var(--red); }

.crew-stats { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.crew-stat { flex: 1; background: var(--anthracite); border: 1px solid var(--border); border-radius: 12px; padding: 0.85rem; text-align: center; }
.crew-stat__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--red); line-height: 1; }
.crew-stat__lbl { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; }

.crew-modes { display: flex; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 1.25rem; }
.crew-mode {
  flex: 1; padding: 0.9rem; background: var(--anthracite); color: var(--muted);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s;
}
.crew-mode.is-active { background: var(--red); color: #fff; }

.crew-cam {
  position: relative; width: 100%; aspect-ratio: 1; max-height: 60vh;
  background: #000; border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  display: none; margin-bottom: 1rem;
}
.crew-cam.is-on { display: block; }
.crew-cam video { width: 100%; height: 100%; object-fit: cover; }
.crew-cam__frame {
  position: absolute; inset: 18%; border: 3px solid rgba(255,255,255,0.7); border-radius: 16px;
  box-shadow: 0 0 0 100vmax rgba(0,0,0,0.35);
}

.crew-manual { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.crew-manual .field { text-transform: uppercase; font-family: monospace; letter-spacing: 0.05em; }

.crew-result {
  border-radius: 16px; padding: 1.75rem 1.5rem; text-align: center; margin-top: 0.5rem;
  border: 1px solid var(--border); background: var(--anthracite); display: none;
}
.crew-result.is-shown { display: block; animation: fadeStep 0.25s var(--ease); }
.crew-result__icon { font-size: 2.5rem; line-height: 1; margin-bottom: 0.5rem; }
.crew-result__title { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.04em; text-transform: uppercase; }
.crew-result__sub { font-size: 0.95rem; margin-top: 0.4rem; }
.crew-result__meta { color: var(--muted); font-size: 0.8rem; margin-top: 0.75rem; }
.crew-result--ok      { border-color: #2faf5a; background: rgba(47,175,90,0.12); }
.crew-result--ok    .crew-result__title { color: #4ade80; }
.crew-result--already { border-color: var(--warm, #E8B14C); background: rgba(232,177,76,0.12); }
.crew-result--already .crew-result__title { color: #E8B14C; }
.crew-result--invalid { border-color: var(--red); background: rgba(229,29,46,0.12); }
.crew-result--invalid .crew-result__title { color: var(--red); }

.crew-hint { color: var(--muted); font-size: 0.75rem; text-align: center; margin-top: 1rem; }
.crew-login { max-width: 360px; margin: 12vh auto 0; text-align: center; }
.crew-login .field { text-align: center; letter-spacing: 0.2em; }

/* Bar-Modus: Menükarten-Grid (Getränke/Speisen, JS-generiert in crew.js::renderBar) */
.crew-item-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1rem; }
.crew-item-group-label {
  grid-column: 1 / -1;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 0.5rem 0 -0.15rem;
}
.crew-item-group-label:first-child { margin-top: 0; }
.crew-item-btn {
  background: var(--anthracite);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
  font: inherit;
  font-size: 0.82rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.crew-item-btn:hover, .crew-item-btn:active { border-color: var(--red); background: rgba(229,29,46,0.12); }
.crew-custom-redeem { display: flex; gap: 0.5rem; }
.crew-custom-redeem .field { flex: 1; }

/* PWA Install-Banner */
.pwa-banner {
  position: fixed; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 120;
  background: var(--anthracite); border: 1px solid var(--border); border-left: 4px solid var(--red);
  border-radius: 12px; padding: 0.85rem 1rem; box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 0.75rem; justify-content: space-between;
}
.pwa-banner__txt { font-size: 0.82rem; color: var(--offwhite); }
.pwa-banner__actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.pwa-banner__close { color: var(--muted); font-size: 1rem; padding: 0.2rem 0.4rem; }
.pwa-banner__close:hover { color: var(--red); }

/* ============================================================
   ADMIN-DASHBOARD
   ============================================================ */
/* ---- Login ---- */
.admin-login { max-width: 380px; margin: 12vh auto 0; text-align: center; padding: 1.5rem; }
.admin__brand { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.16em; }

/* ---- App-Shell: Sidebar + Main ---- */
.dash { display: flex; min-height: 100vh; }
.dash__overlay { display: none; }

.dash__side {
  width: 248px; flex-shrink: 0;
  background: #0e0e11; border-right: 1px solid var(--border);
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 60;
  display: flex; flex-direction: column;
  transition: transform 0.28s var(--ease);
}
.dash__brand { display: flex; align-items: center; gap: 0.6rem; padding: 1.25rem 1.4rem; border-bottom: 1px solid var(--border); }
.dash__brand b { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.16em; }
.dash__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.dash__nav { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.dash__navitem {
  display: flex; align-items: center; gap: 0.75rem; width: 100%;
  padding: 0.7rem 0.85rem; border-radius: 10px; color: var(--muted);
  font-size: 0.85rem; font-weight: 600; text-align: left; transition: background 0.15s, color 0.15s;
}
.dash__navitem:hover { background: rgba(255,255,255,0.04); color: var(--offwhite); }
.dash__navitem.is-active { background: var(--red); color: #fff; }
.dash__navitem .icon { width: 18px; height: 18px; flex-shrink: 0; }
.dash__sidefoot { padding: 0.75rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; }
.dash__sidefoot a, .dash__sidefoot button { color: var(--muted); font-size: 0.78rem; text-align: left; padding: 0.4rem 0.6rem; border-radius: 8px; }
.dash__sidefoot a:hover, .dash__sidefoot button:hover { color: var(--offwhite); background: rgba(255,255,255,0.04); }

.dash__main { flex: 1; margin-left: 248px; min-width: 0; display: flex; flex-direction: column; }
.dash__topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.5rem; background: rgba(11,11,12,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.dash__burger { display: none; align-items: center; justify-content: center; color: var(--offwhite);
  width: 42px; height: 42px; margin: -0.3rem 0.25rem -0.3rem -0.5rem; border-radius: 10px; flex-shrink: 0; }
.dash__burger:hover { background: rgba(255,255,255,0.06); }
.dash__burger .icon { width: 24px; height: 24px; flex-shrink: 0; }
.dash__title { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; }
.dash__spacer { flex: 1; }
.dash__eventsel { background: var(--anthracite); border: 1px solid var(--border); color: var(--offwhite); border-radius: 10px; padding: 0.5rem 0.8rem; font-size: 0.82rem; }
.dash__admin { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.78rem; }
.dash__content { padding: 1.5rem; max-width: 1180px; width: 100%; }

.dash__panel { display: none; }
.dash__panel.is-active { display: block; animation: fadeStep 0.25s var(--ease); }
.dash__sectitle { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 1.75rem 0 0.85rem; }
.dash__sectitle:first-child { margin-top: 0; }

/* ---- KPI cards ---- */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.kpi { background: var(--anthracite); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; position: relative; overflow: hidden; }
.kpi__ico { width: 34px; height: 34px; border-radius: 9px; background: rgba(229,29,46,0.14); color: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem; }
.kpi__num { font-family: var(--font-display); font-size: 2.1rem; color: var(--offwhite); line-height: 1; }
.kpi__num--red { color: var(--red); }
.kpi__lbl { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.45rem; }
.kpi__sub { color: var(--muted); font-size: 0.7rem; margin-top: 0.2rem; opacity: 0.8; }

/* ---- Cards / panels ---- */
.card { background: var(--anthracite); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem 1.4rem; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.card__h { font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; }

/* ---- Progress bars ---- */
.bar-row { margin-bottom: 0.9rem; }
.bar-row__top { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 0.35rem; }
.bar-row__top .muted { color: var(--muted); }
.bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,0.07); overflow: hidden; }
.bar__fill { height: 100%; border-radius: 99px; background: var(--red); transition: width 0.5s var(--ease); }
.bar__fill--green { background: #2faf5a; }
.bar__fill--gold { background: #E8B14C; }

/* ---- Filters ---- */
.admin-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.25rem; }
.admin-filters select, .admin-filters input { background: var(--anthracite); border: 1px solid var(--border); color: var(--offwhite); border-radius: 10px; padding: 0.6rem 0.9rem; font-size: 0.85rem; }
.admin-filters input { flex: 1; min-width: 200px; }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; }
.adm-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 640px; }
.adm-table th { text-align: left; color: var(--muted); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75rem 0.9rem; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); position: sticky; top: 0; }
.adm-table td { padding: 0.8rem 0.9rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.adm-table tr:last-child td { border-bottom: none; }
.adm-row-click { cursor: pointer; }
.adm-row-click:hover td { background: rgba(229,29,46,0.05); }
.pill-sm { display: inline-block; font-size: 0.62rem; padding: 0.18rem 0.55rem; border-radius: 999px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.pill-paid { background: rgba(47,175,90,0.18); color: #4ade80; }
.pill-pending { background: rgba(232,177,76,0.18); color: #E8B14C; }
.pill-admin { background: rgba(229,29,46,0.16); color: var(--red); }
.pill-web { background: rgba(255,255,255,0.06); color: var(--muted); }
.empty-state { text-align: center; color: var(--muted); font-size: 0.85rem; padding: 2.5rem 1rem; }

/* ---- Forms ---- */
.adm-form { display: grid; gap: 0.85rem; max-width: 560px; }
.adm-form label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.35rem; }
.adm-form .field, .adm-form select { width: 100%; }
.adm-form select { background: var(--anthracite); border: 1px solid var(--border); color: var(--offwhite); border-radius: 10px; padding: 0.8rem 0.9rem; }
.adm-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.adm-inline { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.adm-note { background: rgba(229,29,46,.07); border: 1px solid rgba(229,29,46,.25); border-radius: 12px; padding: 0.95rem 1.1rem; font-size: 0.82rem; color: var(--muted); }
.adm-result { margin-top: 1rem; padding: 1.1rem; border-radius: 12px; background: rgba(47,175,90,0.08); border: 1px solid rgba(47,175,90,0.3); font-size: 0.85rem; }
.muted-mono { font-family: monospace; font-size: 0.8rem; }

/* ---- Order drawer (rechts) ---- */
.drawer { position: fixed; inset: 0; z-index: 80; display: none; }
.drawer.is-open { display: block; }
.drawer__bg { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 440px; max-width: 92vw;
  background: var(--black); border-left: 1px solid var(--border); padding: 1.5rem;
  overflow-y: auto; animation: drawerIn 0.28s var(--ease);
}
@keyframes drawerIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.drawer__close { position: absolute; top: 1rem; right: 1rem; color: var(--muted); padding: 0.35rem; }
.drawer__close:hover { color: var(--red); }
.kv { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; }
.kv dt { color: var(--muted); }
.adm-code { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.78rem; padding: 0.55rem 0; border-bottom: 1px dashed var(--border); }
.adm-code__codes { font-family: monospace; }
.tick { color: #4ade80; } .cross { color: var(--muted); }

/* ---- Toast ---- */
.toast { position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); z-index: 120;
  background: var(--anthracite); border: 1px solid var(--border); border-left: 4px solid var(--red);
  border-radius: 10px; padding: 0.8rem 1.1rem; font-size: 0.85rem; box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; }
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(-4px); }
.toast--ok { border-left-color: #2faf5a; }
.toast--err { border-left-color: var(--red); }

/* ============================================================
   ADMIN · GAMES & WETTEN
   ============================================================ */
.btn--ghost { background: transparent; border: 1px solid transparent; color: var(--muted); }
.btn--ghost:hover { color: var(--red); border-color: var(--border); }

.game-pool .card__h { display: flex; align-items: center; gap: 0.45rem; }
.game-create__sum { cursor: pointer; font-weight: 600; color: var(--offwhite); list-style: none; padding: 0.25rem 0; }
.game-create__sum::-webkit-details-marker { display: none; }
[data-game-create][open] .game-create__sum { color: var(--red); }

.game-list { display: flex; flex-direction: column; gap: 0.85rem; }
.game-card { background: var(--anthracite); border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.1rem; }
.game-card__head { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: baseline; }
.game-card__title { font-weight: 600; color: var(--offwhite); }
.game-card__meta { font-size: 0.78rem; color: var(--muted); }
.game-card__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.85rem; }
.game-card__settle { margin-top: 0.85rem; border-top: 1px solid var(--border); padding-top: 0.85rem; }

.game-badge { display: inline-block; font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem; border-radius: 999px; margin-right: 0.55rem; vertical-align: middle; border: 1px solid var(--border); color: var(--muted); }
.game-badge--open { background: rgba(47,175,90,0.15); color: #4ade80; border-color: transparent; }
.game-badge--draft { background: rgba(255,255,255,0.06); }
.game-badge--locked { background: rgba(229,29,46,0.14); color: #ff7a85; border-color: transparent; }
.game-badge--settled { background: rgba(120,120,255,0.14); color: #a6b0ff; border-color: transparent; }
.game-badge--cancelled { background: rgba(255,255,255,0.05); color: var(--muted); text-decoration: line-through; }

.settle-opts { display: grid; gap: 0.5rem; }
.settle-opt { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: var(--charcoal, #15151a); border: 1px solid var(--border); border-radius: 10px;
  padding: 0.75rem 0.95rem; color: var(--offwhite); text-align: left; cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.settle-opt:hover { border-color: var(--red); background: rgba(229,29,46,0.08); }

/* ============================================================
   KUNDEN-WALLET (wallet.html)
   ============================================================ */
.wlt-login { max-width: 380px; margin: 11vh auto 0; text-align: center; display: flex; flex-direction: column; align-items: center; padding: 0 1.25rem; }
.wlt-login .field { text-align: center; letter-spacing: 0.18em; text-transform: uppercase; }
.wlt__brand, .crew__brand, .wlt-login .wlt__brand { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.05em; }

.wlt { max-width: 560px; margin: 0 auto; padding: 1rem 1.1rem 5rem; min-height: 100vh; }
.wlt__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }
.wlt__top .wlt__brand { font-size: 1.3rem; }
.wlt__logout { background: transparent; border: 1px solid var(--border); color: var(--muted); border-radius: 8px; padding: 0.35rem 0.7rem; font-size: 0.74rem; cursor: pointer; }
.wlt__logout:hover { color: var(--red); border-color: var(--red); }
.wlt__help-btn { background: transparent; border: 1px solid var(--border); color: var(--muted); border-radius: 999px; width: 1.9rem; height: 1.9rem; line-height: 1; font-size: 0.85rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.wlt__help-btn:hover { color: var(--red); border-color: var(--red); }
.wlt-help__list { margin: 1rem 0 0.2rem; padding-left: 1.1rem; color: var(--offwhite); font-size: 0.86rem; line-height: 1.55; }
.wlt-help__list li { margin-bottom: 0.7rem; }

.wlt-balance { background: linear-gradient(135deg, #1b1b20, #101013); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.4rem 1.5rem; margin-bottom: 1.1rem; position: relative; overflow: hidden; }
.wlt-balance::after { content: ""; position: absolute; right: -30px; top: -30px; width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(229,29,46,0.25), transparent 70%); }
.wlt-balance__lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.wlt-balance__num { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--offwhite); margin: 0.35rem 0; }
.wlt-balance__unit { font-size: 1rem; color: var(--red); }
.wlt-balance__code { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.04em; }
.wlt-balance__code strong { color: var(--offwhite); letter-spacing: 0.08em; }

.wlt-tabs { display: flex; gap: 0.4rem; background: var(--anthracite); border: 1px solid var(--border); border-radius: 12px; padding: 0.3rem; margin-bottom: 1.1rem; }
.wlt-tab { flex: 1; background: transparent; border: 0; color: var(--muted); font-weight: 600; font-size: 0.85rem; padding: 0.6rem; border-radius: 9px; cursor: pointer; }
.wlt-tab.is-active { background: var(--red); color: #fff; }
.wlt-panel { display: none; }
.wlt-panel.is-active { display: block; }

.wlt-game { background: var(--anthracite); border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.1rem; margin-bottom: 0.85rem; }
.wlt-game__title { font-weight: 600; color: var(--offwhite); margin-bottom: 0.2rem; }
.wlt-game__meta { font-size: 0.74rem; color: var(--muted); margin-bottom: 0.75rem; }
.wlt-opts { display: grid; gap: 0.5rem; }
.wlt-opt { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
  background: #15151a; border: 1px solid var(--border); border-radius: 11px; padding: 0.8rem 0.95rem;
  color: var(--offwhite); cursor: pointer; text-align: left; transition: border-color 0.15s, transform 0.1s; }
.wlt-opt:active { transform: scale(0.99); }
.wlt-opt:hover { border-color: var(--red); }
.wlt-opt.is-mine { border-color: var(--red); background: rgba(229,29,46,0.1); }
.wlt-opt__label { font-weight: 600; font-size: 0.92rem; }
.wlt-opt__tag { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; background: var(--red); color: #fff; padding: 0.1rem 0.4rem; border-radius: 999px; margin-left: 0.35rem; vertical-align: middle; }
.wlt-opt__odds { text-align: right; font-family: var(--font-display); font-size: 1.25rem; color: var(--red); line-height: 1; }
.wlt-opt__stake { display: block; font-family: var(--font-body, inherit); font-size: 0.66rem; color: var(--muted); letter-spacing: 0; }
.wlt-game__mine { font-size: 0.74rem; color: #4ade80; margin-top: 0.6rem; }

.wlt-hrow { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: var(--anthracite); border: 1px solid var(--border); border-radius: 11px; padding: 0.8rem 0.95rem; margin-bottom: 0.5rem; }
.wlt-hrow__title { font-weight: 600; font-size: 0.88rem; color: var(--offwhite); }
.wlt-hrow__sub { font-size: 0.72rem; color: var(--muted); }
.wlt-hrow__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }
.wlt-hrow__stake { font-size: 0.78rem; color: var(--muted); }
.wlt-hrow__win { font-size: 0.82rem; color: #4ade80; font-weight: 600; }
.wlt-hrow__badge { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.12rem 0.45rem; border-radius: 999px; }
.wlt-hrow__badge--placed { background: rgba(255,255,255,0.08); color: var(--muted); }
.wlt-hrow__badge--won { background: rgba(47,175,90,0.18); color: #4ade80; }
.wlt-hrow__badge--lost { background: rgba(229,29,46,0.14); color: #ff7a85; }
.wlt-hrow__badge--void { background: rgba(255,255,255,0.06); color: var(--muted); }

/* Menü-Tab (Speisen-/Getränkekarte, FC-Preise) */
.wlt-menu__hint { font-size: 0.74rem; color: var(--muted); line-height: 1.5; margin: 0 0 1.1rem; }
.wlt-menu__group { margin-bottom: 1.2rem; background: var(--anthracite); border: 1px solid var(--border);
  border-radius: 11px; padding: 0.85rem 0.95rem; }
.wlt-menu__group--highlight { border-color: var(--red); background: rgba(229,29,46,0.08); }
.wlt-menu__group-title { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); font-weight: 700; margin-bottom: 0.5rem; }
.wlt-menu__group-title-text { flex: 1 1 auto; }
.wlt-menu__logo { height: 20px; width: auto; border-radius: 4px; flex: 0 0 auto; }
.wlt-menu__note { font-size: 0.76rem; color: var(--muted); margin: -0.15rem 0 0.5rem; }
.wlt-menu__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.35rem 0; }
.wlt-menu__row + .wlt-menu__row { border-top: 1px solid var(--border); }
.wlt-menu__name { font-size: 0.85rem; color: var(--offwhite); }
.wlt-menu__price { font-family: var(--font-display); font-size: 1.05rem; color: var(--red); white-space: nowrap; }
.wlt-hrow__amount { font-size: 0.9rem; font-weight: 700; }
.wlt-hrow__amount--credit { color: #4ade80; }
.wlt-hrow__amount--debit { color: #ff7a85; }

.wlt-hint { font-size: 0.72rem; color: var(--muted); line-height: 1.5; margin-top: 1.5rem; text-align: center; }

/* Bottom-Sheet */
.wlt-sheet { position: fixed; inset: 0; z-index: 130; display: flex; align-items: flex-end; }
.wlt-sheet[hidden] { display: none; }
.wlt-sheet__bg { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
.wlt-sheet__panel { position: relative; width: 100%; max-width: 560px; margin: 0 auto;
  background: var(--anthracite); border: 1px solid var(--border); border-bottom: 0;
  border-radius: 20px 20px 0 0; padding: 1.6rem 1.4rem calc(1.6rem + env(safe-area-inset-bottom));
  animation: wltSheetUp 0.22s ease; }
@keyframes wltSheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.wlt-sheet__close { position: absolute; top: 1rem; right: 1.1rem; background: transparent; border: 0; color: var(--muted); font-size: 1.1rem; cursor: pointer; }
.wlt-sheet__eyebrow { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.wlt-sheet__option { font-family: var(--font-display); font-size: 1.8rem; color: var(--offwhite); letter-spacing: 0.02em; margin-top: 0.15rem; }
.wlt-sheet__quick { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.7rem; }
.wlt-chip { background: #15151a; border: 1px solid var(--border); color: var(--offwhite); border-radius: 999px; padding: 0.4rem 0.9rem; font-size: 0.82rem; cursor: pointer; }
.wlt-chip:hover { border-color: var(--red); color: var(--red); }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .dash__side { transform: translateX(-100%); box-shadow: 0 0 40px rgba(0,0,0,0.5); }
  .dash.is-side-open .dash__side { transform: none; }
  .dash.is-side-open .dash__overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 55; }
  .dash__main { margin-left: 0; }
  .dash__burger { display: inline-flex; }
  .cards-2 { grid-template-columns: 1fr; }
  .adm-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   STATIC PAGES (Impressum / 404)
   ============================================================ */
.prose { color: var(--muted); }
.prose h2 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--offwhite); margin: 2.5rem 0 1rem; }
.prose p { margin-bottom: 1rem; }
.prose a { color: var(--red); text-decoration: underline; }

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}
.error-page__code { font-family: var(--font-display); font-size: clamp(5rem, 20vw, 12rem); color: var(--red); line-height: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .section { padding-block: 4rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .tickets-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .map-embed { height: 15rem; /* 240px on mobile */ }
  .special__card { flex-direction: column; gap: 2rem; padding: 2rem; }
  .special__media { width: 100%; }
  .checkout-grid { grid-template-columns: 1fr; }
  .summary { position: static; margin-top: 2rem; }

  .nav__links { display: none; }
  .nav__burger { display: block; }
  .sticky-cta { display: block; }
  body.has-sticky-cta .footer { margin-bottom: 5rem; }
}

@media (max-width: 540px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .countdown { gap: 1.1rem; }
  .timeline__item { grid-template-columns: 4.5rem 1fr; gap: 1rem; }
  .confirm__actions { flex-direction: column; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Scroll-to-Top ---------- */
.scrolltop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  bottom: max(22px, env(safe-area-inset-bottom, 22px));
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  background: var(--anthracite);
  color: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.scrolltop.show { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.scrolltop:hover { border-color: var(--red); box-shadow: 0 10px 26px rgba(229, 29, 46, 0.28); transform: translateY(-3px); }
.scrolltop:active { transform: translateY(-1px); }
.scrolltop:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(229, 29, 46, 0.5), 0 8px 22px rgba(0, 0, 0, 0.4); }
.scrolltop svg { width: 20px; height: 20px; }
@media (max-width: 560px) {
  .scrolltop { right: 16px; bottom: 16px; bottom: max(16px, env(safe-area-inset-bottom, 16px)); width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .scrolltop { transition: opacity 0.2s; }
  .scrolltop:hover { transform: none; }
}
