/* ============================================================
   HELI Pizza Döner — Stylesheet
   Palette: warmes Dunkel + Rot + Gold (passend zum Logo)
   Schriften: Anton (Display) · Poppins (Text)
   ============================================================ */

:root {
  --bg: #14110f;
  --bg-2: #1c1815;
  --bg-3: #241f1b;
  --surface: #211c18;
  --surface-2: #2a2420;
  --border: #3a322c;
  --border-soft: #2e2823;

  --red: #e23824;
  --red-deep: #b91c1c;
  --gold: #f5ae2d;
  --gold-lt: #ffce5a;
  --green: #1faa52;
  --green-wa: #25d366;

  --cream: #f7f1e8;
  --text: #ece4d9;
  --muted: #b3a89c;
  --muted-2: #8c8278;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px -22px rgba(0, 0, 0, .8);
  --shadow-glow: 0 0 0 1px rgba(245, 174, 45, .12), 0 22px 60px -28px rgba(226, 56, 36, .55);
  --ring: 0 0 0 3px rgba(245, 174, 45, .55);

  --ff-display: "Anton", system-ui, sans-serif;
  --ff: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
ul { list-style: none; padding: 0; }
h1, h2, h3 { line-height: 1.08; font-weight: 400; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--gold); color: #1a1208; padding: 10px 16px;
  border-radius: 8px; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(20, 17, 15, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(16, 13, 11, .94);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .9);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--ff-display); }
.brand .mark { width: 40px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 27px; letter-spacing: .04em; color: var(--cream); }
.brand-sub { font-family: var(--ff); font-size: 10.5px; font-weight: 600; letter-spacing: .26em; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: 15.5px;
  padding: 9px 14px; border-radius: 999px; transition: background .2s, color .2s;
}
.nav-links a:hover { color: var(--cream); background: rgba(255, 255, 255, .06); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff !important; font-weight: 600;
  padding: 11px 20px !important; border-radius: 999px !important;
  box-shadow: 0 12px 26px -12px rgba(226, 56, 36, .8); transition: transform .15s, background .2s;
}
.nav-cta:hover { background: var(--red-deep); color: #fff !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--cream); width: 46px; height: 46px; border-radius: 12px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 16px; padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .2s, border-color .2s, color .2s;
  font-family: var(--ff); line-height: 1;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 16px 34px -16px rgba(226, 56, 36, .85); }
.btn-primary:hover { background: var(--red-deep); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #1a1208; }
.btn-gold:hover { background: var(--gold-lt); color: #1a1208; transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 255, 255, .04); color: var(--cream); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-wa { background: var(--green-wa); color: #07371d; }
.btn-wa:hover { background: #34e07a; color: #07371d; transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 11vw, 130px) 0 clamp(46px, 8vw, 96px);
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(245, 120, 40, .20), transparent 52%),
    radial-gradient(90% 80% at 92% 110%, rgba(226, 56, 36, .22), transparent 55%),
    linear-gradient(180deg, #17130f 0%, #14110f 60%, #110e0c 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 60px); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); background: rgba(245, 174, 45, .1);
  border: 1px solid rgba(245, 174, 45, .28); padding: 7px 15px; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31, 170, 82, .22); }

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(46px, 8.5vw, 92px); letter-spacing: .01em;
  color: var(--cream); margin: 20px 0 0; text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}
.hero h1 .accent { color: var(--gold); display: block; }
.hero-lead { color: var(--muted); font-size: clamp(16px, 2vw, 19px); margin-top: 18px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-facts { display: flex; flex-wrap: wrap; gap: 22px 32px; margin-top: 34px; }
.fact { display: flex; align-items: center; gap: 12px; }
.fact .ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: rgba(245, 174, 45, .12); color: var(--gold); border: 1px solid rgba(245, 174, 45, .2);
}
.fact .ico svg { width: 22px; height: 22px; }
.fact b { color: var(--cream); font-weight: 600; display: block; font-size: 15px; }
.fact span { color: var(--muted-2); font-size: 13px; }

/* Hero visual / flame card */
.hero-card {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #221c17, #19140f);
  border: 1px solid var(--border); box-shadow: var(--shadow-glow);
  padding: 38px 32px; text-align: center; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 45, .5), transparent 65%);
  top: -40px; left: 50%; transform: translateX(-50%); filter: blur(8px);
}
.flame-mark { width: 132px; height: 168px; margin: 4px auto 6px; position: relative; z-index: 1; filter: drop-shadow(0 12px 28px rgba(226, 56, 36, .5)); }
.hero-card .hc-title { position: relative; z-index: 1; font-family: var(--ff-display); font-size: 40px; color: var(--cream); letter-spacing: .04em; }
.hero-card .hc-sub { position: relative; z-index: 1; color: var(--gold); font-weight: 600; letter-spacing: .22em; font-size: 12.5px; }
.hero-card .hc-divider { position: relative; z-index: 1; height: 1px; background: var(--border); margin: 22px 0; }
.hero-card .hc-hours { position: relative; z-index: 1; color: var(--muted); font-size: 14.5px; }
.hero-card .hc-hours b { color: var(--cream); }
.hero-card .closed { color: #ff8e7a; }

/* ---------- Sections ---------- */
.section { padding: clamp(54px, 8vw, 96px) 0; }
.section-tight { padding: clamp(38px, 6vw, 64px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { color: var(--gold); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: 13px; }
.section h2 {
  font-family: var(--ff-display); font-size: clamp(30px, 5vw, 50px);
  color: var(--cream); letter-spacing: .015em; margin-top: 10px;
}
.section h2 .accent { color: var(--gold); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* ---------- Specials (Aktionstage) ---------- */
.specials { background: var(--bg-2); border-block: 1px solid var(--border-soft); }
.specials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.special {
  position: relative; overflow: hidden; border-radius: var(--radius);
  padding: 30px 28px; border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(245, 174, 45, .1), rgba(226, 56, 36, .06)), var(--surface);
  display: flex; align-items: center; gap: 22px;
}
.special .badge {
  flex: none; width: 78px; height: 78px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--gold), var(--red)); color: #1a1208; box-shadow: 0 14px 30px -14px rgba(245, 174, 45, .7);
}
.special .badge svg { width: 40px; height: 40px; }
.special .day { color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13.5px; }
.special h3 { font-family: var(--ff-display); font-size: 25px; color: var(--cream); letter-spacing: .02em; margin: 4px 0 6px; }
.special p { color: var(--muted); font-size: 15px; }
.special .price-pop { font-family: var(--ff-display); color: var(--gold-lt); font-size: 30px; margin-left: auto; }

/* ---------- Category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  display: flex; flex-direction: column; gap: 14px; padding: 26px 22px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); transition: transform .2s, border-color .2s, background .2s; min-height: 168px;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--gold); background: var(--surface-2); color: var(--text); }
.cat-card .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(226, 56, 36, .14); color: var(--gold); border: 1px solid rgba(245, 174, 45, .22);
}
.cat-card .ico svg { width: 28px; height: 28px; }
.cat-card h3 { font-size: 19px; color: var(--cream); font-weight: 600; font-family: var(--ff); }
.cat-card p { color: var(--muted-2); font-size: 14px; margin-top: -6px; }
.cat-card .more { margin-top: auto; color: var(--gold); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.cat-card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.cat-card:hover .more svg { transform: translateX(4px); }

/* ---------- Menüs (Combos) ---------- */
.menus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.menu-combo {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 22px; text-align: center; transition: border-color .2s, transform .2s;
}
.menu-combo:hover { border-color: var(--gold); transform: translateY(-3px); }
.menu-combo h3 { font-family: var(--ff-display); font-size: 21px; color: var(--cream); letter-spacing: .02em; }
.menu-combo p { color: var(--muted); font-size: 13.5px; margin: 10px 0 14px; min-height: 60px; }
.menu-combo .price { display: inline-block; font-family: var(--ff-display); font-size: 26px; color: var(--gold-lt); }

/* ---------- Info strip (Lieferung / Öffnung) ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
.info-card h3 { font-family: var(--ff); font-weight: 600; font-size: 20px; color: var(--cream); display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.info-card h3 .ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(245, 174, 45, .12); color: var(--gold); }
.info-card h3 .ico svg { width: 21px; height: 21px; }
.hours-row, .zone-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--border-soft); font-size: 15.5px; }
.hours-row:last-child, .zone-row:last-child { border-bottom: none; }
.hours-row .d, .zone-row .d { color: var(--muted); }
.hours-row .t, .zone-row .t { color: var(--cream); font-weight: 600; }
.hours-row.is-closed .t { color: #ff8e7a; }
.zone-note { color: var(--muted-2); font-size: 13px; margin-top: 14px; }

/* ---------- Menu page ---------- */
.menu-hero { padding: clamp(54px, 9vw, 96px) 0 clamp(20px, 4vw, 40px); }
.menu-nav {
  position: sticky; top: 74px; z-index: 900; background: rgba(16, 13, 11, .95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-block: 1px solid var(--border-soft); padding: 12px 0;
}
.menu-nav-inner { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 2px; }
.menu-nav-inner::-webkit-scrollbar { height: 5px; }
.menu-nav-inner::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.menu-chip {
  white-space: nowrap; flex: none; padding: 8px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  font-size: 14px; font-weight: 500; transition: background .2s, color .2s, border-color .2s;
}
.menu-chip:hover, .menu-chip.active { background: var(--gold); color: #1a1208; border-color: var(--gold); }

.menu-section { padding-top: clamp(40px, 6vw, 64px); scroll-margin-top: 150px; }
.menu-section-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 10px; border-bottom: 2px solid var(--border); padding-bottom: 14px; margin-bottom: 8px; }
.menu-section-head h2 { font-family: var(--ff-display); font-size: clamp(26px, 4vw, 38px); color: var(--cream); letter-spacing: .02em; }
.menu-section-head .note { color: var(--gold); font-size: 13.5px; font-weight: 500; }
.menu-section > .sub-note { color: var(--muted-2); font-size: 13.5px; margin: 10px 0 4px; font-style: italic; }

.size-legend { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 4px; }
.size-legend .sl { font-size: 11.5px; color: var(--muted-2); background: var(--bg-3); border: 1px solid var(--border-soft); border-radius: 7px; padding: 4px 9px; }
.size-legend .sl b { color: var(--gold); }

.item {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 14px; align-items: start;
  padding: 16px 0; border-bottom: 1px dashed var(--border-soft);
}
.item:last-child { border-bottom: none; }
.item .num { font-family: var(--ff-display); color: var(--gold); font-size: 17px; padding-top: 2px; }
.item .body .name { color: var(--cream); font-weight: 600; font-size: 16.5px; }
.item .body .desc { color: var(--muted); font-size: 14px; margin-top: 2px; }
.item .body .alg { color: var(--muted-2); font-size: 11.5px; margin-top: 5px; letter-spacing: .02em; }
.item .price-single { font-family: var(--ff-display); color: var(--gold-lt); font-size: 20px; white-space: nowrap; padding-top: 1px; }

.prices { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; max-width: 320px; }
.pp { display: inline-flex; flex-direction: column; align-items: center; gap: 1px; background: var(--bg-3); border: 1px solid var(--border-soft); border-radius: 9px; padding: 5px 10px; min-width: 58px; }
.pp .s { font-size: 10px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .04em; }
.pp .v { font-family: var(--ff-display); font-size: 15.5px; color: var(--cream); }

.extras-box { margin-top: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.extras-box h4 { color: var(--cream); font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.extras-box .item { border-bottom-style: dotted; }

/* ---------- Allergen legend ---------- */
.legend { background: var(--bg-2); border-top: 1px solid var(--border-soft); }
.legend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.legend h3 { color: var(--cream); font-weight: 600; font-size: 17px; margin-bottom: 12px; }
.legend p { color: var(--muted); font-size: 13.5px; line-height: 1.9; }
.legend .code { color: var(--gold); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.contact-item .ico { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(245, 174, 45, .12); color: var(--gold); border: 1px solid rgba(245, 174, 45, .2); }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item .lbl { color: var(--muted-2); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.contact-item .val { color: var(--cream); font-weight: 600; font-size: 17px; }
.contact-item .val a { color: var(--cream); }
.contact-item .val a:hover { color: var(--gold); }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ---------- Form ---------- */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; color: var(--cream); font-weight: 500; font-size: 14.5px; margin-bottom: 7px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border); border-radius: 11px;
  padding: 13px 15px; color: var(--text); font: inherit; font-size: 15.5px; transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 174, 45, .18); outline: none; }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.form-consent input { width: auto; margin-top: 4px; accent-color: var(--gold); }
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 11px; background: rgba(31, 170, 82, .12); border: 1px solid rgba(31, 170, 82, .4); color: #7be0a4; font-weight: 500; }
.form-status.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #100d0b; border-top: 1px solid var(--border-soft); padding: clamp(46px, 7vw, 72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 30ch; }
.footer-col h4 { color: var(--cream); font-weight: 600; font-size: 15px; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .footer-col span { color: var(--muted); font-size: 14.5px; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--cream); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border-soft); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--muted-2); font-size: 13px; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom nav a { color: var(--muted-2); font-size: 13px; }
.footer-bottom nav a:hover { color: var(--gold); }

/* ---------- Floating actions (mobile) ---------- */
.fab { position: fixed; right: 16px; bottom: 16px; z-index: 950; display: none; flex-direction: column; gap: 12px; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .8); }
.fab .fab-call { background: var(--red); color: #fff; }
.fab .fab-wa { background: var(--green-wa); color: #07371d; }
.fab a svg { width: 26px; height: 26px; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1500;
  max-width: 620px; margin-inline: auto;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .85); padding: 22px 24px; display: none;
}
.cookie.show { display: block; animation: cookieIn .4s ease; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie h4 { color: var(--cream); font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.cookie p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.cookie p a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 20px; font-size: 14.5px; }

/* ---------- Generic content (Impressum/Datenschutz) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--ff); font-weight: 600; font-size: 24px; color: var(--cream); margin: 34px 0 12px; }
.prose h3 { font-family: var(--ff); font-weight: 600; font-size: 18px; color: var(--cream); margin: 22px 0 8px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose strong { color: var(--text); }
.prose ul { list-style: disc; padding-left: 22px; color: var(--muted); margin-bottom: 16px; }
.prose ul li { margin-bottom: 7px; }
.note-box { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 10px; padding: 16px 18px; color: var(--muted); font-size: 14px; margin: 18px 0; }

/* ---------- Breadcrumb ---------- */
.crumbs { padding: 16px 0 0; font-size: 13.5px; color: var(--muted-2); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cat-grid, .menus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(16, 13, 11, .98); backdrop-filter: blur(14px); padding: 16px clamp(18px, 5vw, 30px) 26px;
    border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .9); max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; font-size: 16.5px; border-radius: 12px; }
  .nav-cta { justify-content: center; margin-top: 6px; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; margin-inline: auto; }
  .specials-grid, .info-grid, .contact-grid, .legend-grid { grid-template-columns: 1fr; }
  .fab { display: flex; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .cat-grid, .menus-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .special { flex-wrap: wrap; }
  .special .price-pop { margin-left: 0; }
  .item { grid-template-columns: 32px 1fr; }
  .item .prices, .item .price-single { grid-column: 1 / -1; justify-content: flex-start; padding-top: 4px; margin-top: 4px; max-width: none; }
  .item .price-single { font-size: 19px; }
  .menu-nav { top: 64px; }
  .nav { min-height: 64px; }
  .nav-links { inset-block-start: 64px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Print */
@media print {
  .site-header, .fab, .cookie, .menu-nav, .hero-actions, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .item .name, .pp .v, .item .price-single { color: #000; }
}

/* ============================================================
   v2 — Modernes Redesign + JS-Speisekarte (menu.js)
   Schriften: Anton (Display) · Hanken Grotesk (Text) · Space Mono (Tickets/Preise)
   ============================================================ */
:root {
  --ff: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-mono: "Space Mono", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --head-h: 74px;
}
body { font-family: var(--ff); }

/* Lebendiges Logo + dezenter Hover-Glow auf bestehenden Karten */
.flame-mark { will-change: filter; animation: flicker 4s var(--ease) infinite; }
@keyframes flicker {
  0%, 100% { filter: drop-shadow(0 6px 16px rgba(245, 174, 45, .26)); }
  50%      { filter: drop-shadow(0 8px 26px rgba(226, 56, 36, .42)); }
}
.cat-card:hover, .menu-combo:hover, .special:hover { box-shadow: var(--shadow-glow); }
.menu-root .reveal { transition-delay: var(--d, 0ms); }

/* ---------- „Heute“-Badge (Status + Aktionstag) ---------- */
.today-badge { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.td-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14px; padding: 9px 15px;
  border-radius: 999px; border: 1px solid var(--border);
}
.td-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.td-open   { color: #b9efcd; background: rgba(31, 170, 82, .12);  border-color: rgba(31, 170, 82, .32); }
.td-open .td-dot { background: #25d366; animation: pulse 2s ease infinite; }
.td-soon   { color: var(--cream); background: var(--surface); }
.td-soon .td-dot { background: var(--gold); }
.td-closed { color: #ffb4a3; background: rgba(226, 56, 36, .10); border-color: rgba(226, 56, 36, .30); }
.td-closed .td-dot { background: #ff7a5c; }
.td-special {
  display: inline-flex; align-items: center; gap: 9px; font-size: 14px;
  color: #1b1206 !important; background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  border-radius: 999px; padding: 9px 16px; font-weight: 600;
  box-shadow: 0 12px 26px -14px rgba(245, 174, 45, .85);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.td-special:hover { transform: translateY(-2px); color: #1b1206 !important; box-shadow: 0 16px 32px -14px rgba(245, 174, 45, .95); }
.td-special svg { width: 17px; height: 17px; flex: none; }
.td-special b { font-weight: 800; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); } 50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); } }

/* ---------- Sticky Such-/Filterleiste ---------- */
.menu-toolbar {
  position: sticky; top: var(--head-h); z-index: 900;
  background: rgba(16, 13, 11, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}
.menu-toolbar .container { display: flex; flex-direction: column; gap: 12px; }
.menu-search { position: relative; display: flex; align-items: center; }
.menu-search > svg { position: absolute; left: 16px; width: 20px; height: 20px; color: var(--muted); pointer-events: none; }
.menu-search input {
  width: 100%; padding: 14px 46px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px; color: var(--text);
  font: inherit; font-size: 15.5px; transition: border-color .2s, box-shadow .2s;
}
.menu-search input::placeholder { color: var(--muted-2); }
.menu-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 174, 45, .18); }
.search-clear {
  position: absolute; right: 8px; display: grid; place-items: center;
  width: 34px; height: 34px; border: 0; background: transparent;
  color: var(--muted); cursor: pointer; border-radius: 50%;
}
.search-clear svg { width: 18px; height: 18px; }
.search-clear:hover { color: var(--cream); background: rgba(255, 255, 255, .06); }

.menu-chips {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; padding-bottom: 2px; scroll-padding-inline: 24px;
}
.menu-chips::-webkit-scrollbar { display: none; }
.mchip {
  flex: none; border: 1px solid var(--border); background: var(--surface);
  color: var(--muted); font: inherit; font-weight: 600; font-size: 14px;
  padding: 9px 16px; border-radius: 999px; cursor: pointer; white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.mchip:hover { color: var(--cream); }
.mchip.is-active {
  background: linear-gradient(135deg, var(--red), #c52a1a); color: #fff;
  border-color: transparent; box-shadow: 0 10px 22px -12px rgba(226, 56, 36, .8);
}

/* ---------- Menü-Render (Kategorien & Gerichte) ---------- */
.menu-root { padding: 14px 0 30px; }
.mcat { padding: 32px 0; border-top: 1px solid var(--border-soft); scroll-margin-top: 132px; }
.mcat:first-child { border-top: 0; padding-top: 20px; }
.mcat[hidden] { display: none; }
.mcat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 4px; }
.mcat-ico {
  flex: none; display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 15px; color: var(--gold); border: 1px solid var(--border);
  background: radial-gradient(120% 120% at 30% 20%, rgba(245, 174, 45, .18), rgba(226, 56, 36, .12));
}
.mcat-ico svg { width: 26px; height: 26px; }
.mcat-head-t { flex: 1 1 auto; min-width: 0; }
.mcat-head h2 { font-family: var(--ff-display); font-size: clamp(26px, 4.4vw, 34px); color: var(--cream); letter-spacing: .02em; }
.mcat-note { color: var(--muted-2); font-size: 13.5px; margin-top: 4px; }
.mcat-count {
  flex: none; font-family: var(--ff-mono); font-size: 13px; color: var(--gold);
  background: rgba(245, 174, 45, .1); border: 1px solid rgba(245, 174, 45, .22);
  border-radius: 999px; padding: 4px 11px;
}
.mcat-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 14px; margin-top: 18px; }

.dish {
  display: grid; grid-template-columns: auto 1fr auto; column-gap: 14px; row-gap: 10px;
  align-items: start; background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 16px 18px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.dish:hover { transform: translateY(-3px); border-color: rgba(245, 174, 45, .34); box-shadow: var(--shadow-glow); }
.dish[hidden] { display: none; }
.dish-no {
  grid-column: 1; grid-row: 1; align-self: start;
  display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 8px;
  border-radius: 12px; font-family: var(--ff-mono); font-weight: 700; font-size: 14px;
  color: var(--gold-lt); background: linear-gradient(160deg, #241b14, #1a1410);
  border: 1px solid var(--border); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.dish-no--empty { visibility: hidden; }
.dish-main { grid-column: 2; grid-row: 1; min-width: 0; }
.dish-name {
  font-family: var(--ff); font-size: 16.5px; font-weight: 700; color: var(--cream);
  line-height: 1.25; display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.dish-desc { color: var(--muted); font-size: 13.5px; margin-top: 5px; line-height: 1.5; }
.dish-codes { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 9px; }
.dish-codes .code {
  font-family: var(--ff-mono); font-size: 11px; line-height: 1; color: var(--muted-2);
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border-soft);
  border-radius: 6px; padding: 4px 6px; font-weight: 400;
}
.tag { font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
.tag-veg { color: #7ee0a3; background: rgba(31, 170, 82, .14); border: 1px solid rgba(31, 170, 82, .3); }
.tag-hot { color: #ff9d7a; background: rgba(226, 56, 36, .14); border: 1px solid rgba(226, 56, 36, .32); }

.dish-one { grid-column: 3; grid-row: 1; align-self: center; justify-self: end; font-family: var(--ff-mono); font-weight: 700; font-size: 17px; color: var(--gold-lt); white-space: nowrap; }
.dish-sizes { grid-column: 1 / -1; grid-row: 2; display: flex; flex-wrap: wrap; gap: 7px; }
.psize { display: inline-flex; align-items: center; gap: 7px; background: rgba(255, 255, 255, .03); border: 1px solid var(--border-soft); border-radius: 10px; padding: 6px 10px; }
.ps-l { font-weight: 700; font-size: 11px; color: var(--muted-2); }
.ps-v { font-family: var(--ff-mono); font-weight: 700; font-size: 13.5px; color: var(--gold-lt); }

.extras-box { margin-top: 16px; background: linear-gradient(180deg, rgba(245, 174, 45, .05), transparent); border: 1px dashed var(--border); border-radius: 16px; padding: 16px 18px; }
.extras-box[hidden] { display: none; }
.extras-box h4 { font-family: var(--ff); font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 12px; font-weight: 700; }
.extras-box .mcat-items { margin-top: 0; gap: 10px; }
.extras-box .dish { background: transparent; }

.mcat-empty, .menu-noresult { color: var(--muted-2); font-size: 14.5px; }
.mcat-empty { padding: 8px 2px; }
.menu-noresult { text-align: center; padding: 40px 10px; }
.menu-error { margin: 24px 0; padding: 18px 20px; background: rgba(226, 56, 36, .08); border: 1px solid rgba(226, 56, 36, .3); border-radius: 14px; color: var(--text); font-size: 15px; }

/* Legende (JS-Variante) */
.legend-grid .lg-col h3 { color: var(--cream); font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.lg-list { display: flex; flex-direction: column; gap: 7px; }
.lg { display: flex; gap: 9px; align-items: baseline; color: var(--muted); font-size: 13.5px; }
.legend .lg .code { flex: none; min-width: 24px; text-align: center; }

/* ---------- Skeleton (Ladezustand) ---------- */
.menu-skeleton { padding: 22px 0; }
.sk { display: block; border-radius: 10px; background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 37%, var(--surface) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
.sk-head { width: 240px; height: 32px; margin-bottom: 20px; }
.sk-card { display: flex; gap: 14px; align-items: center; background: var(--surface); border: 1px solid var(--border-soft); border-radius: 16px; padding: 16px 18px; margin-bottom: 12px; }
.sk-num { width: 42px; height: 42px; border-radius: 12px; flex: none; }
.sk-body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 8px; }
.sk-line { height: 12px; }
.sk-line.w60 { width: 60%; } .sk-line.w90 { width: 90%; }
.sk-price { width: 60px; height: 18px; flex: none; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ---------- Responsiv & Reduced-Motion ---------- */
@media (max-width: 760px) {
  .mcat-items { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .menu-search input { font-size: 15px; padding: 13px 44px; }
  .mcat-ico { width: 46px; height: 46px; }
  .mcat-ico svg { width: 23px; height: 23px; }
  .dish { padding: 14px 14px; column-gap: 12px; }
  .today-badge { gap: 8px; }
  .td-status, .td-special { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .flame-mark, .td-open .td-dot, .sk { animation: none; }
}
