/* ==========================================================================
   Pizza Pause · Design-Vorschau V1 — „Das Banner, veredelt"
   Fast-Schwarz, dezenter Neon-Glow (Rot/Grün), Arkaden-Bogen als Leitmotiv.
   Keine externen Requests. System-Fontstacks.
   ========================================================================== */

:root {
  --bg:        #0e0b09;
  --panel:     #17120e;
  --panel-2:   #1c1611;
  --ink:       #f3ede4;
  --ink-mut:   #b8ad9f;
  --ink-dim:   #8f8577;
  --red:       #e63946;   /* Banner-Rot (Glow-Basis) */
  --red-lit:   #f2606b;   /* aufgehellte Lesefarbe */
  --red-fill:  #ef4655;   /* Button-Füllung */
  --green:     #3ddc84;   /* Banner-Grün */
  --green-dim: #2f9e5f;
  --line:      rgba(243, 237, 228, .13);
  --line-soft: rgba(243, 237, 228, .07);
  --arch-r:    999px 999px 18px 18px;
  --font-display: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

/* ---------- Reset & Grundton ---------- */

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

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

/* Sanftes Scrollen nur, wenn Bewegung erlaubt ist */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(1200px 600px at 15% -5%,  rgba(230, 57, 70, .05),  transparent 60%),
    radial-gradient(1100px 700px at 95% 100%, rgba(61, 220, 132, .04), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

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

.wrap {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ---------- Trikolore-Hairline ---------- */

.tricolore {
  height: 2px;
  max-width: min(420px, 60vw);
  margin-inline: auto;
  background: linear-gradient(90deg,
    var(--green-dim) 0 33.4%,
    #e8e3d8 33.4% 66.7%,
    #c9414d 66.7% 100%);
  opacity: .5;
  border-radius: 2px;
}

/* ---------- Typo-Bausteine ---------- */

.eyebrow {
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow-center { text-align: center; }

.section-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  line-height: 1.15;
  text-align: center;
  letter-spacing: .01em;
}

.section-lede {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-mut);
}

/* ---------- Bogen-Rahmen (Arkaden-Motiv) ---------- */

.arch {
  border-radius: var(--arch-r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 6px var(--line-soft),
    0 26px 60px rgba(0, 0, 0, .55);
  background: var(--panel);
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-hero     { aspect-ratio: 5 / 4; }
.arch-portrait { aspect-ratio: 3 / 4; }

figure { margin: 0; }

figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: .85rem;
  color: var(--ink-dim);
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: .02em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn .ico { flex: none; }

.btn-primary {
  background: var(--red-fill);
  color: #1c0a0e;
  box-shadow: 0 0 18px rgba(230, 57, 70, .22), 0 8px 24px rgba(0, 0, 0, .35);
}

.btn-ghost {
  border-color: rgba(61, 220, 132, .55);
  color: var(--green);
  background: rgba(61, 220, 132, .04);
}

.btn-big { min-height: 56px; padding-inline: 34px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cta-center { justify-content: center; }

/* ==========================================================================
   0 · KOPFZEILE — kompakte Neon-Wortmarke + Anker-Navigation
   ========================================================================== */

.kopf {
  position: sticky;
  top: 0;
  z-index: 55; /* über Inhalt & Mobilebar (50), unter dem Versions-Umschalter (60) */
  background: rgba(14, 11, 9, .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.kopf-zeile {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  min-height: 64px;
  padding-block: 6px;
}

.kopf-marke {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-height: 44px;
  padding-block: 10px;
  text-decoration: none;
}

.kopf-pizza {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--red-lit);
  text-shadow: 0 0 10px rgba(230, 57, 70, .3);
}

.kopf-pause {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: 0 0 10px rgba(61, 220, 132, .24);
}

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

/* --- Schilder: Grundgerüst (alle Breiten) --- */

.schild { text-decoration: none; }

.schild-flx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Anruf-Link: mobil als rote Pille, ab 820px als Neon-Schild */
.kopf-anruf {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--red-fill);
  color: #1c0a0e;
  font-weight: 650;
  font-size: .95rem;
  box-shadow: 0 0 18px rgba(230, 57, 70, .22);
}

/* 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(--line);
  border-radius: 12px;
  background: var(--panel);
  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); }

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

/* ---------- Desktop (ab 820px): Neon-Schilder-Look ---------- */

@media (min-width: 820px) {
  .kopf-nav .schild:nth-child(1) { --neon: #8ceab5; --glow: rgba(61, 220, 132, .3); }
  .kopf-nav .schild:nth-child(2) { --neon: #efe9d8; --glow: rgba(232, 227, 216, .26); }
  .kopf-nav .schild:nth-child(3) { --neon: #ff97a0; --glow: rgba(230, 57, 70, .32); }
  .kopf-anruf                    { --neon: #ff8f98; --glow: rgba(230, 57, 70, .4); }

  .schild-flx {
    min-height: 38px;
    padding: 7px 15px;
    border: 1px solid color-mix(in srgb, var(--neon) 42%, transparent);
    border-radius: 10px;
    background: rgba(23, 18, 14, .78);
    color: var(--neon);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .02em;
    filter:
      drop-shadow(0 7px 10px rgba(0, 0, 0, .35))
      drop-shadow(0 0 5px var(--glow));
  }

  .kopf-anruf {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
  }

  .kopf-anruf .schild-flx {
    background: rgba(30, 10, 13, .82);
    font-weight: 700;
  }
}

/* Die 3D-Bühne: nur bei feinem Zeiger (Maus/Trackpad) */
@media (min-width: 820px) and (pointer: fine) {
  .kopf-zeile { perspective: 900px; }
  .kopf-nav { transform-style: preserve-3d; }

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

  .kopf-nav .schild:nth-child(1) { --tz: 10px; --pf: 3; --rf: 1.6; }
  .kopf-nav .schild:nth-child(2) { --tz: 4px;  --pf: 5; --rf: 2.2; }
  .kopf-nav .schild:nth-child(3) { --tz: 15px; --pf: 7; --rf: 2.8; }
  .kopf-anruf                    { --tz: 22px; --pf: 9; --rf: 3.4; }

  /* Aufhängung: zwei feine Kordeln über jedem Schild */
  .kopf-nav .schild::before,
  .kopf-anruf::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 30px;
    height: 7px;
    transform: translateX(-50%);
    background: linear-gradient(90deg,
      transparent 0 5px,   var(--line) 5px 6px,
      transparent 6px 24px, var(--line) 24px 25px,
      transparent 25px);
  }

  .schild-flx { transform-origin: 50% -12px; }

  /* Aufpendeln beim Hover — der Glow verstärkt sich */
  .schild:hover .schild-flx,
  .schild:focus-visible .schild-flx {
    transform: rotateX(-11deg) rotateZ(1.5deg);
    filter:
      drop-shadow(0 9px 14px rgba(0, 0, 0, .42))
      drop-shadow(0 0 9px var(--glow))
      drop-shadow(0 0 22px var(--glow));
  }
}

@media (min-width: 820px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .kopf-nav .schild,
  .kopf-anruf { transition: transform .35s ease-out; }

  .schild-flx {
    transition:
      transform .55s cubic-bezier(.32, 1.75, .45, .9),
      filter .3s ease;
  }

  /* das rote Anruf-Schild pulst dezent */
  .kopf-anruf .schild-flx { animation: anruf-puls 2.8s ease-in-out infinite; }
  .kopf-anruf:hover .schild-flx,
  .kopf-anruf:focus-visible .schild-flx { animation: none; }
}

@keyframes anruf-puls {
  0%, 100% {
    filter:
      drop-shadow(0 7px 10px rgba(0, 0, 0, .35))
      drop-shadow(0 0 5px rgba(230, 57, 70, .4));
  }
  50% {
    filter:
      drop-shadow(0 7px 10px rgba(0, 0, 0, .35))
      drop-shadow(0 0 15px rgba(230, 57, 70, .75));
  }
}

/* ---------- Mobil (<820px): Burger + Vollbild-Menü in 3D ---------- */

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

.mnav {
  position: fixed;
  inset: 0;
  z-index: 54; /* unter der Kopfzeile (55): der Burger bleibt als X bedienbar */
  display: flex;
  flex-direction: column;
  padding: 88px clamp(20px, 6vw, 32px) 36px;
  overflow-y: auto;
  background:
    radial-gradient(560px 380px at 12% 8%,  rgba(230, 57, 70, .09),  transparent 65%),
    radial-gradient(620px 420px at 90% 96%, rgba(61, 220, 132, .08), transparent 65%),
    var(--bg);
  opacity: 0;
}

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

html.menue-offen { overflow: hidden; }

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

.mnav-link {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 8vw, 2.2rem);
  text-decoration: none;
  color: var(--neon, var(--ink));
  text-shadow: 0 0 16px var(--glow, transparent);
}

.mnav-link:nth-child(1) { --neon: #7fe8ac; --glow: rgba(61, 220, 132, .3); }
.mnav-link:nth-child(2) { --neon: #f0ead9; --glow: rgba(232, 227, 216, .22); }
.mnav-link:nth-child(3) { --neon: #ff97a0; --glow: rgba(230, 57, 70, .32); }

.mnav-anruf {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border-radius: 999px;
  background: var(--red-fill);
  color: #1c0a0e;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 0 26px rgba(230, 57, 70, .3), 0 10px 26px rgba(0, 0, 0, .4);
}

.mnav-route {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(61, 220, 132, .55);
  background: rgba(61, 220, 132, .05);
  color: var(--green);
  font-size: .95rem;
  font-weight: 600;
  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 cubic-bezier(.22, .61, .21, 1), 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 ease, opacity .2s ease; }
}

/* Reduced Motion: Menü als schlichtes Fade, nichts pendelt */
@media (prefers-reduced-motion: reduce) {
  .mnav { transition: opacity .18s linear; }
}

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

/* Tablet quer (Touch, ≥820px): Schilder auf volle Tap-Höhe */
@media (min-width: 820px) and (pointer: coarse) {
  .schild-flx { min-height: 44px; }
}

/* ==========================================================================
   1 · HERO
   ========================================================================== */

.hero { padding-block: clamp(56px, 9vw, 110px) clamp(64px, 9vw, 110px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.hero-copy .eyebrow { color: var(--ink-dim); }

/* Wortmarke — die dezentere Version des Banners */
.mark {
  margin: 0 0 10px;
  line-height: .95;
}

.mark-pizza {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 5.8rem);
  color: var(--red-lit);
  text-shadow:
    0 0 14px rgba(230, 57, 70, .32),
    0 0 46px rgba(230, 57, 70, .15);
}

.mark-pause {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  letter-spacing: .3em;
  text-indent: .3em; /* optischer Ausgleich fürs Letterspacing */
  text-transform: uppercase;
  color: var(--green);
  text-shadow:
    0 0 14px rgba(61, 220, 132, .26),
    0 0 46px rgba(61, 220, 132, .12);
}

.hero-sub {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--ink-mut);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-size: .95rem;
  color: var(--ink);
}

.rating-badge strong { font-size: 1.05rem; }

/* ==========================================================================
   2 · BAND „Pizza · Pasta · Salate"
   ========================================================================== */

.band {
  padding-block: clamp(56px, 8vw, 96px);
  text-align: center;
}

.band-line {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: .02em;
}

.dot { padding-inline: .18em; }
.dot-red   { color: var(--red-lit); text-shadow: 0 0 12px rgba(230, 57, 70, .35); }
.dot-green { color: var(--green);   text-shadow: 0 0 12px rgba(61, 220, 132, .3); }

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.badges li {
  padding: 9px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem;
  color: var(--ink-mut);
  background: var(--panel);
}

/* ==========================================================================
   3 · FOOD-DUO
   ========================================================================== */

.food { padding-block: clamp(72px, 10vw, 120px); }

.food-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 780px;
  margin: clamp(40px, 6vw, 64px) auto 0;
}

/* ==========================================================================
   4 · MENÜ-TEASER — drei Bogen-Tafeln wie die Leuchttafeln im Laden
   ========================================================================== */

.menu { padding-block: clamp(72px, 10vw, 120px); }

.menu-boards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.5vw, 36px);
  margin-top: clamp(40px, 6vw, 64px);
}

.board {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--arch-r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 70%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 0 0 6px var(--line-soft),
    0 20px 50px rgba(0, 0, 0, .45);
  padding: clamp(48px, 7vw, 72px) clamp(22px, 3vw, 32px) clamp(28px, 4vw, 36px);
}

.board-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: .04em;
}

.board-tricolore {
  height: 2px;
  width: 64px;
  margin: 14px 0 22px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    var(--green-dim) 0 33.4%,
    #e8e3d8 33.4% 66.7%,
    #c9414d 66.7% 100%);
  opacity: .6;
}

.board-rows {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-rows li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 12px;
}

.board-rows li + li { border-top: 1px solid var(--line-soft); }

/* edle Platzhalter-Zeilen — bewusst gestaltet, keine Baustelle */
.ph {
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243, 237, 228, .22), rgba(243, 237, 228, .08));
  flex: none;
}

.ph-44 { width: 44%; }
.ph-48 { width: 48%; }
.ph-52 { width: 52%; }
.ph-56 { width: 56%; }
.ph-60 { width: 60%; }
.ph-64 { width: 64%; }
.ph-68 { width: 68%; }
.ph-72 { width: 72%; }

.leader {
  flex: 1;
  border-bottom: 2px dotted rgba(243, 237, 228, .18);
  transform: translateY(3px);
}

.ph-price {
  flex: none;
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--ink-dim);
}

/* ==========================================================================
   5 · ÖFFNUNGSZEITEN & ANFAHRT
   ========================================================================== */

.visit { padding-block: clamp(72px, 10vw, 120px); }

.visit-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.5vw, 36px);
  align-items: stretch;
  margin-top: clamp(40px, 6vw, 64px);
}

.visit-trio figure {
  display: flex;
  flex-direction: column;
}

.visit-trio .arch { flex: 1; }

.hours-board { justify-content: center; }

.hours {
  border-collapse: collapse;
  font-size: 1.05rem;
}

.hours th {
  text-align: left;
  font-weight: 650;
  color: var(--ink-mut);
  padding: 8px 18px 8px 0;
  white-space: nowrap;
}

.hours td {
  padding: 8px 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hours-note {
  margin: 18px 0 0;
  font-size: .78rem;
  color: var(--ink-dim);
}

.address {
  margin-top: clamp(44px, 6vw, 64px);
  text-align: center;
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--ink-mut);
}

.address strong { color: var(--ink); }

.tel-link {
  color: var(--green);
  text-decoration-color: rgba(61, 220, 132, .4);
  text-underline-offset: 4px;
}

.visit .cta-row { margin-top: 30px; }

/* ==========================================================================
   6 · FOOTER
   ========================================================================== */

.footer { padding-block: clamp(40px, 6vw, 56px) 120px; }

.footer .tricolore { margin-bottom: clamp(32px, 5vw, 44px); }

.footer-inner { text-align: center; }

.footer-main {
  margin: 0;
  font-size: .95rem;
  color: var(--ink-mut);
}

.footer-main a {
  color: var(--ink);
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.footer-small {
  margin: 10px 0 0;
  font-size: .78rem;
  color: var(--ink-dim);
}

/* ==========================================================================
   Mobile Sticky-Leiste (nur mobil)
   ========================================================================== */

.mobilebar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(14, 11, 9, .93);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

.mobilebar .btn { min-height: 48px; padding-inline: 14px; }

/* ==========================================================================
   Versions-Umschalter (Preview-Werkzeug)
   ========================================================================== */

.vswitch {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 11, 9, .72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: .76rem;
  color: var(--ink-dim);
}

.vswitch-label { margin-right: 4px; }

.vswitch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-mut);
}

.vswitch a[aria-current="page"] {
  background: rgba(243, 237, 228, .16);
  color: var(--ink);
  font-weight: 700;
}

/* ==========================================================================
   Motion — nur bei erlaubter Bewegung; Glow bleibt immer statisch
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease; }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 24px rgba(230, 57, 70, .3), 0 10px 28px rgba(0, 0, 0, .4); }
  .btn-ghost:hover   { background: rgba(61, 220, 132, .1); border-color: rgba(61, 220, 132, .8); }
  .arch img { transition: transform .6s ease; }
  figure:hover .arch img { transform: scale(1.025); }
  .vswitch a { transition: background-color .15s ease, color .15s ease; }
  .vswitch a:hover { background: rgba(243, 237, 228, .1); color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-ghost:hover { background: rgba(61, 220, 132, .1); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .menu-boards,
  .visit-trio { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .hours-board { padding-block: 56px 40px; }
}

@media (max-width: 760px) {
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; margin-inline: auto; width: 100%; }
  .arch-hero { aspect-ratio: 4 / 4.4; }
  .cta-row:not(.cta-center) { justify-content: flex-start; }
}

@media (max-width: 719.98px) {
  body { padding-bottom: 78px; }
  .mobilebar { display: grid; }
  .footer { padding-bottom: 56px; }
  .vswitch { bottom: calc(82px + env(safe-area-inset-bottom)); }
}

@media (max-width: 560px) {
  .food-duo { grid-template-columns: 1fr; max-width: 400px; }
  .cta-row .btn { flex: 1 1 auto; }
}
