/* ══════════════════════════════════════════════════
   Déjà Vu Göttingen — Rustic · Punk · Alternative
   ══════════════════════════════════════════════════ */

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

:root {
  --ink:      #0a0a0a;
  --paper:    #111111;
  --card:     #1a1a1a;
  --card-2:   #222222;
  --border:   #2e2e2e;
  --red:      #cc1f1f;
  --red-hot:  #ff2a2a;
  --cream:    #e8e8e8;
  --muted:    #a8a199;
  --paper-w:  #f0f0f0;
  --gold:     #c9b458;
  --green:     #6aa76a;
  /* zine palette — bone, stone, one red */
  --punk-blue:   #8f8a80;
  --punk-yellow: #ece7dd;
  --punk-red:    #cc1f1f;
  --punk-black:  #0a0a0a;

  --ff-typewriter: 'Special Elite', 'Courier New', monospace;
  --ff-body: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ff-display:    'Anton', 'Arial Narrow', sans-serif;
  --ff-logo:       'Permanent Marker', 'Special Elite', cursive;

  --radius: 2px;
  --trans: 200ms ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px; /* fixed nav height + breathing room for anchor jumps */
  overflow-x: hidden;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--ff-typewriter);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  color-scheme: dark;
  min-height: 100vh;
}

a { color: var(--red); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--red-hot); }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

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

:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 2px; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 6rem 0; border-top: 1px solid var(--border); position: relative; }
.section::before {
  content: "";
  position: absolute; top: -1px; left: 0;
  width: 64px; height: 3px;
  background: var(--red);
}

.section-label {
  font-family: var(--ff-typewriter);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--red-hot);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--paper-w);
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.section-intro {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
  font-style: italic;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 700px;
  margin: 0 auto;
  background: var(--paper-w);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5000;
  font-size: 0.9rem;
}
.cookie-banner span { flex: 1; }
.cookie-banner button {
  background: var(--ink);
  color: var(--paper-w);
  border: none;
  padding: 0.55rem 1.4rem;
  font-family: var(--ff-typewriter);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans);
}
.cookie-banner button:hover { background: var(--red); }

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0;
  padding: 0 1.5rem;
  min-height: 58px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding: 6px 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform var(--trans);
}
.nav-logo:hover img { transform: rotate(-3deg) scale(1.05); }

#navLinks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
  max-width: 100%;
}
#navLinks a {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--ff-typewriter);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--paper-w);
  padding: 0.45rem 0.9rem;
  border: 1px solid transparent;
  transition: all var(--trans);
  position: relative;
}
#navLinks a:hover {
  color: var(--red-hot);
  border-color: transparent;
  background: transparent;
}
#navLinks a.nav-feedback { color: var(--gold); border: 1px dashed var(--gold); }
#navLinks a.nav-feedback:hover { background: var(--gold); color: var(--ink); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--punk-yellow);
  color: var(--punk-yellow);
  font-size: 1.1rem;
  width: 38px; height: 38px;
  cursor: pointer;
  transition: all var(--trans);
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-toggle:hover {
  background: var(--punk-yellow);
  color: var(--punk-black);
}

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  #navLinks a::before { display: none; }
  #navLinks {
    display: none;
    position: absolute;
    top: 58px; left: 0; right: 0;
    flex-direction: column;
    background: var(--ink);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.3rem;
  }
  #navLinks.open { display: flex; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/public/img/hero_sign.webp') center/cover no-repeat;
  filter: contrast(1.05) brightness(1.15) saturate(1.1);
  z-index: 0;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16,12,8,0.15), transparent 30%, transparent 60%, rgba(16,12,8,0.55));
  z-index: 1;
}


.hero-inner {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  width: 100%;
}

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

.hero-meta { margin-bottom: 0; }

/* rotziger Stempel — Geschlossene Gesellschaft */
.hero-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-9deg) skew(-3deg);
  font-family: var(--ff-logo);
  font-size: clamp(1.6rem, 5.5vw, 3.4rem);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-hot);
  padding: 0.9rem 1.8rem;
  border: 6px solid var(--red-hot);
  border-radius: 6px;
  box-shadow:
    inset 0 0 22px rgba(200, 30, 20, 0.45),
    0 0 34px rgba(0, 0, 0, 0.55);
  outline: 2px dashed rgba(220, 60, 40, 0.55);
  outline-offset: 7px;
  background: rgba(120, 12, 8, 0.16);
  text-shadow: 2px 2px 0 rgba(60, 5, 2, 0.7), -1px -1px 0 rgba(255, 120, 90, 0.25);
  mix-blend-mode: hard-light;
  opacity: 0.92;
  pointer-events: none;
  z-index: 5;
  animation: stamp-in 380ms cubic-bezier(0.2, 2.4, 0.4, 1) both;
}
/* lange Tagesmeldungen: kleiner stempeln, mehr Platz */
.hero-stamp.small {
  font-size: clamp(1.1rem, 3.6vw, 2.2rem);
  max-width: min(92vw, 720px);
  width: max-content;
}
@keyframes stamp-in {
  from { transform: translate(-50%, -50%) rotate(-9deg) skew(-3deg) scale(2.4); opacity: 0; }
  to   { transform: translate(-50%, -50%) rotate(-9deg) skew(-3deg) scale(1);   opacity: 0.92; }
}
@media (prefers-reduced-motion: reduce) { .hero-stamp { animation: none; } }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px dashed var(--cream);
  color: var(--cream);
  background: rgba(0,0,0,.35);
}
.status-badge.open   { color: var(--punk-yellow); border-color: var(--punk-yellow); }
.status-badge.lastshot { color: #e8a13a; border-color: #e8a13a; }
.status-badge.closed { color: var(--red-hot); border-color: var(--red-hot); background: rgba(0,0,0,.45); }

/* Foto-Ampel im Badge — die echte Bar-Ampel (public/img/ampel/*.webp) */
.ampel-img {
  height: 2.4em;
  width: auto;
  display: inline-block;
  border-radius: 2px;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
}
/* inline icons (replaced Font Awesome — no CDN) */
.ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; }
.fbm-more { margin-top: .9rem; text-align: center; font-family: var(--ff-typewriter); font-size: .82rem; }
.fbm-more a { color: var(--red); text-decoration: underline; font-weight: 600; }
.fbm-more a:hover { color: #a00; }
.fbm-more span { color: var(--ink); opacity: .5; margin: 0 .5rem; }

.now-playing {
  margin-top: .9rem;
  display: inline-flex; align-items: center; gap: .7rem;
  max-width: 100%;
  padding: .5rem .85rem .5rem .55rem;
  background: rgba(8,6,5,.92);
  border: 1.5px solid rgba(232,220,196,.32);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}
.now-playing .np-art {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 8px;
  background: rgba(232,220,196,.1) center/cover no-repeat;
  border: 1px solid rgba(232,220,196,.25); display: none;
}
.now-playing .np-art.has-art { display: block; }
/* animated equalizer — shown when there's no album art */
.now-playing .np-eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 18px; }
.now-playing .np-art.has-art ~ .np-eq { display: none; }
.now-playing .np-eq i {
  width: 3px; background: var(--red); border-radius: 2px;
  animation: npbar .9s ease-in-out infinite;
}
.now-playing .np-eq i:nth-child(1){ height: 40%; animation-delay: -.2s; }
.now-playing .np-eq i:nth-child(2){ height: 90%; animation-delay: -.5s; }
.now-playing .np-eq i:nth-child(3){ height: 60%; animation-delay: -.1s; }
.now-playing .np-eq i:nth-child(4){ height: 100%; animation-delay: -.35s; }
@keyframes npbar { 0%,100%{ transform: scaleY(.35); } 50%{ transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce){ .now-playing .np-eq i{ animation: none; } }
.now-playing .np-txt { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; text-align: left; }
.now-playing .np-label {
  font-family: var(--ff-typewriter); font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: #ff6b6b; font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.now-playing .np-title {
  font-size: .9rem; font-weight: 700; color: var(--cream);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 44ch;
}
.now-playing .np-artist {
  font-size: .76rem; color: var(--cream); opacity: .7;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 44ch;
}
.section-shot .shot-card {
  display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center;
  border: 2px solid var(--red); padding: 1.4rem; background: rgba(0,0,0,.25);
}
.section-shot .shot-img { flex: 0 0 200px; max-width: 200px; }
.section-shot .shot-img img { width: 100%; height: auto; display: block; }
.section-shot .shot-body { flex: 1 1 240px; min-width: 0; }
.section-shot .shot-name { margin: 0 0 .3rem; }
.section-shot .shot-price { color: var(--punk-yellow); font-weight: 700; margin-bottom: .5rem; }
.section-shot .shot-details { font-size: .85rem; opacity: .8; margin-top: .5rem; }
/* Shot-Abstimmung: Prost auf den aktuellen + Wahl für nächste Woche */
.shot-vote-btn {
  display: inline-block; margin-top: .9rem; padding: .5rem 1rem;
  background: transparent; border: 2px dashed var(--punk-yellow);
  color: var(--punk-yellow); font-family: var(--ff-typewriter);
  font-size: .9rem; letter-spacing: .06em; cursor: pointer;
}
.shot-vote-btn.voted { background: var(--punk-yellow); color: #1a1408; border-style: solid; }
.shot-next { margin-top: 1.1rem; border-top: 1px dashed rgba(232,220,196,.35); padding-top: .9rem; }
.shot-next-head { font-family: var(--ff-typewriter); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .55rem; }
.shot-next-opts { display: flex; flex-wrap: wrap; gap: .45rem; }
.shot-next-opt {
  padding: .45rem .8rem; background: rgba(0,0,0,.3); border: 1px solid var(--cream);
  color: var(--cream); font-family: var(--ff-typewriter); font-size: .85rem; cursor: pointer;
}
.shot-next-opt b { color: var(--punk-yellow); margin-left: .25rem; }
.shot-next-opt.chosen { background: var(--red); border-color: var(--red); color: #fff; }
.shot-next-opt.chosen b { color: #fff; }
.shot-next-hint { margin-top: .5rem; font-size: .72rem; opacity: .6; font-family: var(--ff-typewriter); }

/* Talents (z.B. Bars4Bars) auf der Event-Seite — schlichte Act-Liste */
.ed-talents { margin-top: 2.2rem; }
.ed-talents h2 { font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: .9rem; }
.talent-list { list-style: none; padding: 0; margin: 0 0 1.6rem; max-width: 560px; }
.talent-list li {
  font-family: var(--ff-typewriter); font-size: .95rem; padding: .5rem .2rem;
  border-bottom: 1px dashed rgba(232,220,196,.3);
}
.talent-list li::before { content: "↳ "; color: var(--red); }
.talent-list .t-empty { opacity: .6; }
.talent-list .t-empty::before { content: ""; }
.talent-list .t-soc { font-size: .8rem; color: var(--punk-yellow); }
.talent-list .t-soc a { color: inherit; }
.talent-form { border: 2px dashed rgba(232,220,196,.4); padding: 1.1rem; max-width: 560px; }
.talent-form h3 { font-family: var(--ff-display); margin-bottom: .7rem; }
.talent-form label { display: block; font-family: var(--ff-typewriter); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin: .7rem 0 .25rem; opacity: .75; }
.talent-form input[type="text"], .talent-form textarea {
  width: 100%; background: rgba(0,0,0,.35); border: 1px solid rgba(232,220,196,.4);
  color: var(--cream); font-family: var(--ff-typewriter); font-size: 16px; padding: .55rem .7rem;
}
.talent-form .t-count { font-size: .7rem; opacity: .55; text-align: right; font-family: var(--ff-typewriter); }
.talent-form button[type="submit"] {
  margin-top: .9rem; padding: .6rem 1.3rem; background: var(--red); border: none;
  color: #fff; font-family: var(--ff-display); font-size: 1rem; letter-spacing: .05em; cursor: pointer;
}
.talent-status { font-family: var(--ff-typewriter); font-size: .9rem; border: 2px dashed var(--punk-yellow); color: var(--punk-yellow); padding: .8rem 1rem; max-width: 560px; }
.talent-fb { margin-top: .6rem; font-family: var(--ff-typewriter); font-size: .82rem; }
.talent-fb.err { color: #ff7a6a; }
.talent-fb.ok { color: var(--punk-yellow); }

.hero-event {
  display: inline-block;
  margin-left: 0.6rem;
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px dashed var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all var(--trans);
}
.hero-event:hover { background: var(--gold); color: var(--ink); }
.hero-event-dot { color: var(--red-hot); }
@media (max-width: 620px) {
  .hero-event { margin-left: 0; margin-top: 0.8rem; }
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--red);
  color: var(--paper-w);
  font-family: var(--ff-typewriter);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  transition: background var(--trans);
}
.hero-cta:hover { background: var(--red-hot); }

/* ─── EVENT DETAIL PAGE ─── */
.ed-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  overflow: hidden;
}
.ed-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) brightness(0.7);
}
.ed-hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16,12,8,0.3), rgba(16,12,8,0.85));
}
.ed-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
}
.ed-recurrence {
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.ed-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--paper-w);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.ed-meta {
  font-family: var(--ff-typewriter);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.ed-body { max-width: 820px; }
.ed-badge {
  display: inline-block;
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px dashed var(--gold);
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.ed-desc { font-size: 1.05rem; margin-bottom: 2rem; white-space: pre-line; }
.ed-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ed-img {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ed-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) contrast(1.05);
  transition: filter var(--trans), transform var(--trans);
}
.ed-img:hover img { filter: none; transform: scale(1.03); }
.ed-back { text-decoration: none; }

.event-more {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dashed var(--gold);
}
.event-more:hover { color: var(--red-hot); border-color: var(--red-hot); }

.event-actions, .ed-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.event-organizer, .ed-organizer {
  font-family: var(--ff-typewriter);
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.3rem 0 0.5rem;
}

/* closure cards + cancelled events (Geschlossene Gesellschaft) */
.closure-card { border: 2px dashed var(--red) !important; background: rgba(120, 12, 8, 0.10); }
.closure-card .event-title { color: var(--red-hot); }
.event-card.is-cancelled { opacity: 0.75; }
.event-card.is-cancelled .event-title { text-decoration: line-through; text-decoration-color: var(--red-hot); text-decoration-thickness: 3px; }
.event-cancel-stamp {
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  font-family: var(--ff-typewriter);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-hot);
  border: 2px solid var(--red-hot);
  padding: 0.2rem 0.5rem;
  transform: rotate(6deg);
  background: rgba(16, 12, 8, 0.85);
  z-index: 2;
}
.event-cancel-note { color: var(--red-hot) !important; font-style: italic; }

/* ── TURNIER ── */
.tour-staff {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  border: 1px dashed var(--gold);
  padding: 0.7rem 1rem; margin-bottom: 1rem;
  font-family: var(--ff-typewriter); font-size: 0.85rem; color: var(--cream);
}
.tour-staff-label { color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.btn-tour {
  background: var(--red); color: var(--paper-w); border: none;
  font-family: var(--ff-typewriter); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.8rem; padding: 0.45rem 1rem; cursor: pointer;
}
.btn-tour:hover { background: var(--red-hot); }
.btn-tour.ghost-tour { background: transparent; border: 1px dashed var(--muted); color: var(--muted); }
.tour-h2 { font-family: var(--ff-display); text-transform: uppercase; color: var(--paper-w); margin: 1rem 0; }
.tour-form { display: flex; flex-direction: column; gap: 0.6rem; max-width: 420px; margin-bottom: 1.6rem; }
.tour-form input {
  background: var(--card); border: 1px solid var(--border); color: var(--cream);
  font-family: var(--ff-typewriter); font-size: 0.95rem; padding: 0.6rem 0.8rem; width: 100%;
}
.tour-form input:focus { outline: 1px solid var(--gold); }
#tPlayers { display: flex; flex-direction: column; gap: 0.6rem; }
.tour-form button {
  background: var(--red); color: var(--paper-w); border: none; cursor: pointer;
  font-family: var(--ff-typewriter); text-transform: uppercase; letter-spacing: 0.15em;
  font-size: 0.95rem; padding: 0.7rem;
}
.tour-form button:hover { background: var(--red-hot); }
.tour-note { font-size: 0.72rem; color: var(--muted); font-family: var(--ff-typewriter); }
.tour-teams { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.6rem; }
.tour-team {
  border: 1px solid var(--border); background: var(--card);
  padding: 0.6rem 0.9rem; position: relative;
}
.tour-team b { display: block; color: var(--cream); font-family: var(--ff-typewriter); }
.tour-team span { font-size: 0.78rem; color: var(--muted); }
.tour-team-empty { border-style: dashed; color: var(--muted); font-style: italic; }
.tt-del {
  position: absolute; top: 0.4rem; right: 0.4rem;
  background: none; border: 1px solid var(--red); color: var(--red);
  cursor: pointer; font-size: 0.7rem; padding: 0.1rem 0.35rem;
}
.tour-champion {
  font-family: var(--ff-display); font-size: clamp(1.6rem, 5vw, 2.6rem);
  text-transform: uppercase; color: var(--punk-yellow);
  border: 3px double var(--punk-yellow); padding: 1.2rem 1.6rem;
  margin: 1rem 0 1.6rem; text-align: center; transform: rotate(-1.5deg);
}
.tour-champion small { display: block; font-family: var(--ff-typewriter); font-size: 0.95rem; color: var(--cream); margin-top: 0.4rem; text-transform: none; }
.tour-bracket-wrap { overflow-x: auto; padding-bottom: 1rem; }
.tour-bracket { display: flex; gap: 1.6rem; align-items: stretch; min-width: min-content; }
.tb-round { display: flex; flex-direction: column; justify-content: space-around; gap: 1rem; min-width: 230px; }
.tb-round-label {
  font-family: var(--ff-typewriter); font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); text-align: center;
}
.tb-match { border: 1px solid var(--border); background: var(--card); }
.tb-match.done { opacity: 0.92; }
.tb-team {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem;
  padding: 0.5rem 0.8rem; border-bottom: 1px dashed var(--border);
  font-family: var(--ff-typewriter); font-size: 0.88rem; color: var(--cream);
}
.tb-team:last-of-type { border-bottom: none; }
.tb-team small { display: block; font-size: 0.68rem; color: var(--muted); }
.tb-team.win { color: var(--punk-yellow); }
.tb-team.win .tb-score { color: var(--punk-yellow); font-weight: bold; }
.tb-score { font-size: 0.95rem; color: var(--gold); min-width: 1.4em; text-align: right; }
.tb-tbd { color: var(--muted); font-style: italic; }
.tb-entry {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.8rem; border-top: 1px solid var(--border); background: rgba(0,0,0,0.25);
}
.tb-entry input {
  width: 52px; background: var(--ink); border: 1px solid var(--border); color: var(--cream);
  font-family: var(--ff-typewriter); padding: 0.25rem 0.4rem; text-align: center;
}
.tb-entry button {
  margin-left: auto; background: var(--punk-yellow); border: none; color: var(--ink);
  font-weight: bold; padding: 0.25rem 0.7rem; cursor: pointer;
}

/* Turnier-Hinweis auf Event-Karte/-Seite */
.event-tournament-link, .ed-tournament-link {
  display: inline-block;
  font-family: var(--ff-typewriter); font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: var(--punk-yellow);
  padding: 0.4rem 0.9rem; text-decoration: none;
  transform: rotate(-1deg);
}
.event-tournament-link:hover, .ed-tournament-link:hover { background: var(--gold); }
.event-organizer a, .ed-organizer a { color: var(--gold); }
.event-organizer a:hover, .ed-organizer a:hover { color: var(--red-hot); }
.ed-organizer { font-size: 0.9rem; margin-bottom: 1rem; }
.event-actions .event-more { margin-top: 0; }
.ed-actions { margin-top: 1.5rem; }
.rsvp-btn {
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px dashed var(--cream);
  color: var(--cream);
  cursor: pointer;
  transition: all var(--trans);
}
.rsvp-btn:hover { border-color: var(--punk-yellow); color: var(--punk-yellow); }
.rsvp-btn.going {
  border-style: solid;
  border-color: var(--punk-yellow);
  color: var(--punk-yellow);
}

/* ─── BAR / ABOUT ─── */
.bar-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .bar-grid { grid-template-columns: 1fr; } }

.bar-text .lead {
  font-size: 1.15rem;
  color: var(--paper-w);
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}
.bar-text p {
  color: var(--cream);
  margin-bottom: 1rem;
}
.bar-list {
  list-style: none;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--cream);
}
.bar-list li {
  padding: 0.3rem 0;
  letter-spacing: 0.05em;
}

.hours-card {
  background: var(--paper-w);
  color: var(--ink);
  padding: 0;
}
.hours-card-head {
  background: var(--ink);
  color: var(--paper-w);
  font-family: var(--ff-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 0.8rem 1.2rem;
  text-align: center;
}
.hours-grid { padding: 0.5rem 1rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0.3rem;
  font-family: var(--ff-typewriter);
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(16,12,8,0.2);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today {
  background: var(--ink);
  color: var(--paper-w);
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.hours-row.today .hours-day::before { content: "▸ "; color: var(--red); }
.hours-day { font-weight: bold; min-width: 4rem; }
.hours-time { text-align: right; }
.hours-closed { font-style: italic; opacity: 0.55; }
/* große Foto-Ampel + Live-Status als Hauptanzeige der Karte */
.hours-now {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px dashed rgba(16,12,8,0.25);
}
.hours-ampel { height: 118px; width: auto; border-radius: 3px; }
.hours-now-state {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
}
.hours-now-state.open     { color: #2e7a1c; }
.hours-now-state.lastshot { color: #a86a10; }
.hours-now-state.closed   { color: #b3271e; }
.hours-now-today {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  opacity: 0.75;
}
.hours-details summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.2rem;
  user-select: none;
}
.hours-details summary::before { content: "▸ "; color: var(--red); }
.hours-details[open] summary::before { content: "▾ "; }
.hours-details summary::-webkit-details-marker { display: none; }
.hours-details[open] summary { border-bottom: 1px dashed rgba(16,12,8,0.2); }
.hours-card-foot {
  border-top: 1px dashed var(--ink);
  padding: 0.5rem 1rem;
  text-align: center;
}
.hours-card-foot small { font-size: 0.75rem; opacity: 0.7; }

/* ─── GALLERY ─── */
.section-gallery { background: var(--paper); }

.gallery-wrap {
  margin-top: 2rem;
  position: relative;
}
.gallery-strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 2rem 1.5rem;
  scrollbar-width: thin;
  cursor: grab;
}
.gallery-strip:active { cursor: grabbing; }
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-empty { color: var(--muted); font-style: italic; padding: 2rem; }

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 360px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--border);
  transition: border-color var(--trans);
  position: relative;
}
.gallery-item:hover { border-color: var(--paper-w); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: filter var(--trans);
}
.gallery-item:hover img { filter: grayscale(0) contrast(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lb-close, .lb-nav {
  position: absolute;
  background: var(--paper-w);
  color: var(--ink);
  border: 2px solid var(--ink);
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  width: 48px; height: 48px;
  transition: background var(--trans);
}
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-nav:hover { background: var(--red); color: var(--paper-w); }

.lb-figure {
  max-width: min(900px, 90vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-figure img {
  max-height: 75vh;
  border: 2px solid var(--paper-w);
}
.lb-figure figcaption {
  margin-top: 1rem;
  text-align: center;
  color: var(--cream);
  font-family: var(--ff-typewriter);
}
.lb-figure figcaption small {
  display: block;
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* ─── GAMES ─── */
.section-games { background: var(--ink); }

/* die echten Geräte — Foto-Teaser über den Browser-Games */
.games-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.6rem 0 2.2rem;
}
@media (max-width: 700px) { .games-photo { grid-template-columns: 1fr; } }
.games-photo figure { margin: 0; border: 1px solid var(--border); background: var(--card); }
.games-photo img {
  width: 100%; height: 230px;
  object-fit: cover; display: block;
  filter: contrast(1.06);
}
.games-photo figcaption {
  font-family: var(--ff-typewriter);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.55rem 0.8rem;
}

.games-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .games-layout { grid-template-columns: 1fr; } }

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 500px) { .games-grid { grid-template-columns: 1fr; } }

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  transition: border-color var(--trans), background var(--trans);
}
.game-card:hover {
  background: var(--card-2);
  border-color: var(--red);
}

.gc-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--red);
  line-height: 1;
}
.gc-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--paper-w);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.gc-desc {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.gc-meta {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

/* Leaderboard panel */
.leaderboard-panel {
  background: var(--paper-w);
  color: var(--ink);
  padding: 0;
  position: sticky;
  top: 80px;
}
.lb-head {
  background: var(--ink);
  color: var(--paper-w);
  padding: 0.8rem 1rem;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.lb-tabs {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.lb-tab {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
  padding: 0.25rem 0.6rem;
  font-family: var(--ff-typewriter);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
}
.lb-tab.active, .lb-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper-w);
}
.lb-list {
  list-style: none;
  padding: 0.5rem 0;
  max-height: 400px;
  overflow-y: auto;
}
.lb-list li {
  display: grid;
  grid-template-columns: 2rem 1fr auto auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px dashed rgba(16,12,8,0.15);
  font-family: var(--ff-typewriter);
  font-size: 0.9rem;
}
.lb-list li:last-child { border-bottom: none; }
.lb-rank { font-weight: bold; color: var(--red); }
.lb-rank.gold   { color: var(--gold); font-size: 1.1rem; }
.lb-rank.silver { color: #888; }
.lb-rank.bronze { color: #a05a2c; }
.lb-player { font-weight: bold; }
.lb-score  { font-family: var(--ff-typewriter); }
.lb-date   { font-size: 0.7rem; opacity: 0.6; }
.lb-empty  {
  display: block !important;
  padding: 2rem 1rem !important;
  text-align: center !important;
  font-style: italic;
  color: var(--muted) !important;
  border: none !important;
}

/* Game modal */
.game-modal {
  position: fixed; inset: 0;
  background: rgba(16,12,8,0.97);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gm-frame {
  width: 100%;
  max-width: 820px;
  background: var(--ink);
  border: 2px solid var(--paper-w);
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}
.gm-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: var(--paper-w);
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.gm-head span:first-child {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  flex: 1;
}
.gm-score {
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.gm-score b { color: var(--red); margin-left: 0.5rem; font-size: 1rem; }
.gm-close {
  background: var(--ink); color: var(--paper-w);
  border: none; cursor: pointer;
  width: 32px; height: 32px;
  font-size: 1rem;
  font-family: var(--ff-display);
}
.gm-close:hover { background: var(--red); }

.gm-body {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  flex: 1;
  overflow: hidden;
}
#gameCanvas {
  display: block;
  max-width: 100%;
  max-height: 60vh;
  background: #000;
}

.gm-overlay {
  position: absolute; inset: 0;
  background: rgba(16,12,8,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.gm-over-inner { text-align: center; padding: 2rem; }
.gm-over-title {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.gm-over-score {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.gm-over-score b { color: var(--paper-w); }

.gm-name-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.gm-name-row input {
  background: var(--paper-w);
  color: var(--ink);
  border: 2px solid var(--paper-w);
  padding: 0.5rem 0.8rem;
  font-family: var(--ff-typewriter);
  font-size: 0.9rem;
  min-width: 180px;
}
.gm-name-row input:focus { outline: none; border-color: var(--red); }
.gm-name-row button, .btn-retry, .btn-quit {
  background: var(--red);
  color: var(--paper-w);
  border: 2px solid var(--paper-w);
  padding: 0.55rem 1.2rem;
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
}
.gm-name-row button:hover, .btn-retry:hover {
  background: var(--paper-w);
  color: var(--ink);
}
.btn-quit { background: transparent; }
.btn-quit:hover { background: var(--paper-w); color: var(--ink); }

.gm-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.gm-foot {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
}
.gm-help {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* Memory grid (no canvas) */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 1rem;
  width: 100%;
  max-width: 460px;
}
.memory-card {
  aspect-ratio: 1;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  cursor: pointer;
  user-select: none;
  transition: all 150ms ease;
  color: var(--paper-w);
}
.memory-card:hover { border-color: var(--red); }
.memory-card.flipped {
  background: var(--paper-w);
  color: var(--ink);
  border-color: var(--paper-w);
}
.memory-card.matched {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
}

/* ─── BLOG ─── */
.section-blog { background: var(--paper); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.blog-empty { color: var(--muted); font-style: italic; padding: 2rem 0; }

.blog-card {
  background: var(--paper-w);
  color: var(--ink);
  padding: 1.5rem;
}
.blog-date {
  font-family: var(--ff-typewriter);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.blog-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.blog-excerpt {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ─── TERMINE / EVENTS ─── */
.section-termine { background: var(--ink); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.events-empty { color: var(--muted); font-style: italic; padding: 2rem 0; }

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color var(--trans);
  overflow: hidden;
}
.event-card:hover { border-color: var(--punk-blue); }

.event-card.is-today { border-color: var(--red); }

.event-today-stamp {
  position: absolute;
  top: 0.9rem;
  right: -2.6rem;
  transform: rotate(45deg);
  background: var(--red);
  color: var(--paper-w);
  font-family: var(--ff-typewriter);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 3rem;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.event-flyer {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
}
.event-flyer img { width: 100%; height: 100%; object-fit: cover; display: block; }

.event-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }

.event-recurrence {
  font-family: var(--ff-typewriter);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
}
.event-badge {
  align-self: flex-start;
  font-family: var(--ff-typewriter);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-w);
  background: var(--red);
  padding: 0.25rem 0.7rem;
}
.event-desc { font-size: 0.9rem; line-height: 1.55; color: var(--cream); opacity: 0.82; }
.event-meta {
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--border);
  font-family: var(--ff-typewriter);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.event-card.is-test { opacity: 0.62; border-style: dashed; }
.event-card.is-test .event-recurrence { color: var(--muted); }

/* ─── KONTAKT ─── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .kontakt-grid { grid-template-columns: 1fr; } }

.info-block { margin-bottom: 1.5rem; }
.info-block strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.info-block p { color: var(--cream); font-size: 1rem; }

.contact-form { margin-top: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--ff-typewriter);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--paper-w);
  font-family: var(--ff-typewriter);
  font-size: 0.95rem;
  transition: border-color var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--card-2);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* reservation fields */
.res-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 520px) { .res-grid { grid-template-columns: 1fr; } }
.res-row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--cream);
  cursor: pointer;
}
.form-check input { width: auto; accent-color: var(--red); }
.res-prices-btn {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red-hot);
  font-family: var(--ff-typewriter);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: all var(--trans);
}
.res-prices-btn:hover { background: var(--red); color: var(--paper-w); }
.res-note {
  border-left: 3px solid var(--red);
  background: var(--card);
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--cream);
}

/* ── PRICE MODAL ── */
.price-modal {
  position: fixed; inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.pm-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(3px);
}
.pm-card {
  position: relative;
  width: min(560px, 100%);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: var(--paper-w);
  color: var(--ink);
  border: 2px solid var(--ink);
  animation: pm-in 220ms ease;
}
@keyframes pm-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .pm-card { animation: none; } }
.pm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--ink);
  color: var(--paper-w);
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
}
.pm-close {
  background: none;
  border: none;
  color: var(--paper-w);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  transition: color var(--trans);
}
.pm-close:hover { color: var(--red-hot); }
.pm-body { padding: 1.1rem 1.2rem; overflow-y: auto; }
.pm-photo { margin: 0 0 1rem; border: 2px solid var(--ink); }
.pm-photo img { width: 100%; max-height: 220px; object-fit: cover; display: block; }
.cm-profile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.cm-profile .pm-intro { margin-bottom: 0; }
.cm-avatar {
  width: 96px; height: 96px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red);
  transform: rotate(-2deg);
}
@media (max-width: 480px) {
  .cm-profile { flex-direction: column; align-items: center; text-align: center; }
}
.cm-links { display: flex; flex-direction: column; gap: 0.4rem; }
.cm-links a {
  font-family: var(--ff-typewriter);
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.45rem 0.7rem;
  border: 1px dashed rgba(10,10,10,0.35);
  text-decoration: none;
  transition: all var(--trans);
}
.cm-links a:hover { background: var(--ink); color: var(--paper-w); }
.pm-intro { font-size: 0.85rem; margin-bottom: 0.9rem; }
.pm-days { border: 1px solid rgba(10,10,10,0.3); }
.pm-day {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.8rem;
  border-bottom: 1px dashed rgba(10,10,10,0.25);
  font-size: 0.88rem;
}
.pm-day:last-child { border-bottom: none; }
.pm-day.sel { background: var(--ink); color: var(--paper-w); }
.pm-day.sel .pm-day-name::after { content: " ▸"; color: var(--red-hot); }
.pm-day.closed { opacity: 0.6; }
.pm-day-name { font-weight: bold; min-width: 6.8rem; }
.pm-day-price { font-family: var(--ff-display); font-size: 1.05rem; min-width: 3.6rem; }
.pm-chip {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18em 0.6em;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.pm-chip.mindestumsatz { color: var(--red); }
.pm-day.sel .pm-chip.mindestumsatz { color: var(--red-hot); }
.pm-chip.ruhetag { border-style: dashed; opacity: 0.8; margin-left: auto; }
.pm-legend {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.72rem;
  line-height: 1.5;
  opacity: 0.75;
  margin-top: 0.9rem;
}
.pm-calc { margin-top: 1.1rem; border: 2px solid var(--ink); }
.pm-calc-title {
  background: var(--red);
  color: var(--paper-w);
  font-family: var(--ff-typewriter);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  padding: 0.38rem 0.8rem;
}
.pm-calc-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.88rem;
  border-bottom: 1px dashed rgba(10,10,10,0.25);
}
.pm-calc-row:last-child { border-bottom: none; }
.pm-calc-row b { text-align: right; }
.pm-foot {
  padding: 0.9rem 1.2rem;
  border-top: 1px dashed rgba(10,10,10,0.35);
  text-align: right;
}
.pm-ok {
  background: var(--red);
  color: var(--paper-w);
  border: none;
  font-family: var(--ff-typewriter);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  padding: 0.6rem 1.6rem;
  cursor: pointer;
  transition: background var(--trans);
}
.pm-ok:hover { background: var(--red-hot); }

.btn-submit {
  background: var(--red);
  color: var(--paper-w);
  border: none;
  padding: 0.8rem 2rem;
  font-family: var(--ff-typewriter);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans);
}
.btn-submit:hover { background: var(--red-hot); }

.form-feedback {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  border: 1px solid;
}
.form-feedback.ok  { color: #1b7a2e; border-color: var(--green); }
.form-feedback.err { color: var(--red);   border-color: var(--red); }

/* Map */
.kontakt-map { position: sticky; top: 80px; }
.map-container {
  height: 420px;
  border: 1px solid var(--border);
  background: var(--card);
}
.map-caption {
  margin-top: 0.8rem;
  font-family: var(--ff-typewriter);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
}

/* Leaflet dark-ish */
.leaflet-tile-pane { filter: grayscale(1) invert(0.9) contrast(0.9); }
.leaflet-container { background: var(--ink) !important; }
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--paper-w) !important;
  color: var(--ink) !important;
  border-radius: 0 !important;
}
.leaflet-popup-content {
  font-family: var(--ff-typewriter) !important;
  font-size: 0.85rem !important;
}
.leaflet-control-attribution {
  background: rgba(16,12,8,0.7) !important;
  color: var(--muted) !important;
  font-family: var(--ff-typewriter) !important;
  font-size: 0.65rem !important;
}
.leaflet-control-attribution a { color: var(--red) !important; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  margin-right: auto;
}
.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--red); }
.footer-credit {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-credit a { color: var(--cream); }
.footer-credit a:hover { color: var(--red); }

/* ── GETRÄNKEKARTE ── */
.section-karte {
  background:
    linear-gradient(rgba(8, 6, 5, 0.74), rgba(8, 6, 5, 0.86)),
    url('/public/img/karte_bg.jpg') center / cover fixed no-repeat,
    #0c0a08;
  position: relative;
}
.section-karte .container { position: relative; z-index: 1; }
.section-karte .menu-item {
  background: rgba(14, 12, 9, 0.78);
  backdrop-filter: blur(1px);
}
.section-karte .menu-item-name { color: #f4efe2; }
.section-karte .menu-item-price { color: var(--punk-yellow); }
.section-karte .menu-grid { background: rgba(232, 220, 196, 0.14); border-color: rgba(232, 220, 196, 0.22); }
.section-karte .menu-legend { color: rgba(232, 220, 196, 0.55); }
.menu-cat-img {
  margin: 0 0 1.2rem;
  border: 1px solid rgba(232, 220, 196, 0.25);
}
.menu-cat-img img {
  width: 100%; height: 150px;
  object-fit: cover; display: block;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .section-karte { background-attachment: scroll, scroll, scroll; } /* iOS: fixed+cover zoomt */
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.menu-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: #cbc3b2;
  font-family: var(--ff-typewriter);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  cursor: pointer;
  transition: all var(--trans);
}
.menu-tab:hover { border-color: var(--red); color: var(--cream); }
.menu-tab.active { background: var(--red); border-color: var(--red); color: #fff; }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.menu-item {
  background: var(--paper);
  padding: .8rem 1rem;
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
}
.menu-item-name {
  font-family: var(--ff-typewriter);
  font-size: .88rem;
  color: var(--cream);
}
.menu-allergen-sup {
  color: var(--red-hot);
  font-size: .62rem;
  margin-left: .2em;
  letter-spacing: .05em;
}
.menu-item-details {
  font-size: .74rem;
  font-style: italic;
  color: var(--muted);
  margin-top: .25rem;
  line-height: 1.45;
}
.menu-item-price {
  font-family: var(--ff-typewriter);
  font-size: .88rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-foot { margin-top: 1.2rem; }
.menu-legend {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px dashed var(--border);
  padding-top: .8rem;
}
.menu-legend b { color: var(--red-hot); }
.menu-empty {
  color: var(--muted);
  font-size: .85rem;
  padding: 1.5rem 0;
  text-align: center;
  letter-spacing: .08em;
}

/* ── THEKEN-ROAST ── */
.roast-panel {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  background: var(--card);
}
.roast-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.2rem;
  background: var(--ink);
  border-bottom: 2px solid var(--red);
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper-w);
}
.roast-sub {
  font-family: var(--ff-typewriter);
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.roast-compose { padding: 1rem 1.2rem; border-bottom: 1px dashed var(--border); }
.roast-locked {
  font-family: var(--ff-typewriter);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.roast-qualify {
  font-family: var(--ff-typewriter);
  font-size: 0.8rem;
  color: var(--punk-yellow);
  margin-bottom: 0.6rem;
}
.roast-form { display: flex; gap: 0.6rem; align-items: stretch; flex-wrap: wrap; }
.roast-form textarea {
  flex: 1;
  min-width: 220px;
  background: var(--ink);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--ff-typewriter);
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
  resize: vertical;
}
.roast-form textarea:focus { outline: 1px solid var(--gold); }
.roast-form button {
  background: var(--red);
  color: var(--paper-w);
  border: none;
  font-family: var(--ff-typewriter);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: background var(--trans);
}
.roast-form button:hover { background: var(--red-hot); }
.roast-fb { font-family: var(--ff-typewriter); font-size: 0.78rem; margin-top: 0.5rem; }
.roast-fb.ok { color: var(--green); }
.roast-fb.err { color: var(--red-hot); }
/* modals render roast-fb on a white card — need dark variants */
.pm-body .roast-fb.ok  { color: #1b7a2e; }
.pm-body .roast-fb.err { color: var(--red); }
.roast-list { list-style: none; margin: 0; padding: 0.4rem 0; }
.roast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.7rem 1.2rem;
  border-bottom: 1px dashed var(--border);
}
.roast-item:last-child { border-bottom: none; }
.roast-rank { flex-shrink: 0; width: 2rem; text-align: center; font-size: 1rem; }
.roast-body { flex: 1; min-width: 0; }
.roast-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
}
.roast-by {
  font-family: var(--ff-typewriter);
  font-size: 0.72rem;
  color: var(--gold);
}
.roast-vote {
  flex-shrink: 0;
  background: transparent;
  border: 1px dashed var(--cream);
  color: var(--cream);
  font-family: var(--ff-typewriter);
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  transition: all var(--trans);
}
.roast-vote:hover { border-color: var(--punk-yellow); color: var(--punk-yellow); }
.roast-vote.voted {
  border-style: solid;
  border-color: var(--punk-yellow);
  color: var(--punk-yellow);
}
.rr-rules {
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.9rem;
  line-height: 2;
}
.drink-code {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  letter-spacing: 0.35em;
  padding: 0.9rem 0 0.9rem 0.35em;
  margin: 1rem 0;
  color: var(--red);
  border: 3px dashed var(--ink);
  background: repeating-linear-gradient(-45deg, transparent 0 12px, rgba(10,10,10,0.05) 12px 24px);
}

/* ── FEEDBACK ── */
.feedback-btn {
  background: transparent;
  border: 1px dashed var(--gold);
  color: var(--gold);
  font-family: var(--ff-typewriter);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  transition: all var(--trans);
}
.feedback-btn:hover { background: var(--gold); color: var(--ink); }
.fbm-rating { display: flex; gap: 0.4rem; margin-bottom: 0.9rem; }
.fbm-rating button {
  font-size: 1.6rem;
  background: transparent;
  border: 1px dashed rgba(10,10,10,0.3);
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  filter: grayscale(1) opacity(0.45);
  transition: all var(--trans);
}
.fbm-rating button.sel { filter: none; border-color: var(--red); border-style: solid; }
#feedbackModal textarea, #feedbackModal input:not([aria-hidden]) {
  width: 100%;
  border: 1px solid rgba(10,10,10,0.4);
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  font-family: var(--ff-typewriter);
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.6rem;
  resize: vertical;
}

/* ── BLOG DETAIL PAGE ── */
.blog-card { display: block; text-decoration: none; }
.blog-more {
  display: inline-block;
  margin-top: .6rem;
  font-family: var(--ff-typewriter);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px dashed var(--gold);
}
.blog-card:hover .blog-more { color: var(--red-hot); border-color: var(--red-hot); }
.bp-hero {
  background: var(--ink);
  border-bottom: 3px solid var(--red);
  padding: 9rem 1.5rem 3.5rem;
}
/* Turnierseite: Kicker-Foto hinterm Titel */
.tour-page .bp-hero {
  background:
    linear-gradient(rgba(12, 9, 7, 0.72), rgba(12, 9, 7, 0.9)),
    url('/public/img/turnier_kicker.webp') center 40% / cover no-repeat,
    var(--ink);
}
.bp-hero-inner { max-width: 820px; margin: 0 auto; }
.bp-label {
  font-family: var(--ff-typewriter);
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.bp-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.05;
  color: var(--paper-w);
  text-transform: uppercase;
}
.bp-date {
  margin-top: 1rem;
  font-family: var(--ff-typewriter);
  font-size: .85rem;
  color: var(--muted);
}
.bp-body { max-width: 820px; }
.bp-content {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 2.5rem;
}
.bp-content h2, .bp-content h3 {
  font-family: var(--ff-display);
  color: var(--paper-w);
  text-transform: uppercase;
  margin: 1.6em 0 .5em;
}
.bp-content h2 { font-size: 1.6rem; }
.bp-content h3 { font-size: 1.25rem; }
.bp-content p { margin: .8em 0; }
.bp-content a { color: var(--gold); }
.bp-content a:hover { color: var(--red-hot); }
.bp-content blockquote {
  border-left: 3px solid var(--red);
  padding: .3em 1em;
  margin: 1em 0;
  color: var(--muted);
  font-style: italic;
}
.bp-content ul, .bp-content ol { padding-left: 1.5em; margin: .8em 0; }
.bp-content img { max-width: 100%; height: auto; border: 1px solid var(--border); margin: .8em 0; }
.bp-content hr { border: none; border-top: 1px dashed var(--border); margin: 1.5em 0; }
.bp-content pre, .bp-content code {
  font-family: monospace;
  background: var(--card);
  font-size: .9em;
}
.bp-content pre { padding: .8em 1em; overflow-x: auto; }

/* ── LEGAL PAGES ── */
.legal h2 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper-w);
  margin: 2.2rem 0 0.6rem;
}
.legal p { margin-bottom: 0.8rem; }
.legal ul { margin: 0.5rem 0 1rem 1.4rem; }
.legal li { margin-bottom: 0.3rem; }

/* ═══════════════════════════════════════════════════════════
   PUNK LAYER — punk.js companion styles
   Additive only. No existing rules overridden.
   ═══════════════════════════════════════════════════════════ */

/* ── Nav active link + scrolled state ───────────────────── */
#navLinks a.pv-active { color: var(--red-hot); }
#nav.pv-scrolled { border-bottom-color: var(--red); }

/* ── Section reveals ─────────────────────────────────────── */
.pv-ready .pv-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pv-ready .pv-reveal.pv-revealed {
  opacity: 1;
  transform: none;
}



/* Tagesangebot (Tagescocktail) */
.tages-card{display:flex;gap:1.4rem;align-items:center;background:var(--card);border:2px solid var(--border);border-left:4px solid var(--punk-yellow);box-shadow:6px 6px 0 var(--punk-black);padding:1.2rem;max-width:640px;flex-wrap:wrap}
.tages-img{width:200px;height:200px;object-fit:cover;border:2px solid var(--punk-black);flex:0 0 auto}
.tages-body{flex:1;min-width:200px}
.tages-name{font-family:'Special Elite',cursive;font-size:1.6rem;color:var(--paper-w)}
.tages-cost{color:var(--punk-yellow);font-size:1.1rem}
.tages-type{color:var(--gold);font-size:.8rem;text-transform:uppercase;letter-spacing:.05em;margin:.2rem 0 .6rem}
.tages-text{color:var(--cream);font-size:.95rem;line-height:1.5}
.tages-pt{font-family:'Special Elite',cursive;color:var(--punk-yellow);font-size:1.2rem;margin-top:.5rem}
.section-tages{overflow:hidden}

/* ─── SCHWARZES BRETT ─── */
.section-brett{background:var(--paper)}
.brett-wall{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.1rem;margin:1.6rem 0 2.2rem}
.brett-note{position:relative;background:var(--paper-w);color:var(--ink);padding:1.9rem 1rem 1rem;
  font-family:'Special Elite',cursive;font-size:.92rem;line-height:1.45;
  transform:rotate(var(--rot,0deg));box-shadow:3px 4px 0 rgba(0,0,0,.55);
  transition:transform .15s}
.brett-note:hover{transform:rotate(0) scale(1.03);z-index:2}
.brett-note .pin{position:absolute;top:.35rem;left:50%;transform:translateX(-50%) rotate(12deg);font-size:1.1rem;filter:drop-shadow(1px 2px 1px rgba(0,0,0,.4))}
.brett-note p{margin:0;word-wrap:break-word}
.brett-by{display:block;margin-top:.7rem;font-size:.74rem;color:#555;text-align:right}
.brett-empty{grid-column:1/-1;color:var(--muted);font-style:italic;padding:1.5rem 0;text-align:center}
.brett-form{max-width:520px}
.brett-form .form-group{margin-bottom:1rem}
.form-msg{margin-top:.8rem;font-size:.9rem}
.form-msg.ok{color:#8fce8a}
.form-msg.err{color:var(--red-hot,#ff5a3c)}

/* ─── LEBENDIGKEIT: Hero-Zoom · Galerie-Bühne · Scroll-Reveal ─── */
@keyframes heroZoom{from{transform:scale(1)}to{transform:scale(1.07)}}
.hero-bg{animation:heroZoom 26s ease-in-out infinite alternate;will-change:transform}

.gallery-hero{position:relative;aspect-ratio:21/9;min-height:240px;overflow:hidden;
  border:1px solid var(--border);cursor:zoom-in;background:#0c0c0c}
.gh-slide{position:absolute;inset:0;background-position:center;background-size:cover;
  opacity:0;transition:opacity 1.4s ease;will-change:transform,opacity}
.gh-slide.on{opacity:1}
@keyframes kenburns{from{transform:scale(1)}to{transform:scale(1.12)}}
.gh-slide.kb{animation:kenburns 7.5s ease-out forwards}
.gh-cap{position:absolute;left:0;right:0;bottom:0;padding:1.4rem 1.2rem .7rem;
  background:linear-gradient(transparent,rgba(10,10,10,.82));color:var(--paper-w);
  font-family:'Special Elite',cursive;font-size:.92rem;pointer-events:none}
@media(max-width:700px){.gallery-hero{aspect-ratio:4/3}}

.rv{opacity:0;transform:translateY(22px);transition:opacity .7s ease var(--rvd,0ms),transform .7s cubic-bezier(.16,.84,.44,1) var(--rvd,0ms)}
.rv-in{opacity:1;transform:none}
.gallery-item.rv{transform:translateY(0) scale(.94)}
.gallery-item.rv-in{transform:none}

@media(prefers-reduced-motion:reduce){
  .hero-bg,.gh-slide.kb{animation:none}
  .rv{opacity:1;transform:none;transition:none}
}
