/* ============================================================
   ShuShu Falafel — Design Tokens
   Palette aus den echten Restaurantfotos abgeleitet:
   weiße Teller, Holztische, Safran, Petersilie, Granatapfel.
   ============================================================ */
:root {
  /* Farbe */
  --ink:         #1D1611;
  --ink-2:       #3A2C21;
  --ink-3:       #6B5847;
  --paper:       #FDFAF4;
  --paper-2:     #F6EDDF;
  --paper-3:     #EFE2CE;
  --line:        #E2D3BC;
  --saffron:     #DE8F2B;
  --saffron-dk:  #B96F14;
  --pomegranate: #A8342A;
  --olive:       #5C7A44;
  --gold:        #C9A227;
  --white:       #FFFFFF;

  --brand:       var(--saffron);
  --brand-ink:   #2A1B0B;

  /* Typo */
  --display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --t-xs: .75rem; --t-sm: .875rem; --t-base: 1rem; --t-lg: 1.125rem;
  --t-xl: 1.375rem; --t-2xl: 1.75rem; --t-3xl: 2.5rem; --t-4xl: clamp(2.6rem, 7vw, 5.2rem);

  /* Raster */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s6: 24px;
  --s8: 32px; --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px;

  --r-sm: 4px; --r-md: 10px; --r-lg: 18px; --r-full: 999px;

  --sh-sm: 0 1px 2px rgba(29,22,17,.06), 0 2px 6px rgba(29,22,17,.05);
  --sh-md: 0 4px 14px rgba(29,22,17,.09), 0 2px 4px rgba(29,22,17,.05);
  --sh-lg: 0 18px 44px rgba(29,22,17,.16), 0 6px 14px rgba(29,22,17,.08);
  --sh-xl: 0 30px 70px rgba(29,22,17,.24);

  --ease: cubic-bezier(.22,.61,.36,1);
  --bar-h: 68px;
}

/* Bewusst einfarbige, helle Bildwelt: Das Restaurant hat seinen eigenen Look,
   der sich nicht nach dem Betriebssystem des Gastes richtet. Explizit gesetzt,
   damit Dark Mode keine Bedienelemente/Scrollbalken umfärbt. */
:root { color-scheme: light; }
:root[data-theme="dark"], :root[data-theme="light"] { color-scheme: light; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 8px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: var(--r-sm); }

.wrap { width: min(1200px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(760px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.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;
}

/* Kleines Label über Überschriften */
.eyebrow {
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--saffron-dk); margin: 0 0 var(--s3); display: flex; align-items: center; gap: var(--s3);
}
.eyebrow::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, var(--line), transparent); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { display: none; }

/* ============================================================ Buttons */
.btn {
  --bg: var(--saffron); --fg: var(--brand-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 14px 26px; border: 0; border-radius: var(--r-full);
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-size: var(--t-base); font-weight: 600; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  box-shadow: var(--sh-md);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); background: var(--saffron-dk); color: #fff; }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--lg { padding: 17px 34px; font-size: var(--t-lg); }
.btn--ghost {
  --bg: transparent; --fg: currentColor;
  border: 1.5px solid currentColor; box-shadow: none; font-weight: 500;
}
.btn--ghost:hover { background: currentColor; box-shadow: var(--sh-md); }
.btn--ghost:hover span, .btn--ghost:hover svg { color: var(--ink); }
.btn--wa { --bg: #25D366; --fg: #06301A; }
.btn--wa:hover { background: #1EB855; color: #06301A; }
.btn--dark { --bg: var(--ink); --fg: var(--paper); }
.btn--dark:hover { background: var(--ink-2); color: #fff; }

/* ============================================================ Header */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: calc(var(--bar-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.hdr__in { display: flex; align-items: center; gap: var(--s6); width: min(1200px, 92vw); margin-inline: auto; }
.hdr.is-stuck { background: rgba(253,250,244,.93); backdrop-filter: blur(14px) saturate(1.3); box-shadow: 0 1px 0 var(--line), var(--sh-sm); }

.logo { display: flex; align-items: baseline; gap: 7px; text-decoration: none; margin-right: auto; }
.logo b { font-family: var(--display); font-size: 1.6rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.logo i {
  font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--saffron-dk);
  letter-spacing: .01em;
}
.hdr:not(.is-stuck) .logo { color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.5); }
.hdr:not(.is-stuck) .logo i { color: var(--gold); }

.nav { display: flex; gap: var(--s6); align-items: center; }
.nav a {
  font-size: var(--t-sm); font-weight: 500; text-decoration: none; letter-spacing: .04em;
  text-transform: uppercase; position: relative; padding: 6px 0; color: inherit;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--saffron); transition: right .3s var(--ease);
}
.nav a:hover::after { right: 0; }
.hdr:not(.is-stuck) .nav { color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.4); }

/* Sprachumschalter */
.lang { display: inline-flex; border: 1.5px solid currentColor; border-radius: var(--r-full); padding: 2px; opacity: .9; }
.hdr:not(.is-stuck) .lang { color: #fff; }
.lang button {
  border: 0; background: transparent; color: inherit; cursor: pointer;
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 5px 10px; border-radius: var(--r-full); transition: background .2s, color .2s;
}
.lang button[aria-pressed="true"] { background: var(--saffron); color: var(--brand-ink); }

.burger {
  display: none; width: 44px; height: 44px; margin-left: var(--s2);
  border: 0; background: transparent; color: inherit; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================ Hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; transform: scale(1.06); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    /* von links abdunkeln, damit die Schrift auf jedem Motiv sicher lesbar bleibt */
    linear-gradient(90deg, rgba(15,10,6,.88) 0%, rgba(15,10,6,.66) 34%, rgba(15,10,6,.12) 68%, rgba(15,10,6,.28) 100%),
    linear-gradient(180deg, rgba(15,10,6,.62) 0%, rgba(15,10,6,.2) 34%, rgba(15,10,6,.42) 70%, rgba(15,10,6,.9) 100%);
}
@media (max-width: 900px) {
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(15,10,6,.74) 0%, rgba(15,10,6,.45) 34%, rgba(15,10,6,.62) 70%, rgba(15,10,6,.94) 100%);
  }
}
.hero__in { padding: calc(var(--bar-h) + var(--s16)) 0 var(--s20); color: #fff; }

.hero h1 {
  font-size: var(--t-4xl); font-weight: 600; letter-spacing: -.025em; line-height: .94;
  margin: 0 0 var(--s4); text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero h1 em {
  display: block; font-style: italic; font-weight: 400;
  color: var(--gold);
}
.hero__lead {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem); max-width: 40ch; color: rgba(255,255,255,.9);
  margin-bottom: var(--s8); text-shadow: 0 1px 20px rgba(0,0,0,.5);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s8); }

/* Live-Status + Bewertung */
.hero__chips { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s6); }
.status {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full); padding: 7px 16px 7px 12px;
  font-size: var(--t-sm); font-weight: 500;
}
.rating {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full); padding: 7px 16px 7px 12px;
  font-size: var(--t-sm); color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.rating:hover { background: rgba(255,255,255,.18); border-color: var(--gold); }
.rating__stars { display: inline-flex; gap: 1px; color: var(--gold); }
.rating__stars svg { width: 14px; height: 14px; fill: currentColor; }
.rating b { font-weight: 700; font-variant-numeric: lining-nums; }
.rating__txt { color: rgba(255,255,255,.72); }
.status__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #7A8B7A; flex: none;
  box-shadow: 0 0 0 0 rgba(93,197,106,.7);
}
.status.is-open .status__dot { background: #5DC56A; animation: pulse 2.4s infinite; }
.status.is-soon .status__dot { background: var(--saffron); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(93,197,106,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(93,197,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(93,197,106,0); }
}

/* Vertrauens-Zeile */
.trust { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s8); padding: 0; margin: 0; list-style: none; }
.trust li {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--t-sm); color: rgba(255,255,255,.86); font-weight: 500;
}
.trust svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

.scroll-hint {
  position: absolute; bottom: var(--s6); left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.65); font-size: var(--t-xs); letter-spacing: .18em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: var(--s2);
}
.scroll-hint span { width: 1px; height: 30px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: drop 2s infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================ Abschnitte */
.sec { padding: var(--s24) 0; position: relative; }
.sec--paper { background: var(--paper-2); }
.sec--dark { background: var(--ink); color: var(--paper); }
.sec__head { max-width: 62ch; margin-bottom: var(--s12); }
.sec__head.center { margin-inline: auto; text-align: center; }
.sec h2 { font-size: var(--t-3xl); margin-bottom: var(--s3); }
.sec__sub { color: var(--ink-3); font-size: var(--t-lg); margin: 0; }
.sec--dark .sec__sub { color: rgba(253,250,244,.7); }

/* ============================================================ USP-Band */
.usp { background: var(--ink); color: var(--paper); padding: var(--s12) 0; }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s8); }
.usp__item { display: flex; gap: var(--s3); align-items: flex-start; }
.usp__item svg { width: 26px; height: 26px; color: var(--gold); flex: none; margin-top: 2px; }
.usp__item b { display: block; font-size: var(--t-base); font-weight: 600; margin-bottom: 2px; }
.usp__item span { font-size: var(--t-sm); color: rgba(253,250,244,.66); line-height: 1.5; }

/* ============================================================ Speisekarte */
.filters {
  display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; margin-bottom: var(--s12);
  position: sticky; top: var(--bar-h); z-index: 40; padding: var(--s3) 0;
  background: linear-gradient(var(--paper) 62%, transparent);
}
.chip {
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink-2);
  border-radius: var(--r-full); padding: 9px 18px; cursor: pointer;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--saffron); transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip__dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.chip__dot--vegan { background: var(--olive); }
.chip__dot--veg { background: var(--gold); }
.chip__dot--meat { background: var(--pomegranate); }

.cat { margin-bottom: var(--s20); scroll-margin-top: calc(var(--bar-h) + 70px); }
.cat__head { display: flex; align-items: baseline; gap: var(--s4); margin-bottom: var(--s3); }
.cat__head h3 { font-size: var(--t-2xl); white-space: nowrap; }
.cat__head::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.cat__note { color: var(--ink-3); font-size: var(--t-sm); font-style: italic; margin: 0 0 var(--s8); }
.cat__sub { font-family: var(--display); font-size: var(--t-xl); font-weight: 600; margin: var(--s12) 0 var(--s4); color: var(--ink-2); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: var(--s6); }

.card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid rgba(226,211,188,.55);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card__media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--paper-3); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }

/* Karte ohne Foto: typografisch statt Platzhalter-Fake */
.card__media--type {
  display: grid; place-items: center; text-align: center; padding: var(--s4);
  background:
    radial-gradient(circle at 30% 25%, rgba(222,143,43,.13), transparent 55%),
    radial-gradient(circle at 72% 78%, rgba(92,122,68,.13), transparent 55%),
    var(--paper-2);
}
.card__media--type::before {
  content: ""; position: absolute; inset: 12px; border: 1px solid var(--line); border-radius: var(--r-md);
  opacity: .8;
}
.card__mono {
  font-family: var(--display); font-size: 2.6rem; font-weight: 600; color: var(--ink-2);
  opacity: .34; letter-spacing: -.02em; line-height: 1; user-select: none;
}
.card__body { padding: var(--s4) var(--s4) var(--s6); display: flex; flex-direction: column; flex: 1; }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s3); margin-bottom: 5px; }
.card__name { font-family: var(--display); font-size: var(--t-xl); font-weight: 600; line-height: 1.15; }
.card__name small {
  display: block; font-family: var(--sans); font-size: var(--t-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--saffron-dk); margin-top: 3px;
}
.card__price {
  font-family: var(--display); font-size: var(--t-xl); font-weight: 600; white-space: nowrap;
  color: var(--ink);
  /* Cormorant setzt sonst Mediävalziffern — bei Preisen unlesbar ("11,00" wirkt wie "II,oo"). */
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.card__desc { font-size: var(--t-sm); color: var(--ink-3); line-height: 1.55; margin: 0 0 var(--s3); flex: 1; }

.tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(253,250,244,.94); backdrop-filter: blur(6px);
  border-radius: var(--r-full); padding: 5px 11px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  box-shadow: var(--sh-sm);
}
.tag--vegan { color: var(--olive); }
.tag--veg { color: #93700F; }
.tag--meat { color: var(--pomegranate); }
.tag--choice { color: var(--ink-3); }
.card__media--type .tag { background: var(--white); }
.tag__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.tag--best {
  left: auto; right: 10px;
  background: var(--ink); color: var(--gold);
}

/* Ehrliche Kennzeichnung für Bilder, die kein Foto des Restaurants sind */
.serving {
  position: absolute; right: 8px; bottom: 8px; z-index: 2;
  background: rgba(29,22,17,.62); backdrop-filter: blur(4px); color: rgba(255,255,255,.92);
  border-radius: var(--r-sm); padding: 3px 7px;
  font-size: 9px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  pointer-events: none;
}

.menu-note {
  margin-top: var(--s12); padding: var(--s4) var(--s6); border-left: 2px solid var(--line);
  color: var(--ink-3); font-size: var(--t-sm); font-style: italic;
}

/* ============================================================ Story */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s16); align-items: center; }
.story__imgs { position: relative; padding-bottom: var(--s8); }
.story__imgs img:first-child {
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); width: 100%;
  /* Hochkant-Original würde die Sektion sonst auf >2000px aufblasen */
  aspect-ratio: 4 / 5; max-height: 620px; object-fit: cover; object-position: center 32%;
}
.story__chef {
  position: absolute; right: -18px; bottom: 0; width: 36%; max-width: 190px;
  /* height:auto ist nötig — sonst gewinnt das height-Attribut und das Bild wird meterhoch */
  height: auto; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--r-lg); border: 6px solid var(--paper-2); box-shadow: var(--sh-lg);
}
.story__quote {
  font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.15rem); font-style: italic;
  line-height: 1.3; color: var(--ink); margin: 0 0 var(--s6); font-weight: 400;
}
.story__quote::before { content: "„"; color: var(--saffron); }
.story__quote::after { content: "“"; color: var(--saffron); }
.story__cite { font-size: var(--t-sm); color: var(--ink-3); font-style: normal; }
.story__cite b { display: block; font-size: var(--t-base); color: var(--ink); font-weight: 600; font-style: normal; }
.story p { color: var(--ink-2); }

/* ============================================================ Bestellwege */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.way {
  background: rgba(253,250,244,.05); border: 1px solid rgba(253,250,244,.14);
  border-radius: var(--r-lg); padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s3);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s;
}
.way:hover { border-color: var(--gold); transform: translateY(-3px); background: rgba(253,250,244,.08); }
.way__ico {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(201,162,39,.16); color: var(--gold); margin-bottom: var(--s2);
}
.way__ico svg { width: 22px; height: 22px; }
.way h3 { font-size: var(--t-xl); }
.way p { color: rgba(253,250,244,.66); font-size: var(--t-sm); margin: 0; flex: 1; }
.way .btn { margin-top: var(--s4); align-self: flex-start; }
.way__meta { font-size: var(--t-xs); color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ============================================================ Galerie */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.gal figure { margin: 0; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/5; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal figure:hover img { transform: scale(1.05); }

/* ============================================================ Kontakt */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); }
.hours { list-style: none; padding: 0; margin: 0 0 var(--s6); }
.hours li {
  display: flex; justify-content: space-between; gap: var(--s4);
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: var(--t-base);
}
.hours li.is-today { font-weight: 700; color: var(--ink); }
.hours li.is-today::after {
  content: attr(data-today); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--saffron); color: var(--brand-ink); padding: 2px 8px; border-radius: var(--r-full);
  align-self: center; font-weight: 700; order: 3;
}
.hours span:first-child { color: var(--ink-3); }
.hours li.is-today span:first-child { color: var(--ink); }
/* Zeit immer rechts bündig — auch wenn rechts daneben noch das HEUTE-Badge steht */
.hours b { font-variant-numeric: lining-nums tabular-nums; font-weight: 600; margin-left: auto; order: 2; }

.cinfo { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s4); }
.cinfo li { display: flex; gap: var(--s3); align-items: flex-start; }
.cinfo svg { width: 20px; height: 20px; color: var(--saffron-dk); flex: none; margin-top: 3px; }
.cinfo a { text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .2s; }
.cinfo a:hover { border-color: var(--saffron); }
.cinfo small { display: block; color: var(--ink-3); font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .1em; }

.map-card {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); position: relative;
  aspect-ratio: 4/3; background: var(--paper-3);
}
/* Ausschnitt auf die Fassade — die Straße allein hilft beim Wiedererkennen nicht */
.map-card img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 40%; }
.map-card__over {
  position: absolute; inset: auto 0 0 0; padding: var(--s6);
  background: linear-gradient(transparent, rgba(15,10,6,.88));
  color: #fff; display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s4);
}
.map-card__over b { font-family: var(--display); font-size: var(--t-xl); display: block; }
.map-card__over span { font-size: var(--t-sm); color: rgba(255,255,255,.75); }

/* ============================================================ Footer */
.ft { background: var(--ink); color: rgba(253,250,244,.6); padding: var(--s16) 0 var(--s8); font-size: var(--t-sm); }
.ft__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s12); margin-bottom: var(--s12); }
.ft h4 { color: var(--paper); font-family: var(--sans); font-size: var(--t-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 var(--s4); }
.ft ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s2); }
.ft a { text-decoration: none; transition: color .2s; }
.ft a:hover { color: var(--gold); }
.ft__logo { font-family: var(--display); font-size: 2rem; color: var(--paper); font-weight: 700; letter-spacing: -.02em; margin-bottom: var(--s2); }
.ft__logo i { font-style: italic; color: var(--gold); font-size: 1.3rem; font-weight: 400; }
.ft__social { display: flex; gap: var(--s3); margin-top: var(--s6); }
.ft__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(253,250,244,.2);
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.ft__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.ft__social svg { width: 17px; height: 17px; }
.ft__btm {
  border-top: 1px solid rgba(253,250,244,.12); padding-top: var(--s6);
  display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; font-size: var(--t-xs);
}

/* ============================================================ Mobile CTA-Leiste */
.mbar {
  position: fixed; inset: auto 0 0 0; z-index: 95; display: none;
  background: rgba(253,250,244,.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px; box-shadow: 0 -6px 24px rgba(29,22,17,.12);
}
.mbar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; padding: 7px 4px; border-radius: var(--r-md);
  font-size: 11px; font-weight: 600; letter-spacing: .02em; color: var(--ink-2);
}
.mbar a svg { width: 20px; height: 20px; }
.mbar a.is-primary { background: var(--saffron); color: var(--brand-ink); }
.mbar a.is-wa { color: #128C4B; }

/* ============================================================ Einblenden */
.rise { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; } }

/* ============================================================ Responsiv */
@media (max-width: 980px) {
  :root { --s24: 68px; --s20: 56px; --s16: 44px; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
  .story { grid-template-columns: 1fr; gap: var(--s12); }
  .story__chef { width: 34%; right: 0; bottom: -20px; }
  .ways { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: var(--s12); }
  .ft__grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .burger { display: flex; }
  #nav {
    position: fixed; inset: calc(var(--bar-h) + env(safe-area-inset-top)) 0 auto 0; z-index: 89;
    flex-direction: column; gap: 0; margin: 0;
    padding: var(--s2) var(--s6) calc(var(--s6) + env(safe-area-inset-bottom));
    background: rgba(253,250,244,.98); backdrop-filter: blur(16px);
    box-shadow: var(--sh-lg); border-top: 1px solid var(--line);
    color: var(--ink);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease), visibility 0s linear .25s;
  }
  #nav.is-open {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .25s var(--ease), opacity .2s var(--ease), visibility 0s;
  }
  #nav a {
    text-shadow: none; text-transform: none; letter-spacing: 0; font-size: var(--t-lg);
    padding: 15px 2px; border-bottom: 1px solid var(--line);
  }
  #nav a::after { display: none; }
}
@media (max-width: 640px) {
  :root { --t-3xl: 2rem; --bar-h: 60px; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .mbar { display: flex; }
  /* Der Header-CTA ragt hier raus und doppelt die untere Leiste */
  .hdr__in > .btn { display: none; }
  .lang { margin-left: auto; }
  .lang button { padding: 9px 13px; }
  /* Touch-Ziele: Listen-Links brauchen Fläche, nicht nur Textzeilen */
  .cinfo a, .ft ul a { display: inline-block; padding: 8px 0; }
  .ft__btm a { display: inline-block; padding: 8px 2px; }
  .hero { min-height: 92svh; }
  .hero__cta .btn { flex: 1; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--s3); }
  .card__body { padding: var(--s3) var(--s3) var(--s4); }
  .card__name { font-size: var(--t-base); }
  .card__price { font-size: var(--t-base); }
  .card__desc { font-size: var(--t-xs); }
  .card__mono { font-size: 2rem; }
  .gal { grid-template-columns: repeat(2, 1fr); gap: var(--s2); }
  .filters { gap: 8px; }
  .chip { padding: 10px 15px; font-size: var(--t-xs); }
  .ft__grid { grid-template-columns: 1fr; gap: var(--s8); }
  .scroll-hint { display: none; }
  .trust { gap: var(--s2) var(--s4); }
  .trust li { font-size: var(--t-xs); }
}

/* ============================================================ Rechtstexte (Impressum/Datenschutz) */
.legal-hdr { padding: var(--s6) 0; border-bottom: 1px solid var(--line); }
.legal-hdr .wrap { display: flex; align-items: center; justify-content: space-between; }
.legal-back { font-family: var(--sans); font-size: var(--t-sm); font-weight: 600; color: var(--ink-3); text-decoration: none; }
.legal-back:hover { color: var(--ink); }
.legal { padding: var(--s16) 0 var(--s24); }
.legal h1 { font-size: var(--t-3xl); margin-bottom: var(--s8); }
.legal h2 { font-size: var(--t-xl); margin: var(--s12) 0 var(--s3); color: var(--ink-2); }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { margin: 0 0 1em; padding-left: 1.2em; }
.legal li { margin-bottom: .4em; }
.legal a { color: var(--saffron-dk); text-decoration: underline; text-underline-offset: 2px; }
.legal .legal__note { font-size: var(--t-sm); font-style: italic; color: var(--ink-3); background: var(--paper-2); border-radius: var(--r-md); padding: var(--s4); margin-top: var(--s12); }
