/* ============ Tokens ============ */
:root{
  --color-bg: #0a0a0a;
  --color-bg-alt: #141210;
  --color-gold: #c89b4a;
  --color-gold-light: #e8c878;
  --color-gold-muted: #7a5f2e;
  --color-text: #f2ecdd;
  --color-text-muted: #b9b2a0;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Archivo", -apple-system, "Helvetica Neue", sans-serif;

  --container: 1120px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 2.75rem;
  --space-5: 4.5rem;
  --space-6: 7rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--color-text);
}

p{ margin: 0 0 1em; color: var(--color-text-muted); }
p:last-child{ margin-bottom: 0; }

a{ color: inherit; text-decoration: none; }

ul, dl{ list-style: none; margin: 0; padding: 0; }

img{ max-width: 100%; display: block; }

.icon{ width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

:focus-visible{ outline: 2px solid var(--color-gold-light); outline-offset: 3px; }

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--color-gold); color: #0a0a0a; padding: 0.75em 1.25em;
  z-index: 200; font-weight: 600;
}
.skip-link:focus{ left: var(--space-2); top: var(--space-2); }

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section{ position: relative; padding: var(--space-5) 0; overflow: hidden; }
.section + .section{ border-top: 1px solid rgba(200,155,74,0.26); }

.section-kicker{
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 var(--space-2);
}
/* Gold-Raute vor dem Kicker */
.section-kicker::before{
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--color-gold);
  flex-shrink: 0;
}

.section-title{
  position: relative;
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  margin-bottom: var(--space-3);
  padding-bottom: 0.6rem;
  max-width: 24ch;
  background: linear-gradient(180deg, #fbf3dd 0%, #f0dfb2 45%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* Gold-Unterstrich mit Raute unter jeder Section-Überschrift */
.section-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-muted) 70%, transparent);
}

/* ============ Reveal ============ */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-1{ transition-delay: 0.08s; }
.reveal-2{ transition-delay: 0.16s; }
.reveal-3{ transition-delay: 0.24s; }
.reveal-4{ transition-delay: 0.32s; }
.reveal-5{ transition-delay: 0.4s; }
.reveal-6{ transition-delay: 0.48s; }

/* ============ Lesbarkeits-Boxen ============ */
/* Dezente, halbtransparente Box hinter Textblöcken, die direkt auf dem
   Hintergrundbild liegen — statt das ganze Bild abzudunkeln. */
.text-panel{
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(200,155,74,0.45);
  border-radius: 10px;
  padding: var(--space-3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (min-width: 720px){
  .text-panel{ padding: var(--space-4); }
}

.hero-heading-box{
  display: inline-block;
  margin: 0 auto var(--space-3);
}

/* ============ Buttons ============ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
  min-height: 44px;
  cursor: pointer;
  text-shadow: none;
}
.btn-primary{
  background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: #16130c;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.btn-primary:hover{
  background: linear-gradient(180deg, #f3dfa0 0%, var(--color-gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.btn-primary:active{ transform: translateY(0); }
.btn-ghost{ border-color: var(--color-gold-muted); color: var(--color-text); background: transparent; }
.btn-ghost:hover{ border-color: var(--color-gold); color: var(--color-gold-light); }
.btn-social{
  border-color: var(--color-gold-muted);
  color: var(--color-text);
  background: transparent;
  padding: 0.6em 1.1em;
  font-size: 0.85rem;
  margin-top: var(--space-1);
}
.btn-social:hover{ border-color: var(--color-gold); color: var(--color-gold-light); }
.btn-social-header{
  margin-top: 0;
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  padding: 0.6em 0.95em;
}
.btn-social-header:hover{ background: var(--color-gold); color: #16130c; border-color: var(--color-gold); }
/* auf schmalen Schirmen nur das Icon, damit der Header nicht bricht */
.btn-social-header .btn-social-label{ display: none; }
@media (min-width: 900px){
  .btn-social-header .btn-social-label{ display: inline; }
}
/* gefuellte Icons (z. B. TikTok) statt Konturlinien */
.icon-solid{ fill: currentColor; stroke: none; width: 1.05em; height: 1.05em; }

/* ============ Header ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,155,74,0.32);
}
/* Gold-Lichtkante unter dem Header */
.site-header::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 35%, var(--color-gold-light) 50%, var(--color-gold) 65%, transparent);
  opacity: 0.7;
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.7rem var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.brand{ display: flex; align-items: center; gap: 0.75em; }
.brand-medallion{
  display: block;
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-gold-muted);
  flex-shrink: 0;
}
.brand-medallion img{ width: 100%; height: 100%; object-fit: cover; }
.brand-medallion-sm{ width: 36px; height: 36px; }
.brand-word{ display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-display); }
.brand-word-top{ font-size: 0.95rem; color: var(--color-text); }
.brand-word-bottom{ font-size: 0.72rem; letter-spacing: 0.16em; color: var(--color-gold); text-transform: uppercase; }

.main-nav{ display: none; }
.main-nav a{
  font-size: 0.92rem;
  color: var(--color-text-muted);
  padding: 0.4em 0;
  position: relative;
}
.main-nav a::after{
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--color-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.main-nav a:hover{ color: var(--color-text); }
.main-nav a:hover::after{ transform: scaleX(1); }

.header-actions{ display: flex; align-items: center; gap: var(--space-2); }
/* Anrufknopf im Header: gleicher Look wie der TikTok-Knopf daneben */
.btn-call{ display: none; padding: 0.6em 0.95em; font-size: 0.85rem; }
.btn-call.btn{ border: 1px solid var(--color-gold); color: var(--color-gold-light); background: transparent; }
.btn-call:hover{ background: var(--color-gold); color: #16130c; border-color: var(--color-gold); }

/* Anruf-Knopf im Hero (neben "Zur Speisekarte"): schwarz mit weißer
   Schrift und weißem Icon, damit die Nummer gut lesbar ist. */
.hero-actions .btn-ghost{
  background: #000;
  color: #fff;
  border-color: #000;
}
.hero-actions .btn-ghost:hover{
  background: #1a1a1a;
  color: #fff;
  border-color: var(--color-gold);
}

.nav-toggle{
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: none; cursor: pointer;
}
.nav-toggle span{ width: 22px; height: 1.5px; background: var(--color-gold); transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 719px){
  .main-nav{
    position: fixed;
    top: var(--header-h, 65px);
    left: 0; right: 0;
    background: #000;
    border-bottom: 1px solid rgba(200,155,74,0.14);
    flex-direction: column;
    padding: var(--space-2) var(--space-3) var(--space-3);
    gap: var(--space-1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  }
  .main-nav.is-open{ display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a{ padding: 0.75em 0; font-size: 1.05rem; }
}

@media (min-width: 720px){
  .main-nav{ display: flex; gap: var(--space-4); }
  .btn-call{ display: inline-flex; }
  .nav-toggle{ display: none; }
}

/* ============ Hero ============ */
.hero{
  position: relative;
  padding: var(--space-4) 0 var(--space-4);
  text-align: center;
  overflow: hidden;
}
@media (min-width: 720px){
  .hero{ padding: var(--space-5) 0 var(--space-5); }
}
/* Seitenweiter, fixierter Bildhintergrund hinter allen Sektionen */
.page-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  /* Bild füllt die Fläche randlos, auf jeder Bildschirmgröße — keine
     schwarzen Balken/Säulen an den Seiten oder oben/unten. */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  filter: brightness(1.0);
  pointer-events: none;
}
/* Gleichmäßige dunkle Schicht über dem ganzen Hintergrundbild — deutlich
   abgedunkelt, damit der Hintergrund durchgängig dunkel bleibt. */
.page-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
/* Leichter, gleichmäßiger Goldschimmer obendrauf.
   Die Lesbarkeit für Text übernehmen gezielte Boxen (.text-panel etc.). */
.page-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 34%, rgba(232,200,120,0.08) 0%, transparent 62%);
}

/* Inhalt liegt über dem Hintergrundbild */
main,
.site-footer{ position: relative; z-index: 1; }

/* Abdunkelung hinter dem Hero-Text */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 78% 62% at 50% 46%, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.3) 60%, transparent 88%);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  /* keeps type legible over the bright backdrop without darkening the photo */
  text-shadow: 0 1px 18px rgba(10,10,10,0.85), 0 1px 4px rgba(10,10,10,0.7);
}
.hero-medallion{
  position: relative;
  width: 128px; height: 128px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 0 1px rgba(232,200,120,0.35), 0 0 34px rgba(200,155,74,0.4);
}
.hero-medallion img{ width: 100%; height: 100%; object-fit: cover; }
.hero-eyebrow{
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.hero-title{
  font-size: clamp(2.4rem, 1.8rem + 3vw, 4.2rem);
  margin-bottom: var(--space-3);
  background: linear-gradient(180deg, #fbf3dd 0%, #f3e2b3 38%, var(--color-gold-light) 72%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 14px rgba(10,10,10,0.9));
}
.hero-claim{
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 auto var(--space-4);
  color: var(--color-text);
}
.hero-motto{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 auto var(--space-3);
  padding: 1.1rem 1.6rem;
}
/* Gold-Eckwinkel als Rahmen um den Spruch */
.hero-motto::before,
.hero-motto::after{
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-gold);
  pointer-events: none;
}
.hero-motto::before{ top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-motto::after{ bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero-motto-line{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.05rem + 1.95vw, 2.9rem);
  letter-spacing: 0.02em;
  line-height: 1.12;
  white-space: nowrap;
  background: linear-gradient(180deg, #f7e9c2 0%, var(--color-gold-light) 45%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(10,10,10,0.9));
}
.hero-motto-rule{
  position: relative;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
/* Gold-Raute in der Mitte der Trennlinie */
.hero-motto-rule::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--color-gold-light);
}

/* Bestellwege — Text von der Werbetafel des Ladens */
.hero-order{
  position: relative;
  margin: 0 auto var(--space-4);
  width: fit-content;
  max-width: 100%;
  padding: var(--space-3) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
@media (min-width: 720px){
  .hero-order{ padding: var(--space-3) var(--space-3); }
}
/* Gold-Zierlinien ober- und unterhalb des Bestellblocks */
.hero-order::before,
.hero-order::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
}
.hero-order::before{ top: 0; }
.hero-order::after{ bottom: 0; }
.hero-order-steps{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 0.8rem + 1.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #f7e9c2 0%, var(--color-gold-light) 45%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(10,10,10,0.9));
}
.hero-order-steps .step-dot{
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--color-gold);
  flex-shrink: 0;
  align-self: center;
}
.hero-order-alt{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.85rem + 1.15vw, 1.95rem);
  line-height: 1.32;
  color: var(--color-text);
  max-width: 34ch;
  text-wrap: balance;
}
.hero-order-alt strong{
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #f7e9c2 0%, var(--color-gold-light) 45%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-actions{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
@media (min-width: 560px){
  .hero-actions{ flex-direction: row; justify-content: center; }
}
.hero-line{
  width: 1px;
  height: var(--space-5);
  background: linear-gradient(var(--color-gold-muted), transparent);
  margin: var(--space-5) auto 0;
}

/* ============ Motif divider ============ */
.motif-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-3);
  color: var(--color-gold-muted);
}
.motif-line{
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-muted) 35%, var(--color-gold) 100%);
}
.motif-line:last-child{
  background: linear-gradient(270deg, transparent, var(--color-gold-muted) 35%, var(--color-gold) 100%);
}
.motif-knives{ width: 30px; height: 30px; flex-shrink: 0; color: var(--color-gold); }
/* flankierende Gold-Rauten */
.motif-diamond{
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--color-gold);
  flex-shrink: 0;
}

/* ============ Ueber uns ============ */
.ueber-uns-grid{
  display: grid;
  gap: var(--space-3);
  position: relative;
}
@media (min-width: 860px){
  .ueber-uns-grid{ grid-template-columns: 1fr 1fr; align-items: start; }
}
.ueber-uns-text p{ font-size: 1.02rem; }
.ueber-uns-text p:last-child{ color: var(--color-text-muted); }

.ueber-uns-side{
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.ueber-uns-photo{
  margin: 0;
  border: 1px solid var(--color-gold);
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.ueber-uns-photo img{ width: 100%; height: 100%; object-fit: cover; }

.rating-callout{
  border-left: 2px solid var(--color-gold);
  padding-left: var(--space-3);
}
.rating-number{ display: flex; align-items: baseline; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-2); }
.rating-digits{ font-family: var(--font-display); font-size: 3.2rem; color: var(--color-gold-light); line-height: 1; }
.rating-stars{ display: flex; gap: 3px; }
.star{ width: 16px; height: 16px; fill: var(--color-gold); }
.rating-caption{ font-size: 0.92rem; }

/* ============ Speisekarte ============ */
/* Bildleiste ueber den Kategorien */
.menu-banner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: 0 0 var(--space-3);
}
.menu-banner-item{
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--color-gold);
}
.menu-banner-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* einzige Sektion mit deckendem Hintergrund: die lange Preisliste braucht Ruhe */
.speisekarte{ background: var(--color-bg); }

.menu-tabs{
  display: flex;
  gap: var(--space-1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-3);
  border-bottom: 1px solid rgba(200,155,74,0.34);
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar{ display: none; }
.menu-tab{
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6em 1em;
  cursor: pointer;
  position: relative;
  min-height: 44px;
  white-space: nowrap;
}
.menu-tab::after{
  content: "";
  position: absolute; left: 1em; right: 1em; bottom: -1px;
  height: 2px; background: var(--color-gold);
  transform: scaleX(0); transition: transform 0.25s var(--ease-out);
}
.menu-tab:hover{ color: var(--color-text); }
.menu-tab.is-active{ color: var(--color-gold-light); }
.menu-tab.is-active::after{ transform: scaleX(1); }
/* Gold-Raute über dem aktiven Tab */
.menu-tab.is-active::before{
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  transform: rotate(45deg);
  background: var(--color-gold);
}

.menu-panel[hidden]{ display: none; }

.menu-note{
  font-size: 0.85rem;
  color: var(--color-gold-muted);
  margin-bottom: var(--space-3);
  font-style: italic;
}

.menu-list{ display: flex; flex-direction: column; }
.menu-list > li{ padding: var(--space-2) 0; border-bottom: 1px solid rgba(200,155,74,0.28); }
.menu-list > li:first-child{ padding-top: 0; }

.menu-item-head{ display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-2); }
.menu-item-name{ font-family: var(--font-display); font-size: 1.05rem; color: var(--color-text); }
.menu-item-name em{ font-style: normal; color: var(--color-text-muted); font-family: var(--font-body); font-size: 0.85em; }
.menu-item-price{ font-weight: 600; color: var(--color-gold); white-space: nowrap; }
.menu-item-desc{ font-size: 0.9rem; margin-top: 0.3em; }

@media (min-width: 720px){
  .menu-list-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--space-4); }
  .menu-list-grid > li{ border-bottom: 1px solid rgba(200,155,74,0.28); }
}

.menu-list-compact .menu-item-name{ font-size: 0.98rem; }

.menu-footnote{
  margin-top: var(--space-4);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ============ Gold-Eckwinkel (wiederkehrendes Detail) ============ */
.gold-frame{ position: relative; }
.gold-frame::before,
.gold-frame::after{
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gold);
  pointer-events: none;
  z-index: 2;
}
.gold-frame::before{ top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.gold-frame::after{ bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

/* ============ Galerie ============ */
.gallery-strip{ padding: var(--space-3) 0; }
.gallery-row{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
@media (min-width: 720px){
  .gallery-row{ grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}

/* Alle Galeriebilder gleich gross */
.gallery-item{
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(200,155,74,0.38);
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; }

/* ============ Rezensionen ============ */
.rating-summary{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem var(--space-2);
  margin-bottom: var(--space-4);
  padding-left: var(--space-3);
  border-left: 2px solid var(--color-gold);
}
.rating-summary .rating-digits{
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 2.4vw, 3.8rem);
  line-height: 1;
  background: linear-gradient(180deg, #f7e9c2 0%, var(--color-gold-light) 45%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.rating-summary-text{
  flex: 1 1 22ch;
  margin: 0;
  font-size: 0.95rem;
}

.review-list{
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
@media (min-width: 760px){
  .review-list{ grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
}
.review-card{
  position: relative;
  padding: var(--space-3);
  border: 1px solid rgba(200,155,74,0.34);
  background: rgba(10,10,10,0.55);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-text{
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--color-text);
}
.review-author{
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-gold-muted);
  font-style: italic;
}
.review-cta{ text-align: center; }

/* ============ Standort ============ */
.standort-grid{
  display: grid;
  gap: var(--space-3);
  position: relative;
}
@media (min-width: 860px){
  .standort-grid{ grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact-list{ margin-top: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); }
.contact-row{ display: flex; gap: var(--space-2); align-items: flex-start; }
.contact-row dt{ color: var(--color-gold); margin-top: 0.15em; }
.contact-row dd{ margin: 0; }
.contact-row a:hover{ color: var(--color-gold-light); }
.contact-row-muted dd{ color: var(--color-text-muted); font-size: 0.9rem; }
.hours-row{ display: flex; justify-content: space-between; gap: var(--space-2); max-width: 320px; }
.hours-row + .hours-row{ margin-top: 0.2em; color: var(--color-text-muted); }

.standort-cta{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.standort-foto{
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--color-gold);
}
.standort-foto img{ width: 100%; height: 100%; object-fit: cover; }

/* Kartenvorschau -> Google-Business-Profil */
.standort-map{
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-gold);
  aspect-ratio: 15 / 7;
}
.standort-map img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.standort-map:hover img{ transform: scale(1.04); }
.standort-map-badge{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1em;
  background: rgba(10,10,10,0.86);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.standort-map:hover .standort-map-badge{
  background: var(--color-gold);
  color: #16130c;
}
.map-attrib{
  margin: 0;
  font-size: 0.72rem;
  color: var(--color-gold-muted);
}
.pin-graphic{ width: 72px; height: 72px; color: var(--color-gold); }
.standort-cta-text{ font-size: 0.9rem; margin-bottom: var(--space-1); }

/* ============ Footer ============ */
.site-footer{
  position: relative;
  background: rgba(20,18,16,0.82);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(200,155,74,0.28);
}
.site-footer::before{
  content: "";
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
  opacity: 0.6;
}
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  justify-content: space-between;
}
.footer-brand{ display: flex; align-items: center; gap: 0.75em; }
.footer-name{ font-family: var(--font-display); color: var(--color-text); margin: 0; }
.footer-address{ font-size: 0.85rem; margin: 0; }
.footer-meta{ font-size: 0.85rem; }
.footer-meta p{ margin: 0 0 0.3em; }
.footer-meta a:hover{ color: var(--color-gold-light); }
.footer-legal-link{
  font-size: 0.82rem;
  color: var(--color-gold-muted);
  border-bottom: 1px solid transparent;
}
.footer-legal-link:hover{ color: var(--color-gold-light); border-color: currentColor; }

/* ============ Rechtsseite (Impressum) ============ */
.legal-page{
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-3) var(--space-5);
}
.legal-page h1{
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.8rem);
  margin-bottom: var(--space-4);
}
.legal-page h2{
  font-size: 1.2rem;
  color: var(--color-gold-light);
  margin: var(--space-4) 0 0.6em;
}
.legal-page h2:first-of-type{ margin-top: 0; }
.legal-page p{ margin: 0 0 0.9em; }
.legal-page a{ color: var(--color-gold-light); text-decoration: underline; text-underline-offset: 2px; }
.legal-page .placeholder-note{
  color: var(--color-gold-muted);
  font-style: italic;
}
.legal-page .back-link{
  display: inline-block;
  margin-bottom: var(--space-4);
  font-size: 0.9rem;
  color: var(--color-gold);
}
