/* ==========================================================================
   Super Taste & Trust — „Mitternachtsgrill"
   Dunkle, warme Kohle-Welt + CI-Feuerfamilie (Rot→Orange→Gold) + Creme-Kacheln
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Passion One';
  src: url('assets/fonts/passion-one-v20-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Passion One';
  src: url('assets/fonts/passion-one-v20-latin-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('assets/fonts/figtree-v9-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('assets/fonts/figtree-v9-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('assets/fonts/figtree-v9-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Farbe */
  --bg: #1B110B;            /* warmes Kohle-Umbra, nie #000 */
  --bg-2: #241710;          /* Karten / abgesetzte Flächen */
  --bg-3: #2E1D13;          /* Hover / erhöht */
  --ink: #F7EDE0;           /* warmes Creme-Weiß, nie #fff als Fläche */
  --ink-dim: rgba(247, 237, 224, .72);
  --ink-faint: rgba(247, 237, 224, .38);
  --hairline: rgba(247, 237, 224, .14);
  --ember: #E2372B;         /* CI-Rot */
  --ember-deep: #8f1d13;    /* dunkler Rot-Anker */
  --flame: #F7931E;         /* CI-Orange */
  --gold: #FFC907;          /* CI-Gelb */
  --grad-fire: linear-gradient(100deg, var(--gold), var(--flame) 45%, var(--ember));
  --cream: #FBF3E6;         /* Kachel-Textfläche (Zitat Menükarte) */
  --cream-2: #F3E7D2;
  --cream-ink: #2A1A10;     /* Text auf Creme */
  --cream-dim: rgba(42, 26, 16, .66);

  /* Typo */
  --font-display: 'Passion One', 'Arial Narrow', sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --size-hero: clamp(3.2rem, 9.5vw, 7.2rem);
  --size-h2: clamp(2.1rem, 5vw, 3.6rem);
  --size-h3: clamp(1.45rem, 2.6vw, 1.9rem);
  --size-body: 1.0625rem;
  --size-small: .9rem;
  --size-label: .78rem;

  /* Layout */
  --wrap: 76rem;
  --gap: clamp(1rem, 2.5vw, 1.75rem);
  --sec-pad: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 16px;
  --radius-s: 10px;

  /* Motion */
  --ease: cubic-bezier(.22, .8, .3, 1);
  --dur: .5s;

  /* Schatten (warm, eine Temperatur) */
  --shadow-tile: 0 10px 30px rgba(10, 4, 1, .45);
  --shadow-glow: 0 0 60px rgba(247, 147, 30, .18);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7.5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; }

::selection { background: var(--flame); color: #211308; }

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

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.vh, .skip {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.skip:focus-visible {
  position: fixed; inset: 1rem auto auto 1rem; z-index: 200;
  width: auto; height: auto; clip-path: none;
  background: var(--gold); color: #211308;
  padding: .8rem 1.2rem; border-radius: var(--radius-s); font-weight: 700;
}

/* ---------- Typografie-Rollen ---------- */
.kicker {
  font-family: var(--font-body);
  font-size: var(--size-label);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--flame);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .9rem;
}
.kicker::before {
  content: ''; width: 1.6rem; height: 2px;
  background: var(--grad-fire); border-radius: 2px; flex: none;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--size-h2);
  line-height: .95;
  letter-spacing: .005em;
  text-transform: uppercase;
  max-width: 24ch;
}
.sec-sub { color: var(--ink-dim); max-width: 58ch; margin-top: 1rem; }
.sec-sub a { color: var(--gold); text-underline-offset: 3px; }
.sec-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.line-fire {
  background: var(--grad-fire);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: 999px;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
  min-height: 44px;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-fire {
  background: linear-gradient(100deg, var(--flame), var(--ember) 80%);
  color: #FFF6E8;
  box-shadow: 0 6px 24px rgba(226, 55, 43, .35);
}
.btn-fire:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(226, 55, 43, .5); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--hairline);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--flame); transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--cream-ink); }
.btn-cream:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(10, 4, 1, .4); }
.btn-big { padding: 1.15rem 1.9rem; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-head.is-scrolled { border-bottom-color: var(--hairline); }
.head-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: .6rem;
}
.brand img { width: 64px; height: 64px; object-fit: contain; transition: transform .18s var(--ease); }
.brand:hover img { transform: scale(1.06) rotate(-2deg); }
.main-nav { margin-inline: auto; }
.main-nav ul { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: .98rem;
  color: var(--ink-dim); padding: .5rem 0;
  transition: color .18s var(--ease);
}
.main-nav a:hover { color: var(--gold); }
.head-actions { display: flex; align-items: center; gap: .7rem; margin-left: auto; }
.head-tel span { font-variant-numeric: tabular-nums; }

.burger { display: none; background: none; border: 0; padding: .6rem; cursor: pointer; border-radius: var(--radius-s); }
.burger-box { display: grid; gap: 5px; width: 24px; }
.burger-box span { height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] .burger-box span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-box span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-box span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--hairline);
  background: var(--bg-2);
}
.mobile-menu nav { display: grid; gap: .3rem; padding: 1.2rem clamp(1rem, 4vw, 2rem) 1.6rem; }
.mobile-menu a:not(.btn) {
  text-decoration: none; font-weight: 600; font-size: 1.15rem;
  padding: .75rem .4rem; border-radius: var(--radius-s); color: var(--ink);
}
.mobile-menu a:not(.btn):hover { background: var(--bg-3); }
.mobile-menu .btn { justify-content: center; margin-top: .5rem; }

/* No-JS: Menü immer sichtbar statt Burger */
.no-js .burger { display: none !important; }
@media (max-width: 900px) {
  .no-js .mobile-menu { display: block !important; }
  .no-js .mobile-menu[hidden] { display: block !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52rem 34rem at 78% 38%, rgba(247, 147, 30, .16), transparent 62%),
    radial-gradient(30rem 22rem at 12% 88%, rgba(226, 55, 43, .10), transparent 65%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center; gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.status-chip {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--size-small); font-weight: 600;
  color: var(--ink-dim);
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: .45rem 1rem .45rem .8rem;
  margin-bottom: 1.4rem;
}
.status-dot {
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--gold); flex: none;
}
.status-chip.is-open .status-dot { background: #4ADE80; box-shadow: 0 0 8px rgba(74, 222, 128, .8); }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: var(--size-hero); line-height: .9;
  text-transform: uppercase; letter-spacing: .005em;
}
.hero-title .line { display: block; }
.hero-sub {
  color: var(--ink-dim); max-width: 46ch;
  margin-top: 1.3rem; font-size: 1.1rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-note {
  display: flex; align-items: center; gap: .5rem;
  color: var(--ink-faint); font-size: var(--size-small); margin-top: 1.2rem;
}
.hero-note svg { width: 1.25em; height: 1.25em; color: var(--flame); }

.hero-stage { position: relative; display: grid; place-items: center; min-height: 300px; }
.hero-ring {
  position: absolute; width: min(30rem, 82%); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 147, 30, .22), rgba(226, 55, 43, .08) 55%, transparent 72%);
  filter: blur(2px);
}
.hero-burger {
  position: relative; z-index: 2;
  width: min(34rem, 100%);
  filter: drop-shadow(0 30px 40px rgba(8, 3, 1, .65));
}
.js .hero-burger { animation: burger-in 1s var(--ease) both .15s; }
@keyframes burger-in {
  from { opacity: 0; transform: translateY(2.2rem) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-shadow {
  position: absolute; bottom: 8%; z-index: 1;
  width: 55%; height: 2rem; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .55), transparent 70%);
}
.hero-tag {
  position: absolute; z-index: 3; right: 4%; bottom: 14%;
  display: grid; gap: .1rem; text-align: center;
  background: var(--cream); color: var(--cream-ink);
  border-radius: 14px; padding: .6rem 1rem;
  transform: rotate(4deg);
  box-shadow: var(--shadow-tile);
}
.js .hero-tag { animation: tag-in .7s var(--ease) both .75s; }
@keyframes tag-in {
  from { opacity: 0; transform: rotate(10deg) translateY(1rem) scale(.9); }
  to { opacity: 1; transform: rotate(4deg) translateY(0) scale(1); }
}
.hero-tag-name { font-weight: 700; font-size: .85rem; }
.hero-tag-price {
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  line-height: 1; color: var(--ember);
}

/* ---------- Ticker (Signature-Dauerläufer) ---------- */
.ticker {
  border-block: 1px solid var(--hairline);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: .9rem;
  position: relative;
}
.tick-track { display: flex; width: max-content; }
.js .tick-track { animation: tick 46s linear infinite; }
@keyframes tick { to { transform: translateX(-50%); } }
.tick-row { display: flex; align-items: center; flex: none; }
.tick-item {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.55rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink-faint); white-space: nowrap;
  padding-inline: 1.4rem;
}
.tick-flame { display: flex; color: var(--flame); opacity: .85; }
.tick-flame svg { width: 1.15rem; height: 1.15rem; }

/* ---------- USP ---------- */
.usp { padding-block: var(--sec-pad) 0; }
.usp-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.usp-item {
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.usp-item:hover { transform: translateY(-4px); border-color: rgba(247, 147, 30, .45); }
.usp-item svg {
  width: 2rem; height: 2rem; color: var(--flame);
  background: rgba(247, 147, 30, .12);
  border-radius: 12px; padding: .45rem;
  box-sizing: content-box;
}
.usp-item { min-width: 0; }
.usp-item h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: .03em; margin-top: .9rem;
  overflow-wrap: break-word; hyphens: auto;
}
.usp-item p { color: var(--ink-dim); font-size: var(--size-small); margin-top: .4rem; }

/* ---------- Signature-Reihe ---------- */
.signature { padding-block: var(--sec-pad); }
.sig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap); align-items: start;
}
.sig-card {
  background: var(--bg-2); border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.sig-card:hover { transform: translateY(-5px); border-color: rgba(247, 147, 30, .4); }
.sig-mid { background: linear-gradient(160deg, var(--bg-3), var(--bg-2)); }
.sig-media { display: grid; place-items: center; min-height: 15rem; margin-bottom: .8rem; }
.sig-media img {
  max-height: 15.5rem; width: auto; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(8, 3, 1, .55));
  transition: transform .35s var(--ease);
}
.sig-card:hover .sig-media img { transform: scale(1.045) rotate(-1deg); }
.sig-title {
  font-family: var(--font-display); font-weight: 900; font-size: var(--size-h3);
  text-transform: uppercase; letter-spacing: .02em;
}
.sig-copy { color: var(--ink-dim); font-size: var(--size-small); margin-top: .6rem; }
.sig-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--hairline);
}

/* ---------- Speisekarte ---------- */
.menu { padding-block: var(--sec-pad) 0; }
.chip-nav {
  position: sticky; top: 4.9rem; z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-block: 1px solid var(--hairline);
}
.chip-row {
  display: flex; gap: .5rem; overflow-x: auto;
  padding-block: .7rem;
  scrollbar-width: none;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  flex: none; text-decoration: none;
  font-size: var(--size-small); font-weight: 600;
  color: var(--ink-dim);
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: .5rem 1.05rem;
  transition: color .18s, border-color .18s, background-color .18s;
  min-height: 40px; display: inline-flex; align-items: center;
}
.chip:hover { color: var(--gold); border-color: rgba(255, 201, 7, .5); }
.chip.is-active {
  color: #211308; background: var(--gold); border-color: var(--gold);
}

.menu-cat { padding-top: clamp(2.5rem, 5vw, 4rem); scroll-margin-top: 9.5rem; }
.cat-head { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.cat-title {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(1.9rem, 4vw, 2.7rem);
  text-transform: uppercase; letter-spacing: .01em;
  display: flex; align-items: baseline; gap: .8rem;
}
.cat-count {
  font-family: var(--font-body); font-weight: 600; font-size: var(--size-label);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--flame);
}
.cat-claim { color: var(--ink-faint); font-size: var(--size-small); }

.dish-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.dish {
  background: var(--cream); color: var(--cream-ink);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.dish:hover { transform: translateY(-5px); box-shadow: var(--shadow-tile); }
.dish-photo {
  background: #FFFFFF; /* Fortsetzung des Render-Hintergrunds, keine Basisfläche */
  aspect-ratio: 1;
  display: grid; place-items: center;
  overflow: hidden;
}
.dish-photo img {
  width: 86%; height: 86%; object-fit: contain;
  transition: transform .35s var(--ease);
}
.dish:hover .dish-photo img { transform: scale(1.07); }
.dish-body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.dish-name { font-size: 1.02rem; font-weight: 700; line-height: 1.3; }
.dish-meta { color: var(--cream-dim); font-size: .82rem; margin-top: .25rem; }
.dish-foot {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  margin-top: auto; padding-top: .8rem;
}
.dish-price {
  font-weight: 700; font-size: 1.15rem; font-variant-numeric: tabular-nums;
  color: var(--ember);
}
.sig-foot .dish-price { font-size: 1.35rem; color: var(--gold); }
.dish-order {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: var(--size-small); font-weight: 700;
  color: var(--cream-ink); text-decoration: none;
  border-bottom: 2px solid var(--flame);
  padding-bottom: .1rem;
  transition: color .18s;
  min-height: 30px;
}
.dish-order:hover { color: var(--ember); }
.dish-order svg { width: .95em; height: .95em; }
.sig-foot .dish-order { color: var(--ink); border-bottom-color: var(--flame); }
.sig-foot .dish-order:hover { color: var(--gold); }
.dish-nophoto .dish-body { padding-top: 1.6rem; }
.dish-nophoto {
  background: linear-gradient(150deg, var(--cream), var(--cream-2));
  justify-content: flex-end; min-height: 14rem;
}

/* ---------- Deals ---------- */
.deals {
  margin-top: var(--sec-pad);
  background:
    radial-gradient(60rem 30rem at 85% 0%, rgba(255, 201, 7, .12), transparent 60%),
    linear-gradient(160deg, var(--ember-deep), #6d150d 70%);
  padding-block: var(--sec-pad);
}
.sec-head-onred .sec-title { color: #FFF3E2; }
.kicker-onred { color: var(--gold); }
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.deal {
  background: rgba(27, 17, 11, .35);
  border: 1px solid rgba(255, 243, 226, .16);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column; align-items: flex-start;
  color: #FFF3E2;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.deal:hover { transform: translateY(-5px); border-color: rgba(255, 201, 7, .5); }
.deal-img {
  width: min(15rem, 80%); align-self: center;
  border-radius: 12px;
  margin-bottom: 1.1rem;
}
.deal-name {
  font-family: var(--font-display); font-weight: 900; font-size: var(--size-h3);
  text-transform: uppercase;
}
.deal-sub { color: rgba(255, 243, 226, .75); font-size: var(--size-small); margin-top: .4rem; }
.deal-price {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1;
  color: var(--gold);
  margin-block: .9rem .2rem;
}
.deal .btn { margin-top: auto; }
.deal-price span::after { content: ''; }

.coupons {
  margin-top: clamp(2rem, 4vw, 3rem);
  border: 1.5px dashed rgba(255, 243, 226, .4);
  border-radius: var(--radius);
  padding: 1.6rem clamp(1.2rem, 3vw, 2rem);
  color: #FFF3E2;
}
.coupon-h {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  text-transform: uppercase; letter-spacing: .03em;
}
.coupon-h svg { width: 1.3rem; height: 1.3rem; color: var(--gold); }
.coupon-row { display: flex; gap: var(--gap); flex-wrap: wrap; margin-top: 1rem; }
.coupon {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(27, 17, 11, .4);
  border-radius: var(--radius-s);
  padding: .8rem 1.2rem;
}
.coupon strong {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .12em;
  color: var(--gold);
}
.coupon span { font-size: var(--size-small); color: rgba(255, 243, 226, .8); }
.coupon-note { font-size: var(--size-label); color: rgba(255, 243, 226, .55); margin-top: .9rem; }

/* ---------- Qualität ---------- */
.quality { padding-block: var(--sec-pad); }
.quality-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.q-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-tile); }
.q-media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.q-media figcaption {
  position: absolute; right: .8rem; bottom: .8rem;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(27, 17, 11, .72); color: var(--ink-dim);
  padding: .25rem .6rem; border-radius: 999px;
}
.q-copy p { color: var(--ink-dim); margin-top: .3rem; }
.q-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.q-list li { display: flex; gap: .9rem; align-items: flex-start; color: var(--ink-dim); }
.q-list svg {
  width: 1.5rem; height: 1.5rem; flex: none; color: var(--flame);
  background: rgba(247, 147, 30, .12); border-radius: 9px; padding: .35rem;
  box-sizing: content-box;
}
.q-list strong { color: var(--ink); }

/* ---------- How-to ---------- */
.howto {
  background: var(--bg-2);
  border-block: 1px solid var(--hairline);
  padding-block: var(--sec-pad);
}
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  counter-reset: step;
}
.how-step { position: relative; padding: 1.4rem 1.4rem 1.4rem 1.5rem; }
.how-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 4.4rem; line-height: 1;
  background: var(--grad-fire);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.how-step h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.45rem;
  text-transform: uppercase; letter-spacing: .03em;
  margin-top: .6rem;
}
.how-step p { color: var(--ink-dim); font-size: var(--size-small); margin-top: .4rem; }
.how-cta { text-align: center; margin-top: clamp(1.5rem, 3vw, 2.5rem); }

/* ---------- Kontakt ---------- */
.contact { padding-block: var(--sec-pad); }
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.k-list { display: grid; gap: 1.2rem; margin-top: 1.6rem; }
.k-list li { display: flex; gap: 1rem; color: var(--ink-dim); }
.k-list svg {
  width: 1.5rem; height: 1.5rem; flex: none; color: var(--flame);
  background: rgba(247, 147, 30, .12); border-radius: 9px; padding: .35rem;
  box-sizing: content-box;
}
.k-list strong { color: var(--ink); }
.k-list a { color: var(--gold); text-underline-offset: 3px; }
.k-social { display: flex; gap: 1.2rem; margin-top: 1.6rem; }
.soc {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--ink-dim); text-decoration: none; font-weight: 600; font-size: var(--size-small);
  transition: color .18s;
  min-height: 44px;
}
.soc:hover { color: var(--gold); }
.soc svg { width: 1.3rem; height: 1.3rem; }

.k-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--bg-2);
  min-height: 24rem;
  display: grid;
}
.map-facade {
  display: grid; place-content: center; gap: 1rem; text-align: center;
  padding: 2rem;
}
.map-facade p { color: var(--ink-dim); font-size: var(--size-small); }
.map-facade strong { color: var(--ink); font-size: 1.05rem; }
.map-facade .btn { justify-self: center; }
.map-ext { color: var(--ink-faint); font-size: var(--size-label); text-underline-offset: 3px; }
.map-ext:hover { color: var(--gold); }
.k-map iframe { width: 100%; height: 100%; min-height: 24rem; border: 0; display: block; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative; overflow: clip;
  border-top: 1px solid var(--hairline);
  background:
    radial-gradient(46rem 26rem at 50% 120%, rgba(247, 147, 30, .22), transparent 65%),
    var(--bg-2);
  padding-block: var(--sec-pad);
  text-align: center;
}
.cta-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: .95;
  text-transform: uppercase;
}
.cta-sub { color: var(--ink-dim); margin-top: 1rem; }
.cta-band .hero-cta { justify-content: center; margin-top: 1.8rem; }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--hairline); background: var(--bg); }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.foot-brand img { width: 88px; height: 88px; object-fit: contain; }
.foot-claim {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: .02em; margin-top: .8rem;
}
.foot-sub { color: var(--ink-faint); font-size: var(--size-small); margin-top: .4rem; max-width: 30ch; }
.foot-h {
  font-size: var(--size-label); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--flame);
  margin-bottom: 1rem;
}
.foot-col ul { display: grid; gap: .55rem; }
.foot-col li { color: var(--ink-dim); font-size: var(--size-small); }
.foot-col a { color: var(--ink-dim); text-decoration: none; transition: color .18s; }
.foot-col a:hover { color: var(--gold); }
.foot-col .soc { min-height: 0; }
.foot-base {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  padding-block: 1.2rem;
  color: var(--ink-faint); font-size: var(--size-label);
}
.to-top { color: var(--ink-faint); text-decoration: none; }
.to-top:hover { color: var(--gold); }

/* ---------- Legal / 404 ---------- */
.legal { padding-block: clamp(2.5rem, 6vw, 5rem); max-width: 46rem; }
.legal p, .legal a { overflow-wrap: anywhere; }
.legal p { hyphens: auto; }
.legal h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.9rem, 8vw, 3.6rem);
  text-transform: uppercase;
  overflow-wrap: break-word; hyphens: auto;
}
.legal h2 { overflow-wrap: break-word; hyphens: auto; }
.legal-intro { color: var(--ink-faint); margin-top: .5rem; }
.legal h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: .02em;
  margin-top: 2.2rem; margin-bottom: .5rem;
}
.legal p { color: var(--ink-dim); margin-top: .6rem; }
.legal a { color: var(--gold); text-underline-offset: 3px; }
.todo-box {
  border: 1.5px dashed rgba(255, 201, 7, .45);
  border-radius: var(--radius-s);
  padding: .8rem 1rem;
  color: var(--gold) !important;
  font-size: var(--size-small);
}
.nf { padding-block: clamp(4rem, 10vw, 8rem); text-align: center; }
.nf .kicker { justify-content: center; }
.nf-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 5.5rem); line-height: .95; text-transform: uppercase;
}
.nf-sub { color: var(--ink-dim); margin-top: 1rem; }
.nf .hero-cta { justify-content: center; margin-top: 2rem; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .tick-track { animation: none; }
  .js .hero-burger, .js .hero-tag { animation: none; }
  .btn, .usp-item, .sig-card, .dish, .deal { transition: none; }
  .dish-photo img, .sig-media img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .dish-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav, .head-tel { display: none; }
  .burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { order: -1; min-height: 0; margin-top: .5rem; }
  .hero-burger { width: min(22rem, 88%); }
  .hero-tag { right: 8%; bottom: 6%; }
  .sig-grid { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .quality-grid, .contact-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: .5rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .chip-nav { top: 4.6rem; }
}
@media (max-width: 640px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .dish-body { padding: .8rem .85rem .9rem; }
  .dish-name { font-size: .92rem; }
  .dish-order { min-height: 44px; padding-inline: .4rem; }
  .dish-order svg { width: 1.2em; height: 1.2em; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .usp-row { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .dish-grid { grid-template-columns: 1fr; }
}
