/* ==========================================================================
   Tandour Bremen — zentrales Stylesheet
   Design-System: OKLCH-Farbtokens, editoriale Typografie, ruhige Bewegung.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Farbsystem (nur OKLCH) */
  --bg:        oklch(0.155 0.026 38);      /* warmes, fast schwarzes Anthrazit, roter Stich */
  --bg-2:      oklch(0.195 0.03 38);       /* Panel-Ebene, leicht heller */
  --bg-3:      oklch(0.115 0.022 35);      /* tiefste Ebene: Footer, Overlays */
  --ink:       oklch(0.96 0.012 75);       /* warmes Off-White */
  --muted:     oklch(0.685 0.03 62);       /* zurückhaltendes Grau-Beige */
  --muted-2:   oklch(0.5 0.025 55);        /* gedämpfter, für Feinlinien-Text */
  --accent:    oklch(0.775 0.155 60);      /* Tandour Gold-Orange, einzige starke Farbe */
  --accent-2:  oklch(0.685 0.155 54);      /* Gold, gedrückt für Hover */
  --accent-ink:oklch(0.2 0.04 55);         /* Text auf Gold-Flächen */
  --red:       oklch(0.29 0.075 24);       /* zurückhaltendes Dunkelrot, aus dem Hintergrundsystem abgeleitet */
  --red-ink:   oklch(0.7 0.11 30);         /* Text/Icon-Ton im Rotbereich, ruhig */
  --line:      oklch(0.96 0.012 75 / 12%); /* Haarlinie auf dunklem Grund */
  --line-2:    oklch(0.96 0.012 75 / 22%);
  --scrim:     oklch(0.1 0.02 35 / 55%);   /* Video-/Bild-Abdunklung */
  --shadow:    0 20px 60px oklch(0.08 0.02 35 / 55%);

  /* Typografie */
  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Raster */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;

  --radius-sm: 3px;
  --radius-md: 6px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

/* ---- Reset ---------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }

.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;
}

.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  z-index: 999; transition: top 0.2s var(--ease);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.accent { color: var(--accent); font-style: italic; }

/* Signatur-Kategorieschrift (Rollos, Pizza, Pasta, ...) */
.cat-lettering {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-gold:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--line-2);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ---- Topbar ------------------------------------------------------------ */
.topbar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.55rem var(--gutter);
  display: flex;
  gap: var(--space-4);
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.topbar-inner::-webkit-scrollbar { display: none; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-item a { color: var(--muted); }
.topbar-item a:hover { color: var(--accent); }
.topbar-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 0 3px oklch(0.775 0.155 60 / 20%);
}

/* ---- Header / Navigation ------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.105 0.018 35 / 94%);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid oklch(0.775 0.155 60 / 50%);
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  min-height: 80px;
  padding: 0.5rem var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.logo-badge {
  width: 46px; height: 46px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
}
.logo-badge img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.2; }
.logo-text .name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; line-height: 1.2; }
.logo-text .tagline { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.04em; line-height: 1.2; }

.nav { display: flex; gap: var(--space-4); margin-inline: auto; }
.nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  position: relative; padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

.burger {
  display: none; width: 42px; height: 42px; flex-shrink: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--line-2); border-radius: var(--radius-md);
}
.burger span { width: 18px; height: 1.5px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: var(--gutter);
  gap: 0.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding-bottom 0.4s var(--ease);
}
.mobile-nav.open { max-height: 600px; padding-bottom: var(--space-3); }
.mobile-nav > * { min-height: 0; flex-shrink: 0; }
.mobile-nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--muted); }
.mobile-nav a.active { color: var(--accent); }
.mobile-nav a.btn { border-bottom: none; padding: 0.85rem 1.6rem; }
.mobile-nav a.btn-gold { color: var(--accent-ink); }
.mobile-nav a.btn-outline { color: var(--ink); }
.mobile-nav .btn { margin-top: 0.9rem; }

@media (max-width: 1200px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-actions .btn-gold { display: none; }
  .mobile-nav { display: flex; }
}

/* ---- Footer -------------------------------------------------------------*/
.footer { background: var(--bg-3); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.footer-marquee {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}
.footer-marquee-track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
}
.footer-marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted-2);
  padding-inline: 2rem;
  position: relative;
}
.footer-marquee-track span::after {
  content: "•"; position: absolute; right: -0.3rem; color: var(--accent);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-block: var(--space-6) var(--space-4);
}
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-2); font-family: var(--font-body); font-weight: 600; }
.footer-col p, .footer-col a { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.45rem; display: block; }
.footer-col a:hover { color: var(--accent); }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--space-2); }
.footer-logo .logo-badge { width: 38px; height: 38px; }
.footer-logo .name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.footer-statement { max-width: 32ch; color: var(--muted); font-size: 0.92rem; margin-bottom: var(--space-3); }
.social-icons { display: flex; gap: 0.6rem; }
.social-icons a {
  width: 36px; height: 36px; border: 1px solid var(--line-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.social-icons a:hover { border-color: var(--accent); transform: translateY(-2px); }
.social-icons svg { width: 16px; height: 16px; }

.footer-map-link { display: block; }
.footer-map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-2);
  aspect-ratio: 4/3;
}
.footer-map svg { width: 100%; height: 100%; display: block; }
.footer-map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  color: var(--accent); width: 22px; height: 22px;
  animation: pin-drop 2.2s var(--ease) infinite;
}
@keyframes pin-drop { 0%, 100% { transform: translate(-50%, -100%); } 50% { transform: translate(-50%, -108%); } }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: var(--space-3);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted-2); margin-left: 1rem; }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Reveal / Motion ----------------------------------------------------*/
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .footer-marquee-track { animation: none !important; }
  .footer-map-pin { animation: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ---- Hero ---------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-3);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 90% 60% at 30% 100%, oklch(0.1 0.02 35 / 92%), transparent 70%),
    linear-gradient(180deg, oklch(0.1 0.02 35 / 55%) 0%, oklch(0.1 0.02 35 / 20%) 35%, oklch(0.1 0.02 35 / 75%) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding-block: var(--space-6) var(--space-5);
  max-width: 760px;
}
.hero-inner h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.03;
  margin-block: 0 var(--space-3);
  text-wrap: balance;
}
.hero-sub {
  font-size: 1.1rem; color: var(--ink); opacity: 0.88;
  max-width: 46ch; margin-bottom: var(--space-4);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scrolldown {
  position: absolute; z-index: 2; right: var(--gutter); bottom: var(--space-3);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.hero-scrolldown .bar {
  width: 1px; height: 34px; background: var(--line-2); position: relative; overflow: hidden;
}
.hero-scrolldown .bar::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent); animation: scrollbar 1.8s var(--ease) infinite;
}
@keyframes scrollbar { to { top: 100%; } }

@media (max-width: 640px) {
  .hero { align-items: flex-end; }
  .hero-inner { padding-block: var(--space-5) var(--space-4); }
  .hero-scrolldown { display: none; }
}

/* ---- Thesis --------------------------------------------------------------*/
.thesis {
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--line);
}
.thesis p {
  max-width: 20ch;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.3;
}

/* ---- Feature pairs ---------------------------------------------------- */
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
  padding-block: var(--space-6);
}
.feature-pair.reverse .feature-media { order: 2; }
.feature-pair.reverse .feature-text { order: 1; }
.feature-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature-media:hover img { transform: scale(1.04); }
.feature-text h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: var(--space-3); }
.feature-text p { color: var(--muted); font-size: 1.02rem; max-width: 42ch; margin-bottom: 0.9rem; }
.feature-text p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .feature-pair, .feature-pair.reverse { grid-template-columns: 1fr; gap: var(--space-3); }
  .feature-pair.reverse .feature-media, .feature-pair.reverse .feature-text { order: initial; }
  .feature-media { aspect-ratio: 16/11; }
}

/* ---- Gallery band ------------------------------------------------------ */
.gallery-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 2px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.gband-item { position: relative; min-height: 460px; overflow: hidden; background: var(--bg-2); }
.gband-item img, .gband-item video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gband-caption {
  position: absolute; left: 1.4rem; bottom: 1.4rem; z-index: 2;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  color: var(--ink);
  text-shadow: 0 2px 16px oklch(0.1 0.02 35 / 80%);
}
.gband-item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 55%, oklch(0.1 0.02 35 / 75%) 100%);
}
.gband-type {
  display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
  padding: var(--space-4);
  background: var(--bg-2);
}
.gband-type span { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.35; }
.gband-type span .accent { font-style: italic; }

@media (max-width: 960px) {
  .gallery-band { grid-template-columns: 1fr; }
  .gband-item { min-height: 340px; }
}

/* ---- Numbered detail rows ------------------------------------------------*/
.detail-rows { padding-block: var(--space-6); }
.detail-row {
  display: grid;
  grid-template-columns: 100px 1.1fr 1.4fr;
  gap: var(--space-4);
  align-items: baseline;
  padding-block: var(--space-3);
  border-top: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: 1px solid var(--line); }
.detail-row-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); font-style: italic; }
.detail-row h4 { font-size: 1.3rem; }
.detail-row p { color: var(--muted); max-width: 48ch; }

@media (max-width: 720px) {
  .detail-row { grid-template-columns: 50px 1fr; }
  .detail-row p { grid-column: 2; }
}

/* ---- CTA ------------------------------------------------------------------*/
.cta-section {
  padding-block: var(--space-7);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
  border-top: 1px solid var(--line);
}
.cta-section h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: var(--space-4);
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- Generic section helpers -------------------------------------------- */
.section { padding-block: var(--space-6); }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 60ch; margin-bottom: var(--space-4); }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 0.6rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.page-hero {
  padding-block: calc(var(--space-6) + 2rem) var(--space-5);
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
}
.page-hero .eyebrow { display: block; }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); max-width: 22ch; }
.page-hero p { color: var(--muted); max-width: 56ch; margin-top: var(--space-2); font-size: 1.05rem; }

/* ==========================================================================
   Speisekarte
   ========================================================================== */
.menu-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 73px; z-index: 40;
  background: oklch(0.155 0.026 38 / 92%);
  backdrop-filter: blur(8px);
}
.menu-tab {
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  transition: all 0.2s var(--ease);
}
.menu-tab:hover { color: var(--ink); border-color: var(--muted); }
.menu-tab.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.menu-category { padding-block: var(--space-5); border-bottom: 1px solid var(--line); }
.menu-category:last-child { border-bottom: none; }
.menu-category-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.menu-category-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-style: italic;
}
.menu-category-note { color: var(--muted); max-width: 40ch; font-size: 0.95rem; }
.menu-category-media {
  width: 100%; aspect-ratio: 21/8; border-radius: var(--radius-md); overflow: hidden;
  margin-bottom: var(--space-4);
}
.menu-category-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-category-media.placeholder {
  background:
    repeating-linear-gradient(135deg, oklch(0.775 0.155 60 / 7%) 0 2px, transparent 2px 26px),
    linear-gradient(120deg, var(--bg-2), var(--bg-3));
  display: flex; align-items: center; justify-content: center;
}
.menu-category-media.placeholder span {
  font-family: var(--font-display); font-style: italic; color: var(--muted-2); font-size: 1.1rem;
}
.price-alt { color: var(--muted); font-size: 0.75em; font-family: var(--font-body); }
.menu-category-note strong { color: var(--muted); font-weight: 600; }

.allergen-tags { display: inline-flex; gap: 0.25rem; margin-left: 0.5rem; vertical-align: 1px; }
.allergen-tag {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 15px; height: 15px; padding: 0 2px;
  font-size: 0.62rem; font-weight: 700; line-height: 1;
  color: var(--muted); border: 1px solid var(--line-2);
}
.allergen-tag.is-letter { border-radius: 3px; }
.allergen-tag.is-number { border-radius: 50%; }

.menu-legend {
  margin-top: var(--space-2); padding: var(--space-3);
  border: 1px dashed var(--line-2); border-radius: var(--radius-md);
  font-size: 0.85rem; color: var(--muted);
}
.menu-legend h3 { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.6rem; font-family: var(--font-body); font-weight: 600; }
.menu-legend-known { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-bottom: 0.6rem; }
.menu-legend-known span { display: inline-flex; align-items: center; gap: 0.4rem; }
.menu-legend p { margin-top: 0.4rem; line-height: 1.5; }
.menu-legend .incomplete { color: var(--red-ink); }

.menu-list { display: flex; flex-direction: column; }
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding-block: var(--space-3);
  border-top: 1px solid var(--line);
}
.menu-row-info h3 { font-size: 1.2rem; margin-bottom: 0.3rem; font-family: var(--font-body); font-weight: 600; }
.menu-row-info p { color: var(--muted); font-size: 0.9rem; max-width: 52ch; }
.menu-row-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--accent); white-space: nowrap; }

.menu-demo-note {
  font-size: 0.8rem; color: var(--muted-2); margin-top: var(--space-2);
}

@media (max-width: 640px) {
  .menu-row { grid-template-columns: 1fr; }
  .menu-row-price { justify-self: start; }
  .menu-tabs { top: 65px; }
}

/* ==========================================================================
   Über uns
   ========================================================================== */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; padding-block: var(--space-6); border-bottom: 1px solid var(--line); }
.story-block img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; }
.story-block h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: var(--space-3); }
.story-block p { color: var(--muted); margin-bottom: 0.8rem; max-width: 46ch; }

.philosophy-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); padding-block: var(--space-6); }
.philosophy-item { border-top: 1px solid var(--line); padding-top: var(--space-3); }
.philosophy-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-style: italic; }
.philosophy-item p { color: var(--muted); font-size: 0.95rem; }

.stats-row {
  display: flex; flex-wrap: wrap; gap: var(--space-5);
  padding-block: var(--space-5);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { flex: 1; min-width: 140px; }
.stat-num { font-family: var(--font-display); font-style: italic; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--accent); display: block; }
.stat-label { color: var(--muted); font-size: 0.88rem; }

@media (max-width: 860px) {
  .story-block { grid-template-columns: 1fr; }
  .philosophy-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Galerie
   ========================================================================== */
.gallery-filters { display: flex; gap: 0.5rem; padding-block: var(--space-3); border-bottom: 1px solid var(--line); }
.gallery-grid {
  columns: 3 240px;
  column-gap: 1rem;
  padding-block: var(--space-5);
}
.gallery-grid figure {
  break-inside: avoid; margin: 0 0 1rem; border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: zoom-in;
}
.gallery-grid img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.8rem 1rem;
  font-size: 0.82rem; color: var(--ink);
  background: linear-gradient(0deg, oklch(0.1 0.02 35 / 85%), transparent);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.gallery-grid figure:hover figcaption { opacity: 1; }
.gallery-grid figure.hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: oklch(0.08 0.02 35 / 92%);
  display: none; align-items: center; justify-content: center;
  padding: var(--space-4);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 900px); max-height: 82vh; border-radius: var(--radius-md); }
.lightbox-caption { position: absolute; bottom: var(--space-4); left: 0; right: 0; text-align: center; color: var(--muted); font-size: 0.9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: var(--ink); width: 46px; height: 46px;
  border: 1px solid var(--line-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: var(--space-3); right: var(--space-3); }
.lightbox-prev { left: var(--space-3); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--space-3); top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 720px) {
  .gallery-grid { columns: 2 160px; }
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); padding-block: var(--space-5); align-items: start; }
.contact-list { display: grid; gap: var(--space-3); }
.contact-list-item { border-top: 1px solid var(--line); padding-top: var(--space-3); }
.contact-list-item h3 { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 600; }
.contact-list-item a, .contact-list-item p { font-size: 1.05rem; }
.contact-list-item a:hover { color: var(--accent); }
.map-visual-link { display: block; }
.map-visual {
  aspect-ratio: 4/3.4; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-2); position: relative;
}
.map-visual svg { width: 100%; height: 100%; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}
