/* ============================================================
   Pizza Pause · Design-Vorschau V2 — „Offen, wenn andere schließen."
   Nachtstimmung: Blauschwarz + Theken-Amber. Keine externen Requests.
   ============================================================ */

:root {
  /* Farben — die Nacht ist ruhig, der Laden leuchtet */
  --nacht:       #0a0c12;   /* Seitengrund, Blauschwarz */
  --nacht-2:     #10131c;   /* angehobene Flächen */
  --nacht-3:     #171b27;   /* Ränder von Flächen */
  --amber:       #f2a33c;   /* einziger Akzent: Theken-/Ofenschein */
  --amber-tief:  #c97f22;
  --amber-glut:  rgba(242, 163, 60, 0.32);
  --linie:       rgba(242, 163, 60, 0.22);
  --linie-still: rgba(233, 230, 223, 0.10);
  --weiss:       #e9e6df;   /* gedämpftes Weiß */
  --grau:        #a3a6b3;   /* Nebentext, blaugrau */
  --grau-tief:   #7d8194;   /* Fußnoten (AA-Kontrast auf Nachtgrund) */

  /* Typo — Beschilderung (condensed), Fließtext (System), Fahrplan (Mono) */
  --schrift-schild: "Bahnschrift", "Avenir Next Condensed", "Arial Narrow",
                    "Helvetica Neue", Arial, sans-serif;
  --schrift-text:   "Segoe UI", system-ui, -apple-system, "Helvetica Neue",
                    Arial, sans-serif;
  --schrift-mono:   "Cascadia Mono", "SF Mono", "Consolas", "Roboto Mono",
                    "Courier New", monospace;

  /* Maße */
  --wrap-breit: 68rem;
  --sektion-raum: clamp(4.5rem, 11vw, 8rem);
  --radius: 10px;
}

/* ---------- Grundgerüst ---------- */

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background-color: var(--nacht);
  background-image:
    radial-gradient(52rem 30rem at 85% -6rem, rgba(242, 163, 60, 0.05), transparent 68%),
    radial-gradient(40rem 26rem at -10% 40rem, rgba(60, 80, 140, 0.05), transparent 70%);
  background-repeat: no-repeat;
  color: var(--weiss);
  font-family: var(--schrift-text);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--schrift-schild);
  font-stretch: 87.5%;
  line-height: 1.05;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h2 { font-size: clamp(1.9rem, 5.2vw, 3rem); font-weight: 700; letter-spacing: 0.01em; }

p { margin: 0 0 1em; }

a { color: var(--amber); text-underline-offset: 3px; }

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

.wrap {
  max-width: var(--wrap-breit);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4.5vw, 2.5rem);
}

.sektion { padding-block: var(--sektion-raum); }

/* Wiederkehrende Bausteine */

.eyebrow {
  font-family: var(--schrift-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.1rem;
}

.quelle {
  font-family: var(--schrift-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--grau-tief);
  margin: 1.4rem 0 0;
}

.fliess { color: var(--grau); max-width: 38rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-height: 52px;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--schrift-schild);
  font-stretch: 87.5%;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn-sub {
  font-family: var(--schrift-mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0.75;
}

.btn-voll {
  background: linear-gradient(180deg, var(--amber), var(--amber-tief));
  color: #1a1105;
  box-shadow: 0 6px 26px rgba(242, 163, 60, 0.28);
}

.btn-voll:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(242, 163, 60, 0.4); }

.btn-geist {
  color: var(--weiss);
  background: rgba(233, 230, 223, 0.04);
  border: 1px solid var(--linie);
}

.btn-geist:hover { background: rgba(242, 163, 60, 0.1); }

.cta-reihe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
  min-height: 92svh;
  isolation: isolate;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.8) brightness(0.88);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(10, 12, 18, 0.78) 0%,
      rgba(10, 12, 18, 0.25) 26%,
      rgba(10, 12, 18, 0.38) 55%,
      rgba(10, 12, 18, 0.92) 84%,
      var(--nacht) 100%);
}

/* ---------- Kopfzeile (sticky) ---------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 35; /* über Klebeleiste (30), unter dem Versions-Umschalter (40) */
  background: rgba(10, 12, 18, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linie-still);
}

.kopf-zeile {
  display: flex;
  align-items: center;
  gap: 0.3rem 1.2rem;
  max-width: var(--wrap-breit);
  margin-inline: auto;
  min-height: 64px;
  padding: 0.4rem clamp(1.1rem, 4.5vw, 2.5rem);
}

.kopf-marke {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--weiss);
  text-decoration: none;
}

.kopf-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* --- Split-Flap-Module (Fahrplantafel) --- */

.modul {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(180deg, #1a1f2d, #10141e 78%);
  border: 1px solid var(--nacht-3);
  box-shadow:
    inset 0 1px 0 rgba(233, 230, 223, 0.07),
    inset 0 -4px 0 rgba(0, 0, 0, 0.5),
    0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Mittelfuge wie bei echten Split-Flap-Modulen */
.modul::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.modul-kern {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.3rem 0.95rem;
}

.modul-a,
.modul-b {
  display: block;
  font-family: var(--schrift-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* perspective() sitzt direkt in der Transform-Function: kein preserve-3d-Kontext
   nötig — umgeht Chrome-Flattening-Fallen (filter im 3D-Kontext). */
.modul-a {
  color: var(--grau);
  transform: perspective(340px) rotateX(0deg);
}

.modul-b {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  color: var(--amber);
  transform: translateY(-50%) perspective(340px) rotateX(-88deg);
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(242, 163, 60, 0.55));
}

/* Amber-Lauflinie unter dem aktiven Modul */
.modul::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--amber) 30% 70%, transparent);
  filter: drop-shadow(0 0 6px rgba(242, 163, 60, 0.8));
  opacity: 0;
  transform: scaleX(0.2);
}

/* Hover/Fokus: die Lamelle schlägt um */
.modul:hover .modul-a,
.modul:focus-visible .modul-a { transform: perspective(340px) rotateX(88deg); opacity: 0; }

.modul:hover .modul-b,
.modul:focus-visible .modul-b { transform: translateY(-50%) perspective(340px) rotateX(0deg); opacity: 1; }

.modul:hover::after,
.modul:focus-visible::after { opacity: 1; transform: scaleX(1); }

@media (prefers-reduced-motion: no-preference) {
  .modul-a,
  .modul-b {
    transition:
      transform 0.38s cubic-bezier(0.35, 0.9, 0.3, 1),
      opacity 0.3s ease;
  }
  .modul::after { transition: opacity 0.28s ease, transform 0.34s ease; }
}

.kopf-anruf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--amber), var(--amber-tief));
  color: #1a1105;
  font-family: var(--schrift-schild);
  font-stretch: 87.5%;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(242, 163, 60, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.kopf-anruf:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(242, 163, 60, 0.36);
}

/* Tiefen-Parallax zum Cursor: nur Desktop + feiner Zeiger */
@media (min-width: 820px) and (pointer: fine) {
  .kopf-zeile { perspective: 850px; }
  .kopf-nav { transform-style: preserve-3d; }

  .modul,
  .kopf-anruf {
    transform:
      translate3d(calc(var(--mx, 0) * var(--pf, 0) * 1px), calc(var(--my, 0) * var(--pf, 0) * 0.5px), var(--tz, 0px))
      rotateY(calc(var(--mx, 0) * var(--rf, 0) * 1deg));
    will-change: transform;
  }

  .kopf-nav .modul:nth-child(1) { --tz: 6px;  --pf: 2.5; --rf: 1.4; }
  .kopf-nav .modul:nth-child(2) { --tz: 2px;  --pf: 4;   --rf: 1.9; }
  .kopf-nav .modul:nth-child(3) { --tz: 9px;  --pf: 5.5; --rf: 2.4; }
  .kopf-anruf                   { --tz: 13px; --pf: 7;   --rf: 3; }

  .kopf-anruf:hover {
    transform:
      translate3d(calc(var(--mx, 0) * var(--pf, 0) * 1px), calc(var(--my, 0) * var(--pf, 0) * 0.5px - 1px), var(--tz, 0px))
      rotateY(calc(var(--mx, 0) * var(--rf, 0) * 1deg));
  }
}

@media (min-width: 820px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .modul { transition: transform 0.3s ease-out; }
  .kopf-anruf { transition: transform 0.3s ease-out, box-shadow 160ms ease; }
}

/* Adress-Zeile nur, wenn wirklich Platz ist */
.kopf .topbar-adresse { display: none; }

@media (min-width: 1200px) {
  .kopf .topbar-adresse { display: block; }
}

/* Anker landen unterhalb der (einzeiligen) Kopfzeile */
#zeiten, #speisekarte, #kontakt { scroll-margin-top: 5rem; }

/* --- Burger-Knopf (nur mobil sichtbar) --- */

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--linie-still);
  border-radius: 8px;
  background: var(--nacht-2);
  color: var(--weiss);
  cursor: pointer;
}

.burger-lines {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.burger-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.burger-lines span:nth-child(1) { top: 0; }
.burger-lines span:nth-child(2) { top: 7px; }
.burger-lines span:nth-child(3) { top: 14px; }

.nav-burger[aria-expanded="true"] .burger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .burger-lines span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .burger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 819.98px) {
  .kopf-nav { display: none; }
  .kopf-anruf { margin-left: auto; }
  .nav-burger { display: inline-flex; }
}

/* --- Mobiles Vollbild-Menü (Abfahrtstafel) --- */

.mnav {
  position: fixed;
  inset: 0;
  z-index: 34; /* unter der Kopfzeile (35): der Burger bleibt als X bedienbar */
  display: flex;
  flex-direction: column;
  padding: 84px clamp(1.4rem, 6vw, 2.5rem) 40px;
  overflow-y: auto;
  background:
    radial-gradient(46rem 30rem at 80% -8rem, rgba(242, 163, 60, 0.09), transparent 65%),
    var(--nacht);
  opacity: 0;
}

.mnav[hidden] { display: none; }
.mnav.offen { opacity: 1; }

html.menue-offen { overflow: hidden; }

.mnav-inner {
  margin-block: auto;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.mnav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid var(--linie-still);
  font-family: var(--schrift-schild);
  font-stretch: 87.5%;
  font-weight: 700;
  font-size: clamp(1.55rem, 6.8vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--weiss);
}

.mnav-link:first-child { border-top: 1px solid var(--linie-still); }

.mnav-nr {
  font-family: var(--schrift-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--amber);
}

.mnav-anruf {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--amber), var(--amber-tief));
  color: #1a1105;
  font-family: var(--schrift-schild);
  font-stretch: 87.5%;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 26px rgba(242, 163, 60, 0.28);
}

.mnav-sub {
  font-family: var(--schrift-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0.75;
}

.mnav-route {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--linie);
  background: rgba(233, 230, 223, 0.04);
  color: var(--weiss);
  font-family: var(--schrift-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Menü-Choreografie: 3D-Einschwenken nur bei erlaubter Bewegung */
@media (prefers-reduced-motion: no-preference) {
  .mnav { transition: opacity 0.32s ease; }
  .mnav-inner { perspective: 60rem; }
  .mnav-inner > a {
    opacity: 0;
    transform: rotateY(28deg) translateZ(-90px);
    will-change: transform, opacity;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.21, 1), opacity 0.4s ease;
  }
  .mnav.offen .mnav-inner > a { opacity: 1; transform: none; }
  .mnav.offen .mnav-inner > a:nth-child(1) { transition-delay: 0.06s; }
  .mnav.offen .mnav-inner > a:nth-child(2) { transition-delay: 0.13s; }
  .mnav.offen .mnav-inner > a:nth-child(3) { transition-delay: 0.2s; }
  .mnav.offen .mnav-inner > a:nth-child(4) { transition-delay: 0.27s; }
  .mnav.offen .mnav-inner > a:nth-child(5) { transition-delay: 0.34s; }
  .burger-lines span { transition: transform 0.3s ease, opacity 0.2s ease; }
}

/* Sicherheitsnetz: auf Desktop existiert das Vollbild-Menü nicht */
@media (min-width: 820px) {
  .mnav { display: none; }
}

.brand {
  font-family: var(--schrift-schild);
  font-stretch: 87.5%;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand b { font-weight: 700; color: var(--amber); }

.topbar-adresse {
  font-family: var(--schrift-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--grau);
  text-align: right;
}

.hero-inhalt {
  margin-block: auto;
  max-width: var(--wrap-breit);
  width: 100%;
  margin-inline: auto;
  padding: clamp(5rem, 14vh, 8rem) clamp(1.1rem, 4.5vw, 2.5rem) clamp(3.5rem, 9vh, 6rem);
  animation: auftauchen 700ms ease-out both;
}

.hero-titel {
  font-size: clamp(2.7rem, 9.5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  max-width: 13ch;
  margin-bottom: 0.35em;
}

.hero-titel .glow {
  color: var(--amber);
  text-shadow:
    0 0 18px var(--amber-glut),
    0 0 70px rgba(242, 163, 60, 0.2);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: var(--weiss);
  max-width: 32ch;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}

.badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--linie);
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.55);
  font-family: var(--schrift-mono);
  font-size: 0.8rem;
  color: var(--grau);
  margin: 0;
}

.badge-stern { color: var(--amber); }

.badge b { color: var(--weiss); font-size: 1rem; }

/* ---------- Uhr-Sektion (Signatur) ---------- */

.uhr-grid { display: grid; gap: 2.6rem; align-items: center; }

.tafel-uhr {
  margin-top: 1.8rem;
  border-block: 1px solid var(--linie);
  position: relative;
}

/* der warme Schein hinter der Zeittafel */
.tafel-uhr::before {
  content: "";
  position: absolute;
  inset: -3rem -2rem;
  background: radial-gradient(58% 62% at 50% 50%, rgba(242, 163, 60, 0.09), transparent 72%);
  pointer-events: none;
}

.uhr-zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 1.4rem;
  padding-block: 1.35rem;
  position: relative;
}

.uhr-zeile + .uhr-zeile { border-top: 1px solid var(--linie); }

.uhr-tage {
  font-family: var(--schrift-mono);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grau);
}

.uhr-zeit {
  font-family: var(--schrift-schild);
  font-stretch: 87.5%;
  font-weight: 700;
  font-size: clamp(2.5rem, 8.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 22px var(--amber-glut),
    0 0 90px rgba(242, 163, 60, 0.16);
}

.uhr-strich { opacity: 0.45; margin-inline: 0.08em; }

.uhr-bild img,
.kontakt-bild img,
.foto img {
  border-radius: var(--radius);
  border: 1px solid var(--nacht-3);
}

.uhr-bild {
  margin: 0;
  position: relative;
}

.uhr-bild img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* warmer Schein am Bildrand, als käme er aus dem Ofen */
.uhr-bild::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 -60px 90px -40px rgba(242, 163, 60, 0.22);
  pointer-events: none;
}

/* ---------- Food-Sektion ---------- */

.essen-kopf { max-width: 40rem; }

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.3rem 0 0;
}

.chips li {
  font-family: var(--schrift-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grau);
  border: 1px solid var(--linie-still);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
}

.essen-bilder {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.6rem;
}

.foto { margin: 0; }

.foto img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.92);
}

.foto-a img { aspect-ratio: 3 / 4; }

.foto-b { margin-top: 1.6rem; }
.foto-b img { aspect-ratio: 3 / 4; }

/* ---------- Menü-Teaser-Tafeln ---------- */

.karte-hinweis-oben { margin-bottom: 2.2rem; }

.tafeln {
  display: grid;
  gap: 1.1rem;
}

.tafel {
  background: linear-gradient(180deg, var(--nacht-2), rgba(16, 19, 28, 0.55));
  border: 1px solid var(--nacht-3);
  border-top: 2px solid var(--amber-tief);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.2rem;
}

.tafel h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.tafel-zeilen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tafel-zeilen li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-block: 0.72rem;
}

.tafel-zeilen li + li { border-top: 1px solid var(--linie-still); }

.ph-name {
  display: block;
  width: var(--w, 55%);
  height: 0.68rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--grau-tief), rgba(109, 112, 128, 0.35));
  opacity: 0.5;
}

.leader {
  flex: 1;
  border-bottom: 1px dotted rgba(233, 230, 223, 0.22);
  transform: translateY(0.25rem);
}

.ph-preis {
  display: block;
  width: 2.4rem;
  height: 0.68rem;
  border-radius: 4px;
  background: rgba(242, 163, 60, 0.35);
}

/* ---------- Kontakt ---------- */

.kontakt-grid { display: grid; gap: 2.4rem; align-items: center; }

.kontakt-bild { margin: 0; }

.kontakt-bild img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.94);
}

.adresse {
  font-style: normal;
  color: var(--grau);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.tel-gross {
  display: inline-block;
  font-family: var(--schrift-schild);
  font-stretch: 87.5%;
  font-weight: 700;
  font-size: clamp(1.7rem, 5.5vw, 2.5rem);
  letter-spacing: 0.03em;
  color: var(--weiss);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  padding-block: 0.2rem; /* Tap-Fläche */
}

.tel-gross:hover { color: var(--amber); }

/* ---------- Footer ---------- */

.fuss {
  border-top: 1px solid var(--linie-still);
  padding-block: 2.4rem 8rem; /* Platz für Klebeleiste + Umschalter */
  text-align: center;
}

.fuss-zeile {
  font-family: var(--schrift-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--grau);
  margin-bottom: 0.4rem;
}

.fuss-zeile a { color: var(--amber); text-decoration: none; }
.fuss-zeile a:hover { text-decoration: underline; }

.fuss-klein {
  font-family: var(--schrift-mono);
  font-size: 0.68rem;
  color: var(--grau-tief);
  margin: 0;
}

/* ---------- Versions-Umschalter ---------- */

.vwahl {
  position: fixed;
  right: 0.9rem;
  bottom: calc(5.4rem + env(safe-area-inset-bottom, 0px)); /* mobil: über der Klebeleiste */
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--linie-still);
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--schrift-mono);
  font-size: 0.7rem;
  color: var(--grau-tief);
}

.vwahl-label { margin-right: 0.35rem; letter-spacing: 0.08em; }

.vwahl a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;  /* Tap-Ziel ≥ 44px auf Touch */
  height: 2.75rem;
  border-radius: 50%;
  color: var(--grau);
  text-decoration: none;
}

.vwahl a:hover { color: var(--weiss); background: rgba(233, 230, 223, 0.08); }

.vwahl a.aktiv {
  color: #1a1105;
  background: var(--amber);
  font-weight: 700;
}

/* ---------- Sticky-CTAs (nur mobil) ---------- */

.klebeleiste {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 12, 18, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--linie-still);
}

.klebeleiste .btn { min-height: 48px; padding-block: 0.5rem; }

/* ---------- Animation ---------- */

@keyframes auftauchen {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Menü bleibt ein schlichtes Fade (gewinnt über die *-Regel per Spezifität) */
  .mnav {
    transition: opacity 0.18s linear !important;
    transition-duration: 0.18s !important;
  }
}

/* ============================================================
   Ab Tablet/Desktop
   ============================================================ */

@media (min-width: 760px) {
  .klebeleiste { display: none; }

  .vwahl { bottom: 0.9rem; }
  .vwahl a { width: 1.9rem; height: 1.9rem; } /* Maus-Präzision: kompakt & dezent */

  .fuss { padding-block: 2.4rem 3rem; }

  .uhr-grid { grid-template-columns: 7fr 5fr; gap: clamp(2.5rem, 6vw, 5rem); }

  .essen-bilder {
    grid-template-columns: 5fr 6fr;
    gap: 1.6rem;
    max-width: 54rem;
  }

  .foto-b { margin-top: 2.8rem; }

  .tafeln { grid-template-columns: repeat(3, 1fr); }

  .kontakt-grid { grid-template-columns: 6fr 5fr; gap: clamp(2.5rem, 6vw, 5rem); }
}

@media (min-width: 1100px) {
  .hero-inhalt { padding-bottom: 7rem; }
}
