/* ============================================================
   SMACO Editorial — Hood Magazine
   Schwarz dominiert. Gelb signalisiert. Weiß atmet.
   Bewusst andere Sprache als der gastro-builder Master-Stack.
   ============================================================ */

/* ─── Fonts (self-hosted) ─────────────────────────────────── */
@font-face {
  font-family: "Baloo 2"; font-weight: 700; font-style: normal; font-display: swap;
  src: url("/fonts/baloo2-700.woff2") format("woff2");
}
@font-face {
  font-family: "Baloo 2"; font-weight: 800; font-style: normal; font-display: swap;
  src: url("/fonts/baloo2-800.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("/fonts/hankengrotesk-400.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-weight: 500; font-style: normal; font-display: swap;
  src: url("/fonts/hankengrotesk-500.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-weight: 700; font-style: normal; font-display: swap;
  src: url("/fonts/hankengrotesk-700.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("/fonts/jetbrainsmono-400.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono"; font-weight: 700; font-style: normal; font-display: swap;
  src: url("/fonts/jetbrainsmono-700.woff2") format("woff2");
}

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --ink: #0a0a0c;
  --paper: #f6f4ee;
  --yellow: #ffda00;
  --yellow-hi: #ffe600;
  --rule: #2a2a2e;
  --rule-hi: #444448;

  --f-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --f-head:    "Hanken Grotesk", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --pad: clamp(20px, 4vw, 64px);
  --max: 1440px;

  --t-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --t-base: 420ms cubic-bezier(.2,.7,.2,1);
  /* starke emil-Kurven fuer cinematic Reveals + snappy UI */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout: cubic-bezier(0.77, 0, 0.175, 1);
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  /* clip statt hidden: verhindert seitliches Scrollen, ohne einen Scroll-Container
     zu erzeugen (sonst bricht position:sticky in der Nav). Safari Fallback unten. */
  overflow-x: clip;
  /* Bewusst KEIN scroll-behavior:smooth: Markus will reines, direktes natives
     Scrollen, kein Gleiten (weder per Wheel noch bei Anker-Klicks). */
}
@supports not (overflow-x: clip) { html { overflow-x: hidden; } }
body {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 400;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
@supports not (overflow-x: clip) { body { overflow-x: hidden; } }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.mono { font-family: var(--f-mono); letter-spacing: 0.04em; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--yellow); color: var(--ink);
  padding: 12px 16px; z-index: 9999; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 16px;
  padding: 16px var(--pad);
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand .brand-mark {
  height: 25px; width: auto; display: block;
  transition: transform 220ms var(--ease-out);
}
.nav__brand .brand-mark--onbright { display: none; }
@media (hover: hover) and (pointer: fine) {
  .nav__brand:hover .brand-mark { transform: scale(1.04) rotate(-1.5deg); }
}
.nav__brand:active .brand-mark { transform: scale(0.97); transition: transform 90ms var(--ease-out); }
.nav__pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--rule-hi);
}
.pill--rate { color: var(--yellow); border-color: var(--yellow); }
.pill--open { color: var(--paper); }
.pill--open[data-state="closed"] { opacity: 0.55; }
.pill--open::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #2bd96e; box-shadow: 0 0 8px #2bd96e; }
.pill--open[data-state="closed"]::before { background: #ff6a4a; box-shadow: 0 0 8px #ff6a4a; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 800; font-size: 13px; letter-spacing: 0.08em;
  background: var(--yellow); color: var(--ink);
  padding: 12px 16px; border-radius: 999px;
  transition: transform var(--t-fast), background-color var(--t-fast);
}
.nav__cta:hover { background: var(--yellow-hi); transform: translateY(-2px); }
.nav__cta-arrow { font-family: var(--f-mono); font-weight: 700; font-size: 14px; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 96px) var(--pad) clamp(60px, 8vw, 120px);
  border-bottom: 1px solid var(--rule);
  /* Halo und Sticker dürfen den Hero nicht über den Rand des Viewports schieben */
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 24px; max-width: var(--max); margin: 0 auto;
  position: relative;
}
.hero__meta {
  grid-column: 1 / -1;
  display: flex; gap: 24px; align-items: baseline;
  font-family: var(--f-mono); font-size: 12px; color: #b1b1b6;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.counter { color: var(--yellow); font-weight: 700; }
.label { letter-spacing: 0.18em; }

.hero__title {
  grid-column: 1 / 8;
  margin: 0;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.86;
  letter-spacing: -0.02em;
}
.hero__title .hero__word {
  display: block;
  overflow: hidden;
}
.hero__title .hero__word--amp { letter-spacing: -0.03em; }
.hero__title .hero__word--y { color: var(--yellow); }

.hero__art {
  grid-column: 8 / 13;
  align-self: end; margin: 0;
  position: relative;
  rotate: -4deg;
  transform-origin: center;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  transition: rotate var(--t-base);
}
.hero__art img {
  width: 100%; height: auto;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 2px solid var(--ink);
}
.hero__sticker {
  position: absolute;
  font-family: var(--f-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.hero__sticker--halal { top: -16px; right: -10px; rotate: 8deg; }
.hero__sticker--new   { bottom: 20px; left: -20px; rotate: -7deg; background: var(--paper); }

.hero__facts {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: clamp(40px, 6vw, 80px) 0 0; padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero__facts > div {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--f-mono); font-size: 13px;
}
.hero__facts dt { color: var(--yellow); font-weight: 700; letter-spacing: 0.1em; font-size: 10px; }
.hero__facts dd { margin: 0; font-weight: 400; line-height: 1.35; color: var(--paper); }

/* ─── TICKER (Marquee) ────────────────────────────────────── */
.ticker {
  background: var(--yellow);
  color: var(--ink);
  border-block: 2px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
  /* Container darf nie breiter werden als Viewport */
  max-width: 100vw;
}
.ticker__track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  font-family: var(--f-display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.01em;
  animation: tick 40s linear infinite;
  will-change: transform;
}
.ticker__track i { font-style: normal; font-size: 16px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ─── SPLIT (Smash ↔ Birria) ──────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-bottom: 1px solid var(--rule);
}
.split__col {
  padding: clamp(40px, 5vw, 80px) var(--pad);
  position: relative;
  border-right: 1px solid var(--rule);
}
.split__col--alt { background: var(--yellow); color: var(--ink); border-right: 0; }

.split__num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--f-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em;
  color: inherit; opacity: 0.6;
}
.split__head {
  margin: 0 0 16px;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(64px, 9vw, 140px); line-height: 0.9; letter-spacing: -0.02em;
  overflow: hidden;
}
.split__lead {
  max-width: 28em; font-size: 16px; line-height: 1.55; opacity: 0.9;
  margin: 0 0 24px;
}
.split__art {
  margin: 24px 0;
  border: 2px solid var(--ink);
  rotate: -2deg;
  transition: rotate var(--t-base), translate var(--t-base);
}
.split__art--birria { rotate: 3deg; }
.split__art:hover { rotate: 0deg; translate: 0 -4px; }
.split__art img { width: 100%; height: clamp(220px, 26vw, 360px); object-fit: cover; display: block; }
.split__col:not(.split__col--alt) .split__art { background: var(--ink); border-color: var(--rule-hi); }

.split__items {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--f-mono); font-size: 14px;
  border-top: 1px dashed currentColor; padding-top: 16px;
}
.split__items li {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  padding: 6px 0;
  border-bottom: 1px dashed color-mix(in srgb, currentColor 30%, transparent);
}
.split__items b { font-family: var(--f-head); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.split__items em { font-style: normal; font-weight: 700; }
.split__items li:has(.menu__thumb) { grid-template-columns: 44px 1fr auto; align-items: center; }
.split__items .menu__thumb {
  grid-row: auto; width: 44px; height: 44px; object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}
.split__items li:has(.menu__thumb) b { grid-column: 2; }
.split__items li:has(.menu__thumb) em { grid-column: 3; }
.split__items .is-star b::before {
  content: "★ ";
  color: var(--yellow);
}
.split__col--alt .split__items .is-star b::before { color: var(--ink); }

/* ─── HALAL Manifest ──────────────────────────────────────── */
.halal {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 200px) var(--pad);
  position: relative;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  /* HALAL-Stempel (rotated zertifikat-Look) liegt absolut mit right: -10%
     bzw. left:-40px auf Mobile - darf NICHT über den Section-Rand poppen. */
  overflow: hidden;
}
.halal__inner { max-width: var(--max); margin: 0 auto; }
.halal__small {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.1em;
  color: var(--yellow); font-weight: 700;
}
.halal__big {
  margin: 24px 0 32px;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.86; letter-spacing: -0.03em;
}
.halal__big span { display: inline-block; }
.halal__big--y { color: var(--yellow); }
.halal__copy { max-width: 38em; font-size: 18px; line-height: 1.6; opacity: 0.9; }
.halal__copy .mono { display: block; margin-top: 12px; font-size: 12px; color: var(--yellow); }
.halal__cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 32px;
  font-family: var(--f-mono); font-weight: 700; font-size: 14px; letter-spacing: 0.08em;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow); padding: 10px 0;
  min-height: 44px;
  transition: gap var(--t-fast);
}
.halal__cta:hover { gap: 20px; }

/* ─── SPEISEKARTE ─────────────────────────────────────────── */
.menu {
  padding: clamp(60px, 8vw, 120px) var(--pad);
  background: var(--paper); color: var(--ink);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.menu__head { max-width: var(--max); margin: 0 auto 48px; }
.menu__title {
  margin: 16px 0 12px;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(56px, 10vw, 160px); line-height: 0.88; letter-spacing: -0.02em;
}
.menu__lead { max-width: 32em; font-size: 16px; opacity: 0.75; margin: 0; }
/* Reveal-Button (nur mit JS sichtbar, sonst Karte offen) */
.menu__toggle { display: none; }
html.js .menu__toggle {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px;
  background: var(--ink); color: var(--yellow);
  border: none; cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.menu__toggle-ico {
  width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px,-1px);
  transition: transform 320ms var(--ease-out);
}
.menu__toggle[aria-expanded="true"] .menu__toggle-ico { transform: rotate(-135deg) translate(-1px,-1px); }
@media (hover: hover) and (pointer: fine) {
  .menu__toggle:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.22); }
}
.menu__toggle:active { transform: scale(0.97); }

/* Reveal-Container: Hoehe 0fr -> 1fr (smooth aufklappen) */
.menu__reveal { max-width: var(--max); margin: 0 auto; }
html.js .menu__reveal {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows 520ms var(--ease-out), opacity 380ms var(--ease-out);
}
html.js .menu__reveal-inner { min-height: 0; overflow: hidden; }
html.js .menu__reveal.is-open { grid-template-rows: 1fr; opacity: 1; }

/* horizontale Karten-Bahn mit Snap */
.menu__track {
  display: flex; gap: clamp(16px, 2vw, 28px);
  /* start statt stretch: kurze Karten erben sonst die Hoehe der laengsten
     und stehen unten leer (Markus: "manche Flaechen wirken so leer") */
  align-items: start;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--ink) 45%, transparent) transparent;
}
.menu__track::-webkit-scrollbar { height: 7px; }
.menu__track::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--ink) 40%, transparent); border-radius: 999px; }
.menu__track::-webkit-scrollbar-track { background: transparent; }
.menu__card {
  flex: 0 0 clamp(270px, 80vw, 360px);
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 4px;
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 16px;
  padding: 22px 22px 18px;
  /* gemeinsame Untergrenze, damit 5er- und 6er-Karten ebenbuertig wirken */
  min-height: clamp(360px, 52vh, 460px);
}
/* Brand-Footer am Kartenboden gepinnt: fuellt Resthoehe sinnvoll statt Leere */
.menu__foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.menu__foot-mark { opacity: 0.55; }
.menu__foot-note {
  background: var(--ink); color: var(--yellow);
  padding: 2px 8px; border-radius: 4px; font-weight: 700; white-space: nowrap;
}
/* Karten sliden beim Oeffnen leicht hoch (staggered) */
html.js .menu__reveal.is-open .menu__card { animation: menu-card-in 480ms var(--ease-out) both; }
html.js .menu__reveal.is-open .menu__card:nth-child(2) { animation-delay: 70ms; }
html.js .menu__reveal.is-open .menu__card:nth-child(3) { animation-delay: 140ms; }
html.js .menu__reveal.is-open .menu__card:nth-child(4) { animation-delay: 210ms; }
@keyframes menu-card-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.menu__hint {
  max-width: var(--max); margin: 2px auto 0; text-align: right;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.5;
}
@media (prefers-reduced-motion: reduce) {
  html.js .menu__reveal { transition: opacity 200ms ease; }
  html.js .menu__reveal.is-open .menu__card { animation: none; }
  .menu__track { scroll-snap-type: none; }
}
.menu__cat {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--f-head); font-weight: 700; font-size: 18px;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0; padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}
.menu__catnum {
  font-family: var(--f-mono); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; background: var(--ink); color: var(--yellow);
  padding: 2px 8px; border-radius: 4px;
}
.menu__list { display: flex; flex-direction: column; }
.menu__list li {
  display: grid; grid-template-columns: 1fr auto; gap: 8px 12px;
  padding: 14px 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--ink) 25%, transparent);
}
.menu__list b { grid-column: 1; font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.menu__list span { grid-column: 1; font-size: 13px; line-height: 1.45; opacity: 0.72; }
.menu__list em { grid-column: 2; grid-row: 1; font-family: var(--f-mono); font-weight: 700; font-style: normal; font-size: 15px; }
.menu__list .is-star b::before { content: "★ "; color: #c08c00; }
.menu__thumb {
  grid-column: 1; grid-row: 1 / span 2; align-self: center;
  width: 62px; height: 62px; object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28));
}
.menu__list li:has(.menu__thumb) { grid-template-columns: 62px 1fr auto; align-items: center; }
.menu__list li:has(.menu__thumb) b,
.menu__list li:has(.menu__thumb) span { grid-column: 2; }
.menu__list li:has(.menu__thumb) em { grid-column: 3; grid-row: 1; }
.menu__sub { margin: -2px 0 8px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.55; }
.menu__legal { max-width: var(--max); margin: 48px auto 0; font-size: 11px; opacity: 0.6; }

/* ─── STORE-LIFE (Full-bleed Foto + Overlay) ──────────────── */
.store {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.store__bg {
  position: absolute; inset: 0; z-index: 0; margin: 0;
  background: var(--ink);
}
.store__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7;
  filter: contrast(1.05) saturate(1.1);
}
.store::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,12,0.7) 70%, var(--ink) 100%);
  pointer-events: none;
}
.store__overlay {
  position: relative; z-index: 2;
  padding: clamp(60px, 10vw, 160px) var(--pad);
  max-width: var(--max); margin: 0 auto;
  min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
}
.store__head {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(80px, 16vw, 280px); line-height: 0.86; letter-spacing: -0.03em;
  margin: 16px 0 24px;
}
.store__head--y { color: var(--yellow); }
.store__copy { max-width: 32em; font-size: 18px; line-height: 1.55; }
.store__credit { margin-top: 24px; font-size: 11px; color: var(--yellow); opacity: 0.8; }

/* ─── STANDORT ────────────────────────────────────────────── */
.loc {
  background: var(--ink);
  padding: clamp(60px, 8vw, 120px) var(--pad);
  border-bottom: 1px solid var(--rule);
  /* Grain liegt absolut inset:0 — Section muss clippen */
  position: relative;
  overflow: hidden;
}
.loc__inner { max-width: var(--max); margin: 0 auto; }
.loc__head {
  margin: 16px 0 40px;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(48px, 8vw, 120px); line-height: 0.9; letter-spacing: -0.02em;
}
.loc__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.loc__line { margin: 0 0 24px; font-size: 18px; line-height: 1.4; }
.loc__line .mono { display: block; font-size: 11px; color: var(--yellow); margin-bottom: 6px; letter-spacing: 0.1em; }
.loc__line strong { font-weight: 700; font-size: clamp(20px, 2vw, 26px); }
/* Telefon-Link ist Inline-Text — auf Touch als Button-Box wahrnehmbar machen (44px-Treffer) */
.loc__line a {
  display: inline-block;
  min-height: 44px;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.loc__line a:hover { color: var(--yellow); }
.loc__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px;
  transition: transform var(--t-fast), background-color var(--t-fast), color var(--t-fast);
}
.btn--solid { background: var(--yellow); color: var(--ink); }
.btn--solid:hover { background: var(--yellow-hi); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--rule-hi); color: var(--paper); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.loc__map {
  position: relative;
  min-height: 380px; height: 100%;
  border-radius: 16px; overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--rule);
}
:global(.leaflet-container) { font-family: var(--f-mono) !important; }

/* Karte erst auf Klick laden (DSGVO: kein automatischer Transfer an CARTO/OSM) */
.map-consent {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
}
.map-consent__txt { max-width: 38ch; margin: 0; font-size: 13px; line-height: 1.5; color: #c8c8cc; }
.map-consent__btn {
  font-family: var(--f-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.06em;
  padding: 11px 20px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--yellow); color: var(--ink);
  transition: transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .map-consent__btn:hover { transform: translateY(-1px); } }
.map-consent__btn:active { transform: scale(0.97); }
.map-consent__alt { font-size: 11px; color: #8a8a8e; }
[data-theme="bright"] .map-consent { background: color-mix(in srgb, #ffffff 90%, transparent); }
[data-theme="bright"] .map-consent__txt { color: #3a3a3e; }
[data-theme="bright"] .map-consent__alt { color: #6a6a6e; }

/* ─── OPEN-Panel ──────────────────────────────────────────── */
.open {
  background: var(--paper); color: var(--ink);
  padding: clamp(60px, 8vw, 100px) var(--pad);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
/* counter (gelb) ist auf cream paper unzureichend kontrastiert — Override für alle hellen Sections */
.open .counter, .menu .counter, .trio .counter { color: #8a6500; }
.open__head {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(80px, 14vw, 220px); line-height: 0.9; letter-spacing: -0.02em;
  margin: 24px 0 48px;
}
.open__head[data-state="closed"] { opacity: 0.5; }
.open__week {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 12px; max-width: var(--max); margin: 0 auto;
  font-family: var(--f-mono); font-size: 14px;
}
.open__week li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 8px;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 8px;
}
.open__week .mono { font-size: 18px; font-weight: 700; }
.open__week em { font-style: normal; font-size: 13px; }
.open__week .is-late { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.open__week .is-late .mono { color: var(--yellow); }
.open__week .is-today { background: var(--yellow); border-color: var(--ink); }
.open__week .is-today.is-late { background: var(--yellow); color: var(--ink); border-color: var(--ink); }
.open__week .is-today.is-late .mono { color: var(--ink); }

/* ─── BIG CTA Bar ─────────────────────────────────────────── */
.bigcta {
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.bigcta__link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(40px, 6vw, 80px) var(--pad);
  color: var(--ink);
  transition: background-color var(--t-fast);
}
.bigcta__link:hover { background: var(--yellow-hi); }
.bigcta__head {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(56px, 10vw, 160px); line-height: 0.88; letter-spacing: -0.03em;
  text-align: center;
}
.bigcta__head > span { display: inline-block; }
.bigcta__sub {
  font-family: var(--f-mono); font-size: clamp(14px, 1.4vw, 18px);
  margin-top: 12px; letter-spacing: 0.05em;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--ink);
  padding: clamp(40px, 6vw, 80px) var(--pad) 24px;
  isolation: isolate; overflow: hidden;
}
.footer__pat {
  position: absolute; inset: 0; z-index: 0; opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 50c0-8 8-14 18-14s18 6 18 14'/%3E%3Cpath d='M22 56h36'/%3E%3Cpath d='M22 62c0 6 6 10 18 10s18-4 18-10'/%3E%3Cpath d='M86 38l-2 28c0 4 4 6 12 6s12-2 12-6l-2-28z'/%3E%3Cpath d='M90 40v-10M94 40v-14M98 40v-10M102 40v-12'/%3E%3Cpath d='M26 110c8-12 26-12 34 0'/%3E%3Cpath d='M26 110c0 6 8 10 17 10s17-4 17-10'/%3E%3Ccircle cx='34' cy='112' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='44' cy='114' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='52' cy='112' r='1.2' fill='%23ffffff'/%3E%3Cpath d='M96 108v-12a3 3 0 016 0v6'/%3E%3Cpath d='M102 102v-3a3 3 0 016 0v9'/%3E%3Cpath d='M108 108v-3a3 3 0 016 0v9'/%3E%3Cpath d='M114 111v-2a3 3 0 016 0v8c0 6-6 12-12 12h-6c-6 0-10-4-12-10l-4-12'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}
.footer__inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.footer__mark strong {
  font-family: var(--f-display); font-weight: 800; font-size: 56px; color: var(--yellow); letter-spacing: -0.02em;
}
.footer__left .mono { font-size: 11px; color: #b1b1b6; margin: 6px 0; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 13px; }
.footer__nav a { transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--yellow); }
.footer__base { position: relative; z-index: 1; max-width: var(--max); margin: 16px auto 0; font-size: 11px; color: #777; }

/* ─── Cursor-Spot (Desktop only) ──────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  background: var(--yellow);
  border-radius: 50%; pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 200ms, scale 200ms;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  body[data-cursor="on"] .cursor { opacity: 1; }
  body[data-cursor="on"] a:hover ~ .cursor,
  body[data-cursor="on"] button:hover ~ .cursor { scale: 2; }
}

/* ─── Reveal (SplitType letters) ──────────────────────────── */
[data-split] .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
[data-split].is-in .char {
  animation: charIn 700ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 26ms);
}
@keyframes charIn {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__pills { display: none; }

  .hero__title { grid-column: 1 / -1; font-size: clamp(56px, 18vw, 100px); }
  .hero__art { grid-column: 1 / -1; rotate: 0deg; max-width: 340px; margin: 24px auto 0; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); }

  .ticker__track { font-size: 18px; gap: 24px; }

  .split { grid-template-columns: 1fr; }
  .split__col { border-right: 0; border-bottom: 1px solid var(--rule); }
  .split__col--alt { border-bottom: 0; }

  .menu__card { flex-basis: clamp(260px, 86vw, 340px); }

  .loc__grid { grid-template-columns: 1fr; }
  .loc__map { min-height: 320px; }

  .open__week { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1fr; }
  .cursor { display: none; }
}

@media (max-width: 520px) {
  .hero__sticker--halal { top: -6px; right: -4px; font-size: 11px; }
  .hero__sticker--new   { bottom: 10px; left: -8px; font-size: 11px; }
  .hero__art img { padding: 10px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE-FIXES (Polish-Welle 4)
   - Trio: stacked statt nebeneinander
   - Tap-Highlight transparent
   - Hero-Meta kompakter
   - Magnetic auto-off (im JS schon, hier nur Cursor)
   ════════════════════════════════════════════════════════════ */

/* sauberere Touch-UX: keine grauen tap-highlights */
html { -webkit-tap-highlight-color: transparent; }
* { -webkit-tap-highlight-color: transparent; }

/* Tablet/schmal-Desktop: Trio + Ways stacken früher als der allgemeine 900-Break,
   sonst zerbrechen die 3-Spalten-Cards (Headlines abgeschnitten, Preise mit Komma weg). */
@media (max-width: 1100px) {
  .trio__grid { grid-template-columns: 1fr !important; gap: 16px; }
  .trio__card { padding: 28px 28px 28px 28px; padding-right: 90px; }
  .trio__card--mid {
    transform: none !important;
    z-index: auto;
    border: 2px solid var(--ink);
  }
  .trio__card--mid:hover { transform: translateY(-4px) !important; }
  /* Numeral: hochstellen sodass es Header-Bereich überlappt, NICHT die Items-Spalte mit Preisen */
  .trio__num {
    font-size: 64px;
    top: 22px; right: 22px;
    opacity: 0.18;
    line-height: 1;
  }
  .trio__name { font-size: clamp(28px, 6vw, 38px) !important; line-height: 0.98; }
  /* Items voll-Breite (Numeral darf nicht überlagern) */
  .trio__items, .trio__sum { position: relative; z-index: 2; background: inherit; }

  .ways__grid { grid-template-columns: 1fr !important; gap: 16px; }
  .ways__card { padding-right: 90px; }
  .ways__num { font-size: 56px; opacity: 0.18; }
}

@media (max-width: 900px) {

  /* Hero-Meta kompakter (1 Zeile mit truncation) */
  .hero__meta {
    flex-wrap: wrap; gap: 8px 16px;
    font-size: 11px !important;
  }
  .hero__meta .label {
    letter-spacing: 0.12em;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  }

  /* Open-Wochenliste auf schmalstem viewport (<420px) komplett gestackt */
}

@media (max-width: 420px) {
  .open__week { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .open__week li { padding: 12px 6px; }
}

@media (max-width: 380px) {
  /* extra schmal: Hero-Title etwas kleiner damit "BURGER &" nicht umbricht */
  .hero__title { font-size: 14vw !important; }
  .halal__big  { font-size: 18vw !important; }
}

/* Halal-Stempel auf Mobile: kleiner + sicher im Frame */
@media (max-width: 600px) {
  .halal__stamp { width: 130px; height: 130px; font-size: 10px; left: auto; right: -10px; top: 4%; bottom: auto; }
}

/* ════════════════════════════════════════════════════════════
   BESTELLWEGE-SEKTION (.ways)
   3 ehrliche Optionen + Slots für künftige Lieferdienste
   ════════════════════════════════════════════════════════════ */
.ways {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 120px) var(--pad);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.ways__head { max-width: var(--max); margin: 0 auto 48px; }
.ways__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(48px, 8vw, 110px); line-height: 0.9; letter-spacing: -0.02em;
  margin: 16px 0 0;
}
.ways__title span { display: inline-block; }
.ways__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max); margin: 0 auto;
}
.ways__card {
  background: var(--ink); color: var(--paper);
  border: 1.5px solid var(--rule-hi);
  padding: 28px 26px;
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.ways__card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.ways__card--primary {
  background: var(--yellow); color: var(--ink);
  border-color: var(--yellow);
}
.ways__card--primary:hover { border-color: var(--ink); }
.ways__num {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--f-display); font-weight: 800;
  font-size: 56px; line-height: 0.9;
  color: var(--yellow); opacity: 0.22;
}
.ways__card--primary .ways__num { color: var(--ink); opacity: 0.18; }
.ways__name {
  margin: 0;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 3vw, 40px); line-height: 0.95; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.ways__sub { font-size: 10.5px; letter-spacing: 0.12em; opacity: 0.65; margin: 0; }
.ways__copy { font-size: 14px; line-height: 1.45; margin: 0; opacity: 0.82; max-width: 30ch; }
.ways__cta {
  margin-top: auto; align-self: flex-start;
  font-family: var(--f-mono); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em;
  /* 12px padding-block + 13px line-height * 1.4 ≈ 46px Touch-Target */
  padding: 12px 18px;
  min-height: 44px;
  display: inline-flex; align-items: center;
  border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  transition: transform var(--t-fast), gap var(--t-fast);
}
.ways__card--primary .ways__cta { background: var(--ink); color: var(--yellow); }
.ways__cta:hover { transform: translateY(-2px); }
.ways__card--platform { border-style: dashed; opacity: 0.85; }

@media (max-width: 900px) {
  .ways__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER-SOCIAL (auskommentiert im HTML, Styles bereits da)
   ════════════════════════════════════════════════════════════ */
.footer__social {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 16px auto 0;
  display: flex; gap: 18px; flex-wrap: wrap;
  list-style: none; padding: 0;
}
.footer__social a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--paper);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer__social a:hover { color: var(--yellow); border-color: var(--yellow); }
.footer__social svg { color: var(--yellow); }

/* ════════════════════════════════════════════════════════════
   POLISH WELLE 5
   - Mobile Sticky-Bottom-Bar
   - Sticker-Bobble-Pulse
   - Indicator Progress-Bar
   - Marquee Slow-on-Hover (statt Pause)
   - Theme-Switch im NAV
   ════════════════════════════════════════════════════════════ */

/* Theme-Switch-Pill — 44x44 für Touch-Target-Konformität (WCAG 2.5.5 AAA) */
.nav__theme {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule-hi);
  background: transparent;
  font-size: 18px;
  color: var(--yellow);
  text-decoration: none;
  margin-left: 8px;
  transition: background-color var(--t-fast), transform var(--t-fast);
}
.nav__theme:hover { background: var(--yellow); color: var(--ink); transform: rotate(20deg); }
@media (max-width: 540px) {
  .nav__theme { font-size: 17px; margin-left: 4px; }
}

/* Sticker-Bobble (HALAL + FRISCH AUF) */
@media (prefers-reduced-motion: no-preference) {
  .hero__sticker--halal { animation: bobble 5s ease-in-out infinite; }
  .hero__sticker--new   { animation: bobble 5s ease-in-out infinite -2.5s; }
}
@keyframes bobble {
  0%, 100% { transform: rotate(var(--r, 8deg)) translateY(0); }
  50%      { transform: rotate(calc(var(--r, 8deg) - 3deg)) translateY(-4px); }
}
.hero__sticker--halal { --r: 8deg; }
.hero__sticker--new   { --r: -7deg; }
.hero__sticker:hover {
  animation-play-state: paused;
  transform: rotate(0) scale(1.08) !important;
  transition: transform var(--t-base);
}

/* Indicator Progress-Bar (gelber Strich der mit scroll wächst) */
.indicator a { position: relative; z-index: 1; }

/* Marquee: Slow-on-Hover statt Pause (eleganter) */
.ticker__row:hover .ticker__track,
.ticker__row:hover .ticker__track--rev {
  animation-duration: 140s !important;  /* von 40s/36s auf 140s — sichtbar verlangsamt */
}

/* Mobile Sticky-Bottom-Bar */
.mobile-bar {
  display: none;  /* nur Mobile */
}
@media (max-width: 720px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 6px;
    position: fixed;
    bottom: 12px; left: 12px; right: 12px;
    padding: 6px;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--rule-hi);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    z-index: 60;
  }
  .mobile-bar__btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px;
    padding: 10px 6px;
    font-family: var(--f-mono); font-weight: 700;
    font-size: 11px; letter-spacing: 0.08em;
    color: var(--paper);
    border-radius: 10px;
    transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-bar__btn:active { transform: scale(0.96); }
  .mobile-bar__btn--primary {
    background: var(--yellow);
    color: var(--ink);
  }
  .mobile-bar__icon { font-size: 18px; line-height: 1; }
  .mobile-bar__label { font-size: 10px; }

  /* Padding-Bottom für Body damit nichts hinter der Bar versteckt ist */
  body { padding-bottom: 76px; }
}

/* ════════════════════════════════════════════════════════════
   BRIGHT-THEME ("sonnig.html" — gelb + weiß als Fokus, ink als Akzent)
   Layout identisch, nur Token-Override + ein paar Sektion-Inversionen.
   ════════════════════════════════════════════════════════════ */
[data-theme="bright"],
[data-theme="bright"] {
  color-scheme: light;
}
[data-theme="bright"] {
  background: #fbfaf3;          /* warmer Off-White */
  color: #0a0a0c;
}
[data-theme="bright"] {
  --ink: #0a0a0c;
  --paper: #fbfaf3;              /* warm off-white als BG */
  --yellow: #ffda00;
  --yellow-hi: #ffe600;
  --rule: #e8e2cc;
  --rule-hi: #c9c2a8;
}

/* Tausche: dunkle Sektionen werden gelb-flächig (Sonnen-Look) */
[data-theme="bright"] .nav {
  background: color-mix(in srgb, #fbfaf3 92%, transparent);
  border-bottom: 1px solid var(--rule);
}
[data-theme="bright"] .nav__brand .brand-mark--ondark { display: none; }
[data-theme="bright"] .nav__brand .brand-mark--onbright { display: block; }
[data-theme="bright"] .pill { color: var(--ink); border-color: var(--ink); background: transparent; }
[data-theme="bright"] .pill--rate { color: var(--ink); border-color: var(--ink); background: rgba(255,255,255,0.6); }
[data-theme="bright"] .pill--count { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.15); color: var(--ink); }
[data-theme="bright"] .pill--open::before { background: #1f9b4a; box-shadow: 0 0 8px #1f9b4a; }
[data-theme="bright"] .pill--open[data-state="closed"]::before { background: #d6361c; box-shadow: 0 0 8px #d6361c; }
[data-theme="bright"] .nav__cta { background: var(--ink); color: var(--yellow); }
[data-theme="bright"] .nav__cta:hover { background: var(--yellow); color: var(--ink); }
[data-theme="bright"] .nav__theme { border-color: var(--ink); color: var(--ink); }
[data-theme="bright"] .nav__theme:hover { background: var(--ink); color: var(--yellow); }

/* Hero: gelb-flächig (Sonnen-Look), Bubble in ink */
[data-theme="bright"] .hero { background: var(--yellow); color: var(--ink); }
[data-theme="bright"] .hero .grain { opacity: 0.03; mix-blend-mode: multiply; }
[data-theme="bright"] .hero .halo {
  background: radial-gradient(circle at center, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 22%, rgba(255,255,255,0) 60%);
}
[data-theme="bright"] .hero__title { color: var(--ink); }
[data-theme="bright"] .hero__title .hero__word--y { color: var(--paper); -webkit-text-stroke: 2px var(--ink); }
[data-theme="bright"] .hero__meta { color: rgba(10,10,12,0.65); }
[data-theme="bright"] .counter { color: var(--ink); }
[data-theme="bright"] .hero__facts { border-top-color: rgba(0,0,0,0.2); }
[data-theme="bright"] .hero__facts dt { color: var(--ink); }
[data-theme="bright"] .hero__facts dd { color: var(--ink); }
[data-theme="bright"] .hero__sticker--halal { background: var(--ink); color: var(--yellow); }
[data-theme="bright"] .hero__sticker--new { background: var(--paper); color: var(--ink); }

/* Ticker invertiert: Reihe 1 schwarz (statt gelb), Reihe 2 gelb-bg mit ink-quotes */
[data-theme="bright"] .ticker__row { background: var(--ink); color: var(--yellow); border-color: var(--yellow); }
[data-theme="bright"] .ticker__row--rev { background: var(--yellow); color: var(--ink); border-color: var(--ink); }
[data-theme="bright"] .ticker__row--rev .ticker__q { color: var(--ink); }

/* Split: links weiß, rechts gelb (statt schwarz/gelb) */
[data-theme="bright"] .split__col { background: var(--paper); color: var(--ink); border-right-color: var(--rule); }
[data-theme="bright"] .split__col--alt { background: var(--yellow); color: var(--ink); }
[data-theme="bright"] .split__col:not(.split__col--alt) .split__art { background: var(--paper); border-color: var(--ink); }
[data-theme="bright"] .split__items .is-star b::before { color: var(--ink); }

/* Quotes: weiß mit ink-text, gelbe Quote-Marks und Highlights */
[data-theme="bright"] .quotes { background: var(--paper); color: var(--ink); }
[data-theme="bright"] .quotes__title { color: var(--ink); }
[data-theme="bright"] .quote__text em { color: #8a6500; }
[data-theme="bright"] .quote__mark { color: #8a6500; }
[data-theme="bright"] .quote__by { border-top-color: var(--rule); color: rgba(10,10,12,0.6); }
[data-theme="bright"] .quote__stars { color: #8a6500; }

/* Halal: gelb-flächig, ink-Text, "HALAL" in weiß mit ink-stroke */
[data-theme="bright"] .halal { background: var(--yellow); color: var(--ink); }
[data-theme="bright"] .halal__small { color: var(--ink); }
[data-theme="bright"] .halal__big { color: var(--ink); }
[data-theme="bright"] .halal__big--y { color: var(--paper); -webkit-text-stroke: 2px var(--ink); }
[data-theme="bright"] .halal__copy { color: var(--ink); opacity: 0.92; }
[data-theme="bright"] .halal__copy .mono { color: var(--ink); opacity: 0.7; }
[data-theme="bright"] .halal__cta { color: var(--ink); border-color: var(--ink); }
[data-theme="bright"] .halal__stamp { color: var(--ink); border-color: var(--ink); opacity: 0.2; }
[data-theme="bright"] .halal__stamp::before { border-color: var(--ink); }

/* Menu: weiß (sowieso) — kleine Akzent-Anpassungen */
[data-theme="bright"] .menu { background: var(--paper); }

/* Trio: weiß-cards mit ink-text, mittlere bleibt gelb */
[data-theme="bright"] .trio { background: var(--paper); }
[data-theme="bright"] .trio__title--y { color: var(--yellow); -webkit-text-stroke: 2px var(--ink); text-shadow: 3px 3px 0 var(--ink); }
[data-theme="bright"] .trio__card { background: var(--paper); color: var(--ink); border: 1.5px solid var(--ink); }
[data-theme="bright"] .trio__card--mid { background: var(--yellow); color: var(--ink); }
[data-theme="bright"] .trio__num { color: var(--ink); }
[data-theme="bright"] .trio__card--mid .trio__num { color: var(--ink); }
[data-theme="bright"] .trio__cta { background: var(--ink); color: var(--yellow); }
[data-theme="bright"] .trio__card--mid .trio__cta { background: var(--ink); color: var(--yellow); }

/* Store: BG-Bild bleibt, Overlay-Header in ink-Stroke */
[data-theme="bright"] .store::after {
  background: linear-gradient(180deg, transparent 0%, rgba(251,250,243,0.4) 60%, var(--paper) 100%);
}
[data-theme="bright"] .store__head { color: var(--paper); -webkit-text-stroke: 2px var(--ink); }
[data-theme="bright"] .store__head--y { color: var(--yellow); }
[data-theme="bright"] .store__copy { color: var(--ink); background: rgba(255,255,255,0.6); padding: 12px; border-radius: 8px; backdrop-filter: blur(4px); }
[data-theme="bright"] .store__credit { color: var(--ink); opacity: 0.7; }

/* Standort: gelb-flächig (analog Halal) */
[data-theme="bright"] .loc { background: var(--yellow); color: var(--ink); }
[data-theme="bright"] .loc__head { color: var(--ink); }
[data-theme="bright"] .loc__line .mono { color: var(--ink); opacity: 0.65; }
[data-theme="bright"] .loc__line strong { color: var(--ink); }
[data-theme="bright"] .loc__line a:hover { color: var(--paper); }
[data-theme="bright"] .btn--solid { background: var(--ink); color: var(--yellow); }
[data-theme="bright"] .btn--ghost { color: var(--ink); border-color: var(--ink); }
[data-theme="bright"] .btn--ghost:hover { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
[data-theme="bright"] .loc__map { border-color: var(--ink); }

/* Open: weiß (sowieso) */
[data-theme="bright"] .open { background: var(--paper); color: var(--ink); }
[data-theme="bright"] .open__week .is-late { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
[data-theme="bright"] .open__week .is-today { background: var(--yellow); border-color: var(--ink); }

/* BigCTA: ink-flächig (Akzent invertiert) */
[data-theme="bright"] .bigcta { background: var(--ink); border-color: var(--ink); }
[data-theme="bright"] .bigcta__link { color: var(--yellow); }
[data-theme="bright"] .bigcta__link:hover { background: #1c1c1f; }

/* Ways: weiß als Hintergrund mit ink-cards */
[data-theme="bright"] .ways { background: var(--paper); color: var(--ink); }
[data-theme="bright"] .ways__card { background: var(--ink); color: var(--paper); border-color: var(--ink); }
[data-theme="bright"] .ways__card--primary { background: var(--yellow); color: var(--ink); border-color: var(--ink); }
[data-theme="bright"] .ways__cta { background: var(--yellow); color: var(--ink); }
[data-theme="bright"] .ways__card--primary .ways__cta { background: var(--ink); color: var(--yellow); }

/* Footer: gelb (statt ink) */
[data-theme="bright"] .footer { background: var(--yellow); color: var(--ink); }
[data-theme="bright"] .footer__pat {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%230a0a0c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 50c0-8 8-14 18-14s18 6 18 14'/%3E%3Cpath d='M22 56h36'/%3E%3Cpath d='M22 62c0 6 6 10 18 10s18-4 18-10'/%3E%3Cpath d='M86 38l-2 28c0 4 4 6 12 6s12-2 12-6l-2-28z'/%3E%3Cpath d='M90 40v-10M94 40v-14M98 40v-10M102 40v-12'/%3E%3Cpath d='M26 110c8-12 26-12 34 0'/%3E%3Cpath d='M26 110c0 6 8 10 17 10s17-4 17-10'/%3E%3Ccircle cx='34' cy='112' r='1.2' fill='%230a0a0c'/%3E%3Ccircle cx='44' cy='114' r='1.2' fill='%230a0a0c'/%3E%3Ccircle cx='52' cy='112' r='1.2' fill='%230a0a0c'/%3E%3Cpath d='M96 108v-12a3 3 0 016 0v6'/%3E%3Cpath d='M102 102v-3a3 3 0 016 0v9'/%3E%3Cpath d='M108 108v-3a3 3 0 016 0v9'/%3E%3Cpath d='M114 111v-2a3 3 0 016 0v8c0 6-6 12-12 12h-6c-6 0-10-4-12-10l-4-12'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}
[data-theme="bright"] .footer__mark strong { color: var(--ink); }
[data-theme="bright"] .footer__left .mono { color: var(--ink); opacity: 0.7; }
[data-theme="bright"] .footer__nav a:hover { color: var(--paper); }
[data-theme="bright"] .footer__inner { border-bottom-color: rgba(0,0,0,0.2); }
[data-theme="bright"] .footer__base { color: rgba(0,0,0,0.55); }
/* Social-Pille: ink-auf-gelb statt creme/gelb (Kontrast-Falle auf gelbem Footer) */
[data-theme="bright"] .footer__social a { color: var(--ink); border-color: rgba(0,0,0,0.3); }
[data-theme="bright"] .footer__social svg { color: var(--ink); }
[data-theme="bright"] .footer__social a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
[data-theme="bright"] .footer__social a:hover svg { color: var(--paper); }

/* Eyebrows in der Bright-Variante: ink statt yellow */
[data-theme="bright"] .eyebrow--light { color: var(--ink); border-color: var(--ink); }
[data-theme="bright"] .eyebrow--dark { color: var(--ink); border-color: var(--ink); }

/* Cursor-Spot: bei bright invertiert auf mix-blend-difference funktioniert weiter, aber Color anpassen */
[data-theme="bright"] .cursor { background: var(--ink); }

/* Indicator: ink Background-Pill statt schwarz, Aktiv-Item gelb */

/* Mobile-Bar Bright: gelb statt schwarz */
[data-theme="bright"] .mobile-bar { background: rgba(247, 200, 0, 0.95); border-color: var(--ink); }
[data-theme="bright"] .mobile-bar__btn { color: var(--ink); }
[data-theme="bright"] .mobile-bar__btn--primary { background: var(--ink); color: var(--yellow); }

/* ════════════════════════════════════════════════════════════
   POLISH WELLE 2 — Grain, Halo, Eyebrows, Quotes, Trio,
   Indicator, Countdown, Marquee 2.0, Stamp, Editor's Note
   ════════════════════════════════════════════════════════════ */

/* ─── Grain (Film-Korn auf schwarzen Sektionen) ──────────── */
.grain {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  will-change: transform; transform: translateZ(0);
}
.grain--strong { opacity: 0.085; }
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }

.hero, .halal, .loc, .quotes { position: relative; isolation: isolate; }
.hero > .hero__grid, .halal > .halal__inner, .loc > .loc__inner,
.quotes > .quotes__head, .quotes > .quote { position: relative; z-index: 1; }

/* ─── Hero-Halo (gelber radialer Glow hinter Burger) ─────── */
.hero .halo {
  position: absolute;
  width: 70vw; max-width: 900px; aspect-ratio: 1/1;
  top: 50%; right: -10vw;
  transform: translateY(-50%);
  background: radial-gradient(circle at center,
    rgba(247, 200, 0, 0.34) 0%,
    rgba(247, 200, 0, 0.18) 22%,
    rgba(247, 200, 0, 0) 60%);
  z-index: 0; pointer-events: none;
  filter: blur(40px);
  will-change: transform;
  animation: haloPulse 8s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.9; }
  50%      { transform: translateY(-50%) scale(1.06); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hero .halo { animation: none; } }
@media (max-width: 900px) {
  .hero .halo { right: -25vw; width: 110vw; top: 60%; }
}

/* ─── Eyebrows (Editorial Mono-Kapitel-Marker) ───────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--f-mono); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--yellow); border-color: var(--yellow); }
.eyebrow--dark  { color: var(--ink); border-color: var(--ink); }

/* ─── Countdown-Pill in NAV ──────────────────────────────── */
.pill--count {
  color: var(--paper);
  border-color: var(--rule-hi);
  background: rgba(247, 200, 0, 0.08);
}
.pill--count[data-state="closed"] {
  color: #ff8d6e;
  border-color: rgba(255, 141, 110, 0.4);
  background: transparent;
}
@media (max-width: 900px) { .pill--count { display: none; } }

/* ─── Marquee 2.0 (2 Reihen, gegenläufig) ────────────────── */
.ticker { padding: 0; }
.ticker__row { padding: 12px 0; overflow: hidden; border-block: 2px solid var(--ink); border-bottom: 0; }
.ticker__row:last-child { border-bottom: 2px solid var(--ink); }
.ticker__row--rev { background: var(--ink); color: var(--yellow); border-color: var(--yellow); }
.ticker__row--rev .ticker__track { font-size: 18px; font-family: var(--f-head); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.ticker__track--rev { animation: tickRev 36s linear infinite; }
@keyframes tickRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ticker__q { color: var(--yellow); font-style: italic; font-weight: 400; }

/* ─── Pull-Quotes Sektion ────────────────────────────────── */
.quotes {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 120px) var(--pad);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.quotes__head { max-width: var(--max); margin: 0 auto 48px; }
.quotes__title {
  margin: 16px 0 0;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(56px, 10vw, 160px); line-height: 0.9; letter-spacing: -0.02em;
}
.quote {
  max-width: var(--max); margin: 0 auto 64px;
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.quote--alt { padding-left: clamp(24px, 14vw, 240px); }
.quote__text {
  margin: 0;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.15; letter-spacing: -0.015em;
}
.quote__text em { font-style: normal; color: var(--yellow); }
.quote__mark { color: var(--yellow); font-size: 1.2em; line-height: 0; vertical-align: -0.05em; }
.quote__by {
  display: flex; gap: 16px; align-items: center;
  font-size: 13px; color: #b1b1b6;
  border-top: 1px solid var(--rule); padding-top: 12px;
}
.quote__by .mono { letter-spacing: 0.06em; }
.quote__stars { color: var(--yellow); margin-left: auto; font-size: 16px; letter-spacing: 0.05em; }

/* ─── Halal-Stempel (rotated zertifikat-Look) ────────────── */
.halal__stamp {
  position: absolute;
  top: 8%; right: -10%;
  z-index: 1;
  font-family: var(--f-mono); font-weight: 700;
  font-size: 13px; letter-spacing: 0.18em;
  color: var(--yellow);
  border: 3px solid var(--yellow);
  padding: 18px 26px;
  border-radius: 50%;
  width: 220px; height: 220px;
  display: grid; place-items: center; text-align: center;
  opacity: 0.18;
  rotate: -12deg;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(247,200,0,0.05) 0%, transparent 70%);
}
.halal__stamp::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px dashed var(--yellow); border-radius: 50%;
}
@media (max-width: 900px) {
  .halal__stamp { right: auto; left: -40px; top: auto; bottom: 8%; width: 160px; height: 160px; font-size: 11px; }
}

/* ─── DREI WEGE Trio ─────────────────────────────────────── */
.trio {
  background: var(--paper); color: var(--ink);
  padding: clamp(60px, 8vw, 120px) var(--pad);
  border-bottom: 1px solid var(--rule);
  /* Trio-Mid-Card hat transform: rotate + scale - darf seitlich nicht überstehen */
  overflow: hidden;
}
.trio__head { max-width: var(--max); margin: 0 auto 56px; }
.trio__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(56px, 9vw, 140px); line-height: 0.9; letter-spacing: -0.02em;
  margin: 16px 0 16px;
}
.trio__title--y { color: var(--yellow); -webkit-text-stroke: 2px var(--ink); text-shadow: 3px 3px 0 var(--ink); }
.trio__lead { font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.04em; opacity: 0.7; }
.trio__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: var(--max); margin: 0 auto;
}
.trio__card {
  background: var(--ink); color: var(--paper);
  padding: 32px 28px;
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.trio__card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
.trio__card--mid {
  background: var(--yellow); color: var(--ink);
  transform: rotate(-1deg) scale(1.02);
  z-index: 2;
}
.trio__card--mid:hover { transform: rotate(0deg) translateY(-6px) scale(1.04); }
.trio__num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--f-display); font-weight: 800;
  font-size: 64px; line-height: 0.9;
  color: var(--yellow);
  opacity: 0.25;
}
.trio__card--mid .trio__num { color: var(--ink); }
.trio__name {
  margin: 0;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 3vw, 40px); line-height: 0.95; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.trio__sub { font-size: 11px; letter-spacing: 0.1em; opacity: 0.6; margin: 0; }
.trio__items {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--f-mono); font-size: 13px;
  border-top: 1px dashed currentColor; padding-top: 16px;
}
.trio__items li { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 4px 0; }
.trio__items b { font-family: var(--f-head); font-weight: 500; font-size: 14px; }
.trio__items em { font-style: normal; font-weight: 700; }
.trio__sum {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 12px; border-top: 2px solid currentColor;
}
.trio__sum span { font-size: 11px; letter-spacing: 0.1em; opacity: 0.6; }
.trio__sum em {
  font-family: var(--f-display); font-weight: 800;
  font-size: 28px; font-style: normal; letter-spacing: -0.01em;
}
.trio__cta {
  margin-top: auto; align-self: flex-start;
  font-family: var(--f-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  padding: 13px 18px;
  min-height: 44px;
  display: inline-flex; align-items: center;
  border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  transition: gap var(--t-fast), transform var(--t-fast);
}
.trio__card--mid .trio__cta { background: var(--ink); color: var(--yellow); }
.trio__cta:hover { transform: translateY(-2px); }

/* ─── Open-Sub Countdown ─────────────────────────────────── */
.open__sub {
  font-size: 13px; letter-spacing: 0.08em; color: #8a6500;
  margin: -32px 0 32px;
}
.open__sub[data-state="closed"] { color: #b03030; }

/* ─── Section-Indicator (Magazine-Page-Navigator rechts) ── */
/* ════ SECTION-INDICATOR — Tick-Rail: Proximity-Welle + Scroll-Schiene ════ */
.indicator {
  position: fixed; right: 16px; top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column; align-items: flex-end; gap: 7px;
  padding: 12px 7px 12px 11px;
  background: color-mix(in srgb, var(--ink) 44%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.34);
  opacity: 0; transition: opacity 300ms var(--ease-out);
}
.indicator.ind-ready { opacity: 1; }
/* Auto-Hide: transparent wenn ungenutzt, bei Scroll/Hover/Fokus sofort zurueck */
.indicator.is-idle { opacity: 0.14; }
.indicator:hover, .indicator:focus-within { opacity: 1; }

/* jeder Link = eine Tick-Zeile, rechtsbuendig */
.indicator a {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: flex-end;
  width: 20px; height: 13px;
  --prox: 0;
}
/* der Tick (Strich) + das Drumherum (weiche Flaeche) dehnen sich mit der Proximity aus */
.indicator a::before {
  content: ""; display: block; flex: none;
  width: calc(10px + var(--prox) * 16px);
  height: calc(2px + var(--prox) * 1px);
  border-radius: 999px;
  background: rgba(255,255,255,0.30);
  /* Drumherum: weiche gelbe Flaeche, waechst (blur+spread+alpha) mit der Proximity */
  box-shadow: 0 0 7px calc(var(--prox) * 6px) rgb(247 200 0 / calc(var(--prox) * 18%));
  transition: width 320ms var(--ease-out), height 320ms var(--ease-out),
              background-color 260ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.indicator a.is-active::before {
  background: var(--yellow);
  box-shadow: 0 0 9px 6px rgb(247 200 0 / 20%), 0 3px 16px rgb(247 200 0 / 58%);
}
.indicator a:hover::before { background: var(--yellow); box-shadow: 0 0 8px 5px rgb(247 200 0 / 16%); }

/* Index-Zahl bleibt aus (Name uebernimmt), aber im a11y-Baum */
.indicator a span {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Sektion-Name faehrt links aus (aktiv immer, Hover als Preview) */
.indicator a::after {
  content: attr(title);
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(10px);
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink); background: var(--yellow);
  padding: 5px 10px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.40);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.indicator a.is-active::after,
.indicator a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Bright-Theme */
[data-theme="bright"] .indicator {
  background: color-mix(in srgb, #ffffff 80%, transparent);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}
[data-theme="bright"] .indicator a::before { background: rgba(10,10,12,0.26); }
[data-theme="bright"] .indicator a.is-active::before { background: var(--ink); box-shadow: 0 0 0 1px rgba(0,0,0,0.22), 0 3px 12px rgba(0,0,0,0.3); }
[data-theme="bright"] .indicator a:hover::before { background: var(--ink); }
[data-theme="bright"] .indicator a::after { color: var(--paper); background: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .indicator { opacity: 1; transition: none; }
  .indicator.is-idle { opacity: 1; }
  .indicator a::before, .indicator a::after { transition: none; }
}
@media (max-width: 900px) { .indicator { display: none; } }


/* ─── Burger-Bounce (Smash on Click) ──────────────────────── */
.hero__art img { cursor: pointer; }
.hero__art.is-smashing img { animation: smash 600ms cubic-bezier(.2,.7,.2,1); }
@keyframes smash {
  0%   { transform: scale(1) rotate(0); }
  20%  { transform: scale(0.78, 1.15) rotate(-2deg); }
  45%  { transform: scale(1.12, 0.85) rotate(1deg); }
  70%  { transform: scale(0.96, 1.05) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); }
}
@media (prefers-reduced-motion: reduce) { .hero__art.is-smashing img { animation: none; } }

/* ════════════════════════════════════════════════════════════
   COOKIE-HINWEIS hinter Mini-Burger + Cl3verdesign-Wasserzeichen
   ════════════════════════════════════════════════════════════ */
.cookie { position: fixed; right: 16px; bottom: 18px; z-index: 70; }
.cookie__burger {
  width: 50px; height: 50px; border-radius: 50%; padding: 0;
  display: grid; place-items: center; cursor: pointer;
  background: var(--ink); border: 2px solid var(--yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.cookie__burger svg { width: 28px; height: auto; display: block; }
@media (hover: hover) and (pointer: fine) {
  .cookie__burger:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 30px rgba(0,0,0,0.45); }
}
.cookie__burger:active { transform: scale(0.94); }
/* dezenter Bob bis akzeptiert (nur wenn Panel zu) */
.cookie:not(.is-accepted):not(.is-open) .cookie__burger { animation: cookie-bob 2.6s var(--ease-inout) 1.2s infinite; }
@keyframes cookie-bob {
  0%, 68%, 100% { transform: translateY(0) rotate(0deg); }
  76% { transform: translateY(-7px) rotate(-7deg); }
  84% { transform: translateY(0) rotate(6deg); }
  92% { transform: translateY(-2px) rotate(0deg); }
}
.cookie__pop {
  position: absolute; right: 0; bottom: calc(100% + 12px);
  width: min(300px, calc(100vw - 32px));
  background: var(--ink); color: #eee;
  border: 1px solid var(--rule-hi); border-radius: 16px;
  padding: 18px; box-shadow: 0 18px 52px rgba(0,0,0,0.55);
  transform-origin: bottom right;
  opacity: 0; visibility: hidden; transform: scale(0.92) translateY(10px); pointer-events: none;
  transition: opacity 220ms var(--ease-out), transform 260ms var(--ease-out), visibility 0s linear 260ms;
}
.cookie.is-open .cookie__pop {
  opacity: 1; visibility: visible; transform: none; pointer-events: auto;
  transition: opacity 220ms var(--ease-out), transform 260ms var(--ease-out), visibility 0s;
}
.cookie__title { margin: 0 0 6px; font-family: var(--f-display); font-weight: 800; font-size: 17px; color: #fff; }
.cookie__txt { margin: 0 0 14px; font-size: 12.5px; line-height: 1.5; color: #b6b6ba; }
.cookie__row { display: flex; align-items: center; gap: 14px; }
.cookie__ok {
  font-family: var(--f-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--yellow); color: var(--ink);
  transition: transform 160ms var(--ease-out);
}
.cookie__ok:hover { transform: translateY(-1px); }
.cookie__ok:active { transform: scale(0.97); }
.cookie__link { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; color: #9a9a9e; text-decoration: underline; }
.cookie__link:hover { color: var(--yellow); }
@media (max-width: 720px) { .cookie { bottom: 88px; } }
@media (prefers-reduced-motion: reduce) {
  .cookie:not(.is-accepted) .cookie__burger { animation: none; }
  .cookie__pop { transition: opacity 140ms ease, visibility 0s; transform: none; }
}

/* Cl3verdesign-Wasserzeichen im Footer */
.footer__credit {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  max-width: var(--max); margin: 14px auto 0;
  color: rgba(255,255,255,0.42); text-decoration: none;
  font-size: 10px; letter-spacing: 0.12em;
  transition: color 200ms var(--ease-out);
}
.footer__credit .mono { font-size: 10px; }
.footer__credit:hover { color: var(--yellow); }
.footer__cl3 { width: 17px; height: 17px; flex: 0 0 auto; }
[data-theme="bright"] .footer__credit { color: rgba(10,10,12,0.5); }
[data-theme="bright"] .footer__credit:hover { color: var(--ink); }

/* ════════════════════════════════════════════════════════════
   PRINT — Speisekarten-Druck (A4, schwarz auf weiß, editorial)
   ════════════════════════════════════════════════════════════ */
@media print {
  @page { size: A4; margin: 18mm 16mm 22mm 16mm; }

  /* alles ausblenden außer Brand-Print-Kopf + Menu + Print-Footer */
  body * { visibility: hidden; }
  .menu, .menu * { visibility: visible; }

  /* Print-Header (über CSS injected) */
  body::before {
    content: "smaco";
    visibility: visible;
    position: fixed;
    top: 8mm; left: 16mm;
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    font-size: 28pt;
    color: #000;
    letter-spacing: -0.02em;
  }
  body::after {
    content: "SMASH BURGER & BIRRIA TACOS · ELBGAUSTR. 28 · 22523 HAMBURG · 040 56126767 · 100 % HALAL";
    visibility: visible;
    position: fixed;
    top: 14mm; left: 16mm; right: 16mm;
    font-family: "JetBrains Mono", monospace;
    font-size: 8pt;
    letter-spacing: 0.06em;
    color: #555;
    border-bottom: 1px solid #000;
    padding-bottom: 4mm;
  }

  /* Reset Hintergründe und Schatten */
  html, body, .menu {
    background: #fff !important;
    color: #000 !important;
    margin: 0; padding: 0;
  }
  .menu {
    position: static;
    padding: 28mm 0 0 !important;
    border: 0;
    content-visibility: visible;
  }
  .menu__head {
    margin-bottom: 6mm !important;
    page-break-after: avoid;
  }
  .menu__title {
    font-size: 38pt !important; line-height: 0.95 !important;
    margin: 0 0 4mm !important;
    page-break-after: avoid;
  }
  .menu__title span { display: inline; }
  .menu__lead { font-size: 10pt !important; opacity: 1; }
  .menu .counter, .menu .eyebrow { color: #000 !important; border-color: #000 !important; }

  /* Speisekarte beim Drucken immer voll offen, Karten als Spalten, kein Button/Scroll */
  .menu__toggle, .menu__hint { display: none !important; }
  html.js .menu__reveal { display: block !important; grid-template-rows: none !important; opacity: 1 !important; }
  html.js .menu__reveal-inner { overflow: visible !important; }
  .menu__track {
    display: block !important;
    overflow: visible !important;
    column-count: 2; column-gap: 8mm; column-fill: balance;
    padding: 0 !important;
  }
  .menu__card {
    display: block !important;
    break-inside: avoid-column; margin-bottom: 4mm;
    background: none !important; border: 0 !important; border-radius: 0 !important; padding: 0 !important;
    min-height: 0 !important;
  }
  .menu__foot { display: none !important; }
  .menu__cat {
    page-break-after: avoid;
    border-bottom: 1.5pt solid #000 !important;
    margin: 4mm 0 2mm; padding-bottom: 1mm;
    font-size: 11pt;
  }
  .menu__catnum {
    background: #000 !important; color: #fff !important;
    font-size: 8pt; padding: 1pt 4pt;
  }
  .menu__list li {
    border-bottom: 0.3pt dashed #888 !important;
    padding: 2mm 0;
    grid-template-columns: 1fr auto;
    break-inside: avoid;
  }
  .menu__list b { font-size: 10pt; }
  .menu__list span { font-size: 8.5pt; opacity: 0.78; }
  .menu__list em { font-size: 10pt; font-weight: 700; }
  .menu__list .is-star b::before { content: "★ "; color: #000; }

  .menu__legal {
    margin: 6mm 0 0 !important;
    font-size: 7pt !important;
    border-top: 1px solid #000;
    padding-top: 2mm;
    page-break-before: auto;
  }

  /* Indicator, Cursor, Skip-Link ausblenden */
  .indicator, .cursor, .skip, .cookie,
  .nav, .ticker, .hero, .split, .quotes, .halal,
  .trio, .store, .loc, .open, .bigcta, .footer { display: none !important; }

  a { color: #000 !important; text-decoration: none !important; }
  .loader { display: none !important; }
}

/* ════════════════════════════════════════════════════════════
   LADESCREEN — SMACO Logo-Loader + Google-Reviews + Sterne-Wall
   ════════════════════════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: radial-gradient(120% 110% at 50% 42%, #f2c81e 0%, #edc005 55%, #e0b400 100%);
  overflow: hidden;
}
html.is-loading { overflow: hidden; }
html.no-loader .loader { display: none; }
.loader__gsprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Logo zentral, immer ueber allem, mit weichem Halo zur Lesbarkeit */
.loader__logo-wrap {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.loader__logo-wrap::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: 152%; height: 240%;
  background: radial-gradient(closest-side, rgba(243,202,33,0.97) 52%, rgba(243,202,33,0) 100%);
  pointer-events: none;
}
.loader__logo {
  width: clamp(230px, 54vw, 440px); height: auto; display: block;
  opacity: 0; transform: scale(0.9);
  animation: lg-pop 820ms var(--ease-out) 120ms forwards;
}
.loader__rating {
  font-family: ui-monospace, "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0; animation: lg-fade 600ms var(--ease-out) 640ms forwards;
}
.loader__rating span { color: var(--ink); letter-spacing: 2px; font-size: 13px; }

/* gemeinsame Karten-Basis (Google-Review-Look) */
.lreview, .lwall-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
}
.lg-ic { width: 15px; height: 15px; display: block; flex: none; }

/* Phase 1: schwebende echte Reviews ums Logo */
.loader__reviews { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.lreview {
  position: absolute; margin: 0;
  width: clamp(170px, 22vw, 214px);
  padding: 12px 14px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 3px 9px; align-items: center;
  opacity: 0; transform: scale(0.82) translateY(12px);
  animation: lr-in 460ms var(--ease-out) both;
}
.lreview__av {
  grid-row: 1; width: 28px; height: 28px; border-radius: 50%;
  background: var(--c, #4285f4); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 13px;
}
.lreview__hd { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.lreview__nm { font-weight: 700; font-size: 11.5px; color: #18181b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lreview__stars, .lwall-card__stars { color: #fbb000; letter-spacing: 1.5px; }
.lreview__stars { font-size: 10px; }
.lreview p { grid-column: 1 / -1; margin: 4px 0 0; font-size: 12.5px; line-height: 1.34; color: #27272a; font-weight: 600; }

.lreview--1 { top: 12%; left: 6%;  animation-delay: 0.10s; }
.lreview--2 { top: 15%; right: 5%; animation-delay: 0.22s; }
.lreview--3 { top: 45%; left: 3%;  animation-delay: 0.46s; }
.lreview--4 { top: 51%; right: 4%; animation-delay: 0.34s; }
.lreview--5 { bottom: 13%; left: 9%;  animation-delay: 0.28s; }
.lreview--6 { bottom: 10%; right: 8%; animation-delay: 0.16s; }

/* Finale: Wall aus 5-Sterne-Karten — fuellt + ueberlappt den Screen */
.loader__wall { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.lwall-card {
  position: absolute; left: var(--x); top: var(--y);
  width: clamp(120px, 13.5vw, 168px);
  padding: 9px 11px;
  display: grid; grid-template-columns: 1fr auto; gap: 2px 6px; align-items: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55) rotate(var(--r, 0deg));
  animation: lw-pop 520ms var(--ease-out) var(--d, 2s) forwards;
}
.lwall-card__stars { font-size: 11px; }
.lwall-card p { grid-column: 1 / -1; margin: 2px 0 0; font-size: 11px; line-height: 1.3; color: #27272a; font-weight: 600; }
.lwall-card cite { grid-column: 1 / -1; font-style: normal; font-size: 8.5px; color: #8a8a8a; font-family: ui-monospace, monospace; margin-top: 2px; }

@keyframes lg-pop  { to { opacity: 1; transform: scale(1); } }
@keyframes lg-fade { to { opacity: 1; } }
@keyframes lr-in {
  0%   { opacity: 0; transform: scale(0.84) translateY(12px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes lw-pop {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.55) rotate(var(--r, 0deg)); }
  70%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05) rotate(var(--r, 0deg)); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(var(--r, 0deg)); }
}

/* Exit: gesamter Screen wischt nach oben weg */
.loader.is-done { transform: translateY(-100%); transition: transform 760ms var(--ease-inout); }

@media (max-width: 640px) {
  .lreview--3, .lreview--4 { display: none; }
  .lreview { width: clamp(150px, 60vw, 188px); padding: 10px 12px; }
  .lwall-card { width: clamp(104px, 30vw, 138px); padding: 7px 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .loader__logo, .loader__rating { animation: lg-fade 1ms linear forwards; opacity: 1; transform: none; }
  .lreview { animation: none; opacity: 1; transform: none; }
  .loader__wall { display: none; }
  .loader.is-done { transition: opacity 200ms ease; transform: none; opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   HERO-INTRO — Choreografie nach dem Ladescreen (intro-go)
   Burger smasht rein, Meta + Facts + NAV-Pills staffeln nach.
   Headline-Chars laufen JS-getriggert (is-in) zeitgleich.
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  html.intro-go .hero__meta    { animation: hi-rise 620ms var(--ease-out) 0.06s both; }
  /* Headline-Reveal CSS-only (kein SplitType/GSAP-Warten -> LCP bleibt schnell) */
  html.intro-go .hero__title .hero__word { animation: hi-word 700ms var(--ease-out) both; }
  html.intro-go .hero__title .hero__word:nth-child(1) { animation-delay: 0.08s; }
  html.intro-go .hero__title .hero__word:nth-child(2) { animation-delay: 0.17s; }
  html.intro-go .hero__title .hero__word:nth-child(3) { animation-delay: 0.26s; }
  html.intro-go .hero__title .hero__word:nth-child(4) { animation-delay: 0.35s; }
  html.intro-go .hero__facts   { animation: hi-rise 620ms var(--ease-out) 0.46s both; }
  html.intro-go .hero__art     { animation: hi-smash 820ms var(--ease-out) 0.28s both; }
  html.intro-go .nav__pills li { animation: hi-pop 460ms var(--ease-out) both; }
  html.intro-go .nav__pills li:nth-child(1) { animation-delay: 0.30s; }
  html.intro-go .nav__pills li:nth-child(2) { animation-delay: 0.40s; }
  html.intro-go .nav__pills li:nth-child(3) { animation-delay: 0.50s; }
}
@keyframes hi-rise  { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes hi-pop   { from { opacity: 0; transform: scale(0.8); }       to { opacity: 1; transform: none; } }
@keyframes hi-smash {
  0%   { opacity: 0; transform: translateY(-72px) scale(1.12); }
  55%  { opacity: 1; transform: translateY(7px)  scale(0.965); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes hi-word {
  from { opacity: 0; transform: translateY(0.5em); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   HERO ACTION-DOCK — funktionale Schnellzugriff-Pills
   Anrufen · Standort · Karte · Zeiten · Instagram
   ════════════════════════════════════════════════════════════ */
.hero__dock {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: clamp(22px, 3vw, 34px);
}
.dock__btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  border: 1.5px solid var(--rule-hi);
  border-radius: 999px;
  color: var(--paper);
  background: color-mix(in srgb, var(--ink) 38%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-family: ui-monospace, "JetBrains Mono", monospace;
  font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out),
              border-color 200ms var(--ease-out), color 200ms var(--ease-out),
              box-shadow 200ms var(--ease-out);
  will-change: transform;
}
.dock__ic { display: inline-grid; place-items: center; width: 17px; height: 17px; flex: none; }
.dock__ic svg { width: 17px; height: 17px; transition: transform 240ms var(--ease-out); }
.dock__btn--call {
  background: var(--yellow); color: var(--ink); border-color: var(--yellow); font-weight: 700;
}

/* Hover nur auf echten Zeigern (kein Touch-False-Positive) */
@media (hover: hover) and (pointer: fine) {
  .dock__btn:hover {
    transform: translateY(-3px);
    background: var(--paper); color: var(--ink); border-color: var(--paper);
    box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  }
  .dock__btn:hover .dock__ic svg { transform: scale(1.18) rotate(-7deg); }
  .dock__btn--call:hover { background: var(--yellow-hi); color: var(--ink); border-color: var(--yellow-hi); }
  .dock__btn--ig:hover {
    background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    color: #fff; border-color: transparent;
  }
}
/* Tap-Feedback: snappy press */
.dock__btn:active { transform: scale(0.96); transition-duration: 90ms; }

/* Intro: Pills staffeln nach dem Hero rein */
@media (prefers-reduced-motion: no-preference) {
  html.intro-go .dock__btn { animation: hi-rise 520ms var(--ease-out) both; }
  html.intro-go .dock__btn:nth-child(1) { animation-delay: 0.58s; }
  html.intro-go .dock__btn:nth-child(2) { animation-delay: 0.66s; }
  html.intro-go .dock__btn:nth-child(3) { animation-delay: 0.74s; }
  html.intro-go .dock__btn:nth-child(4) { animation-delay: 0.82s; }
  html.intro-go .dock__btn:nth-child(5) { animation-delay: 0.90s; }
}

/* Mobile: nur Icons, kompakter — Mindest-Touch-Target 44x44 */
@media (max-width: 600px) {
  .hero__dock { gap: 8px; margin-top: 20px; }
  .dock__lb { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .dock__btn {
    padding: 13px;
    min-width: 44px; min-height: 44px;
    justify-content: center;
  }
}

/* Bright-Theme: dunkle Schrift auf hellem Hero */
[data-theme="bright"] .dock__btn {
  color: var(--ink); border-color: rgba(0,0,0,0.22);
  background: color-mix(in srgb, var(--paper) 50%, transparent);
}
[data-theme="bright"] .dock__btn--call { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
@media (hover: hover) and (pointer: fine) {
  [data-theme="bright"] .dock__btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
  [data-theme="bright"] .dock__btn--call:hover { background: #000; color: var(--yellow-hi); border-color: #000; }
}

/* ════════════════════════════════════════════════════════════
   TAP-FEEDBACK — jedes pressbare Element reagiert auf den Druck
   (emil: scale 0.97 on :active). Nur die :active-Regel setzt eine
   eigene transition, damit bestehende Hover-Transitions bleiben.
   ════════════════════════════════════════════════════════════ */
.nav__cta:active, .nav__theme:active, .mobile-bar__btn:active, .btn:active,
.ways__cta:active, .trio__cta:active, .halal__cta:active, .bigcta__link:active {
  transform: scale(0.97);
  transition: transform 90ms var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .nav__cta:active, .nav__theme:active, .mobile-bar__btn:active, .btn:active,
  .ways__cta:active, .trio__cta:active, .halal__cta:active, .bigcta__link:active,
  .dock__btn:active { transform: none; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE-HARDENING (Polish-Welle 6, 2026-05-31)
   - Safe-Area-Insets fuer iOS-Notch (Nav top, Mobile-Bar bottom)
   - Marquee verlangsamen auf Mobile (weniger Distraction)
   - 320px-Breakpoint: kleinste Phones (iPhone SE 1)
   - Touch-Targets: Tablet-Dock und Mobile-Bar mindestens 44px
   - Magnetic-Buttons: Hover-only (Touch-Geraete kein Inline-Translate)
   ════════════════════════════════════════════════════════════ */

/* Nav: iOS Notch-Beruecksichtigung beim Sticky-Header */
.nav {
  padding-top: calc(16px + env(safe-area-inset-top, 0px));
  padding-left: calc(var(--pad) + env(safe-area-inset-left, 0px));
  padding-right: calc(var(--pad) + env(safe-area-inset-right, 0px));
}

/* Mobile-Bar: iOS Home-Indicator-Bereich freihalten */
@media (max-width: 720px) {
  .mobile-bar {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: calc(12px + env(safe-area-inset-left, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
  }
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

/* Marquee-Speed: schlank auf Mobile (240s statt 40s — viel ruhiger im engen Viewport) */
@media (max-width: 720px) {
  .ticker__track            { animation-duration: 240s !important; }
  .ticker__track--rev       { animation-duration: 220s !important; }
  /* font-size etwas kleiner damit weniger Spans im Viewport gleichzeitig */
  .ticker__row .ticker__track       { font-size: 16px; gap: 22px; }
  .ticker__row--rev .ticker__track  { font-size: 14px; gap: 18px; }
}
@media (max-width: 420px) {
  .ticker__track            { animation-duration: 300s !important; }
  .ticker__track--rev       { animation-duration: 280s !important; }
  .ticker__row .ticker__track       { font-size: 14px; gap: 16px; }
  .ticker__row--rev .ticker__track  { font-size: 12px; gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track, .ticker__track--rev { animation: none !important; }
}

/* 320px-Klasse (iPhone SE 1, kleinste echte Phones) */
@media (max-width: 360px) {
  /* Hero-Title: bei 4 Woertern + minimal-padding nicht ueberlaufen */
  .hero__title { font-size: clamp(40px, 13vw, 56px) !important; }
  .hero__art { max-width: min(280px, 88vw); }
  .hero__facts { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__sticker--halal { font-size: 10px; padding: 8px 10px; top: -4px; right: 0; }
  .hero__sticker--new   { font-size: 10px; padding: 8px 10px; left: 0; bottom: 8px; }
  /* HALAL-Big drei Zeilen, jede halbwegs lesbar */
  .halal__big { font-size: clamp(48px, 16vw, 72px) !important; }
  /* Speisekarten-Items: Mehrzeilig sauber, kein Umbruch des Preises */
  .menu__list em { font-size: 14px; }
  /* Mobile-Bar etwas kompakter (3 Spalten muessen in 296px = 320 - 24 reinpassen) */
  .mobile-bar__label { font-size: 9px; }
  .mobile-bar__btn { padding: 9px 4px; }
  /* Trio-Card-Inhalt nicht von der grossen Ordinalzahl ueberdeckt */
  .trio__card { padding: 24px 22px; padding-right: 70px; }
  .ways__card { padding-right: 70px; }
}

/* Dock-Buttons auf Tablet: 44px Hoehe sichern */
.dock__btn { min-height: 44px; min-width: 44px; }

/* Magnetic-Buttons: Inline-Translate nur auf Hover-faehigen Geraeten anwenden.
   Touch-Geraete bekommen die :active-Skalierung statt persistentem Translate. */
@media (hover: none), (pointer: coarse) {
  .nav__cta, .btn--solid, .bigcta__link, .halal__cta {
    translate: 0 0 !important;
  }
}

/* Heuristik gegen Tablet-Layout-Knick: Map sollte auf <760px immer voll-Breite sein */
@media (max-width: 760px) {
  .loc__map { min-height: 280px; }
}

/* iOS-Sticky-Nav: Layout-Stabilitaet beim Reszizen der Adressleiste */
.nav { contain: layout style; }

/* Hero-Halo: maximal so breit wie der Hero, nie ueber Viewport (defensive) */
.hero .halo {
  max-width: min(900px, calc(100vw + 20vw));
  /* right ist -10vw - addiert mit 70vw width = 60vw rechte Kante (verbleibt im Hero) */
}

/* Trio-Mid-Card: rotate auf schmalen Tablets/Laptops nicht ueber Container schubsen */
@media (min-width: 1101px) and (max-width: 1280px) {
  .trio__card--mid { transform: rotate(-0.6deg) scale(1.015); }
}

