/* ==========================================================================
   BON AMI — Website
   Optik übernommen von den Digital-Signage-Tafeln: dunkler, warmer Grund,
   goldene Headlines mit dunkler Kontur, rote Preis-Pillen, goldene Nummern-
   kreise und gepunktete Führungslinien.
   ========================================================================== */

/* ------------------------------------------------------------- Schriften */

@font-face {
  font-family: 'Bangers';
  src: url('../fonts/Bangers-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

/* --------------------------------------------------------------- Tokens */

:root {
  --gold: #ffc93c;
  --gold-light: #ffdd6b;
  --amber: #f5a11e;
  --amber-deep: #e8830e;
  --red: #e23a28;
  --red-deep: #a81f11;
  --cream: #fff6e6;
  --ink: #160702;

  --bg: #190a03;
  --bg-2: #241006;
  --surface: rgba(255, 240, 220, 0.05);
  --surface-2: rgba(255, 240, 220, 0.08);
  --line: rgba(255, 201, 60, 0.2);
  --line-soft: rgba(255, 246, 230, 0.12);
  --text: #f6e7d5;
  --text-dim: rgba(246, 231, 213, 0.68);

  --radius: 20px;
  --radius-sm: 12px;
  --wrap: 1180px;
  --topbar-h: 68px;

  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* ----------------------------------------------------------------- Basis */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Die freigestellten Food-Fotos schweben leicht auf und ab — nur ein paar Pixel,
   damit die Seite lebt, ohne zu zappeln. Die Startzeiten sind versetzt, sonst
   wippt eine ganze Kachelreihe im Gleichschritt. */
@keyframes food-float {
  from { transform: translateY(3px); }
  to   { transform: translateY(-5px); }
}
.hero-img img,
.hl-card img,
.cat-tile img,
.category-img,
.sauce-strip img {
  animation: food-float 3.6s ease-in-out infinite alternate;
}
.hero-img img { animation-duration: 4.8s; }
.hl-grid > *:nth-child(2n) img,
.cat-grid > *:nth-child(3n) img,
.sauce-strip img:nth-child(3n + 2) { animation-delay: -1.2s; }
.hl-grid > *:nth-child(3n) img,
.cat-grid > *:nth-child(3n + 2) img,
.sauce-strip img:nth-child(3n) { animation-delay: -2.4s; }
@media (prefers-reduced-motion: reduce) {
  .hero-img img, .hl-card img, .cat-tile img, .category-img, .sauce-strip img { animation: none !important; }
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: #190a03;
  background-image:
    radial-gradient(1100px 620px at 78% -12%, rgba(232, 131, 14, 0.42), transparent 62%),
    radial-gradient(820px 520px at 8% 4%, rgba(226, 58, 40, 0.28), transparent 60%),
    linear-gradient(180deg, #2a1006 0%, #190a03 42%, #120602 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--gold); text-decoration-color: rgba(255, 201, 60, 0.4); text-underline-offset: 3px; }
a:hover { color: var(--gold-light); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--gold); color: #2a1006; padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 10px; font-weight: 800; text-decoration: none;
  transition: top 0.15s;
}
.skip:focus { top: 0; }

/* --------------------------------------------------------- Display-Titel */

h1, h2, h3 { margin: 0 0 0.5rem; }

.display,
h1,
.section-title,
.category-head h2,
.menu-hero h1,
.legal h1 {
  font-family: 'Bangers', 'Bebas Neue', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  color: var(--gold);
  text-shadow:
    0 3px 0 #7c1e0c,
    0 5px 18px rgba(0, 0, 0, 0.55);
  -webkit-text-stroke: 1.5px rgba(58, 18, 6, 0.9);
  paint-order: stroke fill;
}

.section-title {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-title svg { width: 0.9em; height: 0.9em; fill: var(--amber); flex: none; -webkit-text-stroke: 0; filter: drop-shadow(0 2px 0 rgba(0,0,0,.35)); }

.section-sub {
  margin: -0.2rem 0 1.8rem;
  color: var(--text-dim);
  max-width: 60ch;
}

/* --------------------------------------------------------------- Topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 8, 3, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.topbar-inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.55rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex: none;
}
.brand img {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 201, 60, 0.6);
  object-fit: cover;
  background: #2a1006;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: 'Bangers', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--gold);
}
.brand-text em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.mainnav {
  margin-left: auto;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.mainnav::-webkit-scrollbar { display: none; }
.mainnav a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.mainnav a:hover { background: var(--surface-2); color: var(--gold-light); }
.mainnav a[aria-current='page'] {
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber-deep) 100%);
  color: #2a1006;
}

.topbar-social { display: flex; gap: 0.4rem; flex: none; }
.icon-btn {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.icon-btn svg { width: 20px; height: 20px; fill: var(--gold); }
.icon-btn:hover { background: linear-gradient(180deg, var(--gold) 0%, var(--amber-deep) 100%); }
.icon-btn:hover svg { fill: #2a1006; }

@media (max-width: 860px) {
  .topbar-inner { flex-wrap: wrap; }
  .mainnav { order: 3; width: 100%; margin-left: 0; padding-bottom: 0.15rem; }
  .topbar-social { margin-left: auto; }
}

/* ----------------------------------------------------------------- Hero */

.hero { padding: clamp(2rem, 1rem + 5vw, 4.5rem) 0 clamp(2rem, 1rem + 4vw, 3.5rem); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 1.4rem + 5.4vw, 5rem);
  margin: 0.4rem 0 0.8rem;
}
.hero-claim {
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  color: var(--text-dim);
  max-width: 46ch;
  margin: 0 0 1.6rem;
}
/* Der Hero zeigt das freigestellte Logo — kein Rahmen, dafür ein warmer
   Lichtschein dahinter, damit es nicht im dunklen Grund verschwindet. */
.hero-img img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.55));
}
.hero-img {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(245, 161, 30, 0.28), rgba(245, 161, 30, 0) 66%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--text-dim);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.07);
}
.eyebrow[data-status='open'] { color: #a6e69a; border-color: rgba(91, 181, 67, 0.5); }
.eyebrow[data-status='open'] .dot { background: #5bb543; box-shadow: 0 0 0 3px rgba(91, 181, 67, 0.22); }
.eyebrow[data-status='closed'] { color: #ffb3a8; border-color: rgba(226, 58, 40, 0.5); }
.eyebrow[data-status='closed'] .dot { background: var(--red); box-shadow: 0 0 0 3px rgba(226, 58, 40, 0.22); }
.eyebrow[data-status='soon'] { color: var(--gold-light); border-color: rgba(255, 201, 60, 0.55); }
.eyebrow[data-status='soon'] .dot { background: var(--gold); box-shadow: 0 0 0 3px rgba(255, 201, 60, 0.22); }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
}

/* -------------------------------------------------------------- Buttons */

.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.btn svg { width: 19px; height: 19px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber-deep) 100%);
  color: #2a1006;
  box-shadow: 0 10px 24px rgba(232, 131, 14, 0.3);
}
.btn-primary:hover { color: #2a1006; filter: brightness(1.06); }
.btn-ghost {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold); }

.social-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.social svg { width: 20px; height: 20px; fill: var(--gold); }
.social:hover {
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber-deep) 100%);
  color: #2a1006;
  border-color: transparent;
}
.social:hover svg { fill: #2a1006; }
.social.small { padding: 0.45rem 0.9rem; font-size: 0.86rem; }

/* ------------------------------------------------------------ Abschnitte */

.section { padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.14));
  border-block: 1px solid var(--line-soft);
}

/* Empfehlungen */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
}
.hl-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.hl-card:hover { transform: translateY(-4px); border-color: var(--gold); }
/* Die Produktfotos sind Freisteller ohne Hintergrund — deshalb `contain`
   plus warmer Lichtschein, statt sie im Rahmen zu beschneiden. */
.hl-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  padding: 0.7rem;
  background: radial-gradient(circle at 50% 62%, rgba(245, 161, 30, 0.3), rgba(245, 161, 30, 0) 68%);
}
.hl-body { display: flex; flex-direction: column; gap: 0.3rem; padding: 1rem 1.1rem 1.2rem; }
.hl-cat { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); font-weight: 700; }
.hl-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.1;
}
.hl-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.45; }
.hl-price {
  align-self: flex-start;
  margin-top: 0.4rem;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  font-weight: 800;
  padding: 0.28rem 0.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}

/* Kategorie-Kacheln */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.cat-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 30%, rgba(245, 161, 30, 0.24), rgba(245, 161, 30, 0) 70%),
    var(--surface);
  min-height: 190px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.cat-tile:hover { transform: translateY(-4px); border-color: var(--gold); }
.cat-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: 50% 32%;
  padding: 0.9rem 0.9rem 3.4rem;
}
.cat-tile-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  justify-content: flex-end;
  height: 100%;
  min-height: 190px;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(20, 8, 3, 0.1) 30%, rgba(20, 8, 3, 0.92) 100%);
}
.cat-tile-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1.05;
}
.cat-tile-count { font-size: 0.82rem; color: var(--text-dim); }

/* Info-Karten (Öffnungszeiten / Standort) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.4rem;
  align-items: start;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 1rem + 1vw, 2rem);
}
.info-card .section-title { font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.3rem); margin-bottom: 0.7rem; }

.status-line { color: var(--text-dim); font-size: 0.9rem; margin: 0 0 1rem; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: 0.62rem 0;
  border-bottom: 1px dashed var(--line-soft);
  font-weight: 600;
}
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--cream); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours tr.is-closed th, .hours tr.is-closed td { color: var(--text-dim); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold); }
.hours tr.is-today th::after { content: ' · heute'; font-size: 0.78em; letter-spacing: 0.06em; text-transform: uppercase; }

.address { font-size: 1.05rem; line-height: 1.7; }
.address strong { color: var(--gold); }
.fineprint { font-size: 0.84rem; color: var(--text-dim); }

.map {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 220px;
  background: rgba(0, 0, 0, 0.25);
}
.map iframe { display: block; width: 100%; height: 300px; border: 0; }
.map-consent {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  min-height: 220px;
  padding: 1.5rem;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  justify-content: center;
  font: inherit;
}
.map-consent:hover { background: var(--surface-2); }
.map-consent-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.map-consent-text { font-size: 0.85rem; color: var(--text-dim); max-width: 42ch; }

/* Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.contact-card svg { width: 28px; height: 28px; fill: var(--gold); flex: none; }
.contact-card span { display: flex; flex-direction: column; font-size: 0.95rem; overflow-wrap: anywhere; }
.contact-card strong {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--gold);
}

/* ====================================================== Seite Speisekarte */

.menu-hero { padding: clamp(2rem, 1.2rem + 3vw, 3.4rem) 0 1.6rem; text-align: center; }
.menu-hero h1 { font-size: clamp(2.8rem, 1.6rem + 5vw, 5rem); }
.menu-hero-sub {
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0.2rem 0 1rem;
}
.menu-hero-note {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 62ch;
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.badge-menu {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber-deep) 100%);
  color: #2a1006;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Werkzeugleiste: Suche, Filter, Kategorien */
.menu-tools {
  position: sticky;
  top: var(--topbar-h);
  z-index: 40;
  background: rgba(20, 8, 3, 0.9);
  backdrop-filter: blur(14px);
  border-block: 1px solid var(--line-soft);
}
@media (max-width: 860px) {
  .menu-tools { top: calc(var(--topbar-h) + 46px); }
}

.menu-tools-inner {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.search-wrap { position: relative; flex: 1 1 260px; }
.search-wrap input {
  width: 100%;
  padding: 0.72rem 2.4rem 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}
.search-wrap input::placeholder { color: rgba(246, 231, 213, 0.45); }
.q-clear {
  position: absolute;
  right: 0.35rem; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 0;
  background: var(--surface-2);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.q-clear:hover { background: var(--red); color: #fff; }

.filters { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.chip {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.chip:hover { border-color: var(--gold); }
.chip[aria-pressed='true'] {
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber-deep) 100%);
  color: #2a1006;
  border-color: transparent;
}

.catnav {
  border-top: 1px solid var(--line-soft);
  overflow-x: auto;
  scrollbar-width: none;
}
.catnav::-webkit-scrollbar { display: none; }
.catnav-inner { display: flex; gap: 0.3rem; padding: 0.5rem 0; }
.catnav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}
.catnav a:hover { background: var(--surface-2); color: var(--gold-light); }
.catnav a.is-active {
  background: var(--surface-2);
  border-color: var(--gold);
  color: var(--gold);
}

/* Kategorie */
.menu-body { padding: 2rem 0 4rem; }

.category {
  margin-bottom: clamp(2.4rem, 1.5rem + 3vw, 4rem);
  scroll-margin-top: calc(var(--topbar-h) + 118px);
}
@media (max-width: 860px) {
  .category { scroll-margin-top: calc(var(--topbar-h) + 164px); }
}

.category-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--line);
}
.category-head h2 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); display: flex; align-items: baseline; gap: 0.5rem; }
.cat-icon { font-size: 0.8em; -webkit-text-stroke: 0; text-shadow: none; }
.category-img {
  width: 190px;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.8rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 201, 60, 0.45);
  background: radial-gradient(circle, rgba(245, 161, 30, 0.34), rgba(20, 8, 3, 0.5) 72%);
  box-shadow: var(--shadow);
}
@media (max-width: 700px) {
  .category-head { grid-template-columns: 1fr; }
  .category-img { width: 118px; justify-self: start; order: -1; }
}

.lead { margin: 0.2rem 0 0.5rem; color: var(--text-dim); max-width: 62ch; }
.menu-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  color: var(--text-dim);
}



/* Gerichte */
.items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
  gap: 0.2rem 2.2rem;
}

.item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0.6rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px dashed var(--line-soft);
}
.item:hover { background: var(--surface); }

.item-no {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--amber) 100%);
  color: #2a1006;
  font-weight: 800;
  font-size: 0.8rem;
  margin-top: 0.15rem;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.item-body { flex: 1; min-width: 0; display: block; }

.item-head {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.025em;
  color: var(--cream);
  line-height: 1.15;
}
.chili { font-size: 0.7em; margin-left: 0.3rem; letter-spacing: -0.12em; }

.dots {
  flex: 1;
  min-width: 12px;
  height: 1px;
  align-self: flex-end;
  margin-bottom: 0.35rem;
  background-image: linear-gradient(to right, rgba(255, 246, 230, 0.35) 40%, rgba(255, 246, 230, 0) 40%);
  background-size: 7px 1px;
  background-repeat: repeat-x;
}

.price {
  flex: none;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.22rem 0.62rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
  font-variant-numeric: tabular-nums;
}
.price-group { display: flex; gap: 0.35rem; flex: none; }
.price-group .price { min-width: 76px; text-align: center; position: relative; }
.price-size {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 1px;
}

.item-desc {
  display: block;
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.45;
  margin-top: 0.15rem;
  padding-right: 3rem;
}

/* Extras */
.extras {
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px dashed var(--line);
}
.extras-head { margin: 0 0 0.25rem; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.extras-head strong { color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem; }
.extras-price {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff; font-weight: 800; font-size: 0.82rem;
  padding: 0.15rem 0.55rem; border-radius: 6px;
}
.extras-list { margin: 0; font-size: 0.88rem; color: var(--text-dim); }

/* Saucen */
.sauce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.sauce-group {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}
.sauce-group h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.sauce-group ul { margin: 0; padding: 0; list-style: none; }
.sauce-group li {
  padding: 0.28rem 0 0.28rem 1.1rem;
  position: relative;
  font-size: 0.95rem;
}
.sauce-group li::before {
  content: '';
  position: absolute; left: 0; top: 0.85em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.sauce-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.sauce-strip img { width: clamp(74px, 13vw, 116px); height: auto; }

.menu-fineprint { margin-top: 2rem; text-align: center; }

.no-results {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}
.linkish {
  background: none; border: 0; padding: 0;
  color: var(--gold); font: inherit; text-decoration: underline; cursor: pointer;
}

/* Wenn gefiltert wird, blenden wir ganze Kategorien aus. */
.item[hidden], .category[hidden] { display: none !important; }

.to-top {
  position: fixed;
  right: 1rem; bottom: 1rem;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber-deep) 100%);
  color: #2a1006;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 45;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }

/* ------------------------------------------------------------ Rechtstext */

.legal-wrap { max-width: 74ch; }
.legal h1 { font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); margin-bottom: 1.5rem; }
.legal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin-top: 2rem;
}
.legal p { color: var(--text-dim); }
.legal code {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.1rem 0.4rem;
  border-radius: 5px;
  font-size: 0.9em;
  color: var(--gold-light);
}
.todo {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(226, 58, 40, 0.14);
  border: 1px solid rgba(226, 58, 40, 0.5);
  color: var(--text) !important;
}

/* ---------------------------------------------------------------- Footer */

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.32);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.6rem;
}
.site-footer p { margin: 0 0 0.35rem; color: var(--text-dim); }
.footer-brand {
  font-family: 'Bangers', sans-serif;
  font-size: 1.8rem;
  color: var(--gold) !important;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem !important;
}
.footer-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--cream) !important;
  margin-bottom: 0.5rem !important;
}
.footer-note {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* ----------------------------------------------------------------- Druck */

@media print {
  body {
    background: #fff;
    color: #111;
    font-size: 11pt;
  }
  .topbar, .site-footer, .menu-tools, .to-top, .category-img, .sauce-strip,
  .hero-img, .map, .skip { display: none !important; }
  .display, h1, h2, h3, .section-title, .category-head h2, .menu-hero h1 {
    color: #111;
    text-shadow: none;
    -webkit-text-stroke: 0;
  }
  .item-name, .hours td, .address strong, .cat-tile-title { color: #111; }
  .lead, .item-desc, .fineprint, .menu-note, .extras-list, .site-footer p { color: #444; }
  .price, .extras-price, .badge-menu { background: none; color: #111; box-shadow: none; font-weight: 700; }
  .item-no { background: none; color: #111; border: 1px solid #999; box-shadow: none; }
  .item { break-inside: avoid; border-bottom: 1px solid #ddd; }
  .category { break-inside: avoid-page; }
  .extras, .sauce-group, .info-card { border: 1px solid #ccc; background: none; }
  a { color: #111; text-decoration: none; }
}
