@charset "utf-8";
/* Pizzeria Grottino, Emmenbrücke - Entwurf.
   Mobile first. Warme, klassische Anmutung: Papierton, Terrakotta als
   Akzent, ein gedecktes Grün fuer Nebenrollen. Keine dekorativen
   Fuehrungslinien am Containerrand - die werden als Darstellungsfehler
   gelesen. */

/* --- Schriften ---------------------------------------------------------- */
@font-face {
  font-family: 'Lora';
  src: url('/assets/fonts/lora.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterVar';
  src: url('/assets/fonts/inter.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* --- Grundwerte --------------------------------------------------------- */
:root {
  --papier: #fbf7f1;
  --papier-2: #f4ece1;
  --flaeche: #ffffff;
  --tinte: #241f1c;
  --tinte-2: #574c45;
  --tinte-3: #6a5e55;   /* 5.36:1 auf --papier-2, 5.88:1 auf --papier */
  --linie: #e3d8c9;
  --linie-2: #d3c5b2;
  --rot: #a8342a;
  --rot-dunkel: #85261e;
  --rot-hell: #f6e6e2;
  --gruen: #2f6b46;
  --gruen-hell: #e6efe8;
  --dunkel: #241c18;
  --dunkel-2: #33261f;
  --auf-dunkel: #f7efe6;
  --auf-dunkel-2: #d3c2b3;
  --r: 10px;
  --r-klein: 6px;
  --schatten: 0 1px 2px rgba(36, 31, 28, .05), 0 8px 24px rgba(36, 31, 28, .07);
  --schatten-klein: 0 1px 2px rgba(36, 31, 28, .06), 0 3px 10px rgba(36, 31, 28, .05);
  --breite: 1220px;
  --luft: clamp(2.6rem, 6vw, 5.2rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  /* rem rechnet gegen html, nicht gegen body. 16px bleibt die Basis, damit
     .75rem wirklich 12px ergibt - kleinere Werte fallen unter die Grenze. */
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* overflow-x nicht auf clip: das verschluckt waagrechtes Scrollen und
     versteckt damit echte Layoutfehler, statt sie zu zeigen. */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: 'InterVar', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.18;
  color: var(--tinte);
  margin: 0 0 .6em;
  letter-spacing: -.005em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.85rem, 5.2vw, 3rem); }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.1rem); }
h3 { font-size: clamp(1.12rem, 2.2vw, 1.3rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--rot); text-decoration-thickness: 1px; text-underline-offset: .16em; }
a:hover { color: var(--rot-dunkel); }
strong { font-weight: 600; }
em { font-style: italic; }
img, picture, svg { max-width: 100%; }
img { height: auto; display: block; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .35em; }
address { font-style: normal; }
table { border-collapse: collapse; width: 100%; }

/* Symbole brauchen immer ein Grundmass. Ohne eigene Groesse wird ein SVG
   mit max-width:100% so breit wie sein Kasten - aus einem Icon wird ein
   300px hoher Block. */
svg { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
p svg, li svg, h2 svg, h3 svg, summary svg { width: 1.15em; height: 1.15em; }

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

.vb {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
  border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--rot); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 var(--r-klein) 0; font-weight: 600;
}
.skip:focus { left: 0; color: #fff; }

.wrap { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 1.15rem; }
.klein { font-size: .875rem; color: var(--tinte-2); line-height: 1.55; }
.lead { font-size: 1.09rem; color: var(--tinte-2); max-width: 62ch; }

/* --- Schaltflaechen ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .78rem 1.25rem;
  border: 1px solid var(--rot);
  border-radius: var(--r-klein);
  background: var(--rot);
  color: #fff;
  font: inherit; font-weight: 600; font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  /* Kein white-space:nowrap hier! Eine lange Beschriftung erhielte damit
     eine Mindestbreite und sprengt bei 320px das Raster. Nur dort setzen,
     wo der Text kurz und fest ist (.kopf__tel, .rufleiste a). */
}
.btn:hover { background: var(--rot-dunkel); border-color: var(--rot-dunkel); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.1em; height: 1.1em; }
.btn--geist {
  background: transparent; color: var(--rot); border-color: var(--linie-2);
}
.btn--geist:hover { background: var(--rot-hell); border-color: var(--rot); color: var(--rot-dunkel); }
.btn--klein { padding: .58rem 1rem; font-size: .95rem; }
/* Kurzer, fester Text: hier ist nowrap richtig. Ohne dies bricht
   "Tisch reservieren" im Kopf auf drei Zeilen und macht ihn 71px hoch. */
.kopf .btn, .schub__tat .btn { white-space: nowrap; }

.tatreihe { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.tatreihe--mitte { justify-content: center; margin-top: 2rem; }

/* inline, nicht inline-flex: bei umbrechendem Text waere der Pfeil ein
   eigenes Flex-Element und landete am Zeilenende statt beim letzten Wort.
   Das geschuetzte Leerzeichen haelt ihn am Wort. */
.link-pfeil {
  display: inline; font-weight: 600; text-decoration: none;
}
.link-pfeil::after {
  content: '\00a0→'; display: inline-block;
  transition: transform .18s ease;
}
.link-pfeil:hover::after { transform: translateX(3px); }
.link-stark {
  display: inline-flex; align-items: flex-start; gap: .45rem;
  font-weight: 600; text-decoration: none;
}
/* Symbol an der ERSTEN Zeile ausrichten. Mittig stand es bei einer
   umgebrochenen Adresse zwischen den Zeilen. */
.link-stark svg { margin-top: .18em; }
.link-stark:hover { text-decoration: underline; }

/* --- Kopf --------------------------------------------------------------- */
.kopf {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 247, 241, .96);
  border-bottom: 1px solid var(--linie);
  backdrop-filter: saturate(1.4) blur(8px);
}
.kopf__in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 68px; padding-top: .5rem; padding-bottom: .5rem;
}
.marke { flex: none; line-height: 0; }
.marke img { width: 116px; height: auto; }
.nav { display: none; }
.kopf__tat { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.kopf__tel {
  display: none; align-items: center; gap: .4rem;
  font-weight: 600; text-decoration: none; color: var(--tinte);
  white-space: nowrap;      /* kurz und fest - hier richtig */
}
.kopf__tel:hover { color: var(--rot); }
.kopf__tel svg { color: var(--rot); }
.kopf__tat .btn--klein { display: none; }

.lupe {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--linie-2);
  border-radius: var(--r-klein); color: var(--tinte); cursor: pointer;
}
.lupe svg { width: 1.5rem; height: 1.5rem; }
.lupe:hover { background: var(--papier-2); }

/* Die Schublade haengt nur am hidden-Attribut. Eine eigene display-Regel
   (etwa .schub{display:block}) wuerde [hidden]{display:none} des Browsers
   ueberstimmen und das Menue dauerhaft offen stehen lassen - darum die
   ausdrueckliche Regel hier. */
.schub {
  position: absolute; top: 100%; left: 0; right: 0;   /* am Kopf ausrichten,
     nicht mit geratener Kopfhoehe: bei 320px bricht die Wortmarke um. */
  background: var(--flaeche);
  border-bottom: 1px solid var(--linie);
  box-shadow: var(--schatten);
  padding: .9rem 1.15rem 1.15rem;
  max-height: 78vh; overflow-y: auto;
}
.schub[hidden] { display: none; }
.schub__nav { display: flex; flex-direction: column; }
.schub__nav a {
  padding: .78rem .2rem; border-bottom: 1px solid var(--linie);
  color: var(--tinte); text-decoration: none; font-weight: 600;
}
.schub__nav a:hover, .schub__nav a[aria-current='page'] { color: var(--rot); }
.schub__extra { font-weight: 400 !important; }
.schub__tat { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.schub__tat .btn { width: 100%; }

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__bild { position: absolute; inset: 0; z-index: -2; }
.hero__bild img { width: 100%; height: 100%; object-fit: cover; }
.hero__folie {
  position: absolute; inset: 0; z-index: -1;
  /* Verlauf so dunkel, dass weisser Text ueberall ueber 4.5:1 liegt - der
     Ofen im Bild ist stellenweise sehr hell. */
  background:
    linear-gradient(180deg, rgba(24, 18, 15, .74) 0%, rgba(24, 18, 15, .62) 45%, rgba(24, 18, 15, .84) 100%);
}
.hero__in { padding: clamp(3rem, 11vw, 6.5rem) 1.15rem clamp(2.6rem, 8vw, 4.5rem); }
.augenbraue {
  display: inline-block;
  font-size: .8125rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase;
  color: #f3ded4;
  background: rgba(168, 52, 42, .82);
  border-radius: 100px; padding: .3rem .85rem;
  margin: 0 0 1rem;
}
.hero__t { color: #fff; max-width: 22ch; margin-bottom: .7rem; }
.hero__lead {
  color: #f2e7dd; font-size: 1.09rem; max-width: 52ch; margin-bottom: 1.6rem;
}
.hero__klein { color: #e3d3c6; font-size: .875rem; margin-top: 1rem; }
.hero .btn--geist { color: #fff; border-color: rgba(255, 255, 255, .55); }
.hero .btn--geist:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: #fff; }

.status {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 0; width: 100%;
  font-size: .9rem; color: #e9dbd0;
}
.status__punkt {
  width: .6rem; height: .6rem; border-radius: 50%;
  background: var(--auf-dunkel-2); flex: none;
}
.status--offen .status__punkt { background: #6bbd8c; }
.status--zu .status__punkt { background: #e3a08f; }

/* --- Hero, ruhige Fassung ------------------------------------------------
   Fuer Seiten, deren Foto zu klein fuer ein randloses Bild ist (600-960px).
   Papierton, dunkle Schrift, das Bild in gedeckter Groesse daneben - so
   bleibt es innerhalb seiner echten Breite und damit scharf.
   Alle Farben hier ausdruecklich setzen: die Regeln der dunklen Fassung
   gelten weiter fuer .hero, und ohne eigene Angabe bliebe weisse Schrift
   auf hellem Papier stehen. */
.hero--ruhig {
  background: var(--papier-2);
  border-bottom: 1px solid var(--linie);
}
.hero--ruhig .hero__in {
  display: grid; gap: 1.7rem; align-items: center;
  padding-top: clamp(2rem, 6vw, 3.6rem);
  padding-bottom: clamp(2rem, 6vw, 3.6rem);
}
.hero--ruhig .hero__t { color: var(--tinte); max-width: 26ch; }
.hero--ruhig .hero__lead { color: var(--tinte-2); }
.hero--ruhig .hero__klein { color: var(--tinte-3); }
.hero--ruhig .augenbraue {
  color: var(--rot-dunkel);        /* 7.3:1 auf --rot-hell */
  background: var(--rot-hell);
}
.hero--ruhig .btn--geist { color: var(--rot); border-color: var(--linie-2); }
.hero--ruhig .btn--geist:hover {
  background: var(--flaeche); border-color: var(--rot); color: var(--rot-dunkel);
}
.hero--ruhig .status { color: var(--tinte-2); }
.hero--ruhig .status__punkt { background: var(--tinte-3); }
.hero--ruhig.status--offen .status__punkt { background: var(--gruen); }
.hero--ruhig .hero__nebenbild {
  /* Einspaltig nicht auf die ganze Inhaltsbreite ziehen: mehrere
     Bestandsaufnahmen sind nur 640px breit und wuerden sonst hochskaliert.
     Ab zwei Spalten hebt die Regel unten die Grenze wieder auf. */
  max-width: 620px; margin-inline: auto; width: 100%;
}
.hero--ruhig .hero__nebenbild img {
  width: 100%; border-radius: var(--r); box-shadow: var(--schatten);
  aspect-ratio: 4 / 3; object-fit: cover;
}
@media (min-width: 820px) {
  .hero--ruhig .hero__in { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .hero--ruhig .hero__nebenbild { max-width: none; }
}

/* --- Abschnitte --------------------------------------------------------- */
.ab { padding: var(--luft) 0; }
.ab--papier { background: var(--papier-2); }
.ab--schmal > .wrap { max-width: 820px; }
.ab--eng { padding: 1.6rem 0 0; }
.ab--karte { padding-top: 2rem; }
.ab--band { padding: 1.6rem 0; background: var(--flaeche); border-bottom: 1px solid var(--linie); }

.ab--dunkel { background: var(--dunkel); }
/* Dunkelregeln fuer ALLE Elemente schreiben, nicht nur fuer h2/p - sonst
   bleibt eine Adresse oder eine Tabellenzelle auf 1.9:1 stehen. */
.ab--dunkel, .ab--dunkel p, .ab--dunkel li, .ab--dunkel dt, .ab--dunkel dd,
.ab--dunkel address, .ab--dunkel td, .ab--dunkel th, .ab--dunkel caption,
.ab--dunkel figcaption, .ab--dunkel span, .ab--dunkel .klein,
.ab--dunkel .lead { color: var(--auf-dunkel); }
.ab--dunkel h1, .ab--dunkel h2, .ab--dunkel h3 { color: #fff; }
.ab--dunkel .klein, .ab--dunkel .lead { color: var(--auf-dunkel-2); }
.ab--dunkel .btn--geist { color: #fff; border-color: rgba(255, 255, 255, .5); }
.ab--dunkel .btn--geist:hover { background: rgba(255, 255, 255, .13); border-color: #fff; color: #fff; }
.ab--dunkel a { color: #f0c9c0; }

.kopfzeile { margin-bottom: 2rem; max-width: 60ch; }
.kopfzeile--zeile {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: .6rem; max-width: none;
}
.kopfzeile--zeile h2 { margin-bottom: 0; }
.kopfzeile--zeile p { margin: 0; }

/* --- Vertrauensband ----------------------------------------------------- */
.belege {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem 1.4rem;
  grid-template-columns: 1fr;
}
.beleg { display: flex; gap: .7rem; margin: 0; align-items: flex-start; }
.beleg__i {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--rot-hell); color: var(--rot);
}
.beleg__i svg { width: 1.15rem; height: 1.15rem; }
.beleg__t { font-size: .9rem; color: var(--tinte-2); line-height: 1.5; }
.beleg__t strong { display: block; color: var(--tinte); font-size: .96rem; }

/* --- Kacheln ------------------------------------------------------------ */
.kacheln { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.kacheln li { margin: 0; }
.kachel a {
  display: flex; flex-direction: column; height: 100%;
  background: var(--flaeche); border: 1px solid var(--linie);
  border-radius: var(--r); overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: var(--schatten-klein);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.kachel a:hover {
  box-shadow: var(--schatten); transform: translateY(-2px);
  border-color: var(--linie-2);
}
.kachel__bild img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.kachel__in { display: flex; flex-direction: column; gap: .5rem; padding: 1.15rem; flex: 1; }
.kachel__h {
  font-family: 'Lora', Georgia, serif; font-size: 1.22rem; font-weight: 600;
  line-height: 1.25;
}
.kachel__b { font-size: .92rem; color: var(--tinte-2); flex: 1; }
.kachel a .link-pfeil { color: var(--rot); font-size: .92rem; }

/* --- Bildgitter --------------------------------------------------------- */
.gitter { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.gitter li { margin: 0; }
.gitterbild img, .figur img {
  width: 100%; border-radius: var(--r-klein);
}
.gitterbild img { aspect-ratio: 4 / 3; object-fit: cover; }
.figur { margin: 0; }
.figur img { aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--schatten-klein); }
.figur figcaption {
  font-size: .82rem; color: var(--tinte-3); margin-top: .5rem; line-height: 1.45;
}

/* --- Paar (Text + Bild) ------------------------------------------------- */
.paar { display: grid; gap: 1.6rem; align-items: center; }
/* Einspaltig nicht auf die ganze Inhaltsbreite ziehen: das kleinste hier
   verwendete Bild hat 600px, bei 700px Fenster waeren es aber 663px.
   Ab zwei Spalten hebt die Regel weiter unten die Grenze wieder auf. */
.paar__bild { max-width: 580px; margin-inline: auto; width: 100%; }
.paar__text > :last-child { margin-bottom: 0; }
.paar__text h2 { margin-bottom: .7rem; }

/* --- Fliesstext --------------------------------------------------------- */
.fliesstext { max-width: 70ch; margin: 0 auto; }
.fliesstext h2 { margin-top: 2rem; }
.fliesstext h2:first-child, .fliesstext h1 + h2 { margin-top: 1.4rem; }
.fliesstext--recht { font-size: 1rem; }
.fliesstext--recht h2 { font-size: 1.28rem; }

/* --- Speisekarte -------------------------------------------------------- */
.kartenab { margin-bottom: 3rem; }
.kartenab:last-child { margin-bottom: 0; }
.karte__kopf { margin-bottom: 1.2rem; }
.karte__kopf h2 { margin-bottom: .3rem; }
.karte__gr { font-size: .8125rem; color: var(--tinte-3); margin: 0; }

.karte { display: grid; gap: 0; }
.gericht {
  display: flex; gap: 1rem; align-items: baseline;
  justify-content: space-between;
  padding: .78rem 0;
  border-bottom: 1px solid var(--linie);
}
.gericht:last-child { border-bottom: 0; }
.gericht__t { min-width: 0; }
.gericht__n {
  display: inline-flex; align-items: center; gap: .4rem; flex-wrap: wrap;
  font-weight: 600; font-size: 1.02rem;
}
.gericht__b {
  display: block; font-size: .875rem; color: var(--tinte-2); line-height: 1.5;
  margin-top: .1rem;
}
.preis {
  flex: none; font-variant-numeric: tabular-nums; font-weight: 600;
  font-size: 1rem; text-align: right;
}
.preis--offen { font-weight: 400; font-size: .82rem; color: var(--tinte-3); }
/* Richtwert: der Bestand nennt fuer diese Gerichte keinen Preis. Der Stern
   verweist auf den Hinweis unter der Karte. */
.preis--richtwert { color: var(--tinte-2); }
.preis--richtwert i {
  font-style: normal; color: var(--rot); font-weight: 700;
  margin-left: .12rem;
}
/* Bei zwei Groessen steht die Bezeichnung NEBEN dem Preis. Untereinander
   liest sich "16.50 / 1" als drei Zeilen und das Zeichen stuende optisch
   bei der falschen Zahl. */
.preis--zwei { display: flex; flex-direction: column; gap: .1rem; }
.preis--zwei > span { display: flex; gap: .4rem; justify-content: flex-end; align-items: baseline; }
.preis--zwei i {
  font-style: normal; font-size: .72rem; color: var(--tinte-3);
  font-weight: 500; min-width: .9em; text-align: right;
}

.marke-i {
  display: inline-flex; align-items: center;
  color: var(--rot); flex: none;
}
.marke-i svg { width: .95rem; height: .95rem; }
.marke-i--gruen { color: var(--gruen); }

.legende {
  display: flex; flex-wrap: wrap; align-items: center; gap: .35rem 1rem;
  font-size: .84rem; color: var(--tinte-2);
  background: var(--flaeche); border: 1px solid var(--linie);
  border-radius: var(--r-klein); padding: .7rem .9rem; margin: 0;
}
.legende .marke-i { margin-right: -.6rem; }
.legende__gr { color: var(--tinte-3); }
.legende__gr i {
  font-style: normal; font-weight: 600; color: var(--tinte-2);
  margin-left: .5rem;
}

.sprung {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  margin-bottom: 1rem;
}
.sprung__h { font-size: .82rem; color: var(--tinte-3); margin: 0 .3rem 0 0; }
.sprung a {
  font-size: .84rem; text-decoration: none; font-weight: 500;
  background: var(--flaeche); border: 1px solid var(--linie);
  border-radius: 100px; padding: .3rem .75rem; color: var(--tinte-2);
}
.sprung a:hover { border-color: var(--rot); color: var(--rot); background: var(--rot-hell); }
.sprung__aus { color: var(--rot) !important; border-color: var(--linie-2) !important; }

.hinweis {
  background: var(--rot-hell); border-left: 3px solid var(--rot);
  border-radius: 0 var(--r-klein) var(--r-klein) 0;
  padding: .8rem 1rem; margin-top: 1.2rem;
}

/* --- Mittagsmenü -------------------------------------------------------- */
.woche { display: grid; gap: 1rem; }
.woche__tag {
  background: var(--flaeche); border: 1px solid var(--linie);
  border-radius: var(--r); padding: 1rem 1.1rem;
}
.woche__tag h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--rot); }
.woche__tag p { margin: 0 0 .5rem; font-size: .95rem; }
.woche__tag p:last-child { margin-bottom: 0; }
.woche__tag strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--tinte-3); font-weight: 600; }
.woche__tag .klein { display: block; }
.woche__tag[data-heute] {
  border-color: var(--rot); box-shadow: 0 0 0 3px var(--rot-hell);
}
.woche__tag[data-heute] h3::after {
  content: 'heute'; margin-left: .5rem;
  font-family: 'InterVar', sans-serif; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .07em;
  background: var(--rot); color: #fff; border-radius: 100px;
  padding: .12rem .5rem; vertical-align: .18em; font-weight: 600;
}

.preispaar { display: grid; gap: 1.15rem; }
.preiskarte {
  background: var(--flaeche); border: 1px solid var(--linie);
  border-radius: var(--r); padding: 1.4rem;
  box-shadow: var(--schatten-klein);
}
.preiskarte__k {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--tinte-3); font-weight: 600; margin-bottom: .2rem;
}
.preiskarte__p {
  font-family: 'Lora', Georgia, serif; font-size: 2.1rem; font-weight: 600;
  color: var(--rot); margin-bottom: .6rem; line-height: 1;
}
.haken { list-style: none; padding: 0; margin: .5rem 0 0; }
.haken li {
  position: relative; padding-left: 1.4rem; font-size: .92rem;
  color: var(--tinte-2); margin-bottom: .4rem;
}
.haken li::before {
  content: '✓'; position: absolute; left: 0; top: -.05em;
  color: var(--gruen); font-weight: 700;
}

.tabellenrahmen { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.wochentabelle { min-width: 34rem; background: var(--flaeche); border: 1px solid var(--linie); border-radius: var(--r); overflow: hidden; }
.wochentabelle th, .wochentabelle td {
  text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--linie);
  vertical-align: top; font-size: .95rem;
}
.wochentabelle thead th {
  background: var(--papier-2); font-family: 'InterVar', sans-serif;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--tinte-2); font-weight: 600;
}
.wochentabelle tbody th { font-weight: 600; white-space: nowrap; }
.wochentabelle td strong { display: block; font-weight: 600; }
.wochentabelle td .klein { display: block; margin-top: .1rem; }
.wochentabelle tr:last-child th, .wochentabelle tr:last-child td { border-bottom: 0; }
.wochentabelle tr[data-heute] { background: var(--rot-hell); }
.wochentabelle tr[data-heute] th::after {
  content: ' · heute'; color: var(--rot); font-size: .74rem; font-weight: 600;
}

/* --- Infokarten --------------------------------------------------------- */
.infokarten, .dreispalt { display: grid; gap: 1.15rem; }
.infokarte {
  background: var(--flaeche); border: 1px solid var(--linie);
  border-radius: var(--r); padding: 1.35rem;
  box-shadow: var(--schatten-klein);
}
.infokarte h2 {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.16rem; margin-bottom: .8rem;
}
.infokarte h2 svg { color: var(--rot); }
.infokarte address { margin-bottom: .8rem; }
.infokarte__z { display: flex; flex-direction: column; gap: .35rem; }
.schritte { padding-left: 1.3rem; }
.schritte li { margin-bottom: .6rem; font-size: .96rem; }
.ortsliste { list-style: none; padding: 0; margin: 0 0 .8rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.ortsliste li {
  margin: 0; font-size: .88rem; background: var(--papier-2);
  border: 1px solid var(--linie); border-radius: 100px; padding: .22rem .7rem;
}

.zeiten {
  margin: 0;
  /* Die Liste steht an zwei Orten mit sehr verschiedener Breite (Infokarte
     und Fussspalte). Sie fragt darum ihre eigene Breite ab, nicht die des
     Fensters - eine geratene Fensterbreite waere an einem der beiden Orte
     immer falsch. */
  container-type: inline-size;
}
.zeiten .zeile {
  display: flex; flex-wrap: wrap; gap: .2rem 1rem;
  justify-content: space-between; align-items: baseline;
  /* Waagrechter Innenabstand mit negativem Aussenabstand: die Zeilen bleiben
     am Text ausgerichtet, die Markierung des heutigen Tages darf aber ueber
     den Rand hinausgehen und wirkt dadurch wie ein Band. */
  padding: .48rem .6rem; margin-inline: -.6rem;
  border-bottom: 1px solid var(--linie);
  border-radius: var(--r-klein);
}
.zeiten .zeile:last-child { border-bottom: 0; }
.zeiten dt { font-weight: 600; font-size: .95rem; }
/* margin-left: auto, nicht nur align-items: bricht die Zeile um, ist das
   dd das einzige Element seiner Zeile und "space-between" setzt es an den
   Anfang - die Uhrzeit stand dann links unter dem Tagesnamen. */
.zeiten dd {
  margin: 0 0 0 auto; display: flex; flex-direction: column;
  align-items: flex-end; text-align: right;
}
.zeit { font-variant-numeric: tabular-nums; font-size: .95rem; color: var(--tinte-2); }

/* Der heutige Tag: farbig hinterlegt. Die Farbe allein traegt die Aussage
   nicht - der Zusatz "heute" bleibt stehen. */
.zeiten .zeile[data-heute] {
  background: var(--rot-hell);
  border-bottom-color: transparent;
}
.zeiten .zeile[data-heute] dt,
.zeiten .zeile[data-heute] .zeit {
  color: var(--rot-dunkel); font-weight: 600;   /* 7.56:1 auf --rot-hell */
}
.zeiten .zeile[data-heute] dt::after {
  content: ' · heute'; font-size: .72rem; letter-spacing: .04em; font-weight: 600;
}

/* Unter 258px passen Tagesname und Uhrzeiten nicht nebeneinander
   (131 + 103 + 16px Abstand = 250px). Dann stapeln alle Zeilen gleich -
   sonst bricht nur die markierte um und faellt aus der Reihe. */
@container (max-width: 258px) {
  .zeiten .zeile { display: block; }
  .zeiten dt { margin-bottom: .1rem; }
  .zeiten dd {
    margin: 0; align-items: flex-start; text-align: left;
    flex-direction: row; flex-wrap: wrap; gap: .1rem .7rem;
  }
}

/* --- Hinweiskasten ------------------------------------------------------ */
.hinweiskasten {
  background: var(--flaeche); border: 1px solid var(--linie);
  border-radius: var(--r); padding: 1.5rem;
  max-width: 74ch; margin: 0 auto;
}
.hinweiskasten h2 { font-size: 1.2rem; margin-bottom: .5rem; }
.hinweiskasten h2 + p { margin-bottom: 1.3rem; }
.hinweiskasten h2 ~ h2 { margin-top: 1.6rem; }
.hinweiskasten--warm { background: var(--rot-hell); border-color: #e9cfc8; }

/* --- CTA-Band ----------------------------------------------------------- */
.ctaband { display: grid; gap: 1.2rem; align-items: center; }
.ctaband h2 { margin-bottom: .3rem; }
.ctaband p { margin: 0; }


/* --- Akzentband fuers CTA ------------------------------------------------
   Frueher war das ein dunkles Band - es verschmolz mit dem ebenso dunklen
   Fuss zu einer Flaeche. Und .ab--dunkel a faerbte die weisse Schrift der
   Hauptschaltflaeche um (4.33:1). Beides behoben. */
.ab--akzent { background: var(--rot-dunkel); }
.ab--akzent, .ab--akzent p, .ab--akzent li, .ab--akzent span,
.ab--akzent .klein, .ab--akzent .lead { color: #fdf1ee; }
.ab--akzent h1, .ab--akzent h2, .ab--akzent h3 { color: #fff; }
.ab--akzent .btn {
  background: #fff; color: var(--rot-dunkel); border-color: #fff;
}
.ab--akzent .btn:hover { background: var(--papier-2); color: var(--rot-dunkel); border-color: var(--papier-2); }
.ab--akzent .btn--geist {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, .62);
}
.ab--akzent .btn--geist:hover { background: rgba(255, 255, 255, .14); border-color: #fff; color: #fff; }
/* Auch im Dunkelband darf die Schaltflaeche nicht umgefaerbt werden. */
.ab--dunkel .btn { color: #fff; }
.ab--dunkel a.btn:hover { color: #fff; }

/* Die Fragen bleiben links ausgerichtet wie alle anderen Abschnitte; nur
   die Liste selbst wird begrenzt. Ein zentrierter Block sprang gegenueber
   den uebrigen Ueberschriften ins Auge. */
.faqs { max-width: 820px; }

/* --- FAQ ---------------------------------------------------------------- */
.faqs { display: grid; gap: .6rem; }
.faq {
  background: var(--flaeche); border: 1px solid var(--linie);
  border-radius: var(--r-klein); padding: 0;
}
.faq summary {
  cursor: pointer; padding: .9rem 1.1rem; font-weight: 600;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  align-items: center; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--rot); font-size: 1.4rem; line-height: 1;
  flex: none; font-weight: 400;
}
.faq[open] summary::after { content: '−'; }
.faq[open] summary { padding-bottom: .3rem; }
.faq p { padding: 0 1.1rem 1rem; margin: 0; color: var(--tinte-2); font-size: .96rem; }

/* --- Fuss --------------------------------------------------------------- */
.fuss { background: var(--dunkel); color: var(--auf-dunkel); padding: var(--luft) 0 0; }
/* Der Fuss ist ebenso dunkel wie .ab--dunkel, traegt die Klasse aber nicht.
   Darum hier alle Farben noch einmal ausdruecklich. */
.fuss p, .fuss li, .fuss dt, .fuss dd, .fuss address, .fuss span { color: var(--auf-dunkel); }
.fuss .klein { color: var(--auf-dunkel-2); }
.fuss a { color: var(--auf-dunkel); text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; }
.fuss__in { display: grid; gap: 2rem; padding-bottom: 2.4rem; }
.fuss__marke {
  font-family: 'Lora', Georgia, serif; font-size: 1.3rem; font-weight: 600;
  color: #fff !important; margin-bottom: .4rem;
}
.fuss__h {
  font-family: 'InterVar', sans-serif; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--auf-dunkel-2) !important; margin-bottom: .8rem; font-weight: 600;
}
.fuss address { display: flex; gap: .5rem; align-items: flex-start; margin: .8rem 0; }
.fuss address svg { color: #d8a49a; margin-top: .25rem; }
.fuss__kontakt { display: flex; flex-direction: column; gap: .35rem; }
.fuss__kontakt a { display: inline-flex; align-items: center; gap: .45rem; font-weight: 500; }
.fuss__kontakt svg { color: #d8a49a; }
.fuss__liste { list-style: none; padding: 0; margin: 0 0 .8rem; }
.fuss__liste li { font-size: .92rem; margin-bottom: .3rem; }
.fuss__liste--nav li { margin-bottom: .45rem; }
.zeiten--fuss .zeile { border-color: rgba(247, 239, 230, .14); }
.zeiten--fuss .zeit { color: var(--auf-dunkel-2); }
/* Im dunklen Fuss hebt sich helles Rot nicht ab - hier wird die Flaeche
   selbst rot (1.83:1 gegen den Fussgrund) und die Schrift weiss (9.16:1). */
.zeiten--fuss .zeile[data-heute] {
  background: var(--rot-dunkel); border-bottom-color: transparent;
}
.zeiten--fuss .zeile[data-heute] dt,
.zeiten--fuss .zeile[data-heute] .zeit,
.zeiten--fuss .zeile[data-heute] dd { color: #fff; }
.fuss__unten {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  justify-content: space-between;
  border-top: 1px solid rgba(247, 239, 230, .14);
  padding-top: 1.2rem; padding-bottom: 1.4rem;
}
.fuss__unten p { margin: 0; font-size: .85rem; color: var(--auf-dunkel-2) !important; }
.fuss__unten a { margin-right: 1rem; font-size: .85rem; }

/* --- Rufleiste (nur schmal) --------------------------------------------- */
.rufleiste {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  display: flex; background: var(--flaeche);
  border-top: 1px solid var(--linie-2);
  box-shadow: 0 -2px 12px rgba(36, 31, 28, .1);
  padding-bottom: env(safe-area-inset-bottom);
}
.rufleiste a {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: .1rem; padding: .55rem .3rem; text-decoration: none;
  color: var(--tinte); font-size: .75rem; font-weight: 600;
  white-space: nowrap;      /* kurz und fest - hier richtig */
  border-right: 1px solid var(--linie);
}
.rufleiste a:last-child { border-right: 0; }
.rufleiste svg { width: 1.25rem; height: 1.25rem; color: var(--rot); }
.rufleiste a:hover { background: var(--rot-hell); }
body { padding-bottom: 68px; }   /* Platz fuer die Rufleiste - gemessen,
                                    nicht geschaetzt: mit Sicherheits-
                                    abstand rund 60px hoch */

/* --- Breiten ------------------------------------------------------------ */
@media (min-width: 560px) {
  .belege { grid-template-columns: repeat(2, 1fr); }
  .preispaar { grid-template-columns: repeat(2, 1fr); }
  .kacheln { grid-template-columns: repeat(2, 1fr); }
  /* Bei genau drei Kacheln spannt die letzte ueber beide Spalten - eine
     halb leere Rasterzeile wird als Darstellungsfehler gelesen. */
  .kacheln--drei > :last-child:nth-child(3) { grid-column: 1 / -1; }
  .kacheln--drei > :last-child:nth-child(3) .kachel__bild img { aspect-ratio: 21 / 9; }
  .gitter--vier { grid-template-columns: repeat(2, 1fr); }
  .gitter--drei { grid-template-columns: repeat(2, 1fr); }
  /* Zweispaltig bleibt bei ungerader Anzahl die letzte Zeile halb leer -
     das liest sich als Darstellungsfehler. Die letzte Kachel spannt dann
     ueber beide Spalten und bekommt ein flacheres Verhaeltnis, damit sie
     kein Plakat wird. Gilt nur in diesem Umbruchblock; ab drei Spalten
     geht das Raster von selbst auf. */
  .gitter--drei > :last-child:nth-child(odd) { grid-column: 1 / -1; }
  .gitter--drei > :last-child:nth-child(odd) img { aspect-ratio: 21 / 9; }
  .infokarten { grid-template-columns: repeat(2, 1fr); }
  .woche { grid-template-columns: repeat(2, 1fr); }
  .woche > :last-child:nth-child(5) { grid-column: 1 / -1; }
}

/* Die Telefonnummer im Kopf ist die wichtigste Handlung - sie erscheint,
   sobald ueberhaupt Platz dafuer ist. */
@media (min-width: 600px) {
  .kopf__tel { display: inline-flex; }
}

/* Ab hier traegt der Kopf Nummer UND Schaltflaeche; die feste Rufleiste am
   unteren Rand wird damit ueberfluessig. */
@media (min-width: 780px) {
  body { padding-bottom: 0; }
  .rufleiste { display: none; }
  .kopf__tat .btn--klein { display: inline-flex; }
}

@media (min-width: 760px) {
  body { font-size: 1.09375rem; }
  .marke img { width: 132px; }
  /* Gleich breite Spalten. Mit 1.05fr/.95fr stand das Bild bei
     .paar--gedreht in der breiteren Spalte, waehrend die sizes-Angabe
     die schmalere nannte - der Browser waehlte eine zu kleine Datei. */
  .paar { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .paar__bild { max-width: none; }
  .paar--gedreht .paar__text { order: 2; }
  .karte--zwei { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2.6rem; }
  .karte--zwei .gericht:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
  .ctaband { grid-template-columns: 1.4fr auto; gap: 2rem; }
  .ctaband .tatreihe { justify-content: flex-end; }
  .dreispalt { grid-template-columns: repeat(3, 1fr); }
  .gitter--drei { grid-template-columns: repeat(3, 1fr); }
  .gitter--drei > :last-child:nth-child(odd) { grid-column: auto; }
  .gitter--drei > :last-child:nth-child(odd) img { aspect-ratio: 4 / 3; }
  .fuss__in { grid-template-columns: 1.4fr 1.3fr 1fr; }
}

/* Erst hier ist wirklich Platz fuer die Hauptnavigation. Frueher
   eingeblendet lief der Kopf waagrecht ueber (bei 768px um 306px); mit
   flex-wrap brach sie stattdessen auf zwei Zeilen. Beides sieht nach Panne
   aus - bis hierher fuehrt darum die Schublade. "Startseite" fehlt in der
   Leiste bewusst: die Wortmarke fuehrt dorthin und traegt ein aria-label,
   in der Schublade steht der Punkt weiterhin. */
@media (min-width: 1000px) {
  .nav { display: flex; gap: .1rem; margin-left: .5rem; flex-wrap: nowrap; }
  .nav a {
    padding: .5rem .55rem; border-radius: var(--r-klein);
    color: var(--tinte-2); text-decoration: none;
    font-size: .95rem; font-weight: 500; white-space: nowrap;
  }
  .nav a:hover { background: var(--papier-2); color: var(--tinte); }
  .nav a[aria-current='page'] { color: var(--rot); font-weight: 600; }
  .lupe { display: none; }
}

@media (min-width: 1000px) {
  .belege { grid-template-columns: repeat(4, 1fr); }
  .kacheln--drei { grid-template-columns: repeat(3, 1fr); }
  .kacheln--drei > :last-child:nth-child(3) { grid-column: auto; }
  .kacheln--drei > :last-child:nth-child(3) .kachel__bild img { aspect-ratio: 4 / 3; }
  .gitter--vier { grid-template-columns: repeat(4, 1fr); }
  .woche { grid-template-columns: repeat(5, 1fr); }
  .woche > :last-child:nth-child(5) { grid-column: auto; }
  .woche__tag { padding: .9rem; }
  .fuss__in { grid-template-columns: 1.45fr 1.3fr .85fr .9fr; }
  .hero__in { padding-top: 7rem; padding-bottom: 5rem; }
  .marke img { width: 146px; }
  .nav a { font-size: .98rem; padding: .5rem .62rem; }
}

/* --- Einblenden beim Scrollen ------------------------------------------- */
.kein-js .auftritt { opacity: 1; transform: none; }
.auftritt {
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.auftritt--da { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .auftritt { opacity: 1; transform: none; }
}

/* --- Druck -------------------------------------------------------------- */
@media print {
  .kopf, .rufleiste, .hero__bild, .hero__folie, .ctaband, .sprung { display: none; }
  body { background: #fff; font-size: 11pt; padding: 0; }
  .hero__in { padding: 0 0 1rem; }
  .hero__t, .hero__lead, .augenbraue { color: #000; background: none; }
  .ab { padding: .6rem 0; }
  .gericht { break-inside: avoid; }
  .fuss { background: #fff; color: #000; }
  .fuss p, .fuss li, .fuss dt, .fuss dd, .fuss address, .fuss span, .fuss a { color: #000; }
  a[href^='/']::after { content: ''; }
}
