/* ============================================================
   GOLDGOCKEL Hähnchen-Foodtruck – Stylesheet
   Keine externen Fonts, keine externen Ressourcen → keine Cookies
   Light Mode: heller, appetitlicher Grundton, Gold nur als Akzent
   ============================================================ */

/* Selbst gehostete Variable-Font-Datei (Plus Jakarta Sans, Latin-Subset,
   SIL Open Font License – siehe assets/fonts/OFL.txt). Kein Google-Fonts-
   Server zur Laufzeit, keine externe Anfrage, kein Tracking. */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/PlusJakartaSans-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;

  --ink: #211a12;
  --ink-soft: #5b4e3f;
  --ink-faint: #8a7a66;

  --paper: #faf6ee;
  --paper-alt: #f2ead9;
  --card: #ffffff;

  --line: rgba(33, 26, 18, 0.10);
  --line-strong: rgba(33, 26, 18, 0.18);

  --gold: #c8862a;
  --gold-deep: #855816;
  --gold-soft: rgba(200, 134, 42, 0.14);

  --green: #1f7a39;
  --green-dot: #2fa855;
  --green-soft: rgba(31, 122, 57, 0.10);

  --rust: #a8472f;
  --rust-soft: rgba(168, 71, 47, 0.10);

  --shadow-sm: 0 1px 2px rgba(33, 26, 18, 0.07), 0 1px 1px rgba(33, 26, 18, 0.04);
  --shadow-md: 0 10px 28px rgba(33, 26, 18, 0.09);
  --shadow-lg: 0 24px 60px rgba(33, 26, 18, 0.14);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a { color: var(--gold-deep); }
a:hover { color: var(--ink); }

.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: none;
}
.icon-fill { fill: currentColor; stroke: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  background: var(--ink);
  color: var(--paper);
  padding: 0.8rem 1.3rem;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ============ Sanftes Scroll-Reveal ============
   Wird per JS (IntersectionObserver) nur aktiviert, wenn JavaScript läuft
   und der Nutzer keine reduzierte Bewegung eingestellt hat. Ohne JS bleibt
   der Inhalt sofort sichtbar (Klasse wird nie gesetzt). */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-mark { object-fit: contain; }
.logo-sm { height: 42px; width: auto; }
.logo-md { height: 80px; width: auto; }
.logo-xl { height: 140px; width: auto; }
.logo-hero { width: 100%; height: 100%; }

/* ============ Buttons ============ */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #b97a22; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary .icon { width: 1.15em; height: 1.15em; }
.btn-secondary {
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost {
  background: none;
  color: var(--ink-soft);
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.6rem;
}
.btn-ghost:hover { color: var(--ink); }

/* ============ Intro-Diashow ============ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: radial-gradient(circle at 50% 40%, var(--paper-alt) 0%, var(--paper) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
#splash.is-hidden { opacity: 0; pointer-events: none; }
.splash-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
  padding: 2rem;
}
.splash-slide.is-active { opacity: 1; transform: scale(1); }
.splash-logo .logo-xl {
  filter: drop-shadow(0 10px 30px rgba(33, 26, 18, 0.18));
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
.splash-brand {
  font-size: clamp(2rem, 6.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 1.2rem;
  color: var(--ink);
}
.splash-tag {
  color: var(--gold-deep);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.splash-line {
  font-size: clamp(1.4rem, 4.6vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.splash-line em { color: var(--gold-deep); font-style: normal; }
#splash-skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
}
#splash-skip:hover { color: var(--ink); border-color: var(--gold); }

/* ============ Standort-Auswahl ============ */
#chooser {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--paper);
  overflow-y: auto;
  opacity: 1;
  transition: opacity 0.45s ease;
}
#chooser.is-hidden { opacity: 0; pointer-events: none; }
.chooser-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 3.5rem 1.4rem 4rem;
  text-align: center;
}
.chooser-inner h2 {
  font-size: clamp(1.6rem, 4.6vw, 2.3rem);
  font-weight: 800;
  color: var(--ink);
  margin-top: 1rem;
}
.chooser-sub { color: var(--ink-soft); margin-top: 0.5rem; margin-bottom: 2.2rem; }
.chooser-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin: 2rem 0 0.9rem;
  font-weight: 700;
}
.chooser-today-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
  justify-items: stretch;
}
.today-card {
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.today-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.today-card .tc-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.today-card .tc-name { display: block; font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.today-card .tc-addr { display: block; color: var(--ink-soft); font-size: 0.88rem; margin-top: 0.2rem; }
.today-card .tc-time { display: flex; align-items: center; gap: 0.35rem; color: var(--green); font-size: 0.88rem; margin-top: 0.4rem; font-weight: 600; }
.chooser-none {
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.chooser-week { display: grid; gap: 0.55rem; text-align: left; }
.week-day-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.8rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}
.week-day-row.is-today { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.wd-name { font-weight: 700; color: var(--ink); padding-top: 0.35rem; }
.wd-locs { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.loc-chip {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.loc-chip:hover { background: var(--gold-soft); border-color: var(--gold); }
#chooser-skip { margin-top: 2.2rem; }

/* ============ Header ============ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.4rem;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand-name {
  letter-spacing: 0.16em;
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 800;
}
#site-header nav { display: flex; align-items: center; gap: 1.4rem; }
#site-header nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
}
#site-header nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #b97a22; }
#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
#nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }

/* ============ Hero ============ */
#hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 1.4rem 0;
  background:
    radial-gradient(ellipse at 80% 20%, var(--gold-soft) 0%, transparent 55%),
    var(--paper);
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Nur ein sehr leichter Schleier fürs gesamte Video – die eigentliche
     Lesbarkeit übernimmt das Panel hinter dem Text (.hero-text), nicht ein
     seitenbreiter Verlauf. So bleibt die rechte Seite mit dem Hähnchen bei
     jeder Bildschirmbreite klar und appetitlich sichtbar. */
  background: rgba(250, 246, 238, 0.1);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-text {
  background: rgba(250, 246, 238, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.1rem;
}
.eyebrow {
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
#hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.14;
  color: var(--ink);
}
#hero h1 .gold { color: var(--gold-deep); }
.hero-sub { margin-top: 1.1rem; font-size: 1.1rem; color: var(--ink-soft); max-width: 34rem; }
.hero-sub strong { color: var(--ink); }

.status-card {
  margin-top: 1.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  max-width: 34rem;
  box-shadow: var(--shadow-md);
}
.status-card .st-row { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.st-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--green-dot);
  box-shadow: 0 0 0 4px var(--green-soft);
  animation: blink 1.8s ease-in-out infinite;
  flex: none;
}
.st-dot.is-closed { background: var(--rust); box-shadow: 0 0 0 4px var(--rust-soft); animation: none; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.st-title { display: flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.st-sub { color: var(--ink-soft); font-size: 0.94rem; margin-top: 0.3rem; }
.st-open { color: var(--green); font-weight: 700; }
.st-closed { color: var(--rust); font-weight: 700; }
.st-links { margin-top: 0.7rem; display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: 0.94rem; }
.st-links a { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; text-decoration: none; }
.st-links a:hover { text-decoration: underline; }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-hint { color: var(--ink-faint); font-size: 0.9rem; margin-top: 0.9rem; }

.hero-visual { display: flex; justify-content: center; }
.hero-ring {
  width: min(300px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8%;
  background: color-mix(in srgb, var(--paper-alt) 68%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  box-shadow: var(--shadow-lg);
}
.hero-ring .logo-hero { filter: drop-shadow(0 10px 26px rgba(33, 26, 18, 0.18)); }

.trust-bar {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.5rem;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-bar .icon { color: var(--gold-deep); }

/* ============ Sektionen allgemein ============ */
section { padding: 4.5rem 1.4rem; }
.section-head { max-width: 760px; margin: 0 auto 2.6rem; text-align: center; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.section-head h2, .about-text h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
}
.section-sub { color: var(--ink-soft); margin-top: 0.7rem; }

/* ============ Speisekarte ============ */
#speisekarte { background: var(--paper-alt); }
.menu-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: start;
}
.menu-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.menu-highlight { border: 1.5px solid var(--gold); position: relative; }
.menu-card h3 {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.menu-card h3:not(:first-child) { margin-top: 1.7rem; }
.menu-card ul { list-style: none; display: grid; gap: 0.6rem; }

.dish-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-card li:last-child .dish-row,
.dish-row:last-child { border-bottom: none; }

.dish-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}
.dish-thumb svg { border-radius: 0; }
/* Die Produktfotos sind quadratische Marketing-Grafiken mit Rand und Schriftzug;
   reingezoomt zeigt der runde Ausschnitt nur das Gericht in der Bildmitte. */
.dish-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transform: scale(1.7); transform-origin: center 42%; }

.dish-info { min-width: 0; }
.dish-name { color: var(--ink); font-weight: 600; }
.dish-avail { display: block; font-size: 0.76rem; font-weight: 500; color: var(--ink-soft); margin-top: 0.15rem; }
.dish-price { font-weight: 700; color: var(--ink); white-space: nowrap; }
.dish-price s { color: var(--ink-faint); font-weight: 400; font-size: 0.85em; margin-right: 0.3em; }

.badge-best, .badge-deal, .badge-note {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.14rem 0.55rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}
.badge-best { background: var(--gold); color: var(--ink); }
.badge-deal { background: var(--ink); color: var(--paper); }
.badge-note { background: var(--paper-alt); color: var(--ink-soft); font-weight: 500; }

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--paper-alt);
  border-radius: 999px;
  padding: 0.25rem;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--card);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.qty-btn:hover { background: var(--gold-soft); border-color: var(--gold); }
.qty-value { min-width: 1.4em; text-align: center; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.dish-row.has-qty { background: var(--gold-soft); border-radius: var(--radius-sm); padding-left: 0.5rem; padding-right: 0.5rem; margin: 0 -0.5rem; border-bottom-color: transparent; }

.menu-note {
  max-width: 1040px;
  margin: 1.2rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.menu-summary {
  max-width: 1040px;
  margin: 1.6rem auto 0;
  background: var(--card);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-md);
}
.menu-summary-items { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.9rem; }
.menu-summary-chip {
  background: var(--paper-alt);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 600;
}
.menu-summary-actions { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.menu-summary-total { font-size: 1rem; color: var(--ink-soft); margin-right: auto; }
.menu-summary-total strong { color: var(--ink); font-size: 1.15rem; }

/* ============ Standorte ============ */
.week-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}
.day-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.day-card.is-today {
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.day-card h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.day-card .today-tag {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.66rem;
  padding: 0.14rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: none;
}
.day-card ul { list-style: none; margin-top: 0.8rem; display: grid; gap: 0.7rem; }
.day-card li { display: flex; flex-direction: column; }
.day-card .dc-name { display: flex; align-items: center; gap: 0.35rem; font-weight: 700; color: var(--ink); }
.day-card .dc-name button {
  display: flex; align-items: center; gap: 0.35rem;
  background: none; border: none; color: inherit; font: inherit;
  cursor: pointer; text-align: left; padding: 0;
}
.day-card .dc-name button:hover { color: var(--gold-deep); }
.day-card .dc-addr { color: var(--ink-soft); font-size: 0.88rem; }
.day-card .dc-links { font-size: 0.85rem; margin-top: 0.15rem; display: flex; gap: 0.9rem; }
.day-card .dc-links a { text-decoration: none; font-weight: 600; }
.day-card .dc-links a:hover { text-decoration: underline; }
li.is-selected .dc-name { color: var(--gold-deep); }
.day-card .dc-time { display: flex; align-items: center; gap: 0.35rem; color: var(--green); font-size: 0.85rem; font-weight: 600; margin-top: 0.1rem; }
.week-fallback { max-width: 800px; margin: 0 auto; display: grid; gap: 0.6rem; list-style: none; }

/* ============ Dunkle Akzent-Abschnitte ============
   Bewusste Ausnahme vom Light-Mode-Grundton: zwei ruhige, gedämpfte
   Anthrazit/Dunkelbraun-Flächen (Über uns, Footer) als Kontrastanker.
   Alle Farb-Variablen werden lokal neu kalibriert (Kontrast ≥ 7:1),
   der Rest der Seite bleibt hell. */
.dark-section {
  --ink: #f3ece0;
  --ink-soft: #cabb9f;
  --ink-faint: #a3937a;
  --card: #332c24;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --gold: #d99a3f;
  --gold-deep: #dba75a;
  --gold-soft: rgba(217, 154, 63, 0.18);
  background: #2a2420;
}

/* ============ Über uns ============ */
.about-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.6rem;
  align-items: start;
}
.about-text p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.04rem; }
.about-text p strong { color: var(--ink); }
.about-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-deep);
}
.about-stats span { color: var(--ink-soft); font-size: 0.9rem; }
.about-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.about-card h3 { color: var(--ink); font-size: 1.08rem; font-weight: 800; margin-bottom: 0.4rem; }
.about-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.9rem; }
.about-card hr { border: none; border-top: 1px solid var(--line); margin: 1.4rem 0; }
.about-card .btn-secondary { padding: 0.55rem 1.2rem; font-size: 0.92rem; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.8rem; }
.faq-list details {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 1rem 1.3rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 1.4rem;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { margin-top: 0.7rem; color: var(--ink-soft); }

/* ============ Kontakt ============ */
#kontakt { background: var(--paper-alt); }
.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  align-items: start;
}
#contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.55rem;
}
#contact-form label {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
  margin-top: 0.7rem;
}
.label-note { font-weight: 400; color: var(--ink-faint); font-size: 0.82rem; }
#contact-form select,
#contact-form textarea,
#contact-form input[type="text"] {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.98rem;
}
#contact-form select:focus,
#contact-form textarea:focus,
#contact-form input[type="text"]:focus { outline: 2px solid var(--gold); border-color: transparent; }
#contact-form textarea { resize: vertical; line-height: 1.55; }
.contact-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1rem; }
.privacy-note { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--ink-faint); font-size: 0.82rem; margin-top: 0.9rem; }
.privacy-note .icon { margin-top: 0.15rem; }
.contact-info h3 {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1.5rem 0 0.6rem;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-line { display: flex; align-items: center; gap: 0.5rem; color: var(--ink-soft); margin-bottom: 0.4rem; }
.contact-line .icon { color: var(--gold-deep); }
.contact-line a { font-weight: 600; text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }

/* ============ Footer ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem 1.4rem;
}
.footer-inner { max-width: 1000px; margin: 0 auto; text-align: center; color: var(--ink-soft); display: grid; gap: 0.7rem; justify-items: center; }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; letter-spacing: 0.1em; color: var(--ink); font-weight: 800; }
footer nav { display: flex; gap: 1.6rem; }
footer nav a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
footer nav a:hover { color: var(--ink); }
.footer-note { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--ink-faint); }
.footer-credit { font-size: 0.78rem; color: var(--ink-faint); }
.footer-credit a { color: var(--ink-faint); text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: var(--ink-soft); }

/* ============ Standort-Wechsel-Button ============ */
#chooser-reopen {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  font-family: inherit;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#chooser-reopen:hover { background: var(--gold-soft); }
#chooser-reopen.is-hidden { opacity: 0; transform: translateY(10px); pointer-events: none; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-ring { width: min(220px, 58vw); }
  #hero { padding-top: 6rem; }
  /* Ein Spalten-Layout stapelt Text und Video-Ring statt sie nebeneinander
     zu trennen. Kein Schleier über dem Video – es bleibt komplett ungefiltert
     sichtbar. Nur der Textblock bekommt eine leicht durchscheinende Fläche,
     die trotzdem genug Kontrast (≥4.5:1) für den Text sichert. */
  .hero-bg-scrim {
    background: transparent;
  }
  .hero-text {
    background: rgba(250, 246, 238, 0.72);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 1.3rem 1.2rem 1.5rem;
  }
}
@media (max-width: 760px) {
  #site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    padding: 1.2rem 1.6rem 1.6rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  #site-header nav.is-open { display: flex; }
  #nav-toggle { display: flex; }
  .week-day-row { grid-template-columns: 1fr; gap: 0.3rem; }
  section { padding: 3.2rem 1.1rem; }
  .dish-row { grid-template-columns: auto 1fr; row-gap: 0.5rem; }
  .dish-price { grid-column: 2; justify-self: start; }
  .qty-stepper { grid-column: 1 / -1; justify-self: start; }
  .menu-summary-total { margin-right: 0; width: 100%; }

  /* Größere Tippflächen auf dem Handy (Fitts's Law): Finger statt Mauszeiger */
  .qty-btn { width: 38px; height: 38px; font-size: 1.15rem; }
  .qty-stepper { gap: 0.65rem; padding: 0.3rem; }
  .loc-chip { padding: 0.6rem 1.05rem; }
  #nav-toggle { padding: 11px; }

  /* Footer auf schmalen Screens: Logo mittig über dem Markennamen statt
     nebeneinander (verhindert den unruhigen Zeilenumbruch neben dem Logo). */
  .footer-brand { flex-direction: column; gap: 0.55rem; }
}

/* ============ Reduzierte Bewegung ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
