@charset "utf-8";
/* The Royal Burger — „La Gaceta Royal"
   Zeitungssatz als Struktur: Haarlinien, Spalten, Fuehrungspunkte, Stempel.
   Farben und Schriften siehe DESIGN.md. */

/* ---------------------------------------------------------------- Schrift */

@font-face {
  font-family: "Bitter";
  src: url("assets/fonts/bitter-var.woff2") format("woff2-variations");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-var.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-italic-var.woff2") format("woff2-variations");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}

/* ----------------------------------------------------------------- Marken */

:root {
  --ink: #16130f;
  --ink-80: #3d3730;   /* 9,97:1 auf Papier */
  --ink-60: #665f56;   /* 5,34:1 - schwaechste Stufe, die Text tragen darf */
  --ink-40: #938c82;   /* 2,82:1 - nur Linien und Punkte, nie Schrift */
  --paper: #f1ece1;
  --paper-2: #faf6ee;
  --paper-3: #e7e1d4;

  --gold: #ebce4d;
  --mint: #a9d8be;
  --orange: #f2a03d;
  --chili: #c2261c;
  --open: #2f7d4f;   /* nur der Statuspunkt "jetzt geoeffnet" */
  --violet: #5b3a9e;

  --rule: rgba(22, 19, 15, 0.22);
  --rule-soft: rgba(22, 19, 15, 0.12);
  --rule-firm: rgba(22, 19, 15, 0.55);

  --display: "Bitter", Georgia, "Times New Roman", serif;
  --text: "Newsreader", Georgia, "Times New Roman", serif;

  /* Fluide Groessen. Displaydeckel 5.4rem, Laufweite nie unter -0.04em. */
  --t-display: clamp(2.6rem, 6.4vw, 5.4rem);
  --t-h2: clamp(1.9rem, 3.6vw, 3rem);
  --t-h3: clamp(1.25rem, 2vw, 1.65rem);
  --t-lead: clamp(1.06rem, 0.55vw + 0.94rem, 1.3rem);
  --t-body: 1.0625rem;
  --t-small: 0.9rem;
  --t-agate: 0.72rem;

  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.5rem; --s6: 2rem;     --s7: 3rem;    --s8: 4rem;
  --s9: 6rem;   --s10: 8rem;

  --gutter: clamp(1.1rem, 4vw, 3rem);
  --measure: 66ch;
  --wide: 78rem;
  --strip-h: 2.25rem;
  --head-h: 4rem;

  --map-land: #ece6d9;
  --map-water: #cfdcd6;
  --map-coast: rgba(22, 19, 15, 0.45);
  --map-road: rgba(22, 19, 15, 0.62);
  --map-label: rgba(22, 19, 15, 0.42);
  --map-sea-label: rgba(22, 19, 15, 0.32);
  --map-hi: var(--chili);
  --map-pin: var(--chili);
  --map-pin-ring: var(--paper-2);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------------------------------ Basis */

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--strip-h) + var(--head-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--t-body);
  line-height: 1.6;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  padding-top: calc(var(--strip-h) + var(--head-h));
}

/* Zeitungspapier: ein feiner, echter Raster, nur auf hellen Flaechen und
   so leise, dass er die Schrift nie stoert. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/paper.webp");
  background-size: 320px 320px;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

img, svg, picture { max-width: 100%; display: block; }
img { height: auto; }

/* Jedes Symbol im Textfluss laeuft auf Schriftgroesse mit. */
.ico {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.16em;
}
a .ico, .btn .ico, .dock .ico, .way .ico { margin-inline-end: 0.1em; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: var(--t-display); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: var(--t-h2); font-weight: 900; letter-spacing: -0.03em; }
h3 { font-size: var(--t-h3); }
p { margin: 0 0 var(--s4); max-width: var(--measure); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: var(--chili); }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

::selection { background: var(--gold); color: var(--ink); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: fixed;
  top: calc(var(--strip-h) + 0.4rem);
  left: 0.6rem;
  z-index: 90;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: var(--t-small);
  text-decoration: none;
  transform: translateY(calc(-100% - var(--strip-h) - 1rem));
}
.skip:focus { transform: none; }

/* --------------------------------------------------------------- Bausteine */

.wrap { width: min(100% - var(--gutter) * 2, var(--wide)); margin-inline: auto; }
.narrow { width: min(100% - var(--gutter) * 2, 46rem); margin-inline: auto; }

.agate {
  font-family: var(--display);
  font-size: var(--t-agate);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
}

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.rule--firm { border-top-color: var(--rule-firm); }
.rule--double { border-top: 3px double var(--rule-firm); }

section { padding-block: clamp(var(--s7), 7vw, var(--s9)); }
section + section { border-top: 1px solid var(--rule); }

/* Ueberschrift einer Sektion. Kein Kicker darueber - die Zeile traegt selbst,
   die Folionummer sitzt in der Aussenmarge und dient nur der Navigation. */
.head { margin-bottom: var(--s6); }
.head__lead {
  font-size: var(--t-lead);
  color: var(--ink-80);
  margin-top: var(--s4);
  max-width: 54ch;
}

/* Marker: das Leuchtstift-Rechteck vom Standbanner. Immer Tinte darauf. */
.mark {
  background: var(--gold);
  box-shadow: 0.18em 0 0 var(--gold), -0.18em 0 0 var(--gold);
  color: var(--ink);
}
.mark--mint { background: var(--mint); box-shadow: 0.18em 0 0 var(--mint), -0.18em 0 0 var(--mint); }
.mark--orange { background: var(--orange); box-shadow: 0.18em 0 0 var(--orange), -0.18em 0 0 var(--orange); }

/* ------------------------------------------------------- Vorschau-Streifen */

.preview {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--strip-h);
  display: grid;
  place-items: center;
  background: var(--violet);
  color: #fff;
  padding-inline: var(--s3);
}
.preview p {
  margin: 0;
  max-width: none;
  font-family: var(--display);
  font-size: clamp(0.62rem, 1.7vw, 0.74rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.15;
}
.preview a { color: #fff; }

/* ----------------------------------------------------------------- Kopf */

.head-bar {
  position: fixed;
  top: var(--strip-h);
  inset-inline: 0;
  z-index: 70;
  height: var(--head-h);
  background: var(--paper);
  border-bottom: 1px solid var(--rule-firm);
  box-shadow: 0 1px 0 var(--paper), 0 2px 0 var(--rule-soft);
}
.head-bar__in {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img { width: 2.1rem; height: 2.1rem; }
.brand__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.brand__name span { display: block; font-size: 0.66rem; letter-spacing: 0.2em; font-weight: 600; color: var(--ink-60); }

.nav { margin-left: auto; display: flex; align-items: center; gap: var(--s5); }
.nav__list { display: flex; gap: var(--s5); list-style: none; margin: 0; padding: 0; }
.nav__list a {
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
}
.nav__list a:hover { border-bottom-color: var(--ink); }
.nav__list a[aria-current="page"] { border-bottom-color: var(--chili); }

.langs { display: flex; gap: 0.15rem; align-items: center; }
.langs a {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.28rem 0.42rem;
  border: 1px solid var(--rule);
}
.langs a[aria-current="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.72rem 1.2rem;
  min-height: 2.9rem;
  border: 1.5px solid var(--ink);
  background: var(--paper-2);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.16s var(--ease), color 0.16s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--primary { background: var(--orange); }
.btn--primary:hover { background: var(--ink); color: var(--paper); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--paper-2); color: var(--ink); }
.btn--small { font-size: 0.8rem; padding: 0.5rem 0.85rem; min-height: 2.4rem; }

.head-bar .btn { display: none; }
@media (min-width: 62rem) { .head-bar .btn { display: inline-flex; } }

/* Mobilmenue: ein echtes Panel, kein <details>. Die Desktop-Navigation
   bleibt dabei immer im DOM und sichtbar. */
@media (max-width: 30rem) {
  .head-bar__in { gap: var(--s2); }
  .brand { gap: 0.45rem; }
  .brand img { width: 1.85rem; height: 1.85rem; }
  .brand__name { font-size: 0.82rem; letter-spacing: 0.02em; }
  .brand__name span { display: none; }
  .langs a { padding: 0.28rem 0.3rem; font-size: 0.66rem; }
  .burger { width: 2.6rem; height: 2.6rem; }
}

.burger {
  margin-left: auto;
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  background: none; border: 1.5px solid var(--ink); cursor: pointer;
  padding: 0;
}
.burger span { display: block; width: 1.2rem; height: 2px; background: var(--ink); }
.burger span + span { margin-top: 0.28rem; }
@media (min-width: 62rem) { .burger { display: none; } }

.panel {
  position: fixed;
  inset: calc(var(--strip-h) + var(--head-h)) 0 auto;
  z-index: 69;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule-firm);
  padding: var(--s5) var(--gutter) var(--s6);
  box-shadow: 0 12px 30px -18px rgba(22, 19, 15, 0.45);
}
.panel[hidden] { display: none !important; }
.panel ul { list-style: none; margin: 0 0 var(--s5); padding: 0; display: grid; gap: 0.2rem; }
.panel a {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.panel .btn { width: 100%; }

@media (min-width: 62rem) {
  .nav__list { display: flex; }
  .panel { display: none !important; }
}
@media (max-width: 61.99rem) {
  .nav__list { display: none; }
  .nav { margin-left: 0; }
}

/* ------------------------------------------------------------- Datumszeile */

.dateline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.1rem;
  padding-block: 0.7rem;
  border-top: 1px solid var(--rule-firm);
  border-bottom: 1px solid var(--rule-firm);
  color: var(--ink-80);
}
.dateline > * { display: inline-flex; align-items: center; gap: 0.4rem; }
.dateline .sep { color: var(--ink-60); }

/* Status: wird von main.js gefuellt, hat aber immer einen lesbaren Vorabwert. */
.status { display: inline-flex; align-items: center; gap: 0.45rem; }
.status__dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--ink-40); flex: 0 0 auto;
}
.status[data-open="yes"] .status__dot { background: var(--open); }
.status[data-open="no"] .status__dot { background: var(--chili); }

/* ------------------------------------------------------------------- Hero */

.hero { padding-top: clamp(var(--s6), 5vw, var(--s8)); }
.hero__grid {
  display: grid;
  gap: clamp(var(--s6), 5vw, var(--s8));
  align-items: start;
}
@media (min-width: 60rem) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}

.hero__stamp {
  width: clamp(5.5rem, 11vw, 8.5rem);
  margin-bottom: var(--s5);
}
.hero h1 { margin-bottom: var(--s5); }
.hero__lead { font-size: var(--t-lead); color: var(--ink-80); max-width: 46ch; }

.hero__quote {
  margin: var(--s6) 0 0;
  padding-top: var(--s5);
  border-top: 3px double var(--rule-firm);
}
.hero__quote q {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  quotes: none;
  line-height: 1.15;
  display: inline;
}
.hero__quote figcaption {
  margin-top: var(--s3);
  color: var(--ink-60);
  font-size: var(--t-small);
  font-style: italic;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s6);
}

/* --------------------------------------------------------- Pressefotografie */

.figure { margin: 0; }
.figure img {
  width: 100%;
  border: 1px solid var(--rule-firm);
  background: var(--paper-3);
}
.figure figcaption {
  margin-top: 0.55rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--rule);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-60);
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
}
.figure figcaption .credit { font-style: normal; white-space: nowrap; }

/* Ein Blatt, das auf dem Papier liegt: echter Schatten mit Versatz und
   weicher Kante. Nur fuer Blaetter, nirgends sonst. */
.sheet {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  box-shadow: 0 10px 24px -16px rgba(22, 19, 15, 0.55);
}

/* ------------------------------------------------------------------ Belege */

.proof { display: grid; gap: var(--s5); }
.proof__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.proof__cell {
  padding: var(--s5) var(--s4);
  text-align: center;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.proof__value {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.proof__value .star { color: var(--chili); font-size: 0.62em; vertical-align: 0.16em; margin-left: 0.1em; }
.proof__label { margin-top: 0.5rem; color: var(--ink-60); font-size: var(--t-small); display: block; line-height: 1.35; }
.proof__src { margin-top: 0.3rem; display: block; }
.proof__src a { color: var(--ink-60); }

/* --------------------------------------------------------------- Aufmacher */

.features { display: grid; gap: var(--s7); }
@media (min-width: 55rem) { .features { grid-template-columns: repeat(3, 1fr); gap: var(--s6); } }

.feature { display: grid; gap: var(--s3); align-content: start; padding-top: var(--s4); border-top: 3px double var(--rule-firm); }
.feature h3 { font-size: clamp(1.35rem, 2.3vw, 1.8rem); font-weight: 900; }
.feature__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
}
.feature p { color: var(--ink-80); font-size: 0.98rem; }
.feature__tag { color: var(--ink-60); }

/* Burger des Monats: die beschriftete Grafik ist ihr eigenes Bildmittel. */
.month { display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 55rem) { .month { grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); gap: var(--s8); } }

/* ------------------------------------------------- Kartenzeile mit Punkten */

.lines { list-style: none; margin: 0; padding: 0; display: grid; }
.line { padding-block: 0.85rem; border-bottom: 1px solid var(--rule-soft); }
.line:last-child { border-bottom: 0; }
.line__top { display: flex; align-items: baseline; gap: 0.6rem; }
.line__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.line__dots {
  flex: 1 1 auto;
  min-width: 1.5rem;
  align-self: flex-end;
  margin-bottom: 0.28em;
  border-bottom: 1px dotted var(--ink-40);
}
.line__price {
  font-family: var(--display);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.line__price--ask { font-family: var(--text); font-weight: 400; font-style: italic; font-size: var(--t-small); color: var(--ink-60); }
.line__desc { margin: 0.3rem 0 0; color: var(--ink-80); font-size: 0.97rem; line-height: 1.5; max-width: 58ch; }
.line__note { margin: 0.35rem 0 0; font-size: var(--t-small); color: var(--ink-60); font-style: italic; }
.line__grape { font-style: italic; color: var(--ink-60); }

/* Auf Telefonbreiten brechen lange Gerichtnamen um; die Punktreihe faellt
   dann auf die zweite Zeile, waehrend der Preis oben stehen bleibt. Dort
   deshalb ohne Punkte, Preis rechts. Ab Tablet kommt die Fuehrungslinie
   zurueck - da passt jeder Name in eine Zeile. */
@media (max-width: 43.99rem) {
  .line__dots { display: none; }
  .line__price { margin-left: auto; padding-left: var(--s3); }
}

/* Kennzeichen: gezeichnete Marken, keine Emoji. */
.tags { display: inline-flex; flex-wrap: wrap; gap: 0.3rem; margin-left: 0.15rem; vertical-align: 0.08em; }
.tag {
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.18rem 0.36rem;
  border: 1px solid var(--ink);
  line-height: 1.1;
  white-space: nowrap;
}
.tag--veg { background: var(--mint); }
.tag--gf { background: var(--paper-2); }
.tag--kids { background: var(--paper-2); }
.tag--hot { background: var(--chili); color: #fff; border-color: var(--chili); }

/* --------------------------------------------------------------- Kartenindex */

.index-list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 40rem) { .index-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .index-list { grid-template-columns: repeat(4, 1fr); } }
.index-list a {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.95rem var(--s4);
  text-decoration: none;
  min-height: 3.2rem;
}
.index-list a:hover { background: var(--gold); }
.index-list__name { font-family: var(--display); font-weight: 800; }
.index-list__dots { flex: 1; border-bottom: 1px dotted var(--ink-40); align-self: flex-end; margin-bottom: 0.3em; }
.index-list__n { font-variant-numeric: tabular-nums; color: var(--ink-60); font-size: var(--t-small); }

/* ------------------------------------------------------------------ Diaeten */

.diets { display: grid; gap: var(--s5); }
@media (min-width: 48rem) { .diets { grid-template-columns: repeat(3, 1fr); } }
.diet { padding: var(--s5); border: 1px solid var(--rule-firm); background: var(--paper-2); display: grid; gap: var(--s3); align-content: start; }
.diet h3 { font-size: 1.2rem; }
.diet p { font-size: 0.97rem; color: var(--ink-80); }
.diet__n { font-family: var(--display); font-weight: 900; font-size: 2.4rem; line-height: 1; letter-spacing: -0.04em; }

/* ------------------------------------------------------------- Dunkles Band */
/* Glatt. Keine Textur, kein Verlauf, kein Bild darunter. */

.band {
  background: var(--ink);
  color: var(--paper);
  --rule: rgba(241, 236, 225, 0.28);
  --rule-soft: rgba(241, 236, 225, 0.16);
  --rule-firm: rgba(241, 236, 225, 0.6);
  --ink-60: rgba(241, 236, 225, 0.72);
  --ink-80: rgba(241, 236, 225, 0.88);
  --ink-40: rgba(241, 236, 225, 0.5);
}
.band :where(h1, h2, h3) { color: var(--paper); }
/* Serifen auf Dunkel nie duenner als 400. */
.band p, .band li, .band dd, .band dt { font-weight: 420; }
.band .btn { border-color: var(--paper); background: transparent; color: var(--paper); }
.band .btn:hover { background: var(--paper); color: var(--ink); }
.band .btn--primary { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.band .btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.ways { display: grid; gap: var(--s6); margin-top: var(--s7); }
@media (min-width: 52rem) { .ways { grid-template-columns: repeat(3, 1fr); gap: var(--s7); } }
.ways--4 { gap: var(--s5) var(--s6); }
@media (min-width: 40rem) { .ways--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .ways--4 { grid-template-columns: repeat(4, 1fr); } }
.way { display: grid; gap: var(--s3); align-content: start; padding-top: var(--s4); border-top: 1px solid var(--rule-firm); }
.way h3 { font-size: 1.15rem; }
.way p { font-size: 0.97rem; }
.way__big {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.02em;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.way__big:hover { color: var(--gold); }

/* ----------------------------------------------------------- Zeitentabelle */

.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours caption { text-align: left; margin-bottom: var(--s3); }
.hours th, .hours td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid var(--rule-soft); font-weight: 400; }
.hours td:last-child { text-align: right; }
.hours tr[data-today="1"] th, .hours tr[data-today="1"] td { font-weight: 700; }
.hours tr[data-closed="1"] td { color: var(--ink-60); }

/* Ruhetag-Stempel: rot, schraeg, wie ein Gummistempel auf dem Blatt. */
.stamp-closed {
  display: inline-block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chili);
  border: 2px solid var(--chili);
  padding: 0.24rem 0.5rem;
  transform: rotate(-4deg);
}

/* ---------------------------------------------------------------- Formular */

.form { display: grid; gap: var(--s5); }
.form__row { display: grid; gap: var(--s4); }
@media (min-width: 34rem) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.35rem; }
.field > label { font-family: var(--display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid var(--rule-firm);
  padding: 0.72rem 0.8rem;
  min-height: 3rem;
  width: 100%;
}
.field textarea { min-height: 5.5rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-60); }
.field__hint { font-size: var(--t-small); color: var(--ink-60); font-style: italic; }
.field__err { font-size: var(--t-small); color: var(--chili); font-weight: 600; }
.field__err:empty { display: none; }
.field[data-invalid="1"] input, .field[data-invalid="1"] textarea { border-color: var(--chili); }

.form__preview {
  border: 1px dashed var(--rule-firm);
  background: var(--paper-2);
  padding: var(--s4);
}
.form__preview pre {
  margin: 0.5rem 0 0;
  font-family: var(--text);
  font-size: 0.95rem;
  white-space: pre-wrap;
  color: var(--ink-80);
}

/* -------------------------------------------------------------- Kartenseite */

.carta-grid { display: grid; gap: var(--s6); align-items: start; }
.carta-grid > * { min-width: 0; }
@media (min-width: 62rem) { .carta-grid { grid-template-columns: 14rem minmax(0, 1fr); gap: var(--s8); } }

.rail { position: static; min-width: 0; }
@media (min-width: 62rem) {
  .rail {
    position: sticky;
    top: calc(var(--strip-h) + var(--head-h) + var(--s5));
    max-height: calc(100vh - var(--strip-h) - var(--head-h) - var(--s7));
    overflow-y: auto;
  }
}
.rail ul { list-style: none; margin: 0; padding: 0; display: grid; }
.rail a {
  display: block;
  padding: 0.42rem 0;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-60);
  border-bottom: 1px solid var(--rule-soft);
}
.rail a:hover, .rail a[aria-current="true"] { color: var(--ink); }
.rail a[aria-current="true"] { box-shadow: inset 3px 0 0 var(--chili); padding-left: 0.6rem; }

/* Mobile: waagerecht scrollende Leiste, klebend unter dem Kopf. */
@media (max-width: 61.99rem) {
  .rail {
    position: sticky;
    top: calc(var(--strip-h) + var(--head-h));
    z-index: 40;
    background: var(--paper);
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    border-bottom: 1px solid var(--rule-firm);
  }
  .rail ul { grid-auto-flow: column; grid-auto-columns: max-content; gap: var(--s4); overflow-x: auto; scrollbar-width: none; padding-block: 0.55rem; }
  .rail ul::-webkit-scrollbar { display: none; }
  .rail a { border-bottom: 2px solid transparent; padding: 0.35rem 0; white-space: nowrap; }
  .rail a[aria-current="true"] { box-shadow: none; padding-left: 0; border-bottom-color: var(--chili); }
}

.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.8rem;
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid var(--rule-firm);
  background: var(--paper-2);
  color: var(--ink);
  cursor: pointer;
}
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip:hover { border-color: var(--ink); }

.course {
  padding-block: 0;
  border-top: 0;
  scroll-margin-top: calc(var(--strip-h) + var(--head-h) + 5rem);
}
.course + .course { margin-top: var(--s7); }
.course__head {
  display: flex;
  align-items: baseline;
  gap: var(--s4);
  padding-bottom: 0.6rem;
  border-bottom: 3px double var(--rule-firm);
  margin-bottom: var(--s3);
}
.course__head h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.course__n { margin-left: auto; color: var(--ink-60); }
.course__hidden {
  margin: var(--s3) 0 0;
  padding: 0.65rem 0.85rem;
  border-left: 1px solid var(--chili);
  background: var(--paper-2);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-80);
}
.course[hidden] { display: none; }
.line[hidden] { display: none; }

.empty { padding: var(--s7) 0; text-align: center; }
.empty p { margin-inline: auto; }

/* Zwei Spalten fuer die kurzen Listen (Saucen, Extras, Getraenke). */
@media (min-width: 44rem) {
  .lines--split { grid-template-columns: 1fr 1fr; column-gap: var(--s7); }
  .lines--split .line { break-inside: avoid; }
}
.group-head {
  margin: var(--s5) 0 0;
  padding-top: var(--s4);
  border-top: 1px solid var(--rule);
  color: var(--ink-60);
}

/* --------------------------------------------------------------- Galerie */

.gallery { display: grid; gap: var(--s5); }
@media (min-width: 40rem) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* ------------------------------------------------------------------ Karte */

.map { border: 1px solid var(--rule-firm); background: var(--paper-3); }
.map svg { width: 100%; height: auto; display: block; }

/* ------------------------------------------------------------------- Fuss */

.foot { background: var(--ink); color: var(--paper); padding-block: var(--s8) var(--s6); }
.foot__grid { display: grid; gap: var(--s6); }
@media (min-width: 46rem) { .foot__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .foot__grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.foot h3 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: var(--s4); color: rgba(241, 236, 225, 0.72); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.foot a { color: var(--paper); }
.foot__seal {
  width: 4.5rem;
  aspect-ratio: 1;
  margin-bottom: var(--s4);
  background: var(--paper);
  -webkit-mask: url("assets/seal.svg") center / contain no-repeat;
  mask: url("assets/seal.svg") center / contain no-repeat;
}
.foot__thanks { font-family: var(--display); font-weight: 900; font-size: 1.05rem; letter-spacing: -0.01em; }
.foot__bar {
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid rgba(241, 236, 225, 0.28);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s5);
  align-items: center;
  justify-content: space-between;
  font-size: var(--t-small);
  color: rgba(241, 236, 225, 0.72);
}
.foot__made { display: inline-flex; align-items: center; gap: 0.3rem; }
.foot__made .ico { width: 0.9em; height: 0.9em; color: var(--chili); margin: 0; }
.foot__made a { font-weight: 700; }

/* --------------------------------------------------- Mobile Aktionsleiste */

.dock {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: var(--paper-2);
  border-top: 1px solid var(--rule-firm);
  box-shadow: 0 -8px 20px -16px rgba(22, 19, 15, 0.5);
  padding-bottom: env(safe-area-inset-bottom);
}
.dock a {
  display: grid;
  place-items: center;
  gap: 0.15rem;
  padding: 0.55rem 0.3rem;
  min-height: 3.4rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-left: 1px solid var(--rule-soft);
}
.dock a:first-child { border-left: 0; }
.dock a:hover { background: var(--gold); }
.dock .ico { width: 1.15rem; height: 1.15rem; margin: 0; }
@media (min-width: 62rem) { .dock { display: none; } }
@media (max-width: 61.99rem) { body { padding-bottom: 3.9rem; } }

/* ------------------------------------------------------------- Bewegung */
/* Ausgangszustand ist immer sichtbar. Die Reveal-Klasse setzt main.js erst,
   wenn IntersectionObserver bestaetigt ist - sonst bleibt alles sichtbar. */

.js-reveal .reveal { opacity: 0; transform: translateY(0.9rem); }
.js-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

@keyframes stamp {
  0% { opacity: 0; transform: scale(1.22) rotate(-7deg); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.js-reveal .hero__stamp { animation: stamp 0.72s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal,
  .js-reveal .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .js-reveal .hero__stamp { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------- Druck */
/* Eine Zeitung muss sich drucken lassen. */

@media print {
  :root { --paper: #fff; --paper-2: #fff; }
  body { padding: 0; background: #fff; font-size: 10.5pt; }
  body::before, .preview, .head-bar, .dock, .panel, .rail, .chips,
  .hero__actions, .btn, .foot__bar, .skip { display: none !important; }
  .band { background: #fff; color: #000; }
  .band :where(h1, h2, h3) { color: #000; }
  .foot { background: #fff; color: #000; padding-top: 1rem; }
  .foot a { color: #000; }
  section { padding-block: 0.8rem; break-inside: avoid; }
  .course { break-inside: auto; }
  .course__head { break-after: avoid; }
  .line { break-inside: avoid; padding-block: 0.28rem; }
  .lines--split { columns: 2; column-gap: 1.4rem; }
  .figure, .map, .gallery { display: none; }
  a[href]::after { content: ""; }
  .wrap, .narrow { width: 100%; }
}
