/* ============================================================
   C'EST LA VIE · VÖCKLABRUCK
   Designsystem: Nachtlokal-Plakatkultur statt Standard-Darktheme.
   Farbwelt direkt aus den echten Räumen abgeleitet:
   warmes Schwarz (Decke/Teppich), Billardgrün (Tuch + Lampen),
   Bernstein (Barstreifen), Signalrot (Automaten, Vorhänge, Logo),
   Türkis (LED-Band der Partyraum-Bar), Kreide (Papier/Plakate).
   ============================================================ */

:root {
  /* Farbwelt */
  --schwarz: #14110d;
  --schwarz-warm: #1c1712;
  --kreide: #f4ecdc;
  --kreide-dunkel: #e6dbc4;
  --filz: #175538;
  --filz-hell: #2e8a57;
  --lampe: #6fcf8f;
  --bernstein: #e39a3b;
  --bernstein-hell: #f6c66d;
  --signal: #c8372c;
  --signal-hell: #e05545;
  --tuerkis: #2fae9b;
  --blau: #2b8fd0;
  --linie: rgba(244, 236, 220, 0.14);

  /* Typografie */
  --schrift-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --schrift-text: "Familjen Grotesk", "Helvetica Neue", sans-serif;
  --schrift-mono: "Spline Sans Mono", "Courier New", monospace;

  /* Maße */
  --inhalt-breite: 1180px;
  --abstand-sektion: clamp(96px, 14vh, 180px);

  /* Harter Druck-Schatten statt Weichzeichner-Glow */
  --schatten-hart: 6px 6px 0 rgba(0, 0, 0, 0.45);
  --schatten-papier: 8px 10px 0 rgba(0, 0, 0, 0.35);
}

/* ---------- Basis ---------- */

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

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

body {
  margin: 0;
  background: var(--schwarz);
  color: var(--kreide);
  font-family: var(--schrift-text);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
}

/* Feines Korn über der ganzen Seite: verhindert den sterilen Flat-Look */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='k'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23k)'/%3E%3C/svg%3E");
}

[id] { scroll-margin-top: 84px; }

[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--schrift-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0 0 0.4em;
}

h2 {
  font-size: clamp(44px, 7vw, 88px);
}

h2 em {
  font-style: normal;
  color: var(--bernstein);
}

p { margin: 0 0 1em; }

a { color: inherit; }

img, video {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--signal);
  color: var(--kreide);
}

/* ---------- Wiederkehrende Bausteine ---------- */

.kicker {
  font-family: var(--schrift-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bernstein);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
}

.kicker--gruen { color: var(--lampe); }
.kicker--rot { color: var(--signal-hell); }
.kicker--gelb { color: var(--bernstein-hell); }
.kicker--tuerkis { color: var(--tuerkis); }

.abschnitt-kopf {
  max-width: var(--inhalt-breite);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.abschnitt-kopf--links { text-align: left; }

.abschnitt-kopf__sub {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(244, 236, 220, 0.75);
}

.gross {
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.45;
  font-weight: 500;
}

/* Buttons: Druckstock-Optik, harter Schatten der sich beim Drücken senkt */
.btn {
  display: inline-block;
  font-family: var(--schrift-display);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-align: center;
  color: var(--schwarz);
  background: var(--kreide);
  border: 2px solid var(--schwarz);
  padding: 13px 26px 15px;
  box-shadow: var(--schatten-hart);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
}

.btn:active {
  transform: translate(5px, 5px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.45);
}

.btn--rot { background: var(--signal); color: var(--kreide); border-color: #7e1f17; }
.btn--gruen { background: var(--filz-hell); color: var(--kreide); border-color: #0d3b24; }
.btn--gelb { background: var(--bernstein); color: var(--schwarz); border-color: #8a5a1a; }
.btn--tuerkis { background: var(--tuerkis); color: var(--schwarz); border-color: #17564d; }

.btn--geist {
  background: transparent;
  color: var(--kreide);
  border: 2px solid rgba(244, 236, 220, 0.55);
  box-shadow: none;
}

.btn--geist:hover {
  border-color: var(--kreide);
  background: rgba(244, 236, 220, 0.08);
  transform: none;
  box-shadow: none;
}

.btn--geist-dunkel {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
  box-shadow: none;
}

.btn--geist-dunkel:hover { transform: none; box-shadow: none; opacity: 0.75; }

.btn--klein {
  font-size: 16px;
  padding: 8px 16px 10px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
}

.link-pfeil {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--bernstein);
  padding-bottom: 2px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.link-pfeil::after {
  content: " →";
  color: var(--bernstein);
}

.link-pfeil:hover { color: var(--bernstein-hell); }

/* Live-Status-Chip */
.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--schrift-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border: 1.5px solid var(--linie);
  border-radius: 999px;
  background: rgba(20, 17, 13, 0.6);
  backdrop-filter: blur(4px);
}

.live-chip__punkt {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.live-chip--offen { color: #7ede9a; border-color: rgba(126, 222, 154, 0.4); }
.live-chip--zu { color: #f08a7e; border-color: rgba(240, 138, 126, 0.4); }

.live-chip--offen .live-chip__punkt {
  animation: chip-puls 2.2s ease-out infinite;
}

@keyframes chip-puls {
  0% { box-shadow: 0 0 0 0 rgba(126, 222, 154, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(126, 222, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 222, 154, 0); }
}

/* Scroll-Reveals: JS setzt .sichtbar, --d staffelt */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.reveal.sichtbar {
  opacity: 1;
  transform: none;
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--fest {
  background: rgba(20, 17, 13, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--linie);
}

.nav__brand {
  text-decoration: none;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}

.nav__brand-script {
  font-family: var(--schrift-display);
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--kreide);
  text-transform: none;
}

.nav__brand-tag {
  font-family: var(--schrift-mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bernstein);
}

.nav__links {
  display: flex;
  gap: 26px;
}

.nav__links a {
  font-family: var(--schrift-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 236, 220, 0.85);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav__links a:hover {
  color: var(--kreide);
  border-color: var(--bernstein);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-chip--nav {
  font-size: 12px;
  padding: 5px 12px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--linie);
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--kreide);
}

.nav-mobile[hidden] { display: none; }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--schwarz);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  padding: 90px 32px 40px;
  overflow-y: auto;
}

.nav-mobile a {
  font-family: var(--schrift-display);
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--kreide);
}

.nav-mobile a:hover { color: var(--bernstein); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--schwarz-warm);
}

.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__video {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero__video--bereit { opacity: 1; }

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(16, 13, 10, 0.86) 0%, rgba(16, 13, 10, 0.52) 42%, rgba(16, 13, 10, 0.08) 78%),
    linear-gradient(0deg, rgba(16, 13, 10, 0.92) 0%, rgba(16, 13, 10, 0.12) 45%, rgba(16, 13, 10, 0.42) 100%);
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--inhalt-breite);
  margin: 0 auto;
  padding: 140px 24px 120px;
}

.hero__kicker {
  font-family: var(--schrift-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bernstein-hell);
  margin-bottom: 20px;
}

.hero__claim {
  font-size: clamp(56px, 9.5vw, 132px);
  font-weight: 900;
  margin-bottom: 24px;
}

.hero__claim-zeile {
  display: block;
}

.hero__claim-zeile--akzent {
  color: var(--bernstein);
  font-style: italic;
}

.hero__sub {
  max-width: 520px;
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(244, 236, 220, 0.88);
  margin-bottom: 30px;
}

.hero__status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero__zeiten {
  font-family: var(--schrift-mono);
  font-size: 14px;
  color: rgba(244, 236, 220, 0.75);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Ladechoreografie: Zeilen treten nacheinander auf, sobald .geladen am body */
.hero .reveal {
  transition-duration: 0.9s;
}

.hero__scroll {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: 5;
  width: 2px;
  height: 72px;
  background: rgba(244, 236, 220, 0.25);
  overflow: hidden;
}

.hero__scroll span {
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--bernstein);
  animation: scroll-lauf 1.9s ease-in-out infinite;
}

@keyframes scroll-lauf {
  0% { top: -40%; }
  100% { top: 110%; }
}

/* ---------- Ticker ---------- */

.ticker {
  position: relative;
  z-index: 6;
  background: var(--signal);
  color: var(--kreide);
  transform: rotate(-1.1deg) translateY(-50%);
  margin-top: 0;
  margin-left: -2vw;
  margin-right: -2vw;
  border-top: 2px solid #7e1f17;
  border-bottom: 2px solid #7e1f17;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.ticker__band,
.bands__marquee {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  padding: 12px 0;
  font-family: var(--schrift-display);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  animation: ticker-lauf 36s linear infinite;
}

.ticker__punkt {
  font-size: 11px;
  opacity: 0.65;
}

@keyframes ticker-lauf {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- News / Schwarzes Brett ---------- */

.news {
  position: relative;
  padding: calc(var(--abstand-sektion) * 0.6) 0 var(--abstand-sektion);
  background:
    radial-gradient(1100px 500px at 85% -5%, rgba(227, 154, 59, 0.07), transparent 60%),
    var(--schwarz);
}

.news__reihe {
  max-width: var(--inhalt-breite);
  margin: 56px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Plakatkarten: Papier auf dunkler Wand, Klebeband, harte Schatten */
.plakat {
  position: relative;
  min-width: 0;
  background: var(--kreide);
  color: var(--schwarz);
  padding: 26px 24px 22px;
  box-shadow: var(--schatten-papier);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease;
}

.plakat:nth-child(odd) { transform: rotate(-1.1deg); }
.plakat:nth-child(even) { transform: rotate(0.8deg); }

.plakat:hover { transform: rotate(0deg) translateY(-6px); }

/* Klebestreifen oben */
.plakat::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 96px;
  height: 24px;
  background: rgba(244, 236, 220, 0.35);
  border-left: 1px dashed rgba(0, 0, 0, 0.15);
  border-right: 1px dashed rgba(0, 0, 0, 0.15);
}

.plakat__datum {
  position: absolute;
  top: 18px;
  right: 18px;
  text-align: center;
  font-family: var(--schrift-mono);
  line-height: 1.1;
  background: var(--schwarz);
  color: var(--kreide);
  padding: 8px 12px;
  transform: rotate(2deg);
}

.plakat__tag {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.plakat__zahl {
  display: block;
  font-family: var(--schrift-display);
  font-size: 34px;
  font-weight: 800;
}

.plakat__monat {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.plakat__label {
  align-self: flex-start;
  font-family: var(--schrift-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--schwarz);
  color: var(--kreide);
  padding: 4px 10px;
  margin-bottom: 16px;
}

.plakat__label--rot { background: var(--signal); }
.plakat__label--gruen { background: var(--filz); }

.plakat__body h3 {
  font-size: 30px;
  padding-right: 74px;
  margin-bottom: 10px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.plakat__body p {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(20, 17, 13, 0.85);
}

.plakat__meta {
  margin-top: auto;
  font-family: var(--schrift-mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: rgba(20, 17, 13, 0.6);
  border-top: 1.5px dashed rgba(20, 17, 13, 0.25);
  padding-top: 12px;
  margin-bottom: 0;
}

.plakat__ecke {
  position: absolute;
  bottom: -14px;
  right: -12px;
  font-family: var(--schrift-display);
  font-weight: 900;
  font-size: 22px;
  background: var(--signal);
  color: var(--kreide);
  padding: 8px 12px;
  transform: rotate(6deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.news__mehr {
  text-align: center;
  margin-top: 52px;
}

/* ---------- Bereichs-Sektionen ---------- */

.bereich {
  position: relative;
  padding: var(--abstand-sektion) 0;
  overflow: clip;
}

.bereich__inhalt {
  position: relative;
  z-index: 2;
  max-width: var(--inhalt-breite);
  margin: 0 auto;
  padding: 0 24px;
}

/* Riesige Hintergrund-Ziffern wie auf einer Anzeigetafel */
.bereich__riesenzahl {
  position: absolute;
  z-index: 1;
  top: -0.08em;
  left: -0.05em;
  font-family: var(--schrift-display);
  font-weight: 900;
  font-size: clamp(300px, 42vw, 640px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(244, 236, 220, 0.07);
  pointer-events: none;
  user-select: none;
}

.bereich__riesenzahl--rechts {
  left: auto;
  right: -0.06em;
  top: auto;
  bottom: -0.12em;
}

.bereich__spalten {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  margin-top: 40px;
}

.bereich__spalten--getauscht .bereich__text { order: 2; }
.bereich__spalten--getauscht .bereich__medien { order: 1; }

.bereich__text .btn { margin-top: 10px; }

/* Farbwelten der Räume */
.bereich--billard {
  background:
    radial-gradient(1200px 600px at 15% 20%, rgba(23, 85, 56, 0.55), transparent 65%),
    linear-gradient(180deg, var(--schwarz) 0%, #0f1d14 45%, var(--schwarz) 100%);
}

.bereich--darts {
  background:
    radial-gradient(1100px 600px at 85% 30%, rgba(200, 55, 44, 0.28), transparent 65%),
    linear-gradient(180deg, var(--schwarz) 0%, #221210 50%, var(--schwarz) 100%);
}

.bereich--bar {
  background:
    radial-gradient(1200px 650px at 20% 25%, rgba(227, 154, 59, 0.16), transparent 60%),
    linear-gradient(180deg, var(--schwarz) 0%, #201709 55%, var(--schwarz) 100%);
}

.bereich--party {
  background:
    radial-gradient(900px 500px at 80% 15%, rgba(47, 174, 155, 0.13), transparent 60%),
    radial-gradient(900px 600px at 10% 80%, rgba(200, 55, 44, 0.14), transparent 60%),
    var(--schwarz);
}

/* Vorteile-Liste (Billard) */
.vorteile {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  border-top: 1.5px solid var(--linie);
}

.vorteile li {
  padding: 13px 2px;
  border-bottom: 1.5px solid var(--linie);
  font-size: 16.5px;
}

.vorteile strong {
  font-family: var(--schrift-mono);
  font-weight: 600;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lampe);
  margin-right: 6px;
}

.bereich--darts .vorteile strong { color: var(--signal-hell); }

/* Fotos: Abzüge mit weißem Rand, gedreht, hart geworfen */
.foto {
  margin: 0;
  min-width: 0;
  background: #fdfaf2;
  padding: 10px 10px 14px;
  box-shadow: var(--schatten-papier);
}

.foto img,
.foto video {
  width: 100%;
  height: auto;
  filter: saturate(0.96) contrast(1.03);
}

.foto figcaption {
  font-family: var(--schrift-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(20, 17, 13, 0.65);
  padding-top: 10px;
}

.foto--gedreht-l { transform: rotate(-1.6deg); }
.foto--gedreht-r { transform: rotate(1.4deg); }

.foto--gross { position: relative; }

.foto-paar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}

.foto-paar--versetzt {
  margin-top: 0;
  align-items: start;
}

.foto-paar--versetzt .foto:last-child { margin-top: 44px; }

.foto--schmal { max-width: 300px; justify-self: start; }

.foto--breit img { max-height: 560px; object-fit: cover; }

/* Loop-Videos in Foto-Rahmen */
.loop-video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0d0b08;
}

/* Scoreboard-Leisten */
.scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border: 1.5px solid var(--linie);
  background: rgba(0, 0, 0, 0.35);
}

.scoreboard--rot { grid-template-columns: repeat(3, 1fr); }

.scoreboard__feld {
  min-width: 0;
  padding: 26px 18px 22px;
  text-align: center;
  border-right: 1.5px solid var(--linie);
}

.scoreboard__feld:last-child { border-right: none; }

.scoreboard__zahl {
  display: block;
  font-family: var(--schrift-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
  color: var(--lampe);
}

.scoreboard--rot .scoreboard__zahl { color: var(--signal-hell); }

.scoreboard__zahl small {
  font-size: 0.45em;
  font-weight: 700;
  vertical-align: baseline;
}

.scoreboard__text {
  display: block;
  margin-top: 8px;
  font-family: var(--schrift-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(244, 236, 220, 0.65);
}

/* Callouts */
.callout {
  border: 1.5px solid var(--linie);
  border-left: 5px solid var(--signal);
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 22px 16px;
  margin: 28px 0;
}

.callout--tuerkis { border-left-color: var(--tuerkis); }

.callout__titel {
  font-family: var(--schrift-display);
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.callout p:last-of-type { margin-bottom: 12px; }

/* Karte-Auszug (Bar) */
.karte-auszug {
  background: var(--kreide);
  color: var(--schwarz);
  padding: 26px 26px 20px;
  margin: 30px 0;
  box-shadow: var(--schatten-papier);
  transform: rotate(-0.7deg);
  max-width: 420px;
}

.karte-auszug__titel {
  font-family: var(--schrift-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid var(--schwarz);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.karte-auszug dl { margin: 0; }

.karte-auszug__zeile {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
}

.karte-auszug__zeile dt {
  font-weight: 600;
  flex: 0 1 auto;
  min-width: 0;
}

.karte-auszug__zeile::after {
  content: "";
  order: 2;
  flex: 1;
  border-bottom: 2px dotted rgba(20, 17, 13, 0.35);
  transform: translateY(-4px);
}

.karte-auszug__zeile dt { order: 1; }

.karte-auszug__zeile dd {
  order: 3;
  margin: 0;
  font-family: var(--schrift-mono);
  font-weight: 600;
}

.karte-auszug__hinweis {
  font-size: 13.5px;
  color: rgba(20, 17, 13, 0.6);
  margin: 14px 0 0;
}

/* Ticket-Info (Konzerte) */
.ticket-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--schrift-mono);
  font-size: 14px;
  line-height: 1.7;
  border: 1.5px dashed rgba(244, 236, 220, 0.35);
  padding: 14px 18px;
  margin-top: 26px;
}

.ticket-info__stub {
  flex: none;
  font-family: var(--schrift-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  background: var(--tuerkis);
  color: var(--schwarz);
  padding: 6px 12px;
  transform: rotate(-4deg);
}

/* Partyraum-Elemente */
.party__buehne {
  margin: 44px 0 56px;
}

.party__buehne .foto--breit {
  transform: rotate(-0.5deg);
}

.bands {
  margin-top: 72px;
  border-top: 1.5px solid var(--linie);
  border-bottom: 1.5px solid var(--linie);
  padding: 18px 0;
  overflow: hidden;
}

.bands__titel {
  font-family: var(--schrift-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(244, 236, 220, 0.55);
  margin-bottom: 10px;
  padding: 0 4px;
}

.bands__marquee {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--kreide);
  animation-duration: 48s;
  padding: 0;
}

.bands__marquee .ticker__punkt {
  color: var(--tuerkis);
  font-size: 0.5em;
}

/* ---------- Archiv-Teaser ---------- */

.archiv-teaser {
  padding: var(--abstand-sektion) 0;
  background:
    linear-gradient(180deg, var(--schwarz) 0%, #191410 50%, var(--schwarz) 100%);
}

.archiv-teaser__wand {
  max-width: var(--inhalt-breite);
  margin: 56px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

.archiv-teaser__wand .foto { padding-bottom: 10px; }

.archiv-teaser__wand .foto:nth-child(odd) { transform: rotate(-2deg); }
.archiv-teaser__wand .foto:nth-child(even) { transform: rotate(1.6deg) translateY(12px); }

.archiv-teaser__wand .foto:hover { transform: rotate(0) scale(1.03); transition: transform 0.25s ease; }

/* Platzhalter falls noch keine Plakate geladen */
.archiv-teaser__platzhalter {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-family: var(--schrift-mono);
  font-size: 12px;
  color: rgba(20, 17, 13, 0.55);
  background: repeating-linear-gradient(45deg, #efe6d2, #efe6d2 12px, #e6dbc4 12px, #e6dbc4 24px);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--kreide);
  color: var(--schwarz);
  padding: 0 0 30px;
}

.footer__cta {
  text-align: center;
  padding: clamp(70px, 10vh, 120px) 24px 60px;
  border-bottom: 2px solid var(--schwarz);
}

.footer__cta h2 {
  font-size: clamp(48px, 8vw, 110px);
}

.footer__cta h2 em {
  color: var(--signal);
}

.footer__cta-knoepfe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.footer__cta .btn--geist {
  color: var(--schwarz);
  border-color: rgba(20, 17, 13, 0.5);
}

.footer__cta .btn--geist:hover {
  background: rgba(20, 17, 13, 0.06);
  border-color: var(--schwarz);
}

.footer__spalten {
  max-width: var(--inhalt-breite);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 44px;
}

.footer__spalte { min-width: 0; }

.footer__spalte h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.footer__spalte p,
.footer__spalte address {
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(20, 17, 13, 0.85);
}

.footer__logo {
  width: 200px;
  height: auto;
  margin-bottom: 18px;
}

.footer__zeiten {
  margin: 0 0 10px;
  font-family: var(--schrift-mono);
  font-size: 14.5px;
}

.footer__zeiten div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1.5px dashed rgba(20, 17, 13, 0.25);
}

.footer__zeiten dt { font-weight: 600; }
.footer__zeiten dd { margin: 0; }

.footer__sommer {
  font-family: var(--schrift-mono);
  font-size: 13px;
  background: var(--bernstein);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.footer .live-chip {
  background: rgba(20, 17, 13, 0.06);
  border-color: rgba(20, 17, 13, 0.2);
}

.footer .live-chip--offen { color: #1c6b3d; }
.footer .live-chip--zu { color: #a32e24; }

.footer__aktionen {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}

.footer__aktionen li {
  padding: 5px 0 5px 22px;
  position: relative;
}

.footer__aktionen li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 9px;
  top: 11px;
  color: var(--signal);
}

.footer__unten {
  max-width: var(--inhalt-breite);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 2px solid var(--schwarz);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--schrift-mono);
  font-size: 12.5px;
  color: rgba(20, 17, 13, 0.65);
}

.footer__unten p { margin: 0; }

.footer__demo {
  background: rgba(20, 17, 13, 0.08);
  padding: 2px 10px;
}

/* ---------- Dialoge ---------- */

.dialog {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(640px, calc(100vw - 32px));
  width: 100%;
}

.dialog::backdrop {
  background: rgba(10, 8, 6, 0.75);
  backdrop-filter: blur(3px);
}

.dialog__rahmen {
  background: var(--kreide);
  color: var(--schwarz);
  padding: 34px 34px 30px;
  box-shadow: 12px 14px 0 rgba(0, 0, 0, 0.5);
  border: 2px solid var(--schwarz);
}

.dialog__kopf {
  position: relative;
  margin-bottom: 20px;
}

.dialog__kopf h2 {
  font-size: clamp(30px, 5vw, 42px);
  margin: 0;
}

.dialog__schliessen {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  background: var(--schwarz);
  color: var(--kreide);
  border: none;
  font-size: 17px;
  line-height: 1;
}

.dialog__schliessen:hover { background: var(--signal); }

.dialog__schritte {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  font-family: var(--schrift-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dialog__schritte li {
  flex: 1;
  text-align: center;
  padding: 7px 4px;
  background: rgba(20, 17, 13, 0.07);
  color: rgba(20, 17, 13, 0.5);
}

.dialog__schritte li.aktiv {
  background: var(--schwarz);
  color: var(--kreide);
}

.dialog__schritte li.fertig {
  background: var(--filz);
  color: var(--kreide);
}

.dialog__schritt {
  display: none;
  border: none;
  margin: 0;
  padding: 0;
}

.dialog__schritt.aktiv { display: block; }

.dialog__schritt legend {
  font-family: var(--schrift-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding: 0;
}

.dialog__hilfe {
  font-size: 14.5px;
  color: rgba(20, 17, 13, 0.65);
  margin-bottom: 20px;
}

/* Saalplan: Draufsicht auf die 9 Tische + Snooker */
.saalplan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.saalplan__tisch {
  aspect-ratio: 2 / 1.1;
  border: 2.5px solid #5a3d1e;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.14) 4px, transparent 5px),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.14) 4px, transparent 5px),
    radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.14) 4px, transparent 5px),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.14) 4px, transparent 5px),
    var(--filz);
  color: var(--kreide);
  font-family: var(--schrift-mono);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.saalplan__tisch:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
}

.saalplan__tisch.gewaehlt {
  outline: 3px solid var(--bernstein);
  outline-offset: 2px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
}

.saalplan__tisch:disabled {
  background: #8b8578;
  border-color: #6b6558;
  color: rgba(244, 236, 220, 0.55);
  cursor: not-allowed;
  text-decoration: line-through;
}

.saalplan__tisch--snooker {
  grid-column: span 3;
  aspect-ratio: auto;
  padding: 14px;
  background:
    radial-gradient(circle at 6% 25%, rgba(255, 255, 255, 0.14) 4px, transparent 5px),
    radial-gradient(circle at 94% 25%, rgba(255, 255, 255, 0.14) 4px, transparent 5px),
    radial-gradient(circle at 6% 75%, rgba(255, 255, 255, 0.14) 4px, transparent 5px),
    radial-gradient(circle at 94% 75%, rgba(255, 255, 255, 0.14) 4px, transparent 5px),
    #123f2a;
}

.dialog__felder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-bottom: 24px;
}

.dialog__felder label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  font-family: var(--schrift-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(20, 17, 13, 0.7);
}

.dialog__felder input,
.dialog__felder select {
  font: 500 16px var(--schrift-text);
  color: var(--schwarz);
  background: #fdfaf2;
  border: 2px solid rgba(20, 17, 13, 0.35);
  padding: 10px 12px;
}

.dialog__felder input:focus,
.dialog__felder select:focus {
  outline: none;
  border-color: var(--schwarz);
  background: #fff;
}

.dialog__hinweis-aktion {
  font-size: 14px;
  background: rgba(46, 138, 87, 0.15);
  border-left: 4px solid var(--filz-hell);
  padding: 10px 14px;
  margin-bottom: 20px;
}

.dialog__fuss {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.dialog__fuss .btn:only-child { margin-left: auto; }

.dialog__auswahl {
  font-family: var(--schrift-mono);
  font-size: 13px;
  color: rgba(20, 17, 13, 0.65);
}

.dialog__bestaetigung {
  text-align: center;
  padding: 20px 10px 10px;
}

.dialog__haken {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  background: var(--filz-hell);
  color: var(--kreide);
  border-radius: 50%;
}

.dialog__bestaetigung h3 { font-size: 34px; }

.dialog__demo-hinweis {
  font-family: var(--schrift-mono);
  font-size: 12.5px;
  color: rgba(20, 17, 13, 0.55);
  background: rgba(20, 17, 13, 0.06);
  padding: 10px 14px;
  margin: 18px 0 22px;
}

/* ---------- Archiv-Seite ---------- */

.archiv {
  padding: 150px 0 90px;
  background:
    radial-gradient(1100px 500px at 80% -5%, rgba(227, 154, 59, 0.08), transparent 60%),
    var(--schwarz);
  min-height: 100vh;
}

.archiv__grid {
  max-width: var(--inhalt-breite);
  margin: 64px auto 70px;
  padding: 0 24px;
  columns: 3;
  column-gap: 34px;
}

.archiv__plakat {
  break-inside: avoid;
  margin-bottom: 34px;
}

.archiv__plakat:nth-child(3n+1) { transform: rotate(-1.2deg); }
.archiv__plakat:nth-child(3n+2) { transform: rotate(0.9deg); }
.archiv__plakat:nth-child(3n) { transform: rotate(-0.5deg); }

.archiv__plakat:hover {
  transform: rotate(0) scale(1.02);
  transition: transform 0.25s ease;
}

.archiv__plakat figcaption {
  font-size: 12.5px;
  line-height: 1.5;
}

.archiv__textkarte {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 24px;
  background: var(--filz);
  color: var(--kreide);
}

.archiv__textkarte span { font-size: 44px; }

.archiv__textkarte h3 { font-size: 30px; margin: 0; }

.archiv__textkarte p { font-size: 14.5px; margin: 0; opacity: 0.9; }

.footer--schlank {
  background: var(--schwarz);
  color: var(--kreide);
  border-top: 1.5px solid var(--linie);
}

.footer--schlank .footer__unten {
  border-top: none;
  color: rgba(244, 236, 220, 0.65);
  padding-bottom: 8px;
}

.footer--schlank .footer__demo { background: rgba(244, 236, 220, 0.1); }

@media (max-width: 900px) {
  .archiv__grid { columns: 2; }
}

@media (max-width: 560px) {
  .archiv__grid { columns: 1; }
}

/* ---------- Karte-Seite (Speisekarte) ---------- */

.karte-seite {
  padding: 150px 0 40px;
  background:
    radial-gradient(1100px 500px at 15% -5%, rgba(46, 138, 87, 0.08), transparent 60%),
    var(--schwarz);
  min-height: 100vh;
}

.karte-seite__kopf {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.karte-seite__sub {
  color: rgba(244, 236, 220, 0.75);
}

.karte-sprung {
  max-width: var(--inhalt-breite);
  margin: 36px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.karte-sprung a {
  font-family: var(--schrift-mono);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--kreide);
  border: 1.5px solid var(--linie);
  border-radius: 999px;
  padding: 8px 16px;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.karte-sprung a:hover {
  border-color: var(--bernstein);
  color: var(--bernstein-hell);
  background: rgba(227, 154, 59, 0.08);
}

.karte-aktion {
  max-width: 620px;
  margin: 36px auto 0;
  padding: 0 24px;
}

.karte-block {
  max-width: var(--inhalt-breite);
  margin: 0 auto;
  padding: 86px 24px 0;
}

.karte-block__kopf {
  margin-bottom: 30px;
}

.karte-block__titel {
  font-family: var(--schrift-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.karte-block__intro {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(244, 236, 220, 0.7);
  font-size: 15px;
}

.karte-tafel {
  background: var(--kreide);
  color: var(--schwarz);
  padding: 4px 36px 22px;
  box-shadow: var(--schatten-papier);
  transform: rotate(-0.3deg);
}

.karte-liste {
  columns: 2;
  column-gap: 44px;
}

.karte-gruppe {
  break-inside: avoid;
  margin: 26px 0;
}

.karte-gruppe__titel {
  font-family: var(--schrift-mono);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(20, 17, 13, 0.55);
  border-bottom: 2px solid var(--schwarz);
  padding-bottom: 8px;
  margin: 0 0 4px;
}

.karte-liste .karte-auszug__zeile {
  padding: 5.5px 0;
  font-size: 14.5px;
}

.karte-liste dl { margin: 0; }

/* ---------- Rechtstext-Seiten (Impressum) ---------- */

.rechtstext {
  padding: 150px 0 100px;
  background: var(--schwarz);
  min-height: 100vh;
}

.rechtstext__kopf {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.rechtstext__inhalt {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.rechtstext__inhalt section {
  padding: 24px 0;
  border-top: 1.5px solid var(--linie);
}

.rechtstext__inhalt section:first-child { border-top: none; }

.rechtstext__inhalt h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.rechtstext__inhalt p {
  color: rgba(244, 236, 220, 0.8);
  font-size: 15.5px;
}

.rechtstext__inhalt a {
  color: var(--bernstein-hell);
}

/* ---------- Passwort-Overlay (pw-gate) ----------
   Liegt als erstes Element im <body>, deckt bei body.pw-locked die
   gesamte Seite blickdicht ab. js/gate.js entfernt die Klasse erst
   nach korrektem Passwort (SHA-256-Abgleich) und startet danach initApp(). */

body.pw-locked { overflow: hidden; }

.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(23, 85, 56, 0.35), transparent 60%),
    radial-gradient(900px 550px at 85% 85%, rgba(200, 55, 44, 0.22), transparent 60%),
    var(--schwarz);
  transition: opacity 400ms ease, visibility 400ms ease;
}

body:not(.pw-locked) .pw-gate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pw-gate__panel {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: var(--kreide);
  color: var(--schwarz);
  text-align: center;
  padding: 40px 34px 34px;
  border: 2px solid var(--schwarz);
  box-shadow: 12px 14px 0 rgba(0, 0, 0, 0.5);
  transform: rotate(-0.4deg);
}

.pw-gate__panel--shake {
  animation: pw-gate-shake 380ms ease;
}

@keyframes pw-gate-shake {
  0%, 100% { transform: rotate(-0.4deg) translateX(0); }
  20%, 60% { transform: rotate(-0.4deg) translateX(-8px); }
  40%, 80% { transform: rotate(-0.4deg) translateX(8px); }
}

.pw-gate__logo {
  width: 150px;
  height: auto;
  margin: 0 auto 22px;
}

.pw-gate__panel .kicker {
  justify-content: center;
  display: flex;
  align-items: center;
}

.pw-gate__titel {
  font-size: 36px;
  margin-bottom: 10px;
}

.pw-gate__hint {
  font-size: 15px;
  color: rgba(20, 17, 13, 0.7);
  margin-bottom: 26px;
}

.pw-gate__field {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pw-gate__field input {
  font: 500 18px var(--schrift-text);
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--schwarz);
  background: #fdfaf2;
  border: 2px solid rgba(20, 17, 13, 0.35);
  padding: 13px 14px;
}

.pw-gate__field input:focus {
  outline: none;
  border-color: var(--schwarz);
  background: #fff;
}

.pw-gate__submit { width: 100%; }

.pw-gate__error {
  margin: 18px 0 0;
  min-height: 16px;
  font-family: var(--schrift-mono);
  font-size: 13px;
  color: var(--signal);
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .news__reihe { grid-template-columns: 1fr 1fr; }
  .archiv-teaser__wand { grid-template-columns: repeat(2, 1fr); }
  .footer__spalten { grid-template-columns: 1fr 1fr; }
  .scoreboard { grid-template-columns: repeat(2, 1fr); }
  .scoreboard__feld:nth-child(-n+2) { border-bottom: 1.5px solid var(--linie); }
  .scoreboard--rot { grid-template-columns: repeat(3, 1fr); }
  .scoreboard--rot .scoreboard__feld { border-bottom: none; }
}

@media (max-width: 900px) {
  .nav__links, .nav__right { display: none; }
  .nav__burger { display: flex; }
  .bereich__spalten { grid-template-columns: 1fr; }
  .bereich__spalten--getauscht .bereich__text { order: 1; }
  .bereich__spalten--getauscht .bereich__medien { order: 2; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .news__reihe { grid-template-columns: 1fr; gap: 40px; }
  .foto-paar { grid-template-columns: 1fr; }
  .foto-paar--versetzt .foto:last-child { margin-top: 0; }
  .foto--schmal { max-width: none; }
  .archiv-teaser__wand { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__spalten { grid-template-columns: 1fr; gap: 34px; }
  .scoreboard--rot { grid-template-columns: 1fr; }
  .scoreboard--rot .scoreboard__feld {
    border-right: none;
    border-bottom: 1.5px solid var(--linie);
  }
  .scoreboard--rot .scoreboard__feld:last-child { border-bottom: none; }
  .dialog__felder { grid-template-columns: 1fr; }
  .dialog__rahmen { padding: 26px 20px 24px; }
  .saalplan { gap: 10px; }
  .hero__content { padding-bottom: 90px; }
  .hero__scroll { display: none; }
  .ticket-info { flex-direction: column; align-items: flex-start; }
}

/* Sehr niedrige Viewports (Handy quer, kleine Browserfenster): Dialog spart Platz,
   damit moeglichst wenig oder gar nicht innerhalb des Dialogs gescrollt werden muss. */
@media (max-height: 500px) {
  .dialog__rahmen { padding: 16px 22px 16px; }
  .dialog__kopf { margin-bottom: 10px; }
  .dialog__kopf h2 { font-size: 26px; }
  .dialog__schritte { margin-bottom: 14px; }
  .dialog__hilfe { display: none; }
  .saalplan { gap: 8px; margin-bottom: 14px; }
  .saalplan__tisch { aspect-ratio: 3 / 1; font-size: 13px; }
  .dialog__felder { margin-bottom: 14px; gap: 10px 14px; }
}

@media (max-width: 720px) {
  .karte-liste { columns: 1; }
  .karte-tafel { padding: 4px 22px 18px; }
  .karte-block { padding: 64px 20px 0; }
}

@media (max-width: 480px) {
  /* Positionen mit mehreren Preisen (z.B. "0,35l · 0,7l" / "48,00 · 88,00") passen bei
     sehr schmalen Screens oft nicht mehr auf eine Zeile. Statt Name und Preis auf der
     gleichen Flex-Zeile ineinander umbrechen zu lassen (sieht zerrissen aus), darf die
     Zeile hier natuerlich umbrechen: kurze Positionen bleiben einzeilig mit Punktlinie,
     nur lange Positionen brechen sauber in "Name" + "Preis(e)" auf. */
  .karte-liste .karte-auszug__zeile {
    flex-wrap: wrap;
    row-gap: 1px;
  }
  .karte-liste .karte-auszug__zeile::after { flex: 1 0 12px; }
  .karte-liste .karte-auszug__zeile dd { flex: 0 1 auto; }
}

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ticker__band,
  .bands__marquee,
  .hero__scroll span,
  .live-chip--offen .live-chip__punkt {
    animation: none;
  }
}
