:root {
  --black: #0a0a09;
  --black-2: #11110f;
  --black-3: #171612;
  --paper: #efe5d2;
  --paper-2: #f8f1e5;
  --cream: #f4e7d1;
  --cream-2: #d8c4a3;
  --muted: #a99c86;
  --muted-dark: #60594d;
  --red: #c92a1f;
  --red-bright: #e63a26;
  --orange: #ef6d16;
  --gold: #a67a39;
  --line-dark: rgba(239, 229, 210, .16);
  --line-light: rgba(20, 18, 14, .17);
  --success: #24835a;
  --danger: #b7281c;
  --focus: #ffd36e;
  --header-h: 70px;
  --shell: min(1180px, calc(100% - 40px));
  --shell-wide: min(1380px, calc(100% - 40px));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow: 0 26px 80px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
[hidden] { display: none !important; }

.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: var(--shell-wide); margin-inline: auto; }
.dark-texture {
  background-color: var(--black);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.025), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(201,42,31,.05), transparent 28%),
    repeating-linear-gradient(12deg, rgba(255,255,255,.018) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #0a0a09, #0e0d0b);
}
.paper-texture {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.32), transparent 26%),
    repeating-linear-gradient(90deg, rgba(57,43,24,.025) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, #f5ecde, #e9dcc7);
  color: var(--black);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--focus);
  color: #000;
  font-weight: 850;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(7,7,6,.96);
  border-bottom: 1px solid rgba(166,122,57,.35);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.wordmark { display: inline-flex; flex-direction: column; text-decoration: none; line-height: .88; }
.wordmark-main {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: .05em;
  color: var(--cream);
  white-space: nowrap;
  text-shadow: 1px 1px 0 rgba(255,255,255,.12), -1px 0 0 rgba(0,0,0,.7);
}
.wordmark-sub {
  margin-top: 7px;
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.primary-nav { display: flex; justify-content: center; gap: clamp(18px, 2.7vw, 40px); }
.primary-nav a {
  position: relative;
  padding: 10px 0;
  color: #d8c9b1;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--red-bright);
  transition: right 160ms ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: .035em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button svg { width: 18px; height: 18px; fill: currentColor; }
.button-small { min-height: 42px; padding-inline: 15px; font-size: 14px; }
.button-accent { background: var(--red); color: #fff; }
.button-accent:hover { background: var(--red-bright); }
.button-delivery { background: var(--orange); color: #fff; }
.button-delivery:hover { background: #ff7d22; }
.button-outline { border-color: rgba(201,42,31,.78); color: var(--cream); background: transparent; }
.button-outline:hover { border-color: var(--red-bright); background: rgba(201,42,31,.12); }
.button-dark { background: var(--black); color: var(--cream); }

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { overflow-wrap: normal; }
p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; }
h1, h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .025em;
  line-height: .92;
  text-transform: uppercase;
}
h2 { margin-bottom: 22px; font-size: clamp(38px, 4.4vw, 68px); }
h3 { line-height: 1.08; }

.hero {
  min-height: calc(100svh - var(--header-h));
  border-bottom: 1px solid rgba(166,122,57,.45);
}
.hero-grid {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
}
.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(54px, 8vh, 96px) clamp(30px, 3.8vw, 66px) clamp(44px, 6vh, 70px) 0;
}
.hero-title { min-width: 0; margin: 0 0 26px; max-width: 700px; }
.hero-title span {
  display: block;
  font-family: var(--display);
  font-size: clamp(46px, 4vw, 58px);
  letter-spacing: .015em;
  line-height: .88;
  color: var(--cream);
  white-space: nowrap;
  text-shadow: 1px 1px 0 rgba(255,255,255,.14), -1px 1px 0 rgba(0,0,0,.75);
}
.hero-title .accent-line { color: var(--red-bright); }
.hero-lead { max-width: 600px; margin: 0 0 30px; color: #e1d4c0; font-size: clamp(18px, 1.7vw, 25px); line-height: 1.4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-actions > :where(.button-accent, .button-outline:not(.hero-menu-fallback)) { width: 221.5px; box-sizing: border-box; }
.hero-menu-fallback { border-color: rgba(166,122,57,.7); }
.availability-row {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}
.availability-row > div { min-width: 0; display: flex; gap: 12px; padding: 18px 14px 0 0; }
.availability-row > div + div { padding-left: 14px; border-left: 1px solid var(--line-dark); }
.info-icon { flex: 0 0 auto; color: var(--gold); font-size: 26px; line-height: 1; }
.availability-row p { margin: 0; }
.availability-row strong { display: block; color: var(--cream); font-size: 13px; line-height: 1.35; }
.availability-row small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }
.opening-status { margin: 14px 0 0; color: var(--orange); font-weight: 800; }
.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 520px;
  border-left: 1px solid rgba(166,122,57,.38);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0, rgba(10,10,9,.74) 8%, transparent 30%), linear-gradient(180deg, transparent 72%, rgba(10,10,9,.65));
  pointer-events: none;
}
.hero-visual picture,
.hero-visual img { width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: 58% center; }

.split-showcase { display: grid; grid-template-columns: 1fr 1fr; }
.story-panel,
.process-panel,
.sauce-panel,
.menu-panel { min-width: 0; border-bottom: 1px solid rgba(166,122,57,.38); }
.story-panel { border-right: 1px solid rgba(42,34,22,.25); }
.process-panel { color: var(--cream); }
.story-panel-inner,
.process-panel-inner,
.sauce-panel-inner,
.menu-panel-inner { max-width: 720px; min-height: 100%; padding: clamp(54px, 6vw, 88px) clamp(28px, 4vw, 70px); }
.story-panel-inner,
.sauce-panel-inner { margin-left: auto; }
.process-panel-inner,
.menu-panel-inner { margin-right: auto; }
.story-panel-inner { display: grid; grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr); gap: clamp(24px, 3vw, 46px); align-items: center; }
.story-image { min-width: 0; box-shadow: 0 18px 44px rgba(62,45,24,.24); }
.story-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-copy { min-width: 0; container: story-copy / inline-size; }
.story-copy h2 { font-size: clamp(28px, 11.5cqw, 50px); line-height: .98; color: var(--black); }
.story-copy p { margin: 0; color: #3d382f; font-size: 15px; line-height: 1.62; }
.story-copy p + p { margin-top: 17px; }
.process-panel-inner h2 { font-size: clamp(32px, 2.5vw, 40px); line-height: 1; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}
.process-grid li { position: relative; padding: 0 16px; text-align: center; }
.process-grid li + li::before {
  content: "›";
  position: absolute;
  left: -4px;
  top: 36px;
  transform: translateY(-50%);
  color: var(--red-bright);
  font-size: 30px;
  line-height: 1;
}
.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(166,122,57,.7);
  border-radius: 50%;
}
.step-icon svg { width: 42px; height: 42px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-grid strong { display: block; color: var(--cream); font-family: var(--display); font-size: 17px; letter-spacing: .04em; text-transform: uppercase; }
.process-grid p { margin: 8px 0 0; color: #b9aa94; font-size: 12px; line-height: 1.5; }

.sauce-menu-showcase { align-items: stretch; }
.sauce-panel { border-right: 1px solid rgba(42,34,22,.25); }
.sauce-panel h2 { color: var(--black); font-size: clamp(36px, 3.4vw, 57px); }
.sauce-image { display: block; margin: 26px 0 28px; overflow: hidden; }
.sauce-image img { width: 100%; aspect-ratio: 14/8.6; object-fit: cover; }
.sauce-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.sauce-card { min-width: 0; padding-top: 12px; border-top: 2px solid var(--red); }
.sauce-card h3 { margin: 0 0 6px; color: var(--black); font-family: var(--display); font-size: 17px; letter-spacing: .03em; text-transform: uppercase; }
.sauce-card p { margin: 0; color: var(--muted-dark); font-size: 12px; line-height: 1.45; }
.heat-meter { margin-top: 10px; }
.heat-label { display: block; color: var(--red); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.heat-bars { display: flex; gap: 4px; margin-top: 6px; }
.heat-bars i { width: 18px; height: 4px; background: rgba(20,18,14,.16); }
.heat-bars i.active { background: var(--red); }

.menu-panel { color: var(--cream); }
.menu-panel-inner { max-width: 780px; container: menu-panel / inline-size; }
.menu-heading { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 20px; }
.menu-heading > div { min-width: 0; }
.menu-heading h2 { margin-bottom: 0; font-size: clamp(36px, 3.4vw, 57px); }
.text-link { color: var(--red-bright); font-family: var(--display); font-size: 14px; letter-spacing: .03em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
@container menu-panel (max-width: 800px) {
  .menu-heading { grid-template-columns: 1fr; row-gap: 24px; }
}
.menu-filter { display: flex; flex-wrap: wrap; gap: 0; margin-top: 28px; border-bottom: 1px solid var(--line-dark); }
.menu-filter button {
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #b9aa94;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.menu-filter button[aria-pressed="true"] { color: var(--cream); border-bottom-color: var(--red-bright); }
.menu-groups { margin-top: 12px; }
.menu-group { padding: 14px 0 0; }
.menu-group-title { margin: 0 0 4px; color: var(--red-bright); font-family: var(--display); font-size: 15px; letter-spacing: .045em; text-transform: uppercase; }
.menu-item {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.menu-item-main { min-width: 0; }
.menu-item-header { display: flex; align-items: baseline; gap: 10px; }
.menu-item-header h3 { margin: 0; color: var(--cream); font-family: var(--display); font-size: 20px; letter-spacing: .025em; }
.menu-portion { color: var(--muted); font-size: 11px; }
.menu-item-description { margin: 4px 0 0; color: #b9aa94; font-size: 12px; }
.menu-options { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 6px; }
.menu-options span { color: var(--gold); font-size: 11px; font-style: italic; }
.menu-item-meta { min-width: 92px; display: flex; flex-direction: column-reverse; align-items: flex-end; justify-content: space-between; gap: 8px; }
.menu-price { color: var(--cream); font-family: var(--display); font-size: 22px; white-space: nowrap; }
.allergen-link { color: var(--muted); font-size: 11px; text-align: right; }
.menu-note { margin-top: 16px; padding: 12px 14px; border-left: 3px solid var(--red); background: rgba(255,255,255,.035); }
.menu-note p { margin: 0; color: #b9aa94; font-size: 12px; }
.noscript-menu p { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--line-dark); }

.order-flow { padding: clamp(54px, 6vw, 82px) 0; color: var(--black); }
.order-flow-inner { display: grid; grid-template-columns: minmax(360px,.78fr) minmax(0,1.22fr); gap: 42px; align-items: start; }
.order-heading h2 { margin-bottom: 0; font-size: clamp(36px, 3.4vw, 54px); }
.order-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.order-steps li { position: relative; min-height: 180px; padding: 20px 16px 18px; border: 1px solid rgba(42,34,22,.22); background: rgba(255,255,255,.24); }
.order-step-number { position: absolute; top: 8px; right: 11px; color: rgba(201,42,31,.28); font-family: var(--display); font-size: 42px; }
.order-icon { display: block; margin-bottom: 24px; color: var(--black); line-height: 1; }
.order-icon img { display: block; width: 42px; height: 42px; object-fit: contain; }
.order-steps strong { display: block; font-family: var(--display); font-size: 17px; letter-spacing: .03em; line-height: 1.1; text-transform: uppercase; }
.order-steps li:first-child strong a { color: #145b8c; text-decoration: none; }
.order-steps li:first-child strong a:hover,
.order-steps li:first-child strong a:focus-visible { color: #0d3f68; text-decoration: underline; text-decoration-thickness: 2px; }
.order-phone { display: inline-block; margin-top: 12px; color: var(--red); font-size: 13px; font-weight: 850; line-height: 1.2; text-decoration: none; text-decoration-thickness: 2px; }
.order-phone:hover,
.order-phone:focus-visible { color: var(--red-bright); text-decoration: underline; }
.order-steps p { margin: 8px 0 0; color: var(--muted-dark); font-size: 12px; }
.order-facts { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px 28px; padding-top: 24px; border-top: 1px solid var(--line-light); }
.order-facts span { color: var(--muted-dark); font-size: 12px; }
.order-facts strong { display: block; color: var(--black); font-size: 13px; }

.catering { padding: clamp(62px, 7vw, 98px) 0; border-top: 1px solid rgba(166,122,57,.38); border-bottom: 1px solid rgba(166,122,57,.38); }
.catering-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,.95fr) minmax(0,1.25fr); gap: clamp(24px, 3.8vw, 58px); align-items: start; }
.catering-copy, .catering-form { min-width: 0; }
.catering-image { align-self: stretch; display: block; min-height: 0; overflow: hidden; box-shadow: var(--shadow); }
.catering-image img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.catering-copy h2 { font-size: clamp(38px, 3.5vw, 58px); line-height: .98; }
.catering-copy > p:not(.section-kicker) { color: #c0b19a; font-size: 15px; }
.feature-list { margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { padding: 13px 0; border-top: 1px solid var(--line-dark); }
.feature-list strong { display: block; color: var(--cream); font-family: var(--display); font-size: 17px; letter-spacing: .03em; text-transform: uppercase; }
.feature-list span { color: var(--muted); font-size: 12px; }
.catering-form { padding: 26px; border: 1px solid rgba(166,122,57,.45); background: rgba(10,10,9,.68); }
.form-heading { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 6px 16px; margin-bottom: 18px; }
.form-heading h3 { margin: 0; font-family: var(--display); font-size: 28px; letter-spacing: .035em; text-transform: uppercase; }
.form-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.form-grid { display: grid; gap: 12px; }
.form-grid.two-cols { grid-template-columns: repeat(2, minmax(0,1fr)); }
.field { min-width: 0; margin-bottom: 12px; }
.field label { display: block; margin-bottom: 5px; color: #cdbca4; font-size: 12px; font-weight: 800; }
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid rgba(239,229,210,.22);
  border-radius: 0;
  background: #11110f;
  color: var(--cream);
}
.field textarea { min-height: 104px; resize: vertical; }
.field select { color-scheme: dark; }
.field input::placeholder,
.field textarea::placeholder { color: #786e60; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 1px var(--danger); }
.field-error { min-height: 0; margin: 5px 0 0; color: #ff9d92; font-size: 11px; }
.field-hint { margin: 4px 0 0; color: var(--muted); font-size: 11px; text-align: right; }
.checkbox-field { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: start; }
.checkbox-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); }
.checkbox-field label { margin: 0; color: #bbaa91; font-size: 11px; line-height: 1.45; }
.checkbox-field .field-error { grid-column: 2; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-submit { width: 100%; }
.form-status { min-height: 22px; margin: 12px 0 0; font-weight: 800; }
.form-status.success { color: #7ad3a1; }
.form-status.error { color: #ff9d92; }
.form-fallback { margin: 8px 0 0; color: #776c5e; font-size: 11px; }

.faq { padding: clamp(54px, 6vw, 82px) 0; color: var(--black); }
.faq-inner { display: grid; grid-template-columns: .45fr 1.55fr; gap: 46px; }
.faq-heading h2 { margin: 0; font-size: clamp(42px, 4vw, 62px); }
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.faq-list details { border: 1px solid rgba(42,34,22,.2); background: rgba(255,255,255,.2); }
.faq-list summary { position: relative; padding: 16px 44px 16px 16px; font-family: var(--display); font-size: 18px; letter-spacing: .025em; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 16px; top: 13px; color: var(--red); font-size: 24px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0; padding: 0 16px 18px; color: var(--muted-dark); font-size: 13px; }

.site-footer { padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .9fr .9fr 1.05fr; gap: 30px; align-items: start; }
.footer-brand p { max-width: 240px; color: var(--muted); font-size: 12px; }
.footer-grid h2 { margin: 0 0 10px; color: var(--gold); font-family: var(--display); font-size: 16px; letter-spacing: .04em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand):not(.footer-actions) > * { display: block; margin-bottom: 6px; color: #c3b49d; font-size: 12px; }
.footer-actions { display: grid; gap: 8px; }
.footer-actions .button { width: 100%; min-height: 42px; font-size: 13px; }
.footer-bottom { margin-top: 38px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line-dark); color: #817565; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.icon-credit { color: #817565; font-size: 10px; }
.icon-credit a { color: inherit; }
.mobile-order-bar { display: none; }

/* Rechtliche Seiten */
.legal-page { background: var(--paper); color: var(--black); }
.legal-page .site-header { color: var(--cream); }
.legal-page .primary-nav a { color: #d8c9b1; }
.legal-hero { padding: 86px 0 64px; background: var(--black); color: var(--cream); }
.legal-hero h1 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(58px, 8vw, 104px); line-height: .9; text-transform: uppercase; }
.legal-hero p:not(.section-kicker) { max-width: 760px; color: #c5b69f; }
.legal-content { padding: 70px 0 100px; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 54px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 8px; }
.legal-nav a { padding: 9px 0; border-bottom: 1px solid var(--line-light); color: var(--muted-dark); font-weight: 750; text-decoration: none; }
.prose { min-width: 0; max-width: 850px; }
.legal-page h1,
.legal-page h2,
.legal-page h3 { overflow-wrap: anywhere; }
.prose section + section { margin-top: 46px; padding-top: 36px; border-top: 1px solid var(--line-light); }
.prose h2 { margin-bottom: 18px; color: var(--black); font-size: clamp(32px, 4vw, 50px); }
.prose h3 { margin: 25px 0 8px; }
.prose p, .prose li { color: #463f35; }
.placeholder-box, .notice { padding: 16px 18px; border-left: 4px solid var(--red); background: rgba(255,255,255,.4); }
.notice { font-size: 13px; }
code { padding: 2px 5px; background: rgba(0,0,0,.07); }
.table-scroll { min-width: 0; max-width: 100%; overflow-x: auto; }
.info-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.info-table th, .info-table td { padding: 12px 11px; border: 1px solid rgba(42,34,22,.22); text-align: left; vertical-align: top; }
.info-table th { background: var(--black); color: var(--cream); }
.legend-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.legend-list > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 2rem minmax(0,1fr);
  gap: 10px;
  align-items: baseline;
}
.legend-list dt { color: var(--red); font-family: var(--display); font-size: 16px; font-weight: 900; line-height: 1.25; }
.legend-list dd { min-width: 0; margin: 0; color: #3d382f; font-size: 14px; line-height: 1.35; }
.legend-list.compact { grid-template-columns: 1fr; }
.prose #legende > h2 { margin: 0 0 14px; font-size: clamp(28px, 3.2vw, 38px); line-height: .96; }
.prose #legende > h3 { margin: 20px 0 8px; color: var(--red); font-family: var(--display); font-size: 16px; letter-spacing: .05em; line-height: 1.1; text-transform: uppercase; }
.prose #legende > .legend-list + h2 { margin-top: 28px; }
.prose #legende > p { margin: 14px 0 0; color: #2f2a24; font-size: 14px; font-weight: 550; line-height: 1.6; }
.legal-page .site-footer { color: var(--cream); }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(330px,.92fr) minmax(0,1.08fr); }
  .hero-title span { font-size: clamp(46px, 4vw, 58px); }
  .story-panel-inner { grid-template-columns: 1fr; }
  .story-image { max-width: 360px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px 0; }
  .process-grid li:nth-child(3)::before { display: none; }
  .sauce-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .order-flow-inner { grid-template-columns: 1fr; }
  .catering-grid { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
  .catering-image { grid-row: span 2; }
  .catering-copy { grid-column: 2; }
  .catering-form { grid-column: 2; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .footer-actions { grid-column: 3; }
}

@media (max-width: 860px) {
  :root { --shell: min(1180px, calc(100% - 28px)); --shell-wide: min(1380px, calc(100% - 28px)); --header-h: 64px; }
  .header-inner { grid-template-columns: auto auto 1fr; gap: 14px; }
  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid var(--line-dark);
    background: transparent;
    color: var(--cream);
    font-weight: 800;
  }
  .menu-toggle-lines { width: 22px; display: grid; gap: 5px; }
  .menu-toggle-lines i { height: 2px; background: currentColor; }
  .header-order { display: none; }
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 16px 20px 22px;
    background: #0a0a09;
    border-bottom: 1px solid rgba(166,122,57,.5);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line-dark); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 66px 0 42px; }
  .hero-title span { font-size: clamp(34px, 10vw, 54px); letter-spacing: 0; }
  .hero-visual { min-height: 520px; margin-inline: -14px; border-left: 0; }
  .hero-visual::after { background: linear-gradient(180deg, var(--black) 0, transparent 16%, transparent 75%, rgba(10,10,9,.65)); }
  .split-showcase { grid-template-columns: 1fr; }
  .story-panel, .sauce-panel { border-right: 0; }
  .story-panel-inner, .process-panel-inner, .sauce-panel-inner, .menu-panel-inner { max-width: none; margin: 0; padding: 58px 24px; }
  .story-panel-inner { grid-template-columns: minmax(180px,.75fr) minmax(0,1.25fr); }
  .process-panel-inner h2 { font-size: clamp(30px, 9vw, 42px); line-height: 1; }
  .order-steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .catering-grid { grid-template-columns: 1fr; }
  .catering-image, .catering-copy, .catering-form { grid-column: 1; grid-row: auto; }
  .catering-image img { min-height: 400px; }
  .faq-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-actions { grid-column: auto; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 620px) {
  .wordmark-main { font-size: 28px; }
  .wordmark-sub { font-size: 8px; }
  .menu-toggle-label { display: none; }
  .hero-copy { padding-top: 52px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .availability-row { grid-template-columns: 1fr; }
  .availability-row > div { padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
  .availability-row > div + div { padding-left: 0; border-left: 0; }
  .hero-visual { min-height: 360px; }
  .story-panel-inner { grid-template-columns: 1fr; }
  .story-image { max-width: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { padding: 18px 0; display: grid; grid-template-columns: 70px 1fr; gap: 15px; align-items: center; text-align: left; border-bottom: 1px solid var(--line-dark); }
  .process-grid li + li::before { display: none; }
  .step-icon { margin: 0; }
  .process-grid p { grid-column: 2; margin-top: -8px; }
  .sauce-list { grid-template-columns: 1fr 1fr; }
  .story-copy h2 { font-size: clamp(32px, 9vw, 48px); line-height: 1; }
  .sauce-panel h2, .order-heading h2 { line-height: 1; }
  .legend-list { grid-template-columns: 1fr; }
  .menu-heading { grid-template-columns: 1fr; row-gap: 24px; }
  .text-link { display: inline-block; margin-top: 0; }
  .menu-filter { flex-wrap: wrap; overflow: visible; padding-bottom: 2px; }
  .menu-filter button { flex: 0 0 auto; }
  .menu-item { gap: 10px; }
  .menu-item-header { display: block; }
  .menu-portion { display: block; margin-top: 3px; }
  .menu-portion, .menu-options span, .checkbox-field label { font-size: 12px; }
  .menu-item-meta { min-width: 76px; }
  .menu-price { font-size: 19px; }
  .order-steps { grid-template-columns: 1fr; }
  .order-steps li { min-height: 0; }
  .form-grid.two-cols { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-order-bar {
    position: fixed;
    z-index: 1200;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
    background: rgba(8,8,7,.96);
    border-top: 1px solid rgba(166,122,57,.48);
  }
  .mobile-order-bar a { min-height: 48px; display: grid; place-items: center; background: var(--red); color: #fff; font-family: var(--display); text-decoration: none; text-transform: uppercase; }
  .mobile-order-bar a:nth-child(2) { background: var(--orange); }
  body.has-mobile-bar { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .legal-nav { grid-template-columns: 1fr; }
  .legend-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
