/* ============================================================
   PIZZA PAUSE · Hermannstraße 220, Berlin-Neukölln
   Design-Vorschau VERSION 3 — „Frisch. Ehrlich. Neukölln."
   Helle Tages-Welt: Creme-Grund, Terracotta (Fassade),
   Basilikum-Grün (Deckenkante). System-Typo, keine externen
   Requests, mobil zuerst. SITEBASE · sitebase.ltd
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Grund & Flächen */
  --bg:        #faf5ec;   /* warmes Creme — der Tages-Grund */
  --bg-deep:   #f1e9da;   /* Sektions-Wechsel, Badge-Grund */
  --card:      #fffdf8;   /* Karten-Weiß */
  --ghost:     #e7dcc8;   /* Platzhalter-Balken der Menü-Karten */

  /* Text */
  --ink:       #2c2117;   /* warme, dunkle Tinte (≈13:1 auf --bg) */
  --ink-muted: #6d5d4b;   /* Nebentext (≈5,6:1 auf --bg) */

  /* Terracotta — Fassade, Primärakzent */
  --terra:      #b4543a;  /* groß/Display & Füllungen (Weiß darauf: ≈4,9:1) */
  --terra-deep: #93412c;  /* kleiner Text & Hover-Verdichtung (≈6,2:1 auf --bg) */
  --terra-wash: rgba(180, 84, 58, .09);

  /* Basilikum-Grün — Deckenkante, Zweitakzent */
  --basil:      #4a7c46;  /* groß & Linien */
  --basil-deep: #3b6337;  /* kleiner Text (≈6,1:1 auf --bg) */
  --basil-wash: rgba(74, 124, 70, .10);

  /* Linien & Schatten */
  --line:      rgba(44, 33, 23, .14);
  --line-soft: rgba(44, 33, 23, .08);
  --shadow:      0 12px 32px rgba(44, 33, 23, .09);
  --shadow-lift: 0 18px 44px rgba(44, 33, 23, .13);

  /* Typo */
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --maxw:    1120px;
  --gutter:  clamp(20px, 5vw, 48px);
  --section: clamp(60px, 10vw, 116px);
  --radius:  16px;
  --ctabar-h: 72px; /* Sticky-Bottom-Leiste (mobil) */

  /* Motion */
  --ease: cubic-bezier(.22, .61, .21, 1);
}

/* ---------- Reset & Grundton ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

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

:focus-visible {
  outline: 3px solid rgba(180, 84, 58, .7);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--terra); color: #fff; }

/* Mobil: Platz für die Sticky-Bottom-Leiste */
body { padding-bottom: calc(var(--ctabar-h) + env(safe-area-inset-bottom, 0px)); }

@media (min-width: 820px) {
  body { padding-bottom: 0; font-size: 1.0625rem; }
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section[id], #kontakt { scroll-margin-top: 88px; } /* einzeilige Kopfzeile auf allen Breiten */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra-deep);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--basil); /* die grüne Deckenkante als Mini-Zitat */
}

.section-head { max-width: 640px; margin-bottom: clamp(28px, 4.5vw, 44px); }
.section-head h2 { font-size: clamp(1.65rem, 3.6vw, 2.4rem); }
.section-head p  { color: var(--ink-muted); margin-bottom: 0; }

.icon { width: 20px; height: 20px; flex: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons (Tap ≥ 44px überall) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.btn .icon { width: 19px; height: 19px; }

.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 8px 20px rgba(180, 84, 58, .28);
}
.btn-primary:hover,
.btn-primary:active { background: var(--terra-deep); } /* verdichten, nie aufhellen */
.btn-primary:hover  { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(147, 65, 44, .32); }

.btn-secondary {
  background: transparent;
  border-color: rgba(74, 124, 70, .5);
  color: var(--basil-deep);
}
.btn-secondary:hover {
  background: var(--basil-wash);
  border-color: var(--basil-deep);
  transform: translateY(-1px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 65; /* über Inhalt & CTA-Leiste (60), unter dem Versions-Umschalter (70) */
  background: rgba(250, 245, 236, .92);
  border-bottom: 1px solid var(--line-soft);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-block: 8px;
}

.wordmark {
  display: inline-block;
  min-height: 44px;
  padding-block: 2px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.15;
}
.wordmark strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.wordmark strong .pause { color: var(--terra); }
.wordmark small {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--basil-deep);
}

.header-nav { display: inline-flex; align-items: center; gap: 6px; }
.header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.header-nav a:hover { background: var(--terra-wash); color: var(--terra-deep); }

.header-call { min-height: 44px; padding-block: 8px; }

/* --- Burger-Knopf (nur mobil sichtbar) --- */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  color: var(--ink);
  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); }

/* Mobil: Wortmarke links, Anrufen + Burger rechts — Anker wandern ins Vollbild-Menü */
@media (max-width: 819.98px) {
  .site-header .container { justify-content: flex-start; }
  .header-nav { display: none; }
  .header-call { margin-left: auto; }
  .nav-burger { display: inline-flex; }
}

/* --- Magnetische Depth-Pills (Desktop) --- */
@media (min-width: 820px) {
  .header-nav { gap: 10px; }
  .header-nav a {
    background: var(--card);
    border: 1px solid var(--line-soft);
    box-shadow: 0 3px 8px rgba(180, 84, 58, .08);
  }
}

@media (min-width: 820px) and (pointer: fine) {
  .site-header .container { perspective: 900px; }
  .header-nav { transform-style: preserve-3d; }

  .header-nav a,
  .header-call {
    transform: translate3d(var(--tx, 0px), var(--ty, 0px), calc(var(--tz, 0px) + var(--mag, 0) * 16px));
    will-change: transform;
  }

  .header-nav a {
    filter: drop-shadow(0 calc(4px + var(--mag, 0) * 8px) calc(6px + var(--mag, 0) * 10px) rgba(180, 84, 58, .22));
  }

  .header-nav a:nth-child(1) { --tz: 6px; }
  .header-nav a:nth-child(2) { --tz: 14px; }
  .header-nav a:nth-child(3) { --tz: 9px; }
  .header-call               { --tz: 18px; }

  /* Der Button-Hover darf die Magnetik nicht überschreiben */
  .header-call:hover {
    transform: translate3d(var(--tx, 0px), calc(var(--ty, 0px) - 1px), calc(var(--tz, 0px) + var(--mag, 0) * 16px));
  }

  /* Grün-Rand-Lichtkante beim Fokus */
  .header-nav a:focus-visible,
  .header-call:focus-visible {
    outline: 3px solid rgba(74, 124, 70, .8);
    outline-offset: 2px;
  }
}

@media (min-width: 820px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .header-nav a { transition: transform .18s ease-out, filter .25s ease-out; }
  .header-call {
    transition: background-color .22s var(--ease), border-color .22s var(--ease),
                color .22s var(--ease), transform .18s ease-out, box-shadow .22s var(--ease);
  }
}

/* --- Mobiles Vollbild-Menü --- */

.mnav {
  position: fixed;
  inset: 0;
  z-index: 64; /* unter der Kopfzeile (65): der Burger bleibt als X bedienbar */
  display: flex;
  flex-direction: column;
  padding: 88px var(--gutter) 40px;
  overflow-y: auto;
  background: var(--bg);
  opacity: 0;
}

.mnav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--basil); /* die grüne Deckenkante */
}

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

html.menue-offen { overflow: hidden; }

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

.mnav-link {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 12px 4px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--ink);
}

.mnav-link:active { color: var(--terra-deep); }

.mnav-anruf {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border-radius: 999px;
  background: var(--terra);
  color: #fff;
  font-weight: 650;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(180, 84, 58, .3);
}

.mnav-route {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  border: 1.5px solid rgba(74, 124, 70, .5);
  color: var(--basil-deep);
  font-weight: 650;
  font-size: .98rem;
  text-decoration: none;
}

/* Menü-Choreografie: 3D-Einschwenken nur bei erlaubter Bewegung */
@media (prefers-reduced-motion: no-preference) {
  .mnav { transition: opacity .32s ease; }
  .mnav-inner { perspective: 900px; }
  .mnav-inner > a {
    opacity: 0;
    transform: rotateY(28deg) translateZ(-90px);
    will-change: transform, opacity;
    transition: transform .55s var(--ease), opacity .4s ease;
  }
  .mnav.offen .mnav-inner > a { opacity: 1; transform: none; }
  .mnav.offen .mnav-inner > a:nth-child(1) { transition-delay: .06s; }
  .mnav.offen .mnav-inner > a:nth-child(2) { transition-delay: .13s; }
  .mnav.offen .mnav-inner > a:nth-child(3) { transition-delay: .2s; }
  .mnav.offen .mnav-inner > a:nth-child(4) { transition-delay: .27s; }
  .mnav.offen .mnav-inner > a:nth-child(5) { transition-delay: .34s; }
  .burger-lines span { transition: transform .3s var(--ease), opacity .2s ease; }
}

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

/* ---------- Hero ---------- */
.hero { position: relative; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: clamp(340px, 64vw, 660px);
  object-fit: cover;
  object-position: 52% 44%; /* Vitrine + Arkaden-Leuchtbilder im Bild halten */
}
/* Overlay minimal: nur ein weicher Übergang in den Creme-Grund */
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(250, 245, 236, 0), var(--bg));
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin-top: clamp(-120px, -9vw, -64px);
  padding: clamp(26px, 4.5vw, 46px);
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.hero-card .kicker { margin-bottom: 10px; }

.hero-card h1 {
  font-size: clamp(2.05rem, 5.6vw, 3.35rem);
  margin-bottom: .35em;
}
.hero-card h1 em {
  font-style: normal;
  color: var(--terra);
}

.hero-sub {
  max-width: 56ch;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.9vw, 1.125rem);
  margin-bottom: 18px;
}

.rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 22px;
  padding: 9px 16px;
  background: var(--bg-deep);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: .95rem;
}
.rating .star { color: var(--terra); font-size: 1.05rem; line-height: 1; }
.rating strong { font-family: var(--serif); font-size: 1.12rem; }
.rating span { color: var(--ink-muted); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-phone {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-muted);
}
.hero-phone a { font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- Markisen-Band: Pizza · Pasta · Salate ---------- */
.band {
  margin-top: var(--section);
  background: var(--bg-deep);
  border-top: 5px solid var(--basil);   /* die Deckenkante */
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 0 clamp(46px, 6.5vw, 72px);
}
/* Markisen-Bogenkante unter dem Band */
.band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -12px;
  height: 12px;
  background-image: radial-gradient(circle at 50% 0, var(--bg-deep) 61%, transparent 62%);
  background-size: 26px 12px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.band-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--terra);
}
.band-title .dot { color: var(--basil); padding-inline: .18em; }

.band-sub {
  margin: 0 auto 26px;
  max-width: 46ch;
  color: var(--ink-muted);
}

.band-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0 var(--gutter);
}
.band-badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
}
.band-badges .icon { color: var(--basil-deep); }

/* ---------- Food-Grid ---------- */
.food-grid {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}
@media (min-width: 720px) {
  .food-grid { grid-template-columns: 1fr 1fr; }
}

.food-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.food-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.food-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}
.food-card.is-holz img   { object-position: 50% 62%; }
.food-card.is-bleche img { object-position: 50% 56%; }

.food-card figcaption { padding: 20px 22px 22px; }
.food-card .tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--basil-deep);
}
.food-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.45;
}

/* ---------- Menü-Teaser (Platzhalter) ---------- */
.menu-section { background: var(--card); border-block: 1px solid var(--line-soft); }

.menu-grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
}
@media (min-width: 720px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.menu-card {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--terra); /* die Terracotta-Kante */
  border-radius: 12px;
  padding: 22px 22px 24px;
  box-shadow: 0 6px 18px rgba(44, 33, 23, .05);
}
.menu-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.menu-card h3 small {
  display: block;
  margin-top: 2px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ghost-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 9px;
}
.ghost-row + .ghost-row { border-top: 1px dashed var(--line-soft); }
.ghost-name, .ghost-price {
  height: 12px;
  border-radius: 6px;
  background: var(--ghost);
}
.ghost-name  { flex: none; }
.ghost-price { width: 34px; flex: none; margin-left: auto; }
.ghost-row:nth-child(odd)  .ghost-name { width: 62%; }
.ghost-row:nth-child(even) .ghost-name { width: 47%; }
.ghost-row:last-child      .ghost-name { width: 55%; }

.menu-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 28px);
  padding: 16px 18px;
  background: var(--basil-wash);
  border: 1px solid rgba(74, 124, 70, .25);
  border-radius: 12px;
  color: var(--ink);
  font-size: .95rem;
}
.menu-note .icon { color: var(--basil-deep); margin-top: 2px; }
.menu-note p { margin: 0; }
.menu-note strong { color: var(--basil-deep); }

/* ---------- Nacht & Öffnungszeiten ---------- */
.night-grid {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}
@media (min-width: 860px) {
  .night-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: stretch;
  }
}

.hours-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-top: 5px solid var(--basil); /* Deckenkante auch hier */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
}

.hours-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.hours-card h3 .icon { color: var(--terra); }

.hours-list {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}
.hours-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-block: 10px;
}
.hours-list li + li { border-top: 1px dashed var(--line-soft); }
.hours-list .day { font-weight: 650; white-space: nowrap; }
.hours-list .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(44, 33, 23, .22);
  transform: translateY(-5px);
  min-width: 24px;
}
.hours-list .time {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hours-late {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 18px;
  padding: 12px 14px;
  background: var(--terra-wash);
  border-radius: 10px;
  font-size: .95rem;
}
.hours-late .icon { color: var(--terra-deep); flex: none; margin-top: 2px; }
.hours-late p { margin: 0; }

.hours-address {
  font-style: normal;
  line-height: 1.55;
  margin-bottom: 18px;
}
.hours-address strong { font-family: var(--serif); font-size: 1.08rem; }
.hours-address a { font-variant-numeric: tabular-nums; font-weight: 650; }

.hours-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.hours-source {
  margin: 14px 0 0;
  font-size: .8rem;
  color: var(--ink-muted);
}

.night-oven {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  position: relative;
  min-height: 320px;
}
.night-oven img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% 58%; /* Ofen + Kartonstapel */
}
@media (min-width: 860px) {
  .night-oven { display: flex; }
  .night-oven img { aspect-ratio: auto; position: absolute; inset: 0; }
}
.night-oven figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(30, 20, 12, .72), rgba(30, 20, 12, 0));
  color: #fdf8ee;
  font-size: .88rem;
  z-index: 1;
}

.night-street {
  margin: 0;
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  position: relative;
}
.night-street img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: 50% 42%; /* Leucht-Schriftzug im Bild halten */
}
@media (min-width: 860px) {
  .night-street img { aspect-ratio: 21 / 9; }
}
.night-street figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 46px 20px 16px;
  background: linear-gradient(to top, rgba(30, 20, 12, .74), rgba(30, 20, 12, 0));
  color: #fdf8ee;
  font-size: .92rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  padding: clamp(36px, 6vw, 56px) 0 clamp(28px, 5vw, 44px);
  font-size: .92rem;
  color: var(--ink-muted);
}

.footer-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 26px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.footer-brand .pause { color: var(--terra); }
.footer-brand address { font-style: normal; margin-top: 6px; line-height: 1.6; }
.footer-brand a { color: var(--terra-deep); }

.footer-hours { line-height: 1.6; }
.footer-hours strong { color: var(--ink); }

.footer-legal {
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  font-size: .82rem;
  line-height: 1.7;
}
.footer-legal a { color: var(--terra-deep); font-weight: 650; }

/* ---------- Sticky-Bottom-CTAs (nur mobil) ---------- */
.cta-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 253, 248, .96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.cta-bar .btn { min-height: 50px; font-size: 1.02rem; }
@media (min-width: 820px) { .cta-bar { display: none; } }

/* ---------- Versions-Umschalter ---------- */
.version-switch {
  position: fixed;
  right: 12px;
  bottom: calc(var(--ctabar-h) + env(safe-area-inset-bottom, 0px) + 12px);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px 5px 12px;
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(44, 33, 23, .14);
  font-size: .78rem;
  color: var(--ink-muted);
}
@media (min-width: 820px) { .version-switch { bottom: 14px; } }

.version-switch .vs-label { margin-right: 4px; font-weight: 600; }
.version-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 700;
  font-size: .85rem;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.version-switch a:hover { background: var(--terra-wash); color: var(--terra-deep); }
.version-switch a[aria-current="page"] {
  background: var(--terra);
  color: #fff;
  cursor: default;
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus-visible { top: 12px; }

/* ---------- Reveals (nur mit JS + erlaubter Motion) ---------- */
html.anim .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.anim .reveal.in { opacity: 1; transform: none; }
html.anim .reveal-d2 { transition-delay: .1s; }
html.anim .reveal-d3 { transition-delay: .2s; }

/* Druck/Export: nie versteckte Inhalte */
@media print {
  html.anim .reveal { opacity: 1 !important; transform: none !important; }
  .cta-bar, .version-switch, .skip-link { display: none !important; }
}

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