/* ============================================================
   FALFOOL RESTAURANT · Design-Vorschau V4 „CRAZY EDITION"
   Mobile-first · Dark-Stage · Schild-Grün + Sesam-Gold
   Motion-Signatur: weiches Aufsteigen + Sesam-Schimmer
   (nur transform / opacity / filter animiert)
   ============================================================ */

:root {
  --lime: #7ac41f;            /* Schild-Grün (Markise/Leuchtbuchstaben) */
  --lime-soft: #9ad84c;
  --lime-deep: #4c8f14;
  --gold: #e9c86b;            /* Sesam / Falafel-Maskottchen */
  --creme: #f7f3e9;
  --creme-dim: rgba(247, 243, 233, 0.72);
  --tinte: #0c0f08;           /* Bühnen-Schwarz mit Grünstich */
  --tinte-2: #111507;
  --glas: rgba(16, 20, 11, 0.55);
  --line: rgba(247, 243, 233, 0.16);
  --licht: rgba(247, 243, 233, 0.32);  /* Lichtkante oben */
  --radius: 18px;
  --topbar-h: 62px;
  --font: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--tinte);
  color: var(--creme);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

[id] { scroll-margin-top: calc(var(--topbar-h) + 26px); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px; left: 14px;
  z-index: 300;
  padding: 12px 18px;
  background: var(--lime);
  color: #101405;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus-visible { top: 14px; }

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

.container {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}

/* ---------- Glass-Grundstoff (backdrop-blur + Lichtkante) ---------- */
.glass {
  background: var(--glas);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  backdrop-filter: blur(16px) saturate(1.35);
  border: 1px solid var(--line);
  border-top-color: var(--licht);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

/* ---------- Buttons (Tap ≥ 44px) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 700 1rem/1.2 var(--font);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.btn:active { transform: scale(0.97); }
.btn .ico { width: 20px; height: 20px; flex: none; }

.btn-lime {
  background: linear-gradient(180deg, var(--lime-soft), var(--lime-deep));
  color: #0d1105;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 28px rgba(122, 196, 31, 0.34);
}
.btn-lime:hover { filter: brightness(1.07); }

.btn-ghost {
  background: rgba(247, 243, 233, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  border-top-color: var(--licht);
  color: var(--creme);
}
.btn-ghost:hover { background: rgba(247, 243, 233, 0.12); }

.btn-xl { min-height: 56px; padding: 14px 28px; font-size: 1.06rem; }

/* Dezenter Puls (nur Ring: transform + opacity) */
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid var(--lime);
  opacity: 0;
  pointer-events: none;
  animation: pulse-ring 2.8s ease-out infinite 1.6s;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.96); opacity: 0.65; }
  55%  { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}

/* Sesam-Funken-Burst (JS setzt --tx/--ty/--rz je Korn) */
.burst {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 0; height: 0;
  pointer-events: none;
  z-index: 5;
}
.burst i {
  position: absolute;
  left: -3px; top: -4px;
  width: 7px; height: 9px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--gold);
  opacity: 0;
  animation: sesam-fly 0.6s cubic-bezier(0.16, 0.7, 0.4, 1) forwards;
}
.burst i:nth-child(3n) { background: var(--lime-soft); }
.burst i:nth-child(4n) { width: 5px; height: 5px; border-radius: 50%; }
@keyframes sesam-fly {
  0%   { transform: translate(0, 0) rotate(0) scale(0.6); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--rz)) scale(1); opacity: 0; }
}

/* ============================================================
   Loader-Moment (reines CSS, klickt nie — pointer-events none)
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--tinte);
  pointer-events: none;
  animation: loader-out 0.5s ease 1s forwards;
}
.loader-mark { text-align: center; animation: rise-soft 0.65s cubic-bezier(0.2, 0.85, 0.3, 1.05) both; }
.loader-mark strong {
  display: block;
  font-size: clamp(2.4rem, 11vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--lime);
}
.loader-mark span {
  display: block;
  margin-top: 2px;
  font-size: clamp(1.2rem, 5vw, 1.7rem);
  color: var(--gold);
}
@keyframes loader-out { to { opacity: 0; visibility: hidden; } }
@keyframes rise-soft {
  from { transform: translateY(26px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

/* ============================================================
   Glass-Topbar
   ============================================================ */
.topbar {
  position: fixed;
  top: 10px; left: 10px; right: 10px;
  z-index: 120;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 0 16px;
  border-radius: 16px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  margin-right: auto;
  min-height: 44px;
  align-items: center;
}
.brand strong {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--lime);
}
.brand .brand-ar {
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
}
.header-nav { display: none; } /* mobil uebernimmt das Vollbild-Menue */
.topbar-call {
  min-height: 44px;
  padding: 8px 16px;
  font-size: 0.92rem;
}
.burger {
  width: 46px; height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(247, 243, 233, 0.07);
  border: 1px solid var(--line);
  border-top-color: var(--licht);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--creme);
  border-radius: 2px;
  margin: 2.5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Fullscreen-3D-Menü (gestaffeltes rotateY-Einschwenken)
   ============================================================ */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 12, 6, 0.82);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  backdrop-filter: blur(22px) saturate(1.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.mnav.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease;
}
.mnav-panel {
  perspective: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 24px;
  width: min(100%, 460px);
}
.mnav-link {
  display: inline-block;
  padding: 10px 4px;
  min-height: 44px;
  font-size: clamp(2rem, 8.5vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--creme);
  text-decoration: none;
  transform: rotateY(-38deg) translateX(-36px);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.25, 1.1), opacity 0.4s ease, color 0.25s ease;
  transition-delay: 0s;
}
.mnav-link:hover { color: var(--lime); }
.mnav.open .mnav-link { transform: none; opacity: 1; }
.mnav.open .mnav-link:nth-child(1) { transition-delay: 0.08s; }
.mnav.open .mnav-link:nth-child(2) { transition-delay: 0.16s; }
.mnav.open .mnav-link:nth-child(3) { transition-delay: 0.24s; }
.mnav-cta {
  margin-top: 22px;
  width: 100%;
  transform: rotateY(-30deg) translateX(-30px);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.25, 1.1), opacity 0.4s ease;
}
.mnav.open .mnav-cta { transform: none; opacity: 1; transition-delay: 0.32s; }
.mnav-route {
  margin-top: 10px;
  width: 100%;
  transform: rotateY(-30deg) translateX(-30px);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.25, 1.1), opacity 0.4s ease;
}
.mnav.open .mnav-route { transform: none; opacity: 1; transition-delay: 0.4s; }
.mnav-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: rgba(247, 243, 233, 0.08);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--creme);
  cursor: pointer;
}
.mnav-close svg { width: 22px; height: 22px; }
body.menu-open { overflow: hidden; }

/* ============================================================
   Hero — Appetit + Moment (Tageszeit über html[data-zeit])
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 3, 0.78) 0%,
    rgba(6, 8, 3, 0.3) 30%,
    rgba(6, 8, 3, 0.12) 52%,
    rgba(6, 8, 3, 0.68) 76%,
    rgba(6, 8, 3, 0.94) 100%
  );
}
/* Moment-Glühen: früh = Sesam-Gold-Morgen, abend = Schild-Grün-Neon */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 60% at 50% 100%, rgba(122, 196, 31, 0.24), transparent 62%);
}
html[data-zeit="frueh"] .hero-glow {
  background: radial-gradient(120% 60% at 50% 0%, rgba(233, 200, 107, 0.26), transparent 60%);
}

.hero-inner {
  position: relative;
  width: min(100% - 40px, 1120px);
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--topbar-h) + 20px);
  padding-bottom: clamp(72px, 12vh, 120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
}

/* Glass-Overlay-Chips oben im Bild */
.hero-chips {
  position: absolute;
  top: calc(var(--topbar-h) + 26px);
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.chip .ico { width: 15px; height: 15px; color: var(--gold); }
.chip strong { font-weight: 800; }

/* Moment-Chip (variiert mit Tageszeit) */
.moment-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--creme);
}
.moment-chip::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}
html[data-zeit="frueh"] .moment-chip::before { background: var(--gold); box-shadow: 0 0 10px var(--gold); }

/* Tageszeit-Weiche: Markup-Default ist „abend" (statisch ohne JS).
   DREI Zustaende seit dem Persona-Gate 23.08. („Feierabend" stand mittags am
   Hero — exakt zum 15-Uhr-Kundentermin). */
.zeit-frueh, .zeit-mittag { display: none; }
html[data-zeit="frueh"] .zeit-frueh { display: block; }
html[data-zeit="frueh"] .zeit-abend, html[data-zeit="frueh"] .zeit-mittag { display: none; }
html[data-zeit="frueh"] .moment-chip.zeit-frueh { display: inline-flex; }
html[data-zeit="mittag"] .zeit-mittag { display: block; }
html[data-zeit="mittag"] .zeit-abend, html[data-zeit="mittag"] .zeit-frueh { display: none; }
html[data-zeit="mittag"] .moment-chip.zeit-mittag { display: inline-flex; }
html[data-zeit="mittag"] .moment-chip::before { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
/* Die CTA-Zusaetze sind Inline-Text im Anruf-Button, keine Bloecke. */
.cta-zeit { display: none; }
html[data-zeit="frueh"] .cta-zeit.zeit-frueh,
html[data-zeit="mittag"] .cta-zeit.zeit-mittag,
html[data-zeit="abend"] .cta-zeit.zeit-abend { display: inline; }
.cta-zeit::before { content: '\2014\00A0'; } /* "— " nur auf breiten Screens */
/* Schmale Screens: Zeit-Zusatz als eigene Zeile unter "Jetzt anrufen" statt gequetschtem Zweispalter */
@media (max-width: 480px) {
  .hero-cta-wrap .btn-xl { flex-wrap: wrap; row-gap: 0; padding-block: 11px; }
  .hero-cta-wrap .btn-xl .cta-zeit { flex-basis: 100%; font-size: 0.82rem; font-weight: 600; opacity: 0.85; text-align: center; line-height: 1.1; }
  .hero-cta-wrap .btn-xl .cta-zeit::before { content: ''; }
}

/* Sticky-Anruf-Leiste unten (Persona-Gate: Daumenzone — v1–v3 haben sie alle) */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.6rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(16, 13, 9, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(122, 196, 31, 0.35);
}
.mobile-cta .btn { min-height: 50px; }
@media (min-width: 820px) {
  .mobile-cta { display: none; }
  /* Desktop-Navigationsleiste: Inline-Links statt Burger (Muster wie Pizza-V4) */
  .burger { display: none; }
  .header-nav { display: flex; gap: 4px; margin-right: 6px; }
  .header-nav a {
    display: inline-flex; align-items: center;
    min-height: 44px;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700; font-size: 0.95rem;
    color: var(--creme);
    transition: background 0.25s ease, color 0.25s ease;
  }
  .header-nav a:hover, .header-nav a:focus-visible {
    background: rgba(247, 243, 233, 0.1);
    color: var(--lime);
  }
}
@media (max-width: 819.98px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  /* Umschalter ueber die Leiste heben, damit er keinen Inhalt/Buttons verdeckt */
  .version-switch { bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important; }
}

/* Kinetische Headline — Wörter steigen gestaffelt (Signatur) */
.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 12vw, 5.4rem);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 12ch;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}
.hero h1 em {
  font-style: italic;
  color: var(--lime);
  text-shadow: 0 0 34px rgba(122, 196, 31, 0.5);
}
.kw {
  display: inline-block;
  animation: rise-soft 0.65s cubic-bezier(0.2, 0.85, 0.3, 1.06) both;
  animation-delay: calc(1.05s + var(--i, 0) * 0.09s);
}

.hero-sub {
  margin: 0;
  max-width: 44ch;
  color: var(--creme-dim);
  font-size: 1.02rem;
  animation: rise-soft 0.6s ease both;
  animation-delay: 1.5s;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  animation: rise-soft 0.6s ease both;
  animation-delay: 1.62s;
}
.hero-address {
  margin: 0;
  font-size: 0.85rem;
  color: var(--creme-dim);
}

/* Scroll-Cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: var(--creme-dim);
  animation: cue-bob 2.2s ease-in-out infinite 2s;
}
.scroll-cue svg { width: 22px; height: 22px; }
@keyframes cue-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   Marquee-Band (Sortiment lt. Markise)
   ============================================================ */
.marquee {
  overflow: hidden;
  background: linear-gradient(180deg, var(--lime-soft), var(--lime));
  color: #0d1105;
  transform: rotate(-1.4deg) scale(1.03);
  border-block: 1px solid rgba(13, 17, 5, 0.35);
  margin-block: -8px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-run 26s linear infinite;
}
.marquee-seq {
  flex: none;
  white-space: nowrap;
  padding: 12px 0;
  font-size: clamp(1.05rem, 4.2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
}
.marquee-seq b { font-weight: 900; }
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Sektionen — Grundgerüst
   ============================================================ */
.section { padding: 84px 0 72px; position: relative; }
.section-alt { background: var(--tinte-2); }
.eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}
.section h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section-sub {
  margin: 0 0 34px;
  color: var(--creme-dim);
  max-width: 52ch;
}

/* Scroll-Reveals (nur mit JS + Motion o.k.) */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   3D-Food-Bühne (#sortiment)
   ============================================================ */
.stage-wrap { position: relative; }
.stage {
  position: relative;
  height: 560px;
  perspective: 1150px;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
}
.stage:active { cursor: grabbing; }
.ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.ring.is-dragging { transition: none; }

.card3d {
  position: absolute;
  left: 50%;
  top: 26px;
  width: min(76vw, 330px);
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(16, 20, 11, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(122, 196, 31, 0.4);
  border-top-color: rgba(200, 235, 150, 0.55);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.26, 1), opacity 0.45s ease;
  backface-visibility: hidden;
}
.card3d img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  -webkit-user-drag: none;
}
.card3d figcaption { padding: 14px 16px 16px; }
.card3d h3 {
  margin: 0 0 3px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.card3d p { margin: 0; font-size: 0.86rem; color: var(--creme-dim); }

/* Foto-Fokus je Karte */
.crop-wrap    { object-position: 50% 60%; }
.crop-zatar   { object-position: 0% 80%; }
.crop-kaese   { object-position: 80% 50%; }
.crop-theke   { object-position: 50% 4%; }

/* Stapel-Positionen (JS rotiert data-pos; Markup-Default steht) */
.card3d[data-pos="0"] {
  transform: translateX(-50%) translateZ(70px);
  opacity: 1;
  z-index: 4;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 44px rgba(122, 196, 31, 0.22);
}
.card3d[data-pos="1"] {
  transform: translateX(calc(-50% + 58%)) translateZ(-150px) rotateY(-30deg);
  opacity: 0.72;
  z-index: 3;
}
.card3d[data-pos="-1"] {
  transform: translateX(calc(-50% - 58%)) translateZ(-150px) rotateY(30deg);
  opacity: 0.72;
  z-index: 3;
}
.card3d[data-pos="2"],
.card3d[data-pos="-2"] {
  transform: translateX(-50%) translateZ(-300px);
  opacity: 0.16;
  z-index: 1;
}

/* Schwebender Freisteller (Zatar-Käse-Manakisch) */
.floater {
  position: absolute;
  right: 4%;
  top: -30px;
  width: clamp(96px, 26vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 6;
  pointer-events: none;
  border: 1px solid rgba(200, 235, 150, 0.5);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 36px rgba(122, 196, 31, 0.3);
  animation: float-spin 9s ease-in-out infinite;
}
.floater img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  transform: scale(1.14);
}
@keyframes float-spin {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-13px) rotate(6deg); }
}

/* Punkt-Navigation (Tap-Fläche 44px) */
.dots {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 4px;
}
.dots button {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.dots button i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(247, 243, 233, 0.32);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.dots button[aria-current="true"] i {
  background: var(--lime);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(122, 196, 31, 0.7);
}

/* Markisen-Zeile + Karten-Hinweis */
.markise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.markise-row .chip { font-weight: 700; font-size: 0.82rem; }
.menu-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 18px 20px;
}
.menu-note .ico { width: 26px; height: 26px; flex: none; color: var(--gold); }
.menu-note-title { margin: 0 0 3px; font-weight: 800; }
.menu-note p { margin: 0; font-size: 0.9rem; color: var(--creme-dim); }

/* ============================================================
   Moment-Band (typografisch): Frühstück · Mittag · Feierabend
   ============================================================ */
.momente { padding: 90px 0; background: var(--tinte-2); overflow: hidden; }
.moment-row { padding: 10px 0; }
.moment-row + .moment-row { border-top: 1px solid rgba(247, 243, 233, 0.08); }
.moment-word {
  display: block;
  font-size: clamp(3rem, 14vw, 7rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.moment-row:nth-child(2) .moment-word { color: var(--creme); }
.moment-row:nth-child(3) .moment-word {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  paint-order: stroke;
}
@supports not (-webkit-text-stroke: 2px var(--gold)) {
  .moment-row:nth-child(3) .moment-word { color: var(--gold); }
}
.moment-row:nth-child(4) .moment-word { color: var(--lime); text-shadow: 0 0 44px rgba(122, 196, 31, 0.35); }
.moment-fact {
  margin: 4px 0 14px;
  font-size: 0.98rem;
  color: var(--creme-dim);
}

/* ============================================================
   Zeiten & Kontakt
   ============================================================ */
.attr-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 30px;
}
.attr-row .chip .ico { color: var(--lime); }

.visit-grid {
  display: grid;
  gap: 22px;
}

.hours-card { padding: 24px 22px; }
.hours-card h3, .find-body h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-card h3 .ico { width: 22px; height: 22px; color: var(--lime); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 9px 4px;
  border-bottom: 1px solid rgba(247, 243, 233, 0.09);
  font-weight: 500;
}
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; color: var(--creme-dim); }
.hours-table tr.today th, .hours-table tr.today td { color: var(--lime); font-weight: 800; }
.today-chip {
  display: inline-block;
  margin-left: 9px;
  padding: 2px 9px;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 999px;
  background: var(--lime);
  color: #0d1105;
  vertical-align: 2px;
}
.hours-source {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: rgba(247, 243, 233, 0.5);
}
.hours-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(122, 196, 31, 0.12);
  border: 1px solid rgba(122, 196, 31, 0.35);
  font-size: 0.88rem;
  font-weight: 600;
}

.find-card { overflow: hidden; }
.find-photo { margin: 0; }
.find-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.find-body { padding: 22px; }
.find-body address {
  font-style: normal;
  color: var(--creme-dim);
  margin-bottom: 18px;
  line-height: 1.6;
}
.find-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(247, 243, 233, 0.1);
  padding: 44px 0 96px;
  background: #090c05;
}
.footer-grid { display: grid; gap: 18px; }
.footer-brand {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--lime);
}
.footer-brand span { color: var(--gold); font-size: 1.05rem; margin-left: 8px; font-weight: 600; }
.footer-tag { margin: 4px 0 0; font-size: 0.88rem; color: var(--creme-dim); }
.footer-address { font-style: normal; font-size: 0.92rem; color: var(--creme-dim); line-height: 1.7; }
.footer-address a { color: var(--creme); font-weight: 700; text-decoration: none; }
.footer-address a:hover { color: var(--lime); }
.footer-hours { margin: 0; font-size: 0.92rem; color: var(--creme-dim); }
.footer-note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 243, 233, 0.08);
  font-size: 0.8rem;
  color: rgba(247, 243, 233, 0.55);
}
.footer-note p { margin: 0; }
.footer-note a { color: var(--creme-dim); }

/* ============================================================
   Versions-Umschalter (nur Vorschau)
   ============================================================ */
.version-switch {
  position: fixed;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 2px 4px 2px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}
.version-label { color: var(--creme-dim); font-weight: 600; margin-right: 4px; }
.version-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 800;
  color: var(--creme-dim);
}
.version-switch a:hover { color: var(--lime); }
.version-switch a.active { color: #0d1105; background: var(--lime); }

/* ============================================================
   Desktop
   ============================================================ */
@media (max-width: 899.98px) {
  /* Mobil-Crop: Fokus auf die Falafel-Wraps statt Zange/Theke */
  .hero-bg { object-position: 40% 66%; }
}

@media (min-width: 900px) {
  .topbar { left: 50%; right: auto; transform: translateX(-50%); width: min(100vw - 40px, 1120px); }
  .hero-inner { padding-bottom: 110px; }
  .hero-sub { font-size: 1.12rem; }
  .stage { height: 640px; }
  .card3d { width: 380px; top: 30px; }
  .card3d[data-pos="1"]  { transform: translateX(calc(-50% + 78%)) translateZ(-170px) rotateY(-32deg); }
  .card3d[data-pos="-1"] { transform: translateX(calc(-50% - 78%)) translateZ(-170px) rotateY(32deg); }
  .floater { right: 12%; top: -8px; }
  .visit-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; align-items: start; }
  .site-footer { padding-bottom: 44px; }
  .momente .container { display: grid; gap: 4px; }
}

/* ============================================================
   Reduced Motion — statisch / nur Fades
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader { display: none; }
  .kw, .hero-sub, .hero-cta-wrap, .loader-mark, .scroll-cue { animation: none; }
  .btn-pulse::after { animation: none; opacity: 0; }
  .marquee-track { animation-play-state: paused; }
  .floater { animation: none; }
  .burst { display: none; }
  .card3d, .ring, .mnav, .mnav-link, .mnav-cta, .mnav-route, .btn, .dots button i {
    transition-duration: 0.01s;
  }
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}
