/* ───────────────────────────── tokens */
:root {
  --bg: #000000;
  --bg-2: #19100a;
  --panel: #20140b;
  --panel-2: #130d08;
  --line: #352416;
  --line-2: #4a321d;
  --ink: #fff1dd;
  --ink-2: #c2915a;
  --ink-3: #92775b;
  --accent: #f6b319;
  --accent-mark: #e8a34c; /* Bernstein: Auszeichnungen (nicht-interaktiv) */
  --accent-2: #e45e17;
  --accent-dark: #8f2509;
  --accent-glow: rgba(228, 94, 23, 0.42);
  --accent-ink: #190b03;
  --gp-cream: #d9a86e;
  --tex-stone: url("../img/grain-stone.png");
  --tex-fine: url("../img/grain-fine.png");
  --tex-grain-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --tex-grain-noise-inv: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='ni'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='table' tableValues='1 0'/%3E%3CfeFuncG type='table' tableValues='1 0'/%3E%3CfeFuncB type='table' tableValues='1 0'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23ni)'/%3E%3C/svg%3E");
  --container: 1180px;
  --pad: clamp(18px, 4vw, 40px);
  --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Eingefrorene Tweak-Werte (ehemals Panel: Korn / Körnung / Grunge) */
  --korn-alpha: 0.8;
  --grain-strength: 0.06;
  --grunge-strength: 0;
}

/* ── Used/Grunge: abgeriebene Stellen + Kratzer (Plakat-Verschleiß) ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 14;
  pointer-events: none;
  opacity: var(--grunge-strength, 0.25);
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.014' numOctaves='4' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='gamma' exponent='5' amplitude='1'/%3E%3CfeFuncG type='gamma' exponent='5' amplitude='1'/%3E%3CfeFuncB type='gamma' exponent='5' amplitude='1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Cfilter id='s'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.006 0.45' numOctaves='2' seed='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='gamma' exponent='7' amplitude='1'/%3E%3CfeFuncG type='gamma' exponent='7' amplitude='1'/%3E%3CfeFuncB type='gamma' exponent='7' amplitude='1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23b)'/%3E%3Crect width='100%25' height='100%25' filter='url(%23s)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 600px 600px;
}

/* ── Plakat/Papier-Korn: feines Rauschen über der ganzen Seite ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 15;
  pointer-events: none;
  opacity: var(--grain-strength, 0.1);
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Hintergrund-Animationen vorerst deaktiviert (Code bleibt als Orientierung erhalten) */
.ember-glow, .smoke, .sparks { display: none; }
body.menu-open { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.page { position: relative; isolation: isolate; z-index: 1; min-height: 100vh; overflow-x: hidden; }
@supports (overflow: clip) {
  .page { overflow-x: clip; }
}

/* ───────────────────────────── background */
.ember-glow, .smoke, .sparks { position: fixed; inset: 0; pointer-events: none; }
.ember-glow { z-index: 0; }
.ember-1, .ember-2 {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  mix-blend-mode: screen;
}
.ember-1 {
  width: 58vmax; height: 58vmax; top: -28vmax; left: -14vmax;
  background: radial-gradient(circle, var(--accent) 0%, transparent 62%);
  opacity: 0.16;
}
.ember-2 {
  width: 46vmax; height: 46vmax; right: -14vmax; bottom: -18vmax;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 64%);
  opacity: 0.18;
}
.smoke { z-index: 0; opacity: 0.26; mix-blend-mode: screen; overflow: hidden; }
.smoke-layer {
  position: absolute; inset: -12%;
  background:
    radial-gradient(ellipse at 26% 58%, rgba(210,160,110,0.12), transparent 46%),
    radial-gradient(ellipse at 72% 32%, rgba(150,120,95,0.10), transparent 52%),
    radial-gradient(ellipse at 48% 86%, rgba(230,120,55,0.08), transparent 48%);
  filter: blur(44px);
  animation: drift 34s ease-in-out infinite;
}
.smoke-b { animation-duration: 54s; animation-delay: -12s; opacity: 0.65; }
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(2%, -1%, 0) scale(1.05); }
}
.sparks { z-index: 1; top: auto; height: 84vh; overflow: hidden; }
.spark {
  position: absolute; bottom: -18px;
  width: 3px; height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff4aa, var(--accent-2));
  box-shadow: 0 0 10px var(--accent), 0 0 18px var(--accent-glow);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0) rotate(10deg); opacity: 0; }
  10% { opacity: 0.72; }
  65% { opacity: 0.35; }
  100% { transform: translateY(-88vh) translateX(-18px) rotate(-8deg); opacity: 0; }
}

/* ───────────────────────────── header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-h);
  background: #000;
  border-bottom: 1px solid var(--line-2);
  box-shadow: 0 18px 42px rgba(0,0,0,0.26);
  backdrop-filter: blur(12px);
}
.topbar::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-2) 30%, var(--accent) 50%, var(--accent-2) 70%, transparent);
  opacity: 0.55;
}
.topbar-inner {
  min-height: calc(var(--header-h) - 2px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}
.brand-mini:hover { color: var(--accent); }
.brand-icon { width: 36px; height: 36px; object-fit: contain; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 30px);
  flex: 1;
  font-family: "Oswald", sans-serif;
  font-size: clamp(11.5px, 1.05vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.desktop-nav a { color: var(--ink-2); }
.desktop-nav a:hover { color: var(--accent); }
.topbar-actions { display: inline-flex; align-items: center; gap: 16px; }

/* Desktop: Logo links, Status mittig, Navigation rechts */
@media (min-width: 981px) {
  .topbar-inner { position: relative; max-width: none; }
  .brand-mini { order: 1; flex: 1 1 0; min-width: 0; padding-left: 6px; }
  .topbar-actions { order: 2; flex: 0 0 auto; }
  .desktop-nav { order: 3; flex: 1 1 0; justify-content: flex-end; padding-right: 6px; }
}
/* Ab genügend Breite: Status fest in die echte Mitte (gleichmäßig verteilt) */
@media (min-width: 1120px) {
  .topbar-actions {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-mark);
  box-shadow: 0 0 12px var(--accent-mark);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line-2);
  background: var(--panel-2);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}
.menu-toggle-lines::before { transform: translateY(-7px); }
.menu-toggle-lines::after { transform: translateY(5px); }
.topbar-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-2);
  border: 1.5px solid var(--line-2);
  background: var(--panel-2);
  transition: color 0.18s ease;
}
.topbar-call:hover { color: var(--accent); }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ───────────────────────────── mobile menu */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(0,0,0,0.56);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  width: min(88vw, 390px);
  padding: 22px;
  background: linear-gradient(180deg, #20140b, #0d0805);
  border-left: 1.5px solid var(--line-2);
  box-shadow: -24px 0 70px rgba(0,0,0,0.42);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--accent-mark);
}
.mobile-menu-close {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}
.mobile-nav {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.mobile-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-menu-facts {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-2);
  background: rgba(0,0,0,0.18);
}
.mobile-menu-facts p { margin: 0; display: grid; gap: 3px; }
.mobile-menu-facts strong {
  color: var(--accent-mark);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mobile-menu-facts span,
.mobile-menu-facts a { color: var(--ink-2); }
.mobile-instagram {
  display: inline-flex;
  margin-top: 20px;
  color: var(--ink-3);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

/* ───────────────────────────── hero (Plakat-Stil) */
.hero {
  position: relative;
  z-index: 2;
  min-height: clamp(640px, 94vh, 940px);
  display: flex;
  flex-direction: column;
  padding-top: clamp(12px, 2vw, 28px);
  overflow: hidden;
}
.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo-link { display: inline-flex; }
.hero-logo {
  width: clamp(150px, 34vw, 420px);
  height: auto;
  margin: 0 auto;
  opacity: 0.9;
}
.hero-headline {
  margin: 0;
  font-family: "Anton", "Oswald", sans-serif;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
}
.hero-headline .hl-row { display: block; white-space: nowrap; }
.hero-headline .hl-cream { font-size: clamp(46px, 10.5vw, 150px); letter-spacing: 0.002em; }
.hero-headline .hl-accent { font-size: clamp(40px, 9vw, 128px); letter-spacing: 0.01em; margin-top: var(--wort-abstand, -0.04em); }

/* text fills (Korn wird separat, farb-neutral darübergelegt) */
.hl-cream, .hl-accent, .section-title, .legal-content h1 {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.hl-cream, .section-title, .legal-content h1 { background-color: var(--gp-cream); }
.hl-accent { background-color: var(--accent-2); }
.section-title, .legal-content h1 { --korn-rgb: 217,168,110; }

/* ── "Gedrückt"-Effekt: mittlere Buchstaben (LLPAL) werden vom Widder gestaucht ── */
.squash-word { --si: 0; --struktur-size: 345px; --struktur-floor: rgba(0,0,0,0.45); --korn-alpha: 0.88; display: block; margin-top: -0.18em; }
.squash-word .sq {
  display: inline-block;
  transform-origin: 50% 100%;
  transform:
    translateY(calc(0.11em * var(--w, 0) * var(--si)))
    scaleX(calc(1 + 0.085 * var(--w, 0) * var(--si)))
    scaleY(calc(1 - 0.44 * var(--w, 0) * var(--si)));
  background-color: var(--sq-fill, var(--gp-cream));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.25s ease;
}
.hl-cream.squash-word { --sq-fill: #f0c27f; --korn-rgb: 240,194,127; }
.hl-accent.squash-word { --sq-fill: #ff6a1f; --korn-rgb: 255,106,31; }

/* ── Struktur-Maske: beide Hero-Wörter bekommen „abgenutzte" Fehlstellen ── */
.hl-cream.squash-word, .hl-accent.squash-word {
  -webkit-mask-image: url("../img/textur_maske.webp"), linear-gradient(var(--struktur-floor, rgba(0,0,0,0)), var(--struktur-floor, rgba(0,0,0,0)));
  mask-image: url("../img/textur_maske.webp"), linear-gradient(var(--struktur-floor, rgba(0,0,0,0)), var(--struktur-floor, rgba(0,0,0,0)));
  -webkit-mask-repeat: repeat, no-repeat;
  mask-repeat: repeat, no-repeat;
  -webkit-mask-size: var(--struktur-size, 560px), cover;
  mask-size: var(--struktur-size, 560px), cover;
  -webkit-mask-position: center, center;
  mask-position: center, center;
  -webkit-mask-composite: source-over;
  mask-composite: add;
}
/* ── Farb-neutrales Papier-Korn (transparente Sprenkel), regelbar via --korn-alpha ── */
.hl-cream.squash-word .sq,
.hl-accent.squash-word .sq,
.section-title,
.legal-content h1 {
  background-repeat: repeat, repeat;
  background-size: auto, 200px 200px;
}
body.korn-hell .hl-cream.squash-word .sq,
body.korn-hell .hl-accent.squash-word .sq,
body.korn-hell .section-title,
body.korn-hell .legal-content h1 {
  background-image:
    linear-gradient(rgba(var(--korn-rgb, 217,168,110), var(--korn-alpha, 0.65)), rgba(var(--korn-rgb, 217,168,110), var(--korn-alpha, 0.65))),
    url("../img/korn_hell.webp");
}
body.korn-druck .hl-cream.squash-word .sq,
body.korn-druck .hl-accent.squash-word .sq,
body.korn-druck .section-title,
body.korn-druck .legal-content h1 {
  background-image:
    linear-gradient(rgba(var(--korn-rgb, 217,168,110), var(--korn-alpha, 0.65)), rgba(var(--korn-rgb, 217,168,110), var(--korn-alpha, 0.65))),
    url("../img/korn_druck.webp");
}
/* ── Struktur-Maske: Section-Titel (Speisekarte, Öffnungszeiten, Standort) ── */
.section-title, .legal-content h1 {
  -webkit-mask-image: url("../img/textur_maske.webp"), linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  mask-image: url("../img/textur_maske.webp"), linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  -webkit-mask-repeat: repeat, no-repeat;
  mask-repeat: repeat, no-repeat;
  -webkit-mask-size: 200px, cover;
  mask-size: 200px, cover;
  -webkit-mask-composite: source-over;
  mask-composite: add;
}

/* organisch angegriffene Außenkanten (Plakat-/Letterpress-Look) — beide Hero-Wörter */
.hl-cream.squash-word, .hl-accent.squash-word {
  filter: url("#struktur-rough");
}
.hero-logo-link { position: relative; z-index: 2; }
.hero-headline { position: relative; z-index: 1; }

.hero-rule {
  position: relative;
  width: min(560px, 72%);
  height: 2px;
  margin: clamp(18px, 2.6vw, 26px) auto clamp(12px, 1.6vw, 16px);
  background: linear-gradient(90deg, transparent, var(--accent-2) 30%, var(--accent) 50%, var(--accent-2) 70%, transparent);
}
.hero-flare {
  position: absolute;
  top: 50%; left: 50%;
  width: 90px; height: 8px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(255,236,180,0.95), rgba(246,179,25,0.5) 40%, transparent 72%);
  border-radius: 999px;
}
.hero-tags {
  margin: 0;
  color: var(--gp-cream);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.9vw, 23px);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-foto {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.hero-foto-img {
  position: relative;
  --bild-groesse: 51%;
  width: 100%;
  height: var(--bild-hoehe, clamp(280px, 42vh, 500px));
  background: url("../img/grill-hero.webp") no-repeat;
  background-size: var(--bild-groesse, 56%);
  background-position: 55% 50%;
  --img-left: calc(50% - var(--bild-groesse, 56%) / 2);
  --img-right: calc(50% + var(--bild-groesse, 56%) / 2);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(90deg, transparent var(--img-left), #000 calc(var(--img-left) + 7%), #000 calc(var(--img-right) - 7%), transparent var(--img-right));
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(90deg, transparent var(--img-left), #000 calc(var(--img-left) + 7%), #000 calc(var(--img-right) - 7%), transparent var(--img-right));
  mask-composite: intersect;
}
.hero-foto-fade {
  display: none;
}
.hero-foto-foot {
  position: relative;
  width: 100%;
  margin-top: var(--bild-abstand-unten, clamp(28px, 4vw, 52px));
  display: none;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 20px);
  padding: 0 var(--pad);
  text-align: center;
}

/* ───────────────────────────── buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
/* Grain-Overlay: wirkt wie eingebranntes Papier/Holz */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tex-fine);
  opacity: 0.14;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.btn-lg { min-height: 56px; padding: 16px 30px; font-size: 15px; }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
  box-shadow: none;
}
.btn-primary::after { display: none; }
.btn-primary:hover {
  background: #ffc436;
  border-color: transparent;
  box-shadow: none;
}
.btn:active { transform: translateY(0); }

/* ───────────────────────────── sections */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6.5vw, 76px) 0;
}
.section + .section { border-top: 0; }
.section + .section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(520px, 72%);
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--accent-2) 28%, var(--accent) 50%, var(--accent-2) 72%, transparent);
}
.section + .section::after {
  content: "";
  position: absolute;
  top: 1px; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 10px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,236,180,0.82), rgba(246,179,25,0.4) 45%, transparent 76%);
}

/* Zonierung: Öffnungszeiten liegen auf einer warmen Fläche,
   damit die Seite beim Scrollen erkennbare Abschnitte bekommt.
   Die Flare-Trennlinien entfallen an den Zonen-Übergängen (Kante reicht). */
.section-hours {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-hours::before,
.section-hours::after,
.section-hours + .section::before,
.section-hours + .section::after { display: none; }
.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--accent-mark);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-title {
  margin: 0 0 16px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-lede {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: clamp(15.5px, 1.35vw, 18px);
}
.section-lede.left { margin-left: 0; }

/* ───────────────────────────── menu */
.menu-categories {
  display: grid;
  gap: 16px;
}
.menu-category {
  border: none;
  position: relative;
  background: var(--bg);
  /* Eingebrannte Rahmenkanten: Vignette innen, dunkle Ränder */
  box-shadow:
    inset 0 0 0 2px rgba(15, 6, 2, 0.95),
    inset 5px 0 18px rgba(0, 0, 0, 0.38),
    inset -5px 0 18px rgba(0, 0, 0, 0.38),
    inset 0 5px 18px rgba(0, 0, 0, 0.38),
    inset 0 -5px 18px rgba(0, 0, 0, 0.38),
    0 2px 10px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
/* Grain-Textur über dem Panel */
.menu-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tex-fine);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
/* Eingebrannter Rahmen — wie Brandmarkierung auf Holz */
.menu-category::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(143, 37, 9, 0.55);
  border-left: 1px solid rgba(60, 25, 5, 0.7);
  border-right: 1px solid rgba(60, 25, 5, 0.7);
  border-bottom: 1px solid rgba(30, 10, 2, 0.8);
  pointer-events: none;
  z-index: 1;
}
.menu-category > * { position: relative; z-index: 2; }
.menu-category-toggle {
  width: 100%;
  min-height: 86px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.menu-category-toggle strong {
  display: block;
  color: var(--gp-cream);
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu-category-toggle small {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 14px;
}
.accordion-mark {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}
.accordion-mark::before,
.accordion-mark::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 18px;
  height: 2px;
  background: var(--gp-cream);
}
.accordion-mark::after { transform: rotate(90deg); transition: transform 0.18s ease; }
.menu-category-toggle[aria-expanded="true"] .accordion-mark::after { transform: rotate(0); }
.menu-category-panel {
  padding: 0 24px 24px;
}
.menu-category-description {
  margin: 0 0 18px;
  color: var(--ink-2);
}
.menu-items {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: none;
}
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  padding: 14px 16px;
  background: var(--bg);
}
.menu-item-copy { min-width: 0; display: grid; gap: 3px; }
.menu-item-copy strong {
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  line-height: 1.16;
  color: var(--gp-cream);
}
.menu-item-copy span {
  color: var(--ink-3);
  font-size: 14px;
}
.menu-price {
  color: var(--ink-2);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.menu-group { margin-top: 22px; }
.menu-group h3 {
  margin: 0 0 10px;
  color: var(--accent-mark);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Beliebte Gerichte (kompakte Karten, sofort sichtbar) ── */
.popular { margin: clamp(30px, 4vw, 44px) 0 clamp(40px, 6vw, 64px); }
.popular-head { margin-bottom: 20px; }
.popular-title {
  margin: 0;
  color: var(--gp-cream);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1;
}
.popular-note {
  margin: 6px 0 0;
  color: var(--ink-3);
  font-size: 15px;
}
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 14px;
}
.dish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1.5px solid var(--line-2);
  box-shadow: inset 0 2px 22px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
/* Grill-Glut-Kante oben — verbindet die Karten mit dem Poster-Look */
.dish-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-2) 45%, var(--accent-mark));
  opacity: 0.9;
}
/* Foto-Slot: erst aktiv, wenn ein Bild ergänzt wird (class="dish-card has-media") */
.dish-media {
  aspect-ratio: 16 / 10;
  background: var(--panel-2);
  border-bottom: 1.5px solid var(--line-2);
}
.dish-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 20px;
}
.dish-name {
  margin: 0;
  color: var(--gp-cream);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.12;
}
.dish-desc {
  margin: 0;
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.5;
}
.dish-price {
  margin-top: auto;
  padding-top: 6px;
  color: var(--accent-mark);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── Komplette Speisekarte: Zwischenüberschrift über dem Accordion ── */
.menu-full-head {
  margin: 0 0 20px;
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid var(--line);
}
.menu-full-title {
  margin: 0;
  color: var(--gp-cream);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1;
}
.menu-full-note {
  margin: 6px 0 0;
  color: var(--ink-3);
  font-size: 15px;
}

/* Ruhetag-Zeile gedämpft */
.hours-row.is-closed strong { color: var(--ink-3); }

/* ───────────────────────────── hours */
.hours-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}
.hours-card {
  border: 1.5px solid var(--line-2);
  background: var(--bg);
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row span {
  color: var(--gp-cream);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}
.hours-row strong {
  color: var(--gp-cream);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  white-space: nowrap;
}

/* ───────────────────────────── location */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}
.location-actions { margin-top: 28px; }
.location-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1.5px solid var(--line-2);
  background: var(--bg);
}
.contact-block,
.route-block {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.route-block:last-child { border-bottom: 0; padding-bottom: 0; }
.block-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-2);
  color: var(--accent-mark);
  background: rgba(0,0,0,0.3);
}
.block-copy { min-width: 0; }
.contact-block h3,
.route-block h3 {
  margin: 0 0 6px;
  color: var(--gp-cream);
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact-block p,
.route-block p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.contact-block a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ───────────────────────────── instagram + footer */
.instagram-strip {
  position: relative;
  z-index: 2;
  padding: 26px 0;
  border-top: 1px dashed var(--line-2);
}
.instagram-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.instagram-inner p {
  margin: 0;
  color: var(--ink-2);
}
.instagram-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
}
.site-footer {
  position: relative;
  --rauch: 2.95;
  z-index: 2;
  border-top: 2px solid var(--line-2);
  padding: 34px 0 40px;
  background: rgba(0,0,0,0.34);
  overflow: hidden;
  isolation: isolate;
  --fglow: 0.55;
}

/* ── Footer-Atmosphäre: Glut, Foto-Slot, Dunst ── */
.footer-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* echtes Glut-/Grill-Foto, unten verankert, nach oben weggefadet */
.footer-photo-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(180px, 30vw, 320px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
  opacity: calc(0.25 + var(--fglow) * 0.55);
  transition: opacity .25s linear;
}
.footer-photo-slot {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0.72) saturate(1.05);
  --image-slot-bg: transparent;
}
/* Platzhalter dezent halten, solange kein Foto da ist */
.footer-photo-slot::part(placeholder) {
  opacity: 0.5;
}

/* Glut-Glühen, baut sich beim Scrollen auf */
.footer-ember {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 140%;
  height: clamp(220px, 34vw, 380px);
  transform: translateX(-50%);
  background:
    radial-gradient(60% 100% at 50% 100%, var(--accent-glow) 0%, rgba(228,94,23,0.18) 38%, transparent 72%),
    radial-gradient(34% 78% at 50% 100%, rgba(246,179,25,0.42) 0%, transparent 70%);
  opacity: calc(0.15 + var(--fglow) * 0.85);
  mix-blend-mode: screen;
  transition: opacity .25s linear;
}

/* Grillrauch: steigt von der Glut (unten) nach oben auf */
.footer-haze {
  position: absolute;
  inset: 0;
  opacity: calc((0.3 + 0.7 * var(--fglow)) * var(--rauch, 1));
  transition: opacity .3s linear;
  mix-blend-mode: screen;
}
.footer-haze .haze {
  position: absolute;
  bottom: 6%;
  width: clamp(120px, 22vw, 240px);
  height: clamp(120px, 22vw, 240px);
  border-radius: 50%;
  filter: blur(34px);
  background: radial-gradient(closest-side, rgba(178,156,134,0.65), rgba(110,94,78,0.28) 56%, transparent 78%);
  opacity: 0;
  will-change: transform, opacity;
}
.footer-haze .haze-a { left: 32%; animation: smokeRise 11s ease-out infinite; }
.footer-haze .haze-b { left: 50%; animation: smokeRise 14s ease-out infinite; animation-delay: -5s; }
.footer-haze .haze-c { left: 60%; animation: smokeRise 13s ease-out infinite; animation-delay: -9s; }

@keyframes smokeRise {
  0%   { transform: translate3d(-50%, 0, 0) scale(0.45); opacity: 0; }
  15%  { opacity: 0.6; }
  60%  { opacity: 0.35; }
  100% { transform: translate3d(-30%, -320%, 0) scale(1.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-haze .haze { animation: none; opacity: 0.4; transform: translate3d(-50%, -120%, 0) scale(1.1); }
}

.footer-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}
.footer-brand-block,
.footer-contact,
.footer-links {
  display: grid;
  gap: 6px;
  color: var(--ink-3);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}
.footer-brand-block strong {
  color: var(--ink-2);
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-contact a,
.footer-links a { color: var(--ink-2); }
.footer-contact a:hover,
.footer-links a:hover { color: var(--accent); }
.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ───────────────────────────── legal pages */
.legal-main {
  position: relative;
  z-index: 2;
  padding: clamp(44px, 7vw, 86px) 0 clamp(56px, 8vw, 104px);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  border: 1.5px solid var(--line-2);
  background: var(--bg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}
.legal-content h1,
.legal-content h2,
.legal-content h3 {
  font-family: "Oswald", sans-serif;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-content h1 {
  margin: 0 0 28px;
  color: var(--accent-mark);
  font-size: clamp(34px, 6vw, 58px);
}
.legal-content h2 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 34px);
}
.legal-content h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: clamp(19px, 3vw, 24px);
}
.legal-content p,
.legal-content li { color: var(--ink-2); }
.legal-content p { margin: 0 0 18px; }
.legal-content ul { margin: 0 0 22px 1.2em; padding: 0; }
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ───────────────────────────── Öffnungs-Status / Aktionsleiste / Heute */
/* Status-Punkt: grün = geöffnet, gedimmt = geschlossen */
.topbar-status[data-open="true"] .status-dot,
.hero-status[data-open="true"] .status-dot {
  background: #3dba5e;
  box-shadow: 0 0 12px rgba(61,186,94,0.6);
}
.topbar-status[data-open="false"] .status-dot,
.hero-status[data-open="false"] .status-dot {
  background: var(--ink-3);
  box-shadow: none;
}

/* Hero-Status-Pille (nur Mobile/Tablet — Topbar-Status ist dort ausgeblendet) */
.hero-status {
  display: none;
  align-items: center;
  gap: 9px;
  margin: clamp(14px, 2.6vw, 22px) auto 0;
  padding: 7px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(0,0,0,0.32);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-2);
}
.hero-status[data-open="true"] { color: var(--gp-cream); border-color: rgba(61,186,94,0.32); }
@media (max-width: 980px) {
  .hero-status { display: inline-flex; }
}

/* Heute-Hervorhebung in den Öffnungszeiten */
.hours-row.is-today { background: rgba(228, 94, 23, 0.07); }
.hours-row.is-today span,
.hours-row.is-today strong { color: var(--accent-mark); }
.hours-row.is-today span::after {
  content: "Heute";
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--accent-mark);
  color: var(--accent-ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  vertical-align: middle;
}

/* Mobile Aktionsleiste (sticky am unteren Rand) */
.mobile-actionbar { display: none; }
@media (max-width: 768px) {
  /* Platz für die sticky Aktionsleiste freihalten */
  .site-footer { padding-bottom: clamp(92px, 22vw, 120px); }
  .mobile-actionbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--line-2);
    box-shadow: 0 -10px 34px rgba(0,0,0,0.55);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 58px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
  .mobile-action svg { flex: 0 0 auto; }
  .mobile-action-call { background: var(--accent); color: var(--accent-ink); }
  .mobile-action-route { background: var(--panel); color: var(--ink); }
  .mobile-action-call:active { background: #ffc436; }
  .mobile-action-route:active { background: #2a1a0f; }
}

/* ───────────────────────────── responsive */
@media (min-width: 769px) {
  .menu-category:not(.is-default-open) .menu-category-panel[hidden] { display: none; }
}

@media (max-width: 980px) {
  body.menu-open { overflow: hidden; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .topbar-call { display: inline-flex; }
  .topbar-status { display: none; }
  .hours-grid,
  .location-grid,
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; }
  .brand-mini-text { font-size: 10.5px; letter-spacing: 0.09em; }
  .brand-icon { width: 32px; height: 32px; }
  .hero {
    min-height: 560px;
    padding-top: 28px;
  }
  .hero-headline .hl-cream { font-size: clamp(44px, 13.5vw, 96px); }
  .hero-headline .hl-accent { font-size: clamp(38px, 11.5vw, 82px); }
  .hero-foto { min-height: 0; margin-top: 20px; margin-bottom: 6px; }
  /* Bild volle Breite, Box passt sich dem Bildformat an (2496×1726 → ~69vw) */
  .hero-foto-img { --bild-groesse: 100%; height: min(69vw, 420px); }
  /* CTA unter dem Bild entfällt — die Speisekarte folgt direkt darunter */
  .hero-foto-foot { display: none; }
  /* Status-Pille kleiner, damit sie nicht mit der Headline konkurriert */
  .hero-status { margin-top: 12px; padding: 5px 12px; gap: 7px; font-size: 10.5px; }
  .section { padding: 46px 0; }
  .section-head { margin-bottom: 30px; }
  .section-title { font-size: clamp(46px, 14vw, 70px); }
  .section-eyebrow svg { display: none; }
  .menu-category-toggle { min-height: 78px; padding: 18px; }
  .menu-category-panel { padding: 0 18px 18px; }
  .dish-body { padding: 16px; }
  .popular { margin: 26px 0 40px; }
  .menu-price { font-size: 13px; }
  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .instagram-inner {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  /* Sektions-Intros mittig, Listen/Karten bleiben linksbündig */
  .hours-grid > div:first-child,
  .location-copy { text-align: center; }
  .section-lede.left { margin-left: auto; margin-right: auto; }
  .location-actions { display: flex; justify-content: center; }
  /* Footer mobil: zentriert, nur Impressum/Datenschutz als Links */
  .footer-inner { text-align: center; justify-items: center; }
  .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
  .footer-links .footer-sitelink { display: none; }
}

@media (max-width: 440px) {
  .brand-mini { gap: 8px; }
  .brand-mini-text { max-width: 180px; }
  .btn { width: 100%; padding-left: 14px; padding-right: 14px; }
  .mobile-menu { width: 92vw; padding: 18px; }
}

/* ───────────────────────────── Feiern & Partyservice (v39) */
/* Teaser auf der Hauptseite */
.feiern-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.feiern-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.feiern-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
  font-size: clamp(15px, 1.3vw, 17px);
}
.feiern-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.5em;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--accent-mark);
}
.feiern-list li strong { color: var(--ink); font-weight: 600; }
.feiern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn-outline {
  border-color: var(--line-2);
  color: var(--gp-cream);
  background: rgba(0, 0, 0, 0.25);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* Gerahmte Fotos (Teaser + Unterseite) */
.feiern-photo {
  position: relative;
  margin: 0;
  border: 1.5px solid var(--line-2);
  background: var(--panel-2);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}
.feiern-photo img { display: block; width: 100%; height: auto; }
.feiern-photo .foto-grain {
  position: absolute;
  inset: 0;
  background-image: var(--tex-fine);
  opacity: 0.09;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.feiern-photo figcaption {
  position: relative;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Unterseite Feiern */
.feiern-hero {
  max-width: 860px;
  margin: clamp(30px, 4vw, 52px) auto 0;
}
.feiern-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(30px, 4.5vw, 52px);
}
.feiern-gallery .feiern-photo { box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35); }
.feiern-gallery .feiern-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.angebot-card {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border: 1.5px solid var(--line-2);
  background: var(--bg);
}
.angebot-card::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228, 94, 23, 0.75), transparent);
}
.angebot-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--line-2);
  background: rgba(0, 0, 0, 0.3);
  color: var(--accent-mark);
}
.angebot-card h3,
.ablauf-step h3 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gp-cream);
}
.angebot-card p,
.ablauf-step p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15.5px;
}
.feiern-ablauf {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feiern-ablauf::before,
.feiern-ablauf::after,
.feiern-ablauf + .section::before,
.feiern-ablauf + .section::after { display: none; }
.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ablauf-step {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border: 1.5px solid var(--line-2);
  background: var(--bg);
}
.ablauf-num {
  display: block;
  margin-bottom: 12px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 46px;
  line-height: 1;
  color: var(--accent-mark);
}
.ablauf-step a {
  color: var(--accent);
  text-decoration: none;
}
.ablauf-step a:hover { text-decoration: underline; }
.feiern-cta-box {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 60px);
  border: 1.5px solid var(--line-2);
  background: var(--bg);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}
.feiern-cta-title { font-size: clamp(36px, 4.5vw, 56px); }
.feiern-cta-box .section-lede { margin: 0 auto; }
.feiern-phone {
  display: inline-block;
  margin: 22px 0 14px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  color: var(--accent);
  text-decoration: none;
}
.feiern-phone:hover { color: #ffc436; }
.feiern-cta-note {
  margin: 0;
  color: var(--ink-3);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
}

@media (max-width: 980px) {
  .feiern-teaser-grid { grid-template-columns: 1fr; gap: 32px; }
  .angebot-grid,
  .ablauf-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .feiern-copy { text-align: center; }
  .feiern-copy .section-lede { margin: 0 auto; }
  .feiern-list { text-align: left; }
  .feiern-actions { justify-content: center; }
}
@media (max-width: 560px) {
  .feiern-gallery { grid-template-columns: 1fr; }
}
