/* =========================================================
   Samos Grill — Demo
   Farbwelt: Nachtblau + das Azur der Marke (#2a9bd7, direkt aus
   ihrem Logo ausgelesen) + Weiß. Dunkel, aber in den Hausfarben.
   Vanilla CSS, keine Abhängigkeiten, kein Build.
   ========================================================= */

:root {
  /* Nachtblau statt Kohle — dunkel bleibt, aber in der Farbe des Hauses.
     Das Azur #2a9bd7 ist aus dem echten Logo ausgelesen (26,7 % der Fläche). */
  --nacht:      #08131e;
  --nacht-2:    #0d1c2b;
  --nacht-3:    #142838;
  --azur:       #2a9bd7;
  --azur-hell:  #6ec6ee;
  --azur-tief:  #12699b;
  --dunst:      #7f95a8;
  --dunst-hell: #c2d6e4;
  --weiss:      #f4fafd;
  --blau:       #12699b;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;

  --max: 1200px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 3px;

  --schatten: 0 18px 50px rgba(0, 0, 0, 0.5);
  --schatten-s: 0 6px 20px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--nacht);
  color: var(--weiss);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }

/* Akzentwort im Fließtext — einziger Farbtupfer im Text */
em, .azur { font-style: normal; color: var(--azur-hell); }

/* ---------- Demo-Banner ---------- */
.demo-banner {
  background: var(--blau);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 60;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 19, 30, 0);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.scrolled {
  background: rgba(8, 19, 30, 0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 30px rgba(0, 0, 0, 0.4);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.logo b { color: var(--azur); font-weight: 700; }

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dunst-hell);
  padding: 0.3rem 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--azur);
  transition: width 0.28s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--weiss); }
.main-nav a.active::after, .main-nav a:hover::after { width: 100%; }

/* Live-Status im Header */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--dunst-hell);
  white-space: nowrap;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--dunst);
  flex-shrink: 0;
}
.status-pill.offen { color: #7fe0a0; border-color: rgba(127, 224, 160, 0.3); }
.status-pill.offen .status-dot {
  background: #48d178;
  box-shadow: 0 0 0 0 rgba(72, 209, 120, 0.6);
  animation: puls 2.4s ease-out infinite;
}
.status-pill.zu { color: #ffa8a0; border-color: rgba(255, 168, 160, 0.28); }
.status-pill.zu .status-dot { background: #e2564a; }
@keyframes puls {
  70%  { box-shadow: 0 0 0 7px rgba(72, 209, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(72, 209, 120, 0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.72rem 1.5rem;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s;
  white-space: nowrap;
}
.btn-azur {
  background: linear-gradient(180deg, var(--azur-hell), var(--azur));
  color: #04121c;
  box-shadow: 0 6px 22px rgba(42, 155, 215, 0.35);
}
.btn-azur:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(42, 155, 215, 0.5);
}
.btn-linie {
  background: transparent;
  color: var(--weiss);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-linie:hover { border-color: var(--azur); color: var(--azur-hell); }
.btn-gross { padding: 0.95rem 2rem; font-size: 0.98rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--weiss);
  padding: 0.4rem;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Mobile-Menü ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 22, 0.985);
  backdrop-filter: blur(6px);
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--weiss);
  padding: 0.7rem 1rem;
}
.mobile-menu a:active { color: var(--azur); }
.mobile-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: none; border: 0;
  color: var(--weiss);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
}
body.menu-open { overflow: hidden; }

/* =========================================================
   Hero — Nachtblau + Typo. Bewusst kein Vollbildfoto:
   die Gastfotos sind max 1200px breit und würden reißen.
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(42, 155, 215, 0.26) 0%, rgba(42, 155, 215, 0.08) 42%, transparent 68%),
    linear-gradient(180deg, #050d16 0%, var(--nacht) 55%, #0b1a28 100%);
}

/* Lichtschein am unteren Rand — atmet langsam.
   Bewusst OHNE filter: blur(). Ein animierter Weichzeichner auf einer
   Fläche dieser Größe muss pro Bild neu gerechnet werden und legt
   schwächere Geräte lahm. Der Verlauf ist von sich aus weich genug. */
.hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -32%;
  transform: translateX(-50%);   /* muss auch ohne laufende Animation stehen */
  width: 145%; height: 62%;
  background: radial-gradient(ellipse at center,
    rgba(42, 155, 215, 0.34) 0%,
    rgba(30, 130, 190, 0.18) 30%,
    rgba(20, 100, 160, 0.07) 52%,
    transparent 74%);
  pointer-events: none;
  will-change: opacity;
  animation: schein-atmen 7s ease-in-out infinite alternate;
}
@keyframes schein-atmen {
  0%   { opacity: 0.6; transform: translateX(-50%) scaleY(1); }
  100% { opacity: 1;   transform: translateX(-50%) scaleY(1.1); }
}

/* Aufsteigende Funken (reines CSS, 9 Stück, GPU-schonend) */
.funken { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.funke {
  position: absolute;
  bottom: -12px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--azur-hell);
  box-shadow: 0 0 6px 1px rgba(110, 198, 238, 0.9);
  opacity: 0;
  animation: steigen linear infinite;
}
@keyframes steigen {
  0%   { opacity: 0;   transform: translateY(0) translateX(0) scale(0.6); }
  12%  { opacity: 0.9; }
  70%  { opacity: 0.55; }
  100% { opacity: 0;   transform: translateY(-78vh) translateX(var(--drift, 20px)) scale(0.2); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azur-hell);
  margin-bottom: 1.2rem;
}
.hero-kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--azur);
}

.hero h1 {
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 1.3rem;
}
.hero h1 .zeile-2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--azur);
  text-stroke: 1.5px var(--azur);
}

.hero-text {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: var(--dunst-hell);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Spießfoto im Hochformat — passt zum Originalformat des Fotos */
.hero-bild {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
  aspect-ratio: 3 / 4;
}
/* Nur transform animieren — kein filter auf demselben Element, sonst
   rechnet der Browser die Farbkorrektur pro Bild mit. */
.hero-bild img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.13) translate(-1.5%, -2%); }
}
/* Lichtschimmer über dem Spieß. Ohne mix-blend-mode — Blendmodi zwingen
   den Browser zu einer eigenen Ebene und sind hier den Preis nicht wert. */
.hero-bild::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 52%, rgba(42, 155, 215, 0.20) 100%);
  pointer-events: none;
  animation: flimmern 5.5s ease-in-out infinite alternate;
}
@keyframes flimmern {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}
.hero-bild figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 2.6rem 1.1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(4, 12, 20, 0.9));
  font-size: 0.79rem;
  color: var(--dunst-hell);
  letter-spacing: 0.02em;
}

/* ---------- Zahlenband ---------- */
.zahlen {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.3);
}
.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}
.zahl {
  padding: 1.9rem 1rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.zahl:first-child { border-left: 0; }
.zahl b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 600;
  color: var(--weiss);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.zahl span {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dunst);
}
.sterne { color: var(--azur-hell); letter-spacing: 0.05em; }

/* ---------- Abschnitte ---------- */
.abschnitt { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.abschnitt-kopf { margin-bottom: clamp(2rem, 4vw, 3.2rem); max-width: 62ch; }
.abschnitt-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azur);
  margin-bottom: 0.8rem;
}
.abschnitt-kopf h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.abschnitt-kopf p { color: var(--dunst-hell); margin: 0; }

/* =========================================================
   Hauswahl für die Preise
   Meppen und Lingen führen dieselbe Karte zu verschiedenen
   Preisen (Lingen rund 1 € günstiger) und teils anderen
   Nummern. Das kann die alte Seite nicht — dort sind es
   zwei getrennte Fotos auf zwei Unterseiten.
   ========================================================= */
.haus-schalter {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.haus-schalter-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dunst);
}
.segment {
  position: relative;
  display: inline-flex;
  padding: 3px;
  background: var(--nacht-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  isolation: isolate;
}
/* Der aktive Hintergrund gleitet — er zeigt die Bewegung,
   die der Wechsel tatsächlich macht. */
.segment::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 3px; left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: linear-gradient(180deg, var(--azur-hell), var(--azur));
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(42, 155, 215, 0.4);
  transition: transform 0.36s cubic-bezier(0.34, 1.3, 0.44, 1);
}
.segment[data-aktiv="lingen"]::before { transform: translateX(100%); }
.segment-btn {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  background: none;
  border: 0;
  border-radius: 100px;
  color: var(--dunst-hell);
  cursor: pointer;
  transition: color 0.26s ease;
  white-space: nowrap;
}
.segment-btn.aktiv { color: #04121c; }
.segment-btn:focus-visible { outline: 2px solid var(--azur-hell); outline-offset: 3px; }
.haus-notiz {
  font-size: 0.84rem;
  color: var(--azur-hell);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.haus-notiz.sichtbar { opacity: 1; transform: none; }

/* Preis kippt um, wenn das Haus wechselt — sonst übersieht man,
   dass sich die Zahl gerade geändert hat. */
@keyframes preis-kippt {
  0%   { opacity: 1; transform: translateY(0)     rotateX(0); }
  45%  { opacity: 0; transform: translateY(-0.5em) rotateX(80deg); }
  55%  { opacity: 0; transform: translateY(0.5em)  rotateX(-80deg); }
  100% { opacity: 1; transform: translateY(0)     rotateX(0); }
}
.gericht-preis.kippt, .gericht-nr.kippt { animation: preis-kippt 0.42s ease both; }

/* =========================================================
   Speisekarte — als Text, nicht als Foto.
   Das ist der eigentliche Unterschied zur alten Seite.
   ========================================================= */
.karte-werkzeuge {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.8rem;
  padding: 1rem;
  background: var(--nacht-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  position: sticky;
  top: 62px;
  z-index: 20;
  /* kein backdrop-filter: die Leiste klebt beim Scrollen durch die ganze
     Karte — ein Weichzeichner würde hier pro Bild neu gerechnet. */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}
.suche-feld {
  flex: 1 1 220px;
  position: relative;
  display: flex;
  align-items: center;
}
.suche-feld svg {
  position: absolute;
  left: 0.75rem;
  width: 16px; height: 16px;
  color: var(--dunst);
  pointer-events: none;
}
.suche-feld input {
  width: 100%;
  background: var(--nacht);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--weiss);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.62rem 0.8rem 0.62rem 2.3rem;
  transition: border-color 0.2s;
}
.suche-feld input:focus {
  outline: none;
  border-color: var(--azur);
}
.suche-feld input::placeholder { color: var(--dunst); }

.filter-reihe { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-chip {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  color: var(--dunst-hell);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--dunst-hell); color: var(--weiss); }
.filter-chip.aktiv {
  background: var(--azur);
  border-color: var(--azur);
  color: #04121c;
  font-weight: 600;
}

.karte-gruppe { margin-bottom: 2.6rem; }
.karte-gruppe > h3 {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--azur-hell);
  padding-bottom: 0.7rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(110, 198, 238, 0.26);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.karte-gruppe > h3 small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--dunst);
  margin-left: auto;
}

.gericht-liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 0.15rem 2.2rem;
}
.gericht {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: baseline;
  padding: 0.72rem 0.5rem;
  border-radius: var(--radius);
  transition: background 0.18s;
}
.gericht:hover { background: rgba(255, 255, 255, 0.04); }
.gericht-nr {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--dunst);
  min-width: 1.9rem;
}
.gericht-name {
  font-weight: 500;
  color: var(--weiss);
}
.gericht-name small {
  display: block;
  font-weight: 400;
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--dunst);
  margin-top: 0.1rem;
}
.gericht-preis {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--azur-hell);
  white-space: nowrap;
}
.marker {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.marker-veg { background: rgba(90, 190, 110, 0.16); color: #7ede96; }
.marker-zwei { background: rgba(110, 198, 238, 0.16); color: var(--azur-hell); }
.karte-leer {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--dunst);
}
.karte-fuss {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--dunst);
  line-height: 1.7;
}

/* ---------- Handwerk / Bildband ---------- */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.band-bild {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
  aspect-ratio: 4 / 3;
}
.band-bild img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.band-bild:hover img { transform: scale(1.05); }
.band h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
.band p { color: var(--dunst-hell); }

/* Hinweiskasten — z. B. Barzahlung */
.hinweis {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  margin-top: 1.6rem;
  background: rgba(110, 198, 238, 0.07);
  border: 1px solid rgba(110, 198, 238, 0.24);
  border-left: 3px solid var(--azur);
  border-radius: var(--radius);
}
.hinweis svg { width: 20px; height: 20px; color: var(--azur-hell); flex-shrink: 0; margin-top: 0.15rem; }
.hinweis p { margin: 0; font-size: 0.92rem; color: var(--dunst-hell); }
.hinweis strong { color: var(--weiss); }

/* ---------- Galerie (Mosaik, verträgt hoch + quer) ---------- */
.galerie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 0.5rem;
}
.galerie figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--nacht-2);
}
.galerie img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
  filter: saturate(0.92);
}
.galerie figure:hover img { transform: scale(1.07); filter: saturate(1.1); }
.g-hoch { grid-row: span 2; }
.g-breit { grid-column: span 2; }
.galerie figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 0.8rem 0.6rem;
  background: linear-gradient(180deg, transparent, rgba(4, 12, 20, 0.88));
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--dunst-hell);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}
.galerie figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Standorte ---------- */
.standorte { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.standort {
  background: var(--nacht-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.standort:hover { border-color: rgba(42, 155, 215, 0.4); transform: translateY(-3px); }
.standort-bild { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.standort-bild img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.92);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.standort:hover .standort-bild img { transform: scale(1.06); }
.standort-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: rgba(6, 16, 25, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  color: var(--weiss);
}
.standort-inhalt { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.standort h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.2rem; }
.standort-adresse { font-size: 0.94rem; color: var(--dunst); margin-bottom: 1.1rem; }
.standort-zeile {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.93rem;
}
.standort-zeile svg { width: 17px; height: 17px; color: var(--azur); flex-shrink: 0; margin-top: 0.22rem; }
.standort-zeile b { color: var(--weiss); font-weight: 500; }
.standort-zeile span { color: var(--dunst-hell); }
.ruhetag { color: #ffa8a0 !important; }
.standort-aktionen { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 1.2rem; }
.standort-aktionen .btn { flex: 1; font-size: 0.8rem; padding: 0.65rem 0.8rem; }

/* =========================================================
   Reservierung
   ========================================================= */
.reservierung {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(42, 155, 215, 0.13), transparent 60%),
    var(--nacht-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.formular-karte {
  max-width: 780px;
  margin: 0 auto;
  background: var(--nacht);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.6rem);
  box-shadow: var(--schatten);
}

/* Standortwahl als Segmente */
.ort-wahl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.ort-option { position: relative; }
.ort-option input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.ort-option span {
  display: block;
  padding: 0.9rem 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transition: all 0.22s;
  cursor: pointer;
}
.ort-option b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--weiss);
}
.ort-option small { font-size: 0.78rem; color: var(--dunst); }
.ort-option input:checked + span {
  border-color: var(--azur);
  background: rgba(42, 155, 215, 0.1);
  box-shadow: 0 0 0 1px var(--azur) inset;
}
.ort-option input:checked + span small { color: var(--azur-hell); }
.ort-option input:focus-visible + span { outline: 2px solid var(--azur-hell); outline-offset: 2px; }

.feld-reihe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.feld { display: flex; flex-direction: column; gap: 0.35rem; }
.feld label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dunst);
}
.feld input, .feld select, .feld textarea {
  background: var(--nacht-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--weiss);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.72rem 0.85rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feld textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none;
  border-color: var(--azur);
  box-shadow: 0 0 0 3px rgba(42, 155, 215, 0.16);
}
.feld input:disabled, .feld select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.feld select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a8f84' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 17px;
  padding-right: 2.2rem;
}
.feld-hinweis { font-size: 0.78rem; color: var(--dunst); margin-top: 0.1rem; }

/* Personenzähler */
.zaehler { display: flex; align-items: stretch; gap: 0; }
.zaehler button {
  width: 44px;
  background: var(--nacht-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--weiss);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.zaehler button:hover { background: var(--azur); color: #04121c; border-color: var(--azur); }
.zaehler button:first-child { border-radius: var(--radius) 0 0 var(--radius); border-right: 0; }
.zaehler button:last-child { border-radius: 0 var(--radius) var(--radius) 0; border-left: 0; }
.zaehler input {
  text-align: center;
  border-radius: 0;
  -moz-appearance: textfield;
}
.zaehler input::-webkit-outer-spin-button,
.zaehler input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Vorbestellung */
.schalter {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin: 1.2rem 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
}
.schalter input { width: 19px; height: 19px; margin-top: 0.15rem; accent-color: var(--azur); cursor: pointer; flex-shrink: 0; }
.schalter b { display: block; color: var(--weiss); font-weight: 500; }
.schalter small { color: var(--dunst); font-size: 0.85rem; line-height: 1.5; display: block; }

.vorbestellung { padding-top: 0.3rem; }
.vorbestellung[hidden] { display: none; }

.form-status {
  margin-top: 1.1rem;
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
  display: none;
}
.form-status.ok {
  display: block;
  background: rgba(72, 209, 120, 0.1);
  border: 1px solid rgba(72, 209, 120, 0.35);
  color: #a8ecc0;
}
.form-status.err {
  display: block;
  background: rgba(226, 86, 74, 0.1);
  border: 1px solid rgba(226, 86, 74, 0.35);
  color: #ffb3ab;
}
.pflicht { color: var(--azur); }

/* ---------- Footer ---------- */
.site-footer {
  background: #061019;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--azur);
  margin-bottom: 0.9rem;
}
.footer-grid p, .footer-grid li { color: var(--dunst); margin: 0 0 0.4rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid a { color: var(--dunst); text-decoration: none; transition: color 0.2s; }
.footer-grid a:hover { color: var(--azur-hell); }
.footer-unten {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #6d635a;
  font-size: 0.82rem;
}

/* ---------- Nach oben ---------- */
.nach-oben {
  position: fixed;
  right: 1.2rem; bottom: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--azur);
  color: #04121c;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 40;
  box-shadow: 0 8px 24px rgba(42, 155, 215, 0.4);
}
.nach-oben.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nach-oben svg { width: 20px; height: 20px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Umbrüche
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bild { max-width: 380px; aspect-ratio: 4 / 3; }
  .band { grid-template-columns: 1fr; }
  .band-bild { order: -1; }
  .standorte { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .galerie { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 165px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-inner .status-pill { display: none; }
  .header-inner .btn { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .zahlen-grid { grid-template-columns: repeat(2, 1fr); }
  .zahl { padding: 1.4rem 0.6rem; }
  .zahl:nth-child(3) { border-left: 0; }
  .zahl:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .galerie { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gericht-liste { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .ort-wahl { grid-template-columns: 1fr; }
  .hero-bild { max-width: none; }
  .standort-aktionen { flex-direction: column; }

  /* Hauswahl über die volle Breite — mit dem Daumen erreichbar */
  .haus-schalter { gap: 0.55rem; }
  .haus-schalter-text { width: 100%; margin-bottom: -0.2rem; }
  .segment { width: 100%; }
  .segment-btn { flex: 1; min-height: 44px; font-size: 0.92rem; }
  .haus-notiz { width: 100%; font-size: 0.8rem; }

  /* Filterleiste: seitlich wischen statt über drei Zeilen umbrechen.
     Die Leiste bricht bewusst aus dem Innenabstand aus, damit die
     Chips am Rand angeschnitten sind — das zeigt, dass es weitergeht. */
  .karte-werkzeuge {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 0.85rem;
    min-width: 0;
  }
  /* flex-basis 220px meint in einer Spalte die Höhe — hier zurücksetzen */
  .suche-feld { flex: none; width: 100%; min-width: 0; }
  .filter-reihe {
    flex-wrap: nowrap;
    overflow-x: auto;
    /* width: 100% ist hier Pflicht, nicht Kosmetik: In einer Spalten-Flexbox
       wirkt flex-shrink nur senkrecht. Ohne feste Breite nimmt die Leiste
       ihre Inhaltsbreite an (427px), overflow-x läuft ins Leere und die
       ganze Seite wird seitlich verschoben. */
    width: 100%;
    min-width: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .filter-reihe::-webkit-scrollbar { display: none; }
  .filter-chip {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    scroll-snap-align: start;
  }
  .suche-feld input { min-height: 46px; font-size: 16px; } /* 16px verhindert Auto-Zoom in iOS */

  /* Gerichte: Nummer und Preis dürfen nicht zerquetscht werden */
  .gericht { padding: 0.8rem 0.4rem; gap: 0.55rem; }
  .gericht-nr { min-width: 1.6rem; font-size: 0.76rem; }
  .gericht-name small { font-size: 0.8rem; }

  /* Formular: Finger statt Mauszeiger */
  .feld input, .feld select, .feld textarea { min-height: 46px; font-size: 16px; }
  .zaehler button { width: 52px; min-height: 46px; font-size: 1.5rem; }
  .ort-option span { min-height: 60px; display: flex; flex-direction: column; justify-content: center; }
  .schalter { padding: 0.9rem; }
  .schalter input { width: 22px; height: 22px; }

  .btn { min-height: 44px; }
  .nav-toggle { min-width: 44px; min-height: 44px; display: grid; place-items: center; }
  .mobile-menu a { min-height: 52px; display: flex; align-items: center; }
  .nach-oben { right: 0.9rem; bottom: 0.9rem; }
}

@media (max-width: 380px) {
  .logo { font-size: 1.05rem; }
  .logo-mark { width: 22px; height: 22px; }
  .segment-btn { padding: 0.5rem 0.8rem; letter-spacing: 0.04em; }
}

/* Druck: die Karte soll auf Papier funktionieren */
@media print {
  .site-header, .demo-banner, .hero, .galerie, .reservierung,
  .nach-oben, .karte-werkzeuge, .band-bild { display: none !important; }
  body { background: #fff; color: #000; }
  .gericht-name, .gericht-preis, .karte-gruppe > h3 { color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
