/* =====================================================================
   FALAFEL RIDA — Welt "Habibi Disco 77"
   70s Levante-Disco / Vintage-Orient. Senf, Petrol, Braun, Creme.
   Vanilla CSS, self-hosted fonts, CSS-only patterns. WCAG-AA geprüft.
   ===================================================================== */

/* ---------- Fonts (self-hosted, DSGVO) ---------- */
@font-face {
  font-family: "Lilita One";
  src: url("../fonts/lilita-one.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bagel Fat One";
  src: url("../fonts/bagel-fat-one.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-var.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Markenfarben */
  --mustard: #E3A21A;
  --mustard-deep: #C9870C;
  --petrol: #1B7A6E;          /* Marken-Petrol – nur als Fläche / großer Text (kontrastet mit Creme 4.22) */
  --petrol-ui: #176B61;       /* Petrol-Fläche HINTER Creme-Text (Buttons/Tags/Pills) – Creme 5.17 / Weiß 6.34 */
  --petrol-deep: #145C53;     /* sicherer Petrol-Hintergrund für Creme-Text (6.38) */
  --petrol-text: #15665C;     /* Petrol als Textfarbe auf Creme (5.55) */
  --brown: #6B3F2A;
  --brown-deep: #5A3320;
  --cream: #F3E7CE;
  --cream-card: #F8F0DE;
  --cream-soft: #EDDFC0;
  --ink: #2A1A12;             /* fast-schwarzes warmes Braun – Haupt-Textfarbe */
  --ink-soft: #4A3526;
  --night: #221610;           /* tiefer Hintergrund für laute Sektionen */
  --paprika: #C2452D;         /* Akzent (Logo-Band) – NUR große dekorative Flächen, NIE als Text auf Senf */
  --paprika-deep: #9E2F1B;    /* Paprika für Text/große Schrift: auf Senf 3.29 (AA large), auf Creme 5.96 */

  /* Typo */
  --f-display: "Lilita One", "Arial Black", system-ui, sans-serif;
  --f-fat: "Bagel Fat One", "Lilita One", system-ui, sans-serif;
  --f-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Maße */
  --maxw: 1180px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --radius: 22px;
  --radius-lg: 38px;
  --arc: 60% 60% 0 0 / 22% 22% 0 0;

  --shadow-soft: 0 14px 38px -18px rgba(34, 22, 16, .45);
  --shadow-pop: 0 10px 0 0 var(--ink);
  --ring: 0 0 0 3px var(--cream), 0 0 0 6px var(--mustard);

  /* Einheitlich-warmer Foodfoto-Filter — leicht waermen, NIE im Farbton kippen */
  --food-warm: saturate(1.06) contrast(1.03) sepia(.08);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(1rem, .96rem + .25vw, 1.12rem);
  line-height: 1.62;
  color: var(--ink);
  background-color: var(--cream);
  /* Zellij-Mosaik-Grundmuster: zwei conic-Sterne + feines Karo, sehr dezent */
  background-image:
    repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(27,122,110,.045) 0deg 15deg, transparent 15deg 30deg),
    radial-gradient(circle at 12% 18%, rgba(227,162,26,.10) 0 12%, transparent 12.5%),
    radial-gradient(circle at 88% 72%, rgba(27,122,110,.08) 0 12%, transparent 12.5%);
  background-size: 46px 46px, 320px 320px, 360px 360px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--petrol-text); }
a:hover { color: var(--brown-deep); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: .005em;
  margin: 0;
  color: var(--ink);
}

/* ---------- A11y helpers ---------- */
.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--ink); color: var(--cream); padding: .7rem 1.2rem;
  border-radius: 0 0 14px 14px; z-index: 200; font-weight: 700; text-decoration: none;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* Hintergrundunabhaengiger, zweifarbiger Fokus-Ring (innen ink, aussen creme):
   erreicht WCAG 1.4.11/2.4.11 >=3:1 gegen ALLE Sektions-/Button-Flaechen
   (petrol-deep 6.38, mustard 7.53, night 14.39, cream 13.65, brown 7.23, paprika 5.96). */
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--ink);
  border-radius: 8px;
}
/* Fallback fuer Engines ohne :focus-visible */
@supports not selector(:focus-visible) {
  a:focus, button:focus, [tabindex]:focus {
    outline: 3px solid var(--ink);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--ink);
    border-radius: 8px;
  }
}
.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;
}

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(3.4rem, 8vw, 6.5rem); }
.eyebrow {
  font-family: var(--f-display);
  font-size: clamp(.82rem, .76rem + .3vw, 1rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--petrol-text);
  display: inline-flex; align-items: center; gap: .55rem;
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 12px; border-radius: 12px;
  background: repeating-linear-gradient(90deg, var(--mustard) 0 6px, var(--petrol) 6px 12px);
}

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  /* dünnes Vinyl-Band oben */
  box-shadow: 0 3px 0 0 var(--mustard), 0 6px 0 0 var(--petrol);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .6rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand__disc {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background:
    repeating-radial-gradient(circle at 50% 50%, var(--ink) 0 2px, #3a2517 2px 4px) center / cover;
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 6px rgba(243,231,206,.0);
}
.brand__disc::after {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: var(--paprika); border: 2px solid var(--cream);
}
.brand__logo { width: 44px; height: 44px; border-radius: 50%; flex: none; display: block; object-fit: cover; }
.footer__logo { width: 64px; height: 64px; border-radius: 50%; display: block; margin-bottom: .8rem; }
.brand__name {
  font-family: var(--f-display); font-size: 1.5rem; line-height: 1;
  color: var(--ink); letter-spacing: .01em;
}
.brand__name b { color: var(--petrol-text); font-weight: 400; }

.nav__links { display: flex; align-items: center; gap: .3rem; }
.nav__links a {
  font-family: var(--f-display); font-size: .98rem; letter-spacing: .01em;
  color: var(--ink); text-decoration: none; padding: .5rem .8rem; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:hover { background: var(--mustard); color: var(--ink); }
.nav__cta {
  font-family: var(--f-display); text-decoration: none;
  background: var(--petrol-ui); color: var(--cream);
  padding: .6rem 1.05rem; border-radius: 999px; border: 2.5px solid var(--ink);
  white-space: nowrap; transition: transform .12s ease, background .15s ease;
}
.nav__cta:hover { background: var(--petrol-deep); color: #fff; transform: translateY(-1px); }

.nav__toggle {
  display: none; background: var(--mustard); border: 2.5px solid var(--ink);
  border-radius: 12px; width: 46px; height: 42px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2.6px; background: var(--ink); border-radius: 3px;
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after  { position: absolute; top: 7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 3px solid var(--ink);
    flex-direction: column; align-items: stretch; gap: .4rem;
    padding: 1rem var(--gutter) 1.4rem;
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; }
  .nav__links a { padding: .8rem 1rem; font-size: 1.1rem; }
  .nav__cta { text-align: center; margin-top: .4rem; }
}
@media (min-width: 861px) {
  .nav__menu { display: flex !important; align-items: center; gap: 1.2rem; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--petrol-deep);
  color: var(--cream);
  padding-block: clamp(2.6rem, 6vw, 4.8rem) clamp(3rem, 7vw, 5.5rem);
  border-bottom: 4px solid var(--ink);
}
/* Mosaik-Pattern-Layer (CSS-only) */
.hero__pattern {
  position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  opacity: .9;
  background-image:
    repeating-conic-gradient(from 45deg at 50% 50%,
      rgba(227,162,26,.16) 0deg 22.5deg, transparent 22.5deg 45deg),
    radial-gradient(circle at 0 0, rgba(243,231,206,.10) 0 18px, transparent 19px),
    radial-gradient(circle at 100% 100%, rgba(194,69,45,.18) 0 22px, transparent 23px);
  background-size: 120px 120px, 60px 60px, 90px 90px;
  /* will-change wird per JS nur bei aktivem Parallax gesetzt */
}
.hero__sun {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(70vw, 620px); aspect-ratio: 1; right: -14%; top: -22%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      var(--mustard) 0deg 9deg, transparent 9deg 18deg);
  -webkit-mask-image: radial-gradient(circle, #000 38%, transparent 64%);
  mask-image: radial-gradient(circle, #000 38%, transparent 64%);
  opacity: .55;
  /* will-change wird per JS nur bei aktivem Parallax gesetzt */
}
.hero .wrap { position: relative; z-index: 2; }

.hero__grid {
  display: grid; gap: clamp(1.8rem, 4vw, 3.2rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 920px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

.hero__kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--mustard); color: var(--ink);
  font-family: var(--f-display); letter-spacing: .04em;
  padding: .42rem .95rem; border-radius: 999px; border: 2.5px solid var(--ink);
  font-size: clamp(.78rem, .72rem + .3vw, .95rem); margin-bottom: 1.1rem;
}
.hero__kicker .star { color: var(--ink); }

.hero h1 {
  font-size: clamp(2.9rem, 1.4rem + 9vw, 6.2rem);
  line-height: .9; letter-spacing: .005em;
  color: var(--cream);
  text-shadow: 4px 4px 0 var(--ink), -1px -1px 0 rgba(0,0,0,.25);
  margin-bottom: .35rem;
}
.hero h1 .yalla {
  font-family: var(--f-fat);
  color: var(--mustard);
  display: inline-block;
  text-shadow: 4px 5px 0 var(--ink);
}
.hero h1 .falafel {
  display: block; color: var(--cream);
  -webkit-text-stroke: 0;
}
.hero__lead {
  max-width: 42ch; color: var(--cream);
  font-size: clamp(1.02rem, .98rem + .4vw, 1.22rem);
  margin: 1.1rem 0 1.6rem;
}
.hero__lead b { color: var(--cream); font-weight: 800; text-decoration: underline; text-decoration-color: var(--mustard); text-decoration-thickness: 3px; text-underline-offset: 3px; }

/* Bestell-Band */
.order-band {
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center;
}
.btn {
  font-family: var(--f-display); text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .6rem;
  border: 3px solid var(--ink); border-radius: 999px;
  padding: .85rem 1.4rem; line-height: 1; transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
}
.btn--call {
  background: var(--mustard); color: var(--ink);
  font-size: clamp(1.05rem, 1rem + .5vw, 1.32rem);
  box-shadow: var(--shadow-pop);
  padding: 1rem 1.7rem;
}
.btn--call:hover { transform: translate(-2px,-2px); box-shadow: 6px 8px 0 0 var(--ink); color: var(--ink); }
.btn--call:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 0 var(--ink); }
.btn--call .num { font-family: var(--f-body); font-weight: 800; }
.btn--call .ic { font-size: 1.1em; }

.btn--ghost {
  background: var(--cream); color: var(--ink);
  font-size: .98rem; padding: .8rem 1.25rem;
}
.btn--ghost:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--secondary {
  background: var(--petrol-ui); color: var(--cream);
  font-size: .98rem; padding: .8rem 1.25rem;
}
.btn--secondary:hover { background: var(--petrol-deep); color: #fff; }

.order-note {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .9rem; color: var(--cream); font-size: .92rem;
}
.order-note .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mustard); flex: none; box-shadow: 0 0 0 3px rgba(227,162,26,.25); }

/* Hero Bild – Vinyl/Disc-Treatment */
.hero__media { position: relative; justify-self: center; width: min(100%, 460px); }
.disc {
  position: relative; aspect-ratio: 1; border-radius: 50%;
  border: 10px solid var(--ink);
  background: var(--night);
  box-shadow: var(--shadow-soft), inset 0 0 0 14px var(--cream);
  overflow: hidden;
  /* Vinyl-Geste: dreht beim Hover statt zu kippen (passt zum Schallplatten-Konzept) */
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .disc:hover { transform: rotate(8deg); }
}
.disc::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(0,0,0,.12) 0 3px, transparent 3px 7px);
  mix-blend-mode: multiply; opacity: .25;
}
.disc img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  /* warm, klar & appetitlich — kein Farbton-Dreh (food-warm) */
  filter: var(--food-warm);
}
.disc__hole {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 14%; aspect-ratio: 1; border-radius: 50%;
  background: var(--paprika); border: 4px solid var(--cream);
  z-index: 3;
}
/* rotierende Sticker um den Hero */
.sticker {
  position: absolute; z-index: 4;
  background: var(--mustard); color: var(--ink);
  border: 3px solid var(--ink); border-radius: 50%;
  width: 104px; height: 104px; display: grid; place-content: center; text-align: center;
  font-family: var(--f-display); font-size: .82rem; line-height: 1.02; padding: .5rem;
  box-shadow: var(--shadow-soft);
}
.sticker--halal { right: -10px; top: 4%; background: var(--cream); }
.sticker--tea   { left: -18px; bottom: 8%; background: var(--paprika-deep); color: var(--cream); }
.sticker b { display: block; font-size: 1.5em; }

/* =====================================================================
   MARQUEE Band
   ===================================================================== */
.marquee {
  background: var(--ink); color: var(--cream);
  border-block: 4px solid var(--mustard);
  overflow: hidden; padding-block: .7rem;
}
.marquee__track {
  display: flex; gap: 2.2rem; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--f-display); font-size: 1.15rem; letter-spacing: .03em; white-space: nowrap;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 2.2rem; }
.marquee__track .sep { color: var(--mustard); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   WARUM RIDA  (asymmetrisch)
   ===================================================================== */
.why { background: var(--cream); }
.why__head { max-width: 56ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.why h2 { font-size: clamp(2.1rem, 1.3rem + 4vw, 3.6rem); }
.why h2 em { font-style: normal; color: var(--petrol-text); }

.why__grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .why__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
  }
}
.tile {
  border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; position: relative; overflow: hidden;
  background: var(--cream-card);
  display: flex; flex-direction: column; gap: .55rem;
}
.tile h3 { font-size: 1.45rem; }
.tile p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.tile__ic {
  width: 50px; height: 50px; border-radius: 14px; border: 2.5px solid var(--ink);
  display: grid; place-items: center; margin-bottom: .25rem;
  background: var(--cream); color: var(--ink);
}
.tile__ic svg { width: 27px; height: 27px; display: block; }
/* asymmetrische Spannweiten + abwechselnde Flächen */
@media (min-width: 1000px) {
  .tile--a { grid-column: span 3; background: var(--mustard); }
  .tile--a .tile__ic { background: var(--cream); }
  .tile--b { grid-column: span 3; background: var(--petrol-deep); color: var(--cream); }
  .tile--b h3 { color: var(--cream); }
  .tile--b p  { color: #EBDFC4; }
  .tile--b .tile__ic { background: var(--petrol); border-color: var(--cream); }
  .tile--c { grid-column: span 2; }
  .tile--d { grid-column: span 2; background: var(--brown); color: var(--cream); }
  .tile--d h3 { color: var(--cream); }
  .tile--d p  { color: #EFE3CC; }
  .tile--d .tile__ic { background: var(--brown-deep); border-color: var(--cream); }
  .tile--e { grid-column: span 2; }
}
.tile--a h3, .tile--a p { color: var(--ink); }

/* =====================================================================
   MENU
   ===================================================================== */
.menu { background: var(--night); color: var(--cream); }
.menu__pattern { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    repeating-linear-gradient(135deg, rgba(227,162,26,.06) 0 14px, transparent 14px 28px),
    radial-gradient(circle at 20% 0, rgba(27,122,110,.22) 0 30%, transparent 31%);
}
.menu .wrap { position: relative; z-index: 1; }
.menu__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.2rem; margin-bottom: 2.2rem; }
.menu h2 { font-size: clamp(2.2rem, 1.3rem + 4.5vw, 4rem); color: var(--cream); }
.menu h2 span { color: var(--mustard); }
.menu__sub { color: #E7D9BC; max-width: 40ch; margin: .6rem 0 0; }
.menu__price-hint {
  font-family: var(--f-display); color: var(--ink); background: var(--mustard);
  border: 3px solid var(--cream); border-radius: 999px; padding: .55rem 1.1rem; font-size: .92rem;
  white-space: nowrap;
}

.menu__cols { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .menu__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) {
  .menu__cols { grid-template-columns: 1.1fr 1.1fr .8fr; align-items: start; }
}

.card {
  background: var(--cream); color: var(--ink);
  border: 3px solid var(--ink); border-radius: var(--radius-lg);
  padding: 1.5rem 1.45rem 1.65rem;
  position: relative;
}
.card--span2 { grid-column: 1 / -1; }
@media (min-width: 1080px) { .card--mezze { grid-row: span 1; } }
.card__title {
  font-family: var(--f-display); font-size: 1.55rem; display: inline-flex; align-items: center; gap: .55rem;
  padding-bottom: .7rem; margin-bottom: .5rem;
  border-bottom: 3px dotted var(--brown);
}
.card__title .tag {
  font-family: var(--f-body); font-weight: 800; font-size: .68rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--cream); background: var(--petrol-ui);
  padding: .2rem .55rem; border-radius: 999px; border: 2px solid var(--ink);
}
.card__title .tag--accent { background: var(--mustard); color: var(--ink); }

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: .5rem;
  padding: .5rem 0; border-bottom: 1px dashed rgba(107,63,42,.32);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .name { font-weight: 600; }
.menu-list .name small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .8rem; }
.menu-list .price {
  font-family: var(--f-display); font-size: 1.08rem; color: var(--petrol-text); white-space: nowrap;
}
.dietary {
  display: inline-block; font-size: .62rem; font-weight: 800; letter-spacing: .04em;
  vertical-align: middle; margin-left: .35rem; padding: .08rem .4rem; border-radius: 6px;
  border: 1.5px solid var(--petrol); color: var(--petrol-text); background: rgba(27,122,110,.08);
}
.card__note {
  margin: .9rem 0 0; font-size: .86rem; color: var(--ink-soft);
}
.card--extra { background: var(--petrol-deep); color: var(--cream); }
.card--extra .card__title { color: var(--cream); border-bottom-color: var(--mustard); }
.card--extra .extra-list { list-style: none; margin: .3rem 0 0; padding: 0; display: grid; gap: .7rem; }
.card--extra .extra-list li { display: flex; gap: .65rem; align-items: flex-start; }
.card--extra .extra-list .bullet { color: var(--mustard); font-family: var(--f-display); flex: none; }
.card--extra .extra-list b { color: var(--cream); font-weight: 800; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { background: var(--cream); }
.gallery h2 { font-size: clamp(2rem, 1.3rem + 4vw, 3.4rem); }
.gallery__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 2rem; }
.gallery__grid {
  display: grid; gap: 1.2rem; grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; }
}
.shot { position: relative; border: 3px solid var(--ink); overflow: hidden; background: var(--ink); }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption {
  position: absolute; left: .8rem; bottom: .8rem; z-index: 2;
  font-family: var(--f-display); font-size: .9rem; color: var(--ink);
  background: var(--mustard); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: .35rem .8rem;
}
/* Kuratierte, KONSISTENTE Bildsprache:
   ein einheitlich-warmer Filter ueber ALLE drei Fotos (nie im Farbton kippen),
   zwei Formvarianten — grosse abgerundete Rechtecke + 1 verspielter arc-Akzent. */
.shot img { filter: var(--food-warm); }

.shot--01 {
  grid-column: span 6; border-radius: 28px;
}
@media (min-width: 720px){ .shot--01 { grid-column: span 4; grid-row: span 2; border-radius: 36px;} }
.shot--01 img { aspect-ratio: 16/10; }

.shot--02 { grid-column: span 6; border-radius: var(--arc); }   /* verspielter arc-Akzent */
@media (min-width: 720px){ .shot--02 { grid-column: span 2; } }
.shot--02 img { aspect-ratio: 3/4; }

.shot--03 { grid-column: span 6; border-radius: 28px; }
@media (min-width: 720px){ .shot--03 { grid-column: span 2; grid-row: span 1; border-radius: 36px; } }
.shot--03 img { aspect-ratio: 3/4; }

.gallery__note {
  grid-column: span 6; align-self: center;
  display: flex; flex-direction: column; gap: .6rem; padding: .5rem;
}
@media (min-width: 720px){ .gallery__note { grid-column: span 2; } }
.gallery__note p { margin: 0; color: var(--ink-soft); }

/* =====================================================================
   STIMMEN (Reviews)
   ===================================================================== */
.voices { background: var(--brown); color: var(--cream); overflow: hidden; }
.voices__pattern { position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: repeating-conic-gradient(from 30deg at 50% 50%, rgba(227,162,26,.18) 0 12deg, transparent 12deg 24deg);
  background-size: 140px 140px; }
.voices .wrap { position: relative; z-index: 1; }
.voices h2 { color: var(--cream); font-size: clamp(2rem, 1.3rem + 4vw, 3.4rem); }
.voices__rating { display: inline-flex; align-items: center; gap: .6rem; margin-top: .7rem; color: #F1E6CF; font-weight: 600; }
.voices__rating .stars { color: var(--mustard); font-size: 1.2rem; letter-spacing: .1em; }
.voices__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 760px){ .voices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px){ .voices__grid { grid-template-columns: repeat(12, 1fr); } }
.quote {
  background: var(--cream-card); color: var(--ink); border: 3px solid var(--ink);
  border-radius: var(--radius); padding: 1.5rem 1.45rem; position: relative;
  display: flex; flex-direction: column; gap: .8rem;
}
.quote::before {
  content: "“"; font-family: var(--f-display); position: absolute; top: -.35em; left: .5rem;
  font-size: 4.5rem; color: var(--mustard); line-height: 1;
}
.quote p { margin: .8rem 0 0; font-size: 1.04rem; }
.quote cite { font-style: normal; font-weight: 700; color: var(--petrol-text); display: inline-flex; align-items: center; gap: .45rem; }
.quote cite .src { font-weight: 500; color: var(--ink-soft); font-size: .85rem; }
@media (min-width: 1060px){
  .quote--1 { grid-column: span 7; }
  .quote--2 { grid-column: span 5; }
  .quote--3 { grid-column: span 5; }
  .quote--4 { grid-column: span 7; }
}

/* =====================================================================
   FINDEN / KONTAKT
   ===================================================================== */
.find { background: var(--cream); }
.find__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 920px){ .find__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.find h2 { font-size: clamp(2rem, 1.3rem + 4vw, 3.4rem); margin-bottom: .4rem; }

.info-card {
  border: 3px solid var(--ink); border-radius: var(--radius-lg);
  background: var(--cream-card); padding: clamp(1.4rem, 3vw, 2.1rem);
}
.info-row { display: flex; gap: .9rem; padding: .85rem 0; border-bottom: 1px dashed rgba(107,63,42,.3); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px; border: 2.5px solid var(--ink);
  background: var(--mustard); color: var(--ink); display: grid; place-items: center;
}
.info-row .ic svg { width: 23px; height: 23px; display: block; }
.info-row h3 { font-size: 1.15rem; margin-bottom: .15rem; }
.info-row p, .info-row a { margin: 0; }
.info-row .big-tel {
  font-family: var(--f-display); font-size: 1.45rem; color: var(--petrol-text); text-decoration: none;
}
.info-row .big-tel:hover { color: var(--brown-deep); text-decoration: underline; }
.hours-list { list-style: none; margin: .2rem 0 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .15rem 0; }
.hours-list .day { font-weight: 600; }
.open-pill {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .7rem;
  background: var(--petrol-ui); color: var(--cream); border: 2.5px solid var(--ink);
  border-radius: 999px; padding: .35rem .85rem; font-weight: 700; font-size: .9rem;
}
.open-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mustard); flex: none; }

.find__cta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.platforms { margin-top: 1.1rem; }
.platforms p { font-size: .86rem; color: var(--ink-soft); margin: 0 0 .55rem; }
.platforms__row { display: flex; flex-wrap: wrap; gap: .6rem; }
.plat {
  font-family: var(--f-display); text-decoration: none; font-size: .9rem;
  background: var(--cream); color: var(--ink); border: 2.5px solid var(--ink);
  border-radius: 999px; padding: .55rem 1rem; transition: transform .12s ease, background .15s ease;
}
.plat:hover { transform: translateY(-2px); background: var(--mustard); color: var(--ink); }

.map-wrap {
  border: 3px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--petrol-deep); aspect-ratio: 4/3; position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center;
  gap: .9rem; padding: 1.5rem; color: var(--cream);
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(227,162,26,.12) 0 12deg, transparent 12deg 24deg),
    var(--petrol-deep);
}
.map-consent p { margin: 0; max-width: 34ch; margin-inline: auto; color: #EFE3CC; }
.map-consent .btn { background: var(--mustard); color: var(--ink); }

/* =====================================================================
   FINAL CTA Band
   ===================================================================== */
.cta-band { background: var(--mustard); border-block: 4px solid var(--ink); }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; padding-block: clamp(2rem, 5vw, 3.2rem); }
.cta-band h2 { font-size: clamp(1.9rem, 1.2rem + 4vw, 3.2rem); color: var(--ink); max-width: 18ch; }
.cta-band h2 span { color: var(--paprika-deep); }
.cta-band__right { display: flex; flex-direction: column; gap: .7rem; }
.cta-band .btn--call { background: var(--ink); color: var(--cream); box-shadow: 6px 6px 0 0 var(--petrol-deep); }
.cta-band .btn--call:hover { background: var(--night); color: #fff; box-shadow: 8px 9px 0 0 var(--petrol-deep); }
.cta-band__sub { font-size: .9rem; color: var(--ink-soft); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--night); color: var(--cream); border-top: 4px solid var(--mustard); }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-block: clamp(2.6rem, 6vw, 4rem) 1.6rem; }
@media (min-width: 720px){ .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand__name { color: var(--cream); }
.footer__brand .brand__name b { color: var(--mustard); }
.footer__brand p { color: #D9CCAE; max-width: 34ch; margin: .9rem 0 0; }
.site-footer h3 { font-family: var(--f-display); color: var(--mustard); font-size: 1.05rem; margin-bottom: .8rem; letter-spacing: .03em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { color: var(--mustard); text-decoration: underline; }
.footer__bottom {
  border-top: 1px solid rgba(243,231,206,.18); padding-block: 1.2rem 1.6rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; justify-content: space-between;
  color: #C9BC9E; font-size: .82rem;
}
.footer__bottom a { color: #C9BC9E; }
.footer__bottom a:hover { color: var(--mustard); }
.footer__legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* =====================================================================
   STICKY CALL BAR  (mobil + desktop) — ein dominanter CTA, Liefern sekundär
   ===================================================================== */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink); border-top: 3px solid var(--mustard);
  padding-block: .55rem calc(.55rem + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px -18px rgba(34,22,16,.6);
  transform: translateY(110%);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.sticky-bar[hidden] { display: none; }
.sticky-bar.is-visible { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .sticky-bar { transition: none; }
}
.sticky-bar__inner {
  display: flex; align-items: center; gap: .7rem 1rem; flex-wrap: wrap;
  justify-content: space-between;
}
.sticky-bar__status {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--cream); font-size: .9rem; font-weight: 600; order: 1;
}
.sticky-bar__status .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--mustard); flex: none;
  box-shadow: 0 0 0 3px rgba(227,162,26,.22);
}
.sticky-bar__status.is-closed .dot { background: var(--paprika); }
.sticky-bar__call {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--mustard); color: var(--ink); font-family: var(--f-display);
  text-decoration: none; border-radius: 999px; padding: .8rem 1.3rem; font-size: 1.08rem;
  border: 2.5px solid var(--cream); order: 2; flex: 1 1 auto; min-width: 0;
  transition: transform .12s ease, background .15s ease;
}
.sticky-bar__call:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.sticky-bar__num { font-family: var(--f-body); font-weight: 800; }
.sticky-bar__deliver {
  display: inline-flex; align-items: center; order: 3;
  color: var(--cream); text-decoration: underline; text-decoration-color: var(--mustard);
  text-decoration-thickness: 2px; text-underline-offset: 3px;
  font-weight: 700; font-size: .9rem; white-space: nowrap;
}
.sticky-bar__deliver:hover { color: var(--mustard); }

@media (min-width: 721px) {
  .sticky-bar__inner { flex-wrap: nowrap; }
  .sticky-bar__call { flex: 0 0 auto; }
  .sticky-bar__status { order: 1; }
  .sticky-bar__call { order: 2; }
  .sticky-bar__deliver { order: 3; }
}
@media (max-width: 720px) {
  .sticky-bar__inner { gap: .45rem .7rem; }
  .sticky-bar__status { order: 1; flex: 1 1 100%; justify-content: center; font-size: .82rem; }
  .sticky-bar__call { order: 2; flex: 1 1 auto; font-size: 1.02rem; padding: .78rem 1rem; }
  .sticky-bar__num { display: none; }
  .sticky-bar__deliver { order: 3; flex: 0 0 auto; }
}
body.has-sticky { padding-bottom: 5.4rem; }
@media (max-width: 720px) { body.has-sticky { padding-bottom: 6.4rem; } }

/* =====================================================================
   BESTSELLER-PILL (subtil) + FEATURED REVIEW
   ===================================================================== */
.pick {
  display: inline-block; vertical-align: middle; margin-left: .4rem;
  font-family: var(--f-body); font-weight: 800; font-size: .6rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ink); background: var(--mustard);
  border: 1.5px solid var(--ink); border-radius: 999px; padding: .12rem .5rem;
  line-height: 1.3; white-space: nowrap;
}
.menu-list .name small { margin-top: .12rem; }

.quote--featured { box-shadow: 0 0 0 3px var(--mustard); }
.quote__badge {
  position: absolute; top: -.9rem; right: 1rem; z-index: 3;
  font-family: var(--f-display); font-size: .72rem; letter-spacing: .03em;
  color: var(--ink); background: var(--mustard); border: 2.5px solid var(--ink);
  border-radius: 999px; padding: .25rem .7rem;
}

/* Live-Note im Hero (JS-gefüttert) */
.order-note__text { display: inline; }

/* =====================================================================
   CONVERSION-ADD-ONS v2 (additiv, Welt-Design bewahrt)
   ===================================================================== */

/* Hero: klickbarer Google-Bewertungs-Kicker (war span -> jetzt a) */
a.hero__kicker { text-decoration: none; transition: transform .12s ease, background .15s ease; }
a.hero__kicker:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.hero__kicker-arrow { font-family: var(--f-body); font-weight: 800; }

/* Hero: Preis-Anker + Öffnungszeiten direkt unter dem H1 */
.hero__anchor {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: .55rem;
  margin: .2rem 0 .2rem; color: var(--cream);
  font-family: var(--f-display); letter-spacing: .01em;
  font-size: clamp(1rem, .94rem + .5vw, 1.28rem);
}
/* Creme-Text (6.38:1 auf Petrol) mit Mustard-Unterstreichung — markentreu & AA-normal */
.hero__anchor-price {
  color: var(--cream);
  text-decoration: underline; text-decoration-color: var(--mustard);
  text-decoration-thickness: 3px; text-underline-offset: 3px;
}
.hero__anchor-sep { color: var(--cream); opacity: .6; }
.hero__anchor-hours {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--petrol-ui); color: var(--cream);
  border: 2.5px solid var(--ink); border-radius: 999px;
  padding: .2rem .8rem; font-size: .82em;
}
.hero__anchor-hours .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--mustard); flex: none;
  box-shadow: 0 0 0 3px rgba(227,162,26,.25);
}
.hero__anchor-hours.is-closed { background: var(--brown-deep); }
.hero__anchor-hours.is-closed .dot { background: var(--paprika); }

/* Hero: Zahlungs-Badge nahe CTA */
.pay-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 1rem 0 0; color: var(--cream); font-size: .92rem; font-weight: 600;
}
.pay-badge b { color: var(--cream); font-weight: 800; }
.pay-badge__ic {
  display: inline-grid; place-items: center; width: 24px; height: 24px; flex: none;
  border-radius: 7px; background: var(--mustard); color: var(--ink);
  border: 2px solid var(--ink); font-weight: 800; line-height: 1;
}
.pay-badge__ic svg { width: 15px; height: 15px; display: block; }

/* Kontakt: Zahl-Zeile in der Info-Card */
.pay-line { font-size: .98rem; }
.pay-line b { color: var(--petrol-text); }

/* Warum-Tile: ehrlicher Halal-Nachweis-Slot */
.tile__halal-note { font-size: .82rem; color: var(--ink-soft); margin-top: .15rem; }
.tile__halal-note .muted-inline { display: block; opacity: .85; }

/* Karte: Klartext-Adresse als consent-freier Fallback ÜBER der Karte */
.map-address {
  display: flex; gap: .6rem; align-items: flex-start;
  margin: 0 0 .9rem; font-size: .95rem; color: var(--ink);
}
.map-address b { color: var(--petrol-text); }
.map-address .ic {
  width: 34px; height: 34px; flex: none; border-radius: 10px; border: 2.5px solid var(--ink);
  background: var(--mustard); color: var(--ink); display: grid; place-items: center;
}
.map-address .ic svg { width: 19px; height: 19px; display: block; }

/* Liefersektion: klar als Sekundär-Option, 3 Plattformen */
.platforms__lead { margin-bottom: .55rem; }
.platforms__sub-label { display: block; font-size: .8rem; color: var(--ink-soft); margin-top: .15rem; }
.platforms__note { font-size: .8rem; color: var(--ink-soft); margin: .55rem 0 0; }
/* Platzhalter (noch kein Deeplink): sichtbar-ehrlich "bald", AA-konform statt opacity-Trick.
   Bewusst gedämpfte, aber lesbare Kombi: cream-soft Fläche + brown Text = 6.72:1.
   Wirkt klar inaktiv (kein Hover-Lift, gestrichelter Rand), nicht wie ein aktiver Button. */
.plat--soon {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--cream-soft); color: var(--brown);
  border-style: dashed; cursor: default;
}
.plat--soon:hover { transform: none; background: var(--cream-soft); color: var(--brown); }
.plat__soon {
  font-family: var(--f-body); font-weight: 800; font-size: .68rem; letter-spacing: .04em;
  text-transform: uppercase; line-height: 1;
  background: var(--brown); color: var(--cream);   /* 7.23:1 */
  border-radius: 999px; padding: .18rem .5rem;
}

/* Reviews: klickbares Google-Rating */
.voices__rating-link {
  color: #F1E6CF; font-weight: 600; text-decoration: underline;
  text-decoration-color: var(--mustard); text-decoration-thickness: 2px; text-underline-offset: 3px;
}
/* Hover: cream auf brown = 7.23:1 (war mustard 3.99:1 <AA). Mustard-Unterstreichung bleibt als Akzent. */
.voices__rating-link:hover { color: var(--cream); }

/* =====================================================================
   LEGAL PAGES (Impressum / Datenschutz im Welt-Design)
   ===================================================================== */
.legal { background: var(--cream); }
.legal .wrap { max-width: 820px; }
.legal__back {
  display: inline-flex; align-items: center; gap: .45rem; text-decoration: none;
  font-family: var(--f-display); color: var(--petrol-text); margin-bottom: 1.8rem;
}
.legal__back:hover { color: var(--brown-deep); }
.legal h1 { font-size: clamp(2.2rem, 1.4rem + 4vw, 3.4rem); margin-bottom: .4rem; }
.legal .muted { color: var(--ink-soft); margin-top: 0; }
.legal h2 { font-family: var(--f-display); font-size: 1.4rem; margin: 2.2rem 0 .5rem; color: var(--petrol-text); }
.legal h3 { font-family: var(--f-display); font-size: 1.1rem; margin: 1.4rem 0 .4rem; }
.legal address, .legal p { font-style: normal; margin: .35rem 0; }
.legal__card {
  border: 3px solid var(--ink); border-radius: var(--radius-lg); background: var(--cream-card);
  padding: clamp(1.5rem, 4vw, 2.6rem); margin-top: 1.6rem;
}

/* =====================================================================
   MOTION
   ===================================================================== */
@keyframes wobble {
  0%, 100% { transform: rotate(-5deg); }
  50%      { transform: rotate(5deg); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.sticker--halal { animation: wobble 4.5s ease-in-out infinite; }
.sticker--tea   { animation: floaty 5s ease-in-out infinite; }
.disc__hole { }

[data-tilt] { transition: transform .25s cubic-bezier(.2,.7,.2,1); }

/* Reveal-on-scroll: nur verstecken, wenn JS laeuft UND Motion erlaubt ist.
   Ohne JS (.no-js) bleibt der Inhalt sichtbar -> kein FOUC/unsichtbarer Inhalt. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
  .hero__pattern, .hero__sun { transform: none !important; }
}
