/* ===== Tokens ===== */
:root {
  --cream: #FFFBF2;
  --cream-2: #FFF4DC;
  --black: #15120D;
  --black-soft: #1E1A14;
  --yellow: #F5B400;
  --yellow-soft: #FFDD8A;
  --red: #D0202F;
  --red-deep: #A5121F;
  --pink: #FF3EC9;
  --ink-muted: #6b6459;
  --ink-faint: #a49c8f;
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --font-display: "Archivo Black", Arial, sans-serif;
  --font-script: "Pacifico", cursive;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
.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;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }

/* ===== Custom cursor (pointer devices only) ===== */
@media (hover: hover) and (pointer: fine) {
  html.has-cursor, html.has-cursor * { cursor: none !important; }
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
  }
  /* mix-blend-mode: difference against WHITE inverts to the complement of
     whatever is underneath — visible on light, dark, and colored surfaces
     alike. (The earlier --black version went invisible on the site's many
     black sections — black-on-black differences to nothing.) */
  .cursor-dot {
    width: 9px; height: 9px;
    background: #fff;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 2px solid #fff;
    opacity: 0.85;
    transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s ease, border-color 0.25s ease;
    mix-blend-mode: difference;
  }
  html.cursor-hover .cursor-ring {
    width: 60px; height: 60px;
    opacity: 1;
    border-color: var(--yellow);
    mix-blend-mode: normal;
  }
  html.cursor-hover .cursor-dot {
    mix-blend-mode: normal;
    background: var(--yellow);
  }
}

/* ===== Reveal-line text mask (split-text-lite) ===== */
.reveal-line { display: block; overflow: hidden; }
.reveal-line__inner {
  display: block;
  transform: translateY(112%);
  will-change: transform;
}

/* ===== Fixed scroll-scrubbed background ===== */
.bg-stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: var(--black);
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.94;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 90% at 50% 8%, rgba(21,14,10,0.08) 0%, rgba(18,12,8,0.5) 55%, rgba(10,7,5,0.86) 100%);
}
.bg-overlay::after {
  /* subtle split-tone: cool cast in the shadows, warm cast in the highlights */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 184, 90, 0.05) 0%, rgba(20, 30, 45, 0.12) 100%);
  mix-blend-mode: soft-light;
}
.bg-vignette {
  position: absolute;
  inset: -2%;
  background: radial-gradient(120% 100% at 50% 45%, transparent 45%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.bg-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
.bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===== Layout helpers ===== */
main { position: relative; z-index: 1; }

.panel {
  position: relative;
  background: var(--cream);
  border-radius: 32px 32px 0 0;
  padding: clamp(72px, 10vw, 140px) 24px;
}
.panel + .panel { border-radius: 0; }
.panel--dark { background: var(--black); color: var(--cream); }

.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(21,18,13,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--red);
  margin: 0 0 12px;
}
.eyebrow--center { text-align: center; }
.eyebrow--on-dark { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  text-align: center;
  margin: 0 0 64px;
  line-height: 1.05;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 3px;
  transition: gap 0.25s var(--ease), border-color 0.25s ease;
}
.link-arrow:hover { gap: 14px; border-color: var(--red); }

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(208, 32, 47, 0.32);
}
.btn--red:hover { background: var(--red-deep); box-shadow: 0 14px 32px rgba(208, 32, 47, 0.42); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover { background: var(--black); color: var(--cream); }
.btn--lg { padding: 17px 34px; font-size: 16px; }

/* Tap feedback — works via :active on touch AND mouse, so it's the one
   "press" language shared across desktop and mobile. */
.btn:active { transform: scale(0.96); }
.menu-list li:active { background: var(--cream-2); }
.favorite:active { transform: scale(0.97); }
.faq-item summary:active { opacity: 0.7; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 56px);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease), transform 0.5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 251, 242, 0.86);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 4px 28px rgba(0,0,0,0.06);
  padding-top: 13px;
  padding-bottom: 13px;
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__logo, .footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img { height: 48px; width: auto; display: block; transition: opacity 0.2s ease; }
.logo-img--black { display: none; }
.nav.is-scrolled .logo-img--white { display: none; }
.nav.is-scrolled .logo-img--black { display: block; }
/* footer sits on a dark background, so it always uses the white logo */
.footer__logo .logo-img--black { display: none; }
.footer__logo .logo-img--white { display: block; height: 40px; }

@media (max-width: 900px) {
  .logo-img { height: 38px; }
}

.nav__links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  transition: color 0.3s ease;
}
.nav.is-scrolled .nav__links { color: var(--black); }
.nav__links a { position: relative; transition: letter-spacing 0.3s var(--ease); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { letter-spacing: 0.01em; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 60;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: #fff;
  transition: background 0.3s ease;
}
.nav.is-scrolled .nav__burger span { background: var(--black); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }

/* ===== Video scrub track ===== */
.scrub-track { position: relative; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  color: #fff;
}
.hero__inner { max-width: 900px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(14px);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 128px);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hero__title-accent { color: var(--yellow); }
.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.88);
  opacity: 0;
  transform: translateY(14px);
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
}
.hero__scroll-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
}

/* ===== Scrub spacer ===== */
.scrub-spacer {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.scrub-spacer__label p {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin: 0;
}

/* ===== Story ===== */
.story__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.story__text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.08;
  margin: 0 0 22px;
}
.story__text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 16px;
  max-width: 46ch;
}
.story__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stat {
  border-left: 3px solid var(--yellow);
  padding-left: 24px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 8px;
  max-width: 26ch;
}

/* ===== Signature showcase ===== */
.signature { background: var(--black); color: var(--cream); }
.signature__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,251,242,0.14);
}
.signature__eyebrow { color: var(--yellow); }
.signature__name {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.98;
  margin: 0 0 20px;
}
.signature__desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,251,242,0.75);
  max-width: 48ch;
  margin: 0;
}
.signature__price {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  color: var(--yellow);
  white-space: nowrap;
}
.signature__favorites {
  max-width: var(--container);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.favorite {
  padding: 24px;
  border: 1px solid rgba(255,251,242,0.14);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}
.favorite:hover {
  border-color: var(--yellow);
  background: rgba(255,251,242,0.03);
  transform: translateY(-4px);
}
.favorite h3 { font-size: 17px; margin: 0 0 6px; }
.favorite p { font-size: 13px; color: rgba(255,251,242,0.6); margin: 0 0 14px; }
.favorite span { font-family: var(--font-display); font-size: 15px; color: var(--yellow); }

/* ===== Menu ===== */
.menu { max-width: var(--container); margin: 0 auto; }
.menu__tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.menu__tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s ease, color 0.3s ease;
}
.menu__tab.is-active,
.menu__tab:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.menu__panel { display: none; }
.menu__panel.is-active { display: block; }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  max-width: 920px;
  margin: 0 auto;
}
.menu-list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 19px 14px;
  margin: 0 -14px;
  border-bottom: 1px solid rgba(21,18,13,0.09);
  border-radius: var(--radius-sm);
  transition: background 0.25s ease;
}
.menu-list li:hover { background: var(--cream-2); }
.menu-list li {
  cursor: pointer;
  padding-right: 40px;
}
.menu-list li:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  background: var(--cream-2);
}
.menu-list li::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.menu-list li:hover::after,
.menu-list li:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.menu-list__li--added { background: var(--yellow-soft) !important; }
.menu-list h3 {
  font-size: 16px;
  margin: 0 0 4px;
  font-weight: 700;
  transition: color 0.25s ease;
}
.menu-list li:hover h3 { color: var(--red); }
.menu-list p {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
}
.menu-list span {
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--red);
  white-space: nowrap;
}
.menu__intro {
  text-align: center;
  margin: -24px auto 32px;
  max-width: 60ch;
  font-size: 14px;
  color: var(--ink-muted);
}
.menu__badge-wrap { text-align: center; margin: -8px 0 32px; }
.menu__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(245, 180, 0, 0.35);
}
.menu__badge strong { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; }
.menu__lunch-note {
  text-align: center;
  margin: -6px 0 32px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
  padding: 10px 18px;
  border: 1.5px dashed rgba(21,18,13,0.2);
  border-radius: var(--radius-sm);
}
.menu__lunch-note strong { color: var(--black); font-family: var(--font-display); font-weight: 400; }
.menu__note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-muted);
}
.menu__disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 56px;
}
.menu__disclaimer a { color: var(--red); font-weight: 600; }

/* ===== Legal pages (Impressum / Datenschutz) ===== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 24px 120px;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 48px;
}
.legal h2 {
  font-size: 20px;
  margin: 48px 0 12px;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-muted);
}
.legal ul { list-style: disc; padding-left: 22px; margin: 12px 0; }
.legal a { color: var(--red); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal .placeholder {
  background: var(--yellow-soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--black);
}

/* ===== Reviews ===== */
.reviews { background: var(--black); color: var(--cream); text-align: center; }
.reviews__inner { max-width: 620px; margin: 0 auto; }
.reviews__stars {
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--yellow);
  margin-bottom: 20px;
}
.reviews__lead {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.3;
  margin: 0 0 32px;
}
.reviews .btn--ghost { color: var(--cream); border-color: rgba(255,251,242,0.4); }
.reviews .btn--ghost:hover { border-color: var(--yellow); background: rgba(255,251,242,0.06); }

.reviews__marquee {
  margin: 40px 0 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.reviews__track {
  display: flex;
  gap: 20px;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: reviewsScroll 44s linear infinite;
}
.reviews__marquee:hover .reviews__track { animation-play-state: paused; }
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 auto;
  width: 300px;
  background: rgba(255,251,242,0.06);
  border: 1px solid rgba(255,251,242,0.14);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-align: left;
}
.review-card__stars { color: var(--yellow); letter-spacing: 3px; font-size: 14px; margin-bottom: 12px; }
.review-card__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,251,242,0.88);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__author { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.02em; color: rgba(255,251,242,0.6); margin: 0; }
.review-card__author span { font-family: var(--font-body); font-weight: 400; }

@media (prefers-reduced-motion: reduce) {
  .reviews__track { animation: none; }
}

/* ===== Standort ===== */
.standort { background: var(--black); color: var(--cream); }
.standort__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.standort .eyebrow { color: var(--yellow); }
.standort__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 36px;
}
.standort__heading h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  margin: 0;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,251,242,0.08);
  white-space: nowrap;
}
.status-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-faint);
}
.status-badge.is-open .status-badge__dot {
  background: #4CD964;
  box-shadow: 0 0 8px #4CD96488;
}
.status-badge.is-closed .status-badge__dot { background: var(--red); }

.info-block { margin-bottom: 28px; }
.info-block h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin: 0 0 8px;
}
.info-block p { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(255,251,242,0.9); }
.info-block a:hover { color: var(--yellow); }

.hours { width: 100%; border-collapse: collapse; font-size: 15px; }
.hours td { padding: 6px 0; color: rgba(255,251,242,0.9); }
.hours tr.is-today td { color: var(--yellow); font-weight: 700; }
.hours td:last-child { text-align: right; font-weight: 700; color: var(--cream); }
.hours tr.is-today td:last-child { color: var(--yellow); }

.delivery-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.standort .btn--outline { color: var(--cream); border-color: var(--cream); }
.standort .btn--outline:hover { background: var(--cream); color: var(--black); }

.standort__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  background: var(--black-soft);
}
.standort__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
  background:
    linear-gradient(160deg, #2a231a 0%, #15120D 100%);
}
.map-consent p {
  max-width: 34ch;
  font-size: 14px;
  color: rgba(255,251,242,0.72);
  margin: 0;
}

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(21,18,13,0.12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-weight: 700;
  font-size: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--black);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::before { width: 16px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 16px; transition: transform 0.3s var(--ease); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }
.faq-item__body {
  overflow: hidden;
  height: 0;
}
.faq-item__body p {
  margin: 0 4px 26px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 15px;
  max-width: 62ch;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--cream);
  padding: clamp(72px, 10vw, 140px) 24px 32px;
  overflow: hidden;
}
.footer__signoff {
  max-width: var(--container);
  margin: 0 auto 64px;
  text-align: center;
}
.footer__signoff h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 120px);
  line-height: 0.95;
  margin: 0 0 32px;
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,251,242,0.12);
}
.footer__social { display: flex; gap: 24px; font-weight: 700; }
.footer__social a { position: relative; }
.footer__social a:hover { color: var(--yellow); }
.footer__meta { text-align: right; font-size: 14px; color: rgba(255,251,242,0.6); }
.footer__meta p { margin: 2px 0; }
.footer__meta a:hover { color: var(--yellow); }
.footer__bottom {
  max-width: var(--container);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,251,242,0.45);
}
.footer__bottom a:hover { color: var(--yellow); }
.footer__legal { display: flex; gap: 20px; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  z-index: 200;
  background: var(--black);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0 0 18px; font-size: 14px; line-height: 1.6; color: rgba(255,251,242,0.82); }
.cookie-banner p a { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 11px 20px; font-size: 13px; }

/* ===== Warenkorb & Checkout ===== */
.cart-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 250;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(208, 32, 47, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.cart-fab:hover { transform: scale(1.06); }
.cart-fab:active { transform: scale(0.94); }
.cart-fab--bump { animation: cartFabBump 0.4s var(--ease); }
@keyframes cartFabBump {
  0% { transform: scale(1); }
  35% { transform: scale(1.22); }
  100% { transform: scale(1); }
}
@keyframes boomFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.cart-fab__badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(21,18,13,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.is-visible { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--cream);
  box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.cart-overlay.is-visible .cart-drawer { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(21,18,13,0.1);
}
.cart-drawer__header h2 { font-family: var(--font-display); font-size: 19px; margin: 0; }
.cart-drawer__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-muted);
}
.cart-drawer__close:hover { background: var(--cream-2); color: var(--black); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-drawer__footer { padding: 18px 24px 24px; border-top: 1px solid rgba(21,18,13,0.1); }

.cart-empty { color: var(--ink-muted); font-size: 14px; line-height: 1.7; }
.cart-empty a { color: var(--red); font-weight: 700; }

.cart-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-item__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-item__name { font-size: 14px; font-weight: 700; }
.cart-item__price { font-size: 13px; color: var(--ink-muted); font-family: var(--font-display); }
.cart-item__controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cart-qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(21,18,13,0.2);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s var(--ease);
}
.cart-qty-btn:hover { border-color: var(--red); color: var(--red); }
.cart-qty-btn:active { transform: scale(0.9); }
.cart-item__qty { min-width: 18px; text-align: center; font-weight: 700; font-size: 13px; }
.cart-item__remove {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  font-size: 17px;
  cursor: pointer;
  margin-left: 4px;
}
.cart-item__remove:hover { color: var(--red); }

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 14px;
}
.cart-checkout-btn { width: 100%; }

.checkout-toggle { display: flex; gap: 10px; margin: 0 0 18px; padding: 0; border: none; }
.checkout-toggle__input {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.checkout-toggle__btn {
  flex: 1;
  padding: 11px;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s var(--ease);
}
.checkout-toggle__btn:hover { border-color: var(--red); }
.checkout-toggle__btn:active { transform: scale(0.97); }
.checkout-toggle__input:checked + .checkout-toggle__btn { background: var(--yellow); border-color: var(--yellow); }
.checkout-toggle__input:focus-visible + .checkout-toggle__btn { outline: 2px solid var(--red); outline-offset: 2px; }

.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.checkout-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; }
.checkout-field input,
.checkout-field textarea {
  font: inherit;
  font-weight: 400;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(21,18,13,0.15);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout-field input:hover,
.checkout-field textarea:hover { border-color: rgba(21,18,13,0.28); }
.checkout-field input:focus,
.checkout-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(208, 32, 47, 0.1);
}
.checkout-field-row { display: flex; gap: 12px; }
.checkout-field-row .checkout-field { flex: 1; }
.checkout-hint { font-size: 12.5px; color: var(--ink-muted); margin: -4px 0 0; line-height: 1.5; }
.checkout-hint--warn { color: var(--red); font-weight: 600; }
.checkout-section-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin: 6px 0 -2px;
  padding-top: 16px;
  border-top: 1px solid rgba(21,18,13,0.1);
}
.checkout-section-label span {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-muted);
  margin-top: 4px;
}
.checkout-error { font-size: 13px; color: var(--red); font-weight: 600; }
.checkout-actions { display: flex; gap: 10px; }
.checkout-actions .btn { flex: 1; padding: 13px; font-size: 14px; }
.checkout-actions #checkoutSubmit:disabled { opacity: 0.5; cursor: not-allowed; }

.cart-item__mods { font-size: 12px; color: var(--ink-muted); margin: 2px 0 0; line-height: 1.4; }

/* ===== Artikel anpassen (Zutaten & Extras) ===== */
.item-modal__price { font-family: var(--font-display); font-size: 20px; margin: 0 0 20px; }
.item-modal__section { margin-bottom: 24px; }
.item-modal__section h3 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-muted); margin: 0 0 10px; }
.item-modal__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(21,18,13,0.15);
  background: #fff;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s var(--ease), color 0.2s ease;
}
.modal-chip:hover { border-color: rgba(21,18,13,0.32); }
.modal-chip:active { transform: scale(0.96); }
.modal-chip.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.modal-chip[data-extra].is-active { background: var(--red); border-color: var(--red); color: #fff; }
.modal-chip__price { font-family: var(--font-display); font-size: 12px; opacity: 0.75; }
.item-modal__qty { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 14px; }
.item-modal__qty span { min-width: 20px; text-align: center; font-weight: 700; }
.item-modal__add { width: 100%; }

/* ===== Bestellungen (Admin) ===== */
.orders-page { max-width: 760px; margin: 0 auto; padding: 160px 24px 120px; }
.orders-page h1 { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 40px); margin: 0 0 32px; }
.orders-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.orders-toolbar #ordersCount { font-weight: 700; color: var(--ink-muted); font-size: 14px; }
.orders-list { display: flex; flex-direction: column; gap: 16px; }
.orders-list > p { color: var(--ink-muted); font-size: 14px; text-align: center; padding: 40px 0; }
.order-card {
  background: #fff;
  border: 1.5px solid rgba(21,18,13,0.1);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(21,18,13,0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  animation: boomFadeUp 0.4s var(--ease) both;
}
.order-card:hover { box-shadow: 0 8px 24px rgba(21,18,13,0.08); border-color: rgba(21,18,13,0.16); }
.order-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.order-card__head strong { font-size: 16px; }
.order-card__phone a { color: var(--red); font-weight: 600; }
.order-card__cash-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #1c7a3e;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  vertical-align: middle;
}
.order-card__cash-collect {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #1c7a3e;
}
.order-card__head time { font-size: 12.5px; color: var(--ink-muted); }
.order-card__when { font-size: 14px; font-weight: 700; margin: 8px 0 0; }
.order-card__notes { font-size: 13px; color: var(--ink-muted); font-style: italic; margin: 6px 0 0; }
.order-card__maps { color: var(--red); font-weight: 700; white-space: nowrap; }
.order-card__discount { font-size: 13px; color: var(--red); font-weight: 600; margin: 6px 0 0; }
.order-card__items { list-style: none; margin: 14px 0 0; padding: 0; border-top: 1px solid rgba(21,18,13,0.08); }
.order-card__items li { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13.5px; }
.order-card__items li span { font-family: var(--font-display); color: var(--red); }
.order-card__total { font-family: var(--font-display); font-size: 15px; text-align: right; margin-top: 6px; }
.order-card__status {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.order-card__status label {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.75;
}
.order-card__status select {
  font: inherit;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(21,18,13,0.2);
  background: var(--cream);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.order-card__status select:hover { border-color: rgba(21,18,13,0.35); }
.order-card__status select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(208, 32, 47, 0.1); }
/* Restzeit bis zum zugesagten Zeitpunkt — läuft mit, siehe js/mitarbeiter.js */
.order-card__remaining {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.7;
}
.order-card__status .order-card__done-btn {
  margin-left: auto;
  padding: 9px 16px;
  font-size: 13px;
  transition: transform 0.15s var(--ease), box-shadow 0.2s ease;
}
.order-card__done {
  font-size: 15px;
  color: #1c7a3e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.order-card__archive-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}
.order-card__archive-actions .btn {
  padding: 8px 14px;
  font-size: 12.5px;
}
.order-card__delete-btn:hover { border-color: var(--red); color: var(--red); background: rgba(208, 32, 47, 0.06); }

/* ----- Archiv (Mitarbeiter-Dashboard) ----- */
.orders-archive__heading {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 40px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.orders-archive__heading small { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--ink-muted); }
.order-card--archived { opacity: 0.72; }
.order-card--archived:hover { opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .story__grid { grid-template-columns: 1fr; gap: 40px; }
  .story__stats { flex-direction: row; flex-wrap: wrap; gap: 32px; }

  .signature__grid { grid-template-columns: 1fr; align-items: start; }
  .signature__price { font-size: clamp(32px, 10vw, 48px); }
  .signature__favorites { grid-template-columns: 1fr; }

  .menu-list { grid-template-columns: 1fr; }

  .standort__grid { grid-template-columns: 1fr; }
  .standort__map { height: 320px; }

  .footer__grid { flex-direction: column; text-align: center; }
  .footer__meta { text-align: center; }
  .footer__bottom { flex-direction: column; text-align: center; align-items: center; }

  .cookie-banner { left: 12px; right: 12px; max-width: none; }

  .cart-fab { right: 16px; bottom: 16px; }
  .cart-drawer { width: 100vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-line__inner { transform: none !important; }
}
