/* ==========================================================================
   JACK'S BURGER KLAGENFURT
   Theme: "By Order of Jack's" — 1920s Birmingham / Peaky-Blinders-Atmosphäre
   Kohle-Schwarz, Messing-Gold, Rauch, Filmkorn, Ziegelwand
   ========================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  --ink:    #0c0b09;   /* Grundton, fast schwarz, warm */
  --coal:   #110e0b;   /* Sektionen, alternierend */
  --panel:  #16120d;   /* Karten */
  --brick:  #1d1410;
  --cream:  #ede4d3;   /* Primärtext */
  --smoke:  #a39a8b;   /* Sekundärtext */
  --gold:   #c8a24b;
  --gold-bright: #e6c36a;
  --gold-deep:   #9a7a2e;
  --blood:  #8a2b2b;
  --line:   rgba(200, 162, 75, 0.18);
  --line-soft: rgba(200, 162, 75, 0.10);

  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-label:   "Oswald", "Segoe UI", Arial, sans-serif;
  --font-body:    "Lora", Georgia, "Times New Roman", serif;

  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3 { margin: 0; font-weight: 400; }

p { margin: 0 0 1.1em; }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--cream); }

::selection { background: var(--gold); color: var(--ink); }

/* Dezente dunkle Scrollbar (WebKit) */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: #2c2417;
  border-radius: 6px;
  border: 2px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 200;
  padding: 0.7em 1.4em;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.25s var(--ease);
}
.skip-link:focus-visible { top: 14px; color: var(--ink); }

/* Filmkorn über allem (dezent) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- Utilities ---------- */
.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  scroll-margin-top: calc(var(--header-h) + 8px);
}
.section-alt { background: var(--coal); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.kicker {
  margin: 0 0 0.9rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.gold-text {
  background: linear-gradient(168deg, #f0d68a 10%, var(--gold) 48%, var(--gold-deep) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 230px;
  margin: 1.2rem auto 0;
  color: var(--gold);
  font-size: 0.85rem;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-sub {
  margin: 1.3rem auto 0;
  color: var(--smoke);
  font-style: italic;
  max-width: 540px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95em 2em;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn-gold {
  background: linear-gradient(165deg, var(--gold-bright), var(--gold-deep));
  color: #1a1507;
}
.btn-gold:hover {
  color: #100d04;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(200, 162, 75, 0.55);
}
.btn-ghost {
  border-color: rgba(200, 162, 75, 0.5);
  color: var(--cream);
}
.btn-ghost:hover {
  background: rgba(200, 162, 75, 0.12);
  border-color: var(--gold-bright);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12, 11, 9, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}
/* Bei offenem Mobil-Menü den Blur abschalten: backdrop-filter erzeugt sonst
   einen neuen Bezugsrahmen, der das fixe Vollbild-Menü auf die Header-Höhe
   zusammenstaucht (sichtbar nur nach dem Scrollen). */
body.nav-open .site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand:hover { color: var(--cream); }
.brand-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}
.site-footer .brand-logo { height: 60px; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.brand-text small {
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.52em;
  color: var(--gold);
  margin-top: 4px;
}

.site-nav { display: flex; align-items: center; gap: 2.2rem; }
.site-nav ul {
  display: flex;
  gap: 1.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav ul a {
  position: relative;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding-block: 6px;
}
.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: right 0.3s var(--ease);
}
.site-nav ul a:hover::after,
.site-nav ul a.active::after { right: 0; }
.site-nav ul a.active { color: var(--gold-bright); }

.nav-cta { padding: 0.75em 1.5em; }

/* Burger-Icon (mobil) */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 110;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    gap: 2.6rem;
    background: rgba(10, 9, 7, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  body.nav-open .site-nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.9rem;
  }
  .site-nav ul a {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.08em;
    text-transform: none;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #1c1610 0%, var(--ink) 58%),
    var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200, 162, 75, 0.16);
  pointer-events: none;
}
.hero-frame::before, .hero-frame::after {
  content: "";
  position: absolute;
  width: 30px; height: 30px;
  border: 1px solid rgba(230, 195, 106, 0.6);
}
.hero-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-frame::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* Rauchschwaden */
.hero-smoke i {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.14;
  background: radial-gradient(circle, #cbb98f 0%, transparent 62%);
  will-change: transform;
}
.hero-smoke .s1 {
  width: 55vw; height: 55vw;
  top: -12%; left: -14%;
  animation: smoke-drift 34s ease-in-out infinite alternate;
}
.hero-smoke .s2 {
  width: 48vw; height: 48vw;
  bottom: -22%; right: -12%;
  animation: smoke-drift 28s ease-in-out infinite alternate-reverse;
}
.hero-smoke .s3 {
  width: 32vw; height: 32vw;
  top: 32%; left: 58%;
  opacity: 0.09;
  animation: smoke-drift 40s ease-in-out infinite alternate;
}
@keyframes smoke-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(7vw, -4vh) scale(1.18); }
}

/* Aufsteigende Glut-Funken (Elemente kommen aus main.js) */
.hero-embers { position: absolute; inset: 0; pointer-events: none; }
.hero-embers i {
  position: absolute;
  left: var(--x, 50%);
  bottom: -12px;
  width: var(--size, 3px);
  height: var(--size, 3px);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(230, 195, 106, 0.85);
  opacity: 0;
  animation: ember-rise var(--dur, 11s) linear var(--delay, 0s) infinite;
}
@keyframes ember-rise {
  0%   { transform: translate(0, 0); opacity: 0; }
  8%   { opacity: 0.9; }
  55%  { opacity: 0.5; }
  100% { transform: translate(var(--drift, 0px), -84vh); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--header-h) + 2rem) 4rem;
}

.eyebrow {
  margin: 0 0 1.6rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--smoke);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 10vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: 0.025em;
}
.hero h1 .h1-top {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.22em;
  color: var(--cream);
  opacity: 0.92;
  margin-bottom: 0.18em;
}

.hero-sub {
  max-width: 560px;
  margin: 1.7rem auto 2.6rem;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--smoke);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.8;
  animation: cue-bob 2.4s ease-in-out infinite;
}
.scroll-cue:hover { color: var(--gold-bright); opacity: 1; }
@keyframes cue-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 9px); }
}

/* ==========================================================================
   LAUFBAND
   ========================================================================== */
.marquee {
  overflow: hidden;
  background: #0f0d0a;
  border-block: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  padding: 0.95rem 0;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(200, 162, 75, 0.75);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   ÜBER UNS / GRAFFITI-WAND
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-text h2 { margin-bottom: 1.6rem; }
.about-text p { color: var(--smoke); }
.about-text p strong { color: var(--cream); font-weight: 600; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.about-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line-soft);
  background: rgba(22, 18, 13, 0.6);
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.about-facts li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
}

/* Die Ziegelwand mit dem Logo */
.about-wall {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.4rem, 3vw, 2.4rem);
  background-color: #130d09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='66'%3E%3Crect width='140' height='66' fill='%23130d09'/%3E%3Cg fill='%231e150f'%3E%3Crect x='1' y='1' width='66' height='30' rx='2'/%3E%3Crect x='71' y='1' width='66' height='30' rx='2'/%3E%3Crect x='-34' y='35' width='66' height='30' rx='2'/%3E%3Crect x='36' y='35' width='66' height='30' rx='2'/%3E%3Crect x='106' y='35' width='66' height='30' rx='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 66px;
  border: 1px solid rgba(200, 162, 75, 0.12);
  box-shadow:
    inset 0 0 90px rgba(0, 0, 0, 0.85),
    0 24px 60px -30px rgba(0, 0, 0, 0.9);
  transform: rotate(-1.2deg);
}
.about-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 18% 8%, rgba(0,0,0,0.55), transparent 60%),
    radial-gradient(70% 55% at 88% 95%, rgba(0,0,0,0.6), transparent 60%);
}
.wall-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.7));
}

/* ==========================================================================
   SPEISEKARTE
   ========================================================================== */
.menu { overflow: hidden; }
.menu::before {
  content: "JACK'S";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 19vw, 15rem);
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.028;
  pointer-events: none;
  white-space: nowrap;
}

.menu-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.menu-cat {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin: 0 0 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.menu-col + .menu-col .menu-cat,
.menu-list + .menu-cat { margin-top: 2.6rem; }

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.6rem;
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.7em;
}
.menu-row h4 {
  margin: 0;
  font-family: var(--font-label);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream);
}
.dots {
  flex: 1;
  min-width: 24px;
  border-bottom: 2px dotted rgba(200, 162, 75, 0.3);
  transform: translateY(-5px);
}
.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  white-space: nowrap;
}

.menu-desc {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  color: var(--smoke);
  max-width: 46ch;
}
.allergens {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: rgba(163, 154, 139, 0.65);
}

.badge-pill {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 9px;
  vertical-align: 2px;
  background: rgba(200, 162, 75, 0.16);
  border: 1px solid rgba(200, 162, 75, 0.4);
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.menu-cat-note {
  margin: -0.6rem 0 1.3rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--smoke);
}

.alg {
  font-size: 0.62em;
  letter-spacing: 0.18em;
  color: rgba(163, 154, 139, 0.7);
  margin-left: 6px;
  white-space: nowrap;
}

.qty {
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--smoke);
  margin-left: 4px;
  white-space: nowrap;
}

.menu-list.tight { gap: 0.7rem; }
.menu-list.cols2 {
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 2.2rem;
}

.menu-grid-snacks { margin-top: clamp(2.5rem, 5vw, 4rem); }

.drinks-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem 2.8rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.menu-note {
  margin: 3rem auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(163, 154, 139, 0.75);
}
.menu-cta {
  margin-top: 1.8rem;
  text-align: center;
}

/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.gallery-item {
  grid-column: span 2;
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: zoom-in;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:nth-child(n+4) {
  grid-column: span 3;
  aspect-ratio: 3 / 2;
}
.gallery-item:hover {
  border-color: rgba(200, 162, 75, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(0, 0, 0, 0.95);
}
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 7, 5, 0.95);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox figure {
  margin: 0;
  max-width: min(92vw, 860px);
  text-align: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 1);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(22, 18, 13, 0.7);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.7rem; }
.lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); font-size: 1.7rem; }

/* ==========================================================================
   BESTELLEN / LIEFERDIENSTE
   ========================================================================== */
.order-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.order-loc-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  margin-bottom: 0.3rem;
}
.order-loc-sub {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: var(--smoke);
}
.order-loc-sub a { white-space: nowrap; }

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.order-card {
  --brand: var(--gold);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.8rem 1.5rem 1.6rem;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--brand);
  color: var(--cream);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.order-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.95);
  color: var(--cream);
}

.order-card.lieferando { --brand: #ff8000; }
.order-card.foodora    { --brand: #d61f69; }

.order-tag {
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
}
.order-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--brand);
}
.order-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--smoke);
  flex: 1;
}
.order-btn {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.order-card:hover .order-btn { color: var(--cream); }
.order-btn::after {
  content: "→";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.order-card:hover .order-btn::after { transform: translateX(6px); }

.order-alt {
  margin: 2.6rem auto 0;
  max-width: 680px;
  text-align: center;
  color: var(--smoke);
  font-size: 0.98rem;
}
.order-alt a { white-space: nowrap; }

/* ==========================================================================
   BEWERTUNGEN
   ========================================================================== */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.8rem);
  text-align: center;
}
.rating-num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-bright);
}
.rating-detail { text-align: left; }

.stars {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 3px;
  color: rgba(237, 228, 211, 0.18);
}
.stars-fill {
  position: absolute;
  top: 0; left: 0;
  width: var(--rating, 100%);
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold-bright);
}
.reviews-meta {
  margin: 0.4rem 0 0;
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: clamp(2.2rem, 4vw, 3rem);
}

.review-card {
  position: relative;
  margin: 0;
  padding: 2.4rem 1.9rem 1.8rem;
  background: var(--panel);
  border: 1px solid var(--line-soft);
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(200, 162, 75, 0.35);
}
.review-card p {
  margin: 0 0 1.3rem;
  font-style: italic;
  color: var(--cream);
  font-size: 0.99rem;
}
.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}
.review-card cite {
  font-style: normal;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}
.review-stars { color: var(--gold-bright); font-size: 0.85rem; letter-spacing: 2px; }

/* ==========================================================================
   STANDORTE
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.location-card {
  padding: 2.2rem 2rem;
  background: var(--panel);
  border: 1px solid var(--line-soft);
}
.loc-badge {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 3px 11px;
  background: rgba(200, 162, 75, 0.14);
  border: 1px solid rgba(200, 162, 75, 0.35);
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.loc-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}
.location-card address {
  font-style: normal;
  color: var(--smoke);
  margin-bottom: 0.4rem;
}
.loc-tel {
  display: inline-block;
  margin-bottom: 1.3rem;
  font-family: var(--font-label);
  letter-spacing: 0.08em;
}

.hours {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.45rem;
}
.hours > div {
  display: flex;
  align-items: baseline;
  gap: 0.7em;
  font-size: 0.92rem;
}
.hours dt {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}
.hours .dots { border-bottom-color: rgba(200, 162, 75, 0.18); }
.hours dd {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.loc-route {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.loc-route::after { content: " ↗"; }

/* Karte (lädt erst nach Klick) */
.map-shell {
  position: relative;
  height: 420px;
  border: 1px solid var(--line-soft);
  background-color: #130d09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='66'%3E%3Crect width='140' height='66' fill='%23130d09'/%3E%3Cg fill='%231e150f'%3E%3Crect x='1' y='1' width='66' height='30' rx='2'/%3E%3Crect x='71' y='1' width='66' height='30' rx='2'/%3E%3Crect x='-34' y='35' width='66' height='30' rx='2'/%3E%3Crect x='36' y='35' width='66' height='30' rx='2'/%3E%3Crect x='106' y='35' width='66' height='30' rx='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 66px;
}
.map-shield {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(80% 80% at 50% 50%, rgba(12, 11, 9, 0.55), rgba(12, 11, 9, 0.92));
}
.map-shield p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.95rem;
  max-width: 420px;
}
.map-note { font-size: 0.74rem !important; opacity: 0.75; }
.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) sepia(0.22) contrast(1.05) brightness(0.92);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #080705;
  border-top: 1px solid var(--line-soft);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p {
  color: var(--smoke);
  font-size: 0.95rem;
  font-style: italic;
  max-width: 34ch;
}

.footer-col h4 {
  margin: 0 0 1.1rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.footer-col a, .footer-col li {
  color: var(--smoke);
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--gold-bright); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 162, 75, 0.08);
  font-size: 0.8rem;
  color: rgba(163, 154, 139, 0.7);
}
.footer-legal a { color: var(--smoke); }
.footer-legal a:hover { color: var(--gold-bright); }

/* ==========================================================================
   UNTERSEITEN (Impressum)
   ========================================================================== */
.page-hero {
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5rem)) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  letter-spacing: 0.03em;
}

.page-prose {
  max-width: 720px;
  margin-inline: auto;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}
.page-prose h2 {
  font-size: 1.9rem;
  margin: 2.6rem 0 1rem;
  color: var(--gold-bright);
}
.page-prose p, .page-prose li { color: var(--smoke); }
.page-prose strong { color: var(--cream); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .order-locations { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item,
  .gallery-item:nth-child(n+4) { grid-column: auto; aspect-ratio: 3 / 4; }
  .gallery-item:nth-child(5) { grid-column: 1 / -1; aspect-ratio: 3 / 2; }
  .drinks-grid { grid-template-columns: 1fr; gap: 2.4rem; }
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-wall { transform: rotate(0deg); max-width: 540px; margin-inline: auto; }
  .menu-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .menu-col + .menu-col .menu-cat { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hero-frame { inset: 10px; }
  .brand-logo { height: 38px; }
  .site-footer .brand-logo { height: 48px; }
  .order-grid, .reviews-grid, .locations-grid, .footer-grid { grid-template-columns: 1fr; }
  .menu-list.cols2 { grid-template-columns: 1fr; }
  .rating-detail { text-align: center; }
  .reviews-summary { flex-direction: column; gap: 0.8rem; }
  .map-shell { height: 340px; }
  .hours dt { min-width: 64px; }
  .about-wall { min-height: 300px; }
  .gallery-grid { gap: 0.6rem; }
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ==========================================================================
   REDUZIERTE BEWEGUNG
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .hero-smoke i, .hero-embers i, .scroll-cue { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
