/* ── Lokale Schriften (selbst gehostet, OFL) – kein Abruf bei Google ── */
@font-face { font-family:'Lato'; font-style:normal; font-weight:300; font-display:swap; src:url('fonts/lato-300.woff2') format('woff2'); }
@font-face { font-family:'Lato'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/lato-400.woff2') format('woff2'); }
@font-face { font-family:'Cinzel'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/cinzel-400.woff2') format('woff2'); }
@font-face { font-family:'Cinzel'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/cinzel-600.woff2') format('woff2'); }
@font-face { font-family:'Cinzel'; font-style:normal; font-weight:800; font-display:swap; src:url('fonts/cinzel-800.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:300; font-display:swap; src:url('fonts/cormorant-300.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/cormorant-400.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/cormorant-600.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic; font-weight:300; font-display:swap; src:url('fonts/cormorant-300-italic.woff2') format('woff2'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic; font-weight:400; font-display:swap; src:url('fonts/cormorant-400-italic.woff2') format('woff2'); }

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

:root {
  --gold: #c9a84c;          /* Gold – Hauptakzent */
  --gold-light: #e8c97a;    /* helleres Gold (Hover) */
  --gold-dark: #8a6d22;     /* dunkles Gold für Links auf hellem Grund */
  --cream: #f5f0e8;
  --warm-white: #fdf9f3;
  --dark: #0a0a0a;          /* Schwarz – Hauptflächen (Nav, Speisekarte, Footer-Bar) */
  --mid: #141414;           /* aufgehelltes Schwarz (Footer) */
  --text: #2c2c2c;          /* Anthrazit für Fließtext */
  --terracotta: #b85c38;
  --rose-light: #e8c97a;    /* heller Goldakzent auf dunklem Grund (Speisekarte) */
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── KOPFBEREICH: Logo-Leiste über der Navigation ──
   Das Emblem ist quadratisch und in einer Menüzeile zu klein. Es bekommt deshalb
   eine eigene Leiste; beim Scrollen schrumpfen Logo und Leiste zusammen. */
#siteHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}
/* Logo liegt absolut über der Menüzeile und ragt in einer schwarzen Box nach
   unten darüber hinaus. Bezugspunkt ist der fixierte #siteHeader. */
.logo-float {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: block; line-height: 0; text-decoration: none;
  padding: 0.7rem 1.4rem 0.9rem;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  transition: padding 0.3s ease;
}
.logo-float img {
  display: block;
  height: 130px;              /* mehr als doppelt so groß wie vorher (60px) */
  width: auto;
  transition: height 0.3s ease;
}
#siteHeader.scrolled .logo-float { padding: 0.5rem 1.1rem 0.6rem; }
#siteHeader.scrolled .logo-float img { height: 72px; }

/* ── NAV (Menü links, Claim mittig, Bestellen rechts) ── */
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1.5rem;
  padding: 0.6rem 2.5rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.14);
  border-bottom: 1px solid rgba(201, 168, 76, 0.28);
  transition: padding 0.3s;
}
#siteHeader.scrolled nav { padding: 0.45rem 2rem; }
/* Platzhalter in der Mitte: hält die Spalte frei, damit Menü und Button
   nicht unter das überlappende Logo laufen. */
.nav-spacer { grid-column: 2; display: block; width: 200px; height: 1px; }
/* Quelldatei 456x468 px – bis ca. 228px Anzeigehöhe auch auf Retina scharf. */
/* Rechte Seite: Reservieren-Button + Hamburger */
.nav-right {
  grid-column: 3;
  justify-self: end;
  display: flex; align-items: center; gap: 0.8rem;
  min-width: 0;
}
.nav-links {
  grid-column: 1;
  justify-self: start;
  display: flex;
  /* fluide Abstände: Menü bleibt bis 900px links, ohne das Logo zu berühren */
  gap: clamp(0.75rem, 1.45vw, 1.9rem);
  list-style: none;
  min-width: 0;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.66rem, 0.28vw + 0.53rem, 0.78rem);
  letter-spacing: clamp(0.1em, 0.22vw, 0.2em);
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--dark);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger-Button (nur mobil sichtbar) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px;
  padding: 9px;
  background: transparent; border: none; cursor: pointer;
  z-index: 106;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* "Reservieren" im Menü-Panel nur mobil zeigen */
.nav-links-cta { display: none; }

/* ── HERO ── */
#hero {
  height: 100vh; min-height: 680px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.30) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,201,122,0.16) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #060606 100%);
}
/* Decorative Greek pattern overlay */
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='0.4' opacity='0.12'%3E%3Crect x='5' y='5' width='50' height='50'/%3E%3Crect x='10' y='10' width='40' height='40'/%3E%3Cline x1='5' y1='30' x2='55' y2='30'/%3E%3Cline x1='30' y1='5' x2='30' y2='55'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  animation: fadeUp 1.2s ease both;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-title .accent { color: var(--cream); display: block; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(245, 240, 232, 0.65);
  letter-spacing: 0.08em;
  margin: 1.2rem 0 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s both;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; max-width: 80px;
  height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-divider span { color: var(--gold); font-size: 1.2rem; }
.hero-buttons {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s both;
}
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--dark);
  background: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-outline {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--rose-light);
  background: transparent;
  border: 1px solid var(--rose-light);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gold); opacity: 0.6; cursor: pointer;
  animation: bounce 2s infinite 2s;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-hint::after {
  content: ''; display: block;
  width: 1px; height: 40px;
  background: var(--gold);
  animation: lineGrow 2s infinite 2s;
}

/* ── SECTION SHARED ── */
section { padding: 7rem 4rem; }
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);   /* dunkles Gold: lesbar auf hellem Grund */
  margin-bottom: 1rem;
}
/* Auf schwarzem Grund helles Gold */
#bewertungen .section-label,
#video .section-label { color: var(--rose-light); }
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.7;
}
.gold-line {
  display: block; width: 50px; height: 2px;
  background: var(--gold); margin: 1.5rem 0;
}

/* ── ABOUT ── */
#start {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px; margin: 0 auto;
}
.about-image-frame {
  position: relative;
}
.about-image-frame::before {
  content: '';
  position: absolute; top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  border-radius: 2px;
}
.about-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  background: linear-gradient(135deg, #c9a84c 0%, #9a7a2c 40%, #1f1a12 100%);
  position: relative;
}
/* SVG placeholder inside the image box */
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1f1a12 0%, #9a7a2c 50%, #14110b 100%);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-placeholder svg { opacity: 0.35; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.about-badge strong {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}
.about-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.about-feature {
  padding: 1.2rem 1.4rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.04);
}
.about-feature h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.about-feature p {
  font-size: 0.82rem;
  color: var(--text);
  opacity: 0.75;
  line-height: 1.5;
}

/* ── VIDEO-SEKTION (Hochformat-Video im Goldrahmen) ── */
#video {
  background: var(--dark);
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
#video::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.10) 0%, transparent 62%);
  pointer-events: none;
}
.video-inner {
  position: relative; z-index: 1;
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.video-text .section-title { color: var(--cream); }
.video-text .section-lead { color: rgba(245,240,232,0.6); }
.video-text > p.video-copy {
  margin-top: 1.2rem;
  font-size: 0.9rem; line-height: 1.85;
  color: rgba(245,240,232,0.55);
  max-width: 46ch;
}
.video-frame {
  position: relative;
  width: min(360px, 100%);
  margin: 0 auto;
}
.video-frame::before {
  content: '';
  position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid var(--gold);
  opacity: 0.45;
  border-radius: 2px;
  pointer-events: none;
}
.video-frame video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.6);
}
.video-sound {
  position: absolute; bottom: 0.9rem; right: 0.9rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 50%;
  background: rgba(10,10,10,0.65);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.video-sound:hover { background: var(--gold); color: var(--dark); }
.video-sound:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.video-sound svg { width: 20px; height: 20px; }
@media (max-width: 900px) {
  #video { padding: 4.5rem 1.5rem; }
  .video-inner { grid-template-columns: 1fr; gap: 2.8rem; }
}

/* ── MENU ── */
#menu {
  background: var(--dark);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
#menu::before {
  content: 'MENU';
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Cinzel', serif;
  font-size: 10rem;
  font-weight: 800;
  color: rgba(201,168,76,0.04);
  letter-spacing: 0.2em;
  pointer-events: none;
}
.menu-inner { max-width: 1300px; margin: 0 auto; }
.menu-header { margin-bottom: 4rem; }
.menu-header .section-title { color: var(--cream); }
.menu-header .section-lead { color: rgba(245,240,232,0.55); }
.menu-header .section-label { color: var(--rose-light); }
.menu-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.menu-tab {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 1px;
}
.menu-tab.active, .menu-tab:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 1px;
  border: 1px solid rgba(201,168,76,0.1);
}
.menu-item {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: background 0.2s;
  cursor: default;
}
.menu-item:hover { background: rgba(201,168,76,0.05); }
.menu-item-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.5rem;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 600;
}
.menu-item-price {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--rose-light);
  white-space: nowrap;
  margin-left: 1rem;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.6;
}
.menu-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-light);
  border: 1px solid rgba(232,201,122,0.45);
  padding: 0.15rem 0.5rem;
  margin-top: 0.6rem;
  border-radius: 1px;
}

/* ── GALLERY ── */
#galerie { padding: 7rem 4rem; background: var(--cream); }
.galerie-inner { max-width: 1300px; margin: 0 auto; }
.galerie-header { margin-bottom: 3rem; }
/* Mosaik: 3 Spalten x 4 Zeilen, erstes Bild als große 2x2-Kachel.
   Rechnung: 12 Felder − 4 für die große Kachel = 8 Einzelkacheln, also
   genau 9 Bilder ohne Lücke. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 220px);
  gap: 8px;
}
.gallery-item {
  overflow: hidden; border-radius: 2px; position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,22,16,0);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(26,22,16,0.3); }

/* ── TESTIMONIALS ── */
#bewertungen {
  background: var(--dark);
  padding: 7rem 4rem;
  position: relative;
}
.bew-inner { max-width: 1300px; margin: 0 auto; }
.bew-header { margin-bottom: 3.5rem; }
.bew-header .section-title { color: var(--cream); }
.bew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bew-card {
  padding: 2rem 2.2rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.02);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.2s;
}
.bew-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.bew-stars { color: var(--rose-light); font-size: 1rem; margin-bottom: 0.9rem; letter-spacing: 3px; }
.bew-quote-mark {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem; line-height: 0.6;
  color: var(--gold); opacity: 0.5;
  margin-bottom: 0.6rem;
}
.bew-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(245,240,232,0.92);   /* gut lesbar auf Schwarz */
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.bew-author {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--rose-light);
}
.bew-rating {
  margin-top: 1.4rem;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--rose-light);
}
.bew-location {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.55);
  margin-top: 0.35rem;
  line-height: 1.5;
}
/* ── BEWERTUNGS-SLIDER (3 Karten pro Seite, mobil 1) ── */
.bew-slider { position: relative; margin-top: 3rem; }
.bew-viewport { overflow: hidden; }
.bew-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(.4,.0,.2,1);
  will-change: transform;
}
/* Kartenbreite = 1/3 der Sichtbreite minus Lücken (per JS-Variable gesteuert) */
.bew-slider .bew-card {
  flex: 0 0 calc((100% - (var(--bew-per-view) - 1) * 1.5rem) / var(--bew-per-view));
  display: flex; flex-direction: column;
}
.bew-slider .bew-card .bew-text { flex: 1 1 auto; }
.bew-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; line-height: 1; padding-bottom: 4px;
  background: rgba(10,10,10,0.75);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.bew-nav:hover { background: var(--gold); color: var(--dark); }
.bew-nav:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.bew-nav[hidden] { display: none; }
.bew-prev { left: -22px; }
.bew-next { right: -22px; }
.bew-dots {
  display: flex; justify-content: center; gap: 0.6rem;
  margin-top: 2rem;
}
.bew-dots[hidden] { display: none; }
.bew-dot {
  width: 28px; height: 3px; padding: 0;
  background: rgba(245,240,232,0.28);
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.bew-dot.active { background: var(--gold); width: 48px; }
@media (max-width: 1100px) {
  .bew-prev { left: -8px; }
  .bew-next { right: -8px; }
}
@media (prefers-reduced-motion: reduce) {
  .bew-track { transition: none; }
}

/* ── Auszeichnung (Restaurant Guru) ── */
.bew-footer {
  display: grid;
  grid-template-columns: minmax(0, 210px) 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.bew-footer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.bew-links { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }
/* Buttons mit Icon (Google / Facebook / Instagram) – etwas kompakter,
   damit die drei Buttons nebeneinander Platz haben */
.btn-icon {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.74rem;
  white-space: nowrap;
}
.btn-icon svg { width: 16px; height: 16px; flex: 0 0 auto; }
.bew-award { position: relative; }
.bew-award::before {
  content: '';
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--gold); opacity: 0.4; border-radius: 2px;
  pointer-events: none;
}
.bew-award img {
  position: relative;
  display: block; width: 100%; height: auto;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
}
.bew-award-note {
  margin-top: 1.2rem;
  font-size: 0.88rem; line-height: 1.8;
  color: rgba(245,240,232,0.5);
  max-width: 48ch;
}
/* Ab hier einspaltig: sonst bleibt für die drei Buttons
   (Google / Facebook / Instagram) zu wenig Breite und sie brechen um. */
@media (max-width: 1200px) {
  .bew-footer {
    grid-template-columns: 1fr; gap: 2.2rem;
    justify-items: center; text-align: center;
    margin-top: 3rem; padding-top: 2.5rem;
  }
  .bew-award { width: min(200px, 60%); }
  .bew-award-note { margin-left: auto; margin-right: auto; }
  .bew-links { justify-content: center; }
}

/* ── RESERVIERUNG ── */
#reservierung {
  background: var(--warm-white);
  padding: 7rem 4rem;
}
.res-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.res-inner .section-label, .res-inner .section-title { text-align: center; }
.res-inner .gold-line { margin: 1.5rem auto; }
.res-inner .section-lead { margin: 0 auto 3rem; text-align: center; }
.res-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.res-form input, .res-form select, .res-form textarea {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(26,22,16,0.25);
  background: var(--cream);
  color: var(--dark);
  outline: none;
  border-radius: 1px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.res-form input:focus, .res-form select:focus, .res-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.res-form .full { grid-column: span 2; }
.res-form textarea { resize: vertical; min-height: 100px; }
.res-submit {
  grid-column: span 2;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 1.1rem 3rem;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.res-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.25); }
.res-status {
  max-width: 640px; margin: 0 auto 1.4rem;
  padding: 0.9rem 1.2rem; border-radius: 2px;
  font-size: 0.9rem; letter-spacing: 0.02em;
}
.res-status.ok { background: rgba(201,168,76,0.14); border: 1px solid var(--gold); color: var(--gold-dark); }
.res-status.err { background: rgba(184,92,56,0.12); border: 1px solid var(--terracotta); color: var(--terracotta); }

/* ── KONTAKT ── */
#kontakt {
  background: var(--mid);
  padding: 5rem 4rem;
  position: relative;
}
.footer-meander {
  position: absolute; top: 0; left: 0; right: 0;
  height: 16px;
  background: url('bilder/zeus-takeaway-maeander.svg') repeat-x center / auto 100%;
  opacity: 0.32;
  pointer-events: none;
}
.footer-emblem {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--gold);
  margin: 0.6rem 0 1.2rem;
}
.footer-emblem .emblem-column { height: 24px; width: auto; }
.footer-emblem .emblem-olive { height: 13px; width: auto; opacity: 0.9; }
.kontakt-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; align-items: start;
}
/* Footer-Logo linksbündig: die Header-Regel .nav-logo setzt justify-self:center,
   was Chromium auch auf Block-Boxen anwendet (Box-Alignment) und das Logo damit
   zentriert. Hier deshalb explizit auf start zurücksetzen. */
.kontakt-brand .footer-logo {
  display: block;
  justify-self: start;
  margin: 0 0 1rem;
}
.kontakt-brand .footer-logo img { height: 92px; width: auto; }
.kontakt-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,240,232,0.5);
  line-height: 1.7;
  max-width: 320px;
}
.kontakt-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.kontakt-col ul { list-style: none; }
.kontakt-col ul li {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.kontakt-col ul li a {
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.kontakt-col ul li a:hover { color: var(--gold); }
/* Kontakt- und Öffnungszeiten-Liste mit Goldicons */
.kontakt-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.kontakt-icon {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 0.18rem;      /* an die erste Textzeile ausrichten */
  color: var(--gold);
  opacity: 0.85;
}
.kontakt-ruhetag { color: var(--gold); opacity: 0.75; }
.kontakt-ruhetag .kontakt-icon { opacity: 1; }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  border-radius: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── FOOTER BAR ── */
.footer-bar {
  background: var(--dark);
  padding: 1.2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bar p {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.1em;
}
.footer-bar a {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  color: var(--rose-light);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-bar a:hover { opacity: 1; }

/* ── LEGAL POPUP ── */
.legal-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  background: rgba(10, 9, 7, 0.82);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
}
.legal-modal.open { display: flex; }
.legal-box {
  background: var(--warm-white);
  width: 100%; max-width: 860px; height: 85vh;
  display: flex; flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}
.legal-bar {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.4rem;
  background: var(--dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.legal-bar span {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem; letter-spacing: 0.15em;
  color: var(--gold);
}
.legal-actions { display: flex; align-items: center; gap: 1rem; }
.legal-actions a, .legal-close {
  background: none; border: none; cursor: pointer;
  color: var(--cream); opacity: 0.7;
  font-size: 1.1rem; line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
.legal-actions a:hover, .legal-close:hover { opacity: 1; color: var(--gold-light); }
.legal-content {
  flex: 1 1 auto; overflow-y: auto;
  padding: 1.6rem 2rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem; line-height: 1.65; color: var(--text);
}
.legal-content h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem; color: var(--mid);
  letter-spacing: 0.04em;
  margin: 1.6rem 0 0.5rem;
}
.legal-content p { margin-bottom: 0.8rem; }
.legal-content a { color: var(--gold-dark); word-break: break-word; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes lineGrow {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── DISH NUMBERS ── */
.dish-nr {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--rose-light);
  opacity: 0.9;
  margin-right: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── MENU DATA PANELS ── */
.menu-panel { display: none; }
.menu-panel.active { display: grid; }

/* ── RESPONSIVE: NAV ──
   Unter 1050px reicht der Platz nicht mehr fuer Menue links + Logo mittig +
   Button rechts, deshalb greift ab hier das Burger-Menue. Das Logo bleibt mittig. */
@media (max-width: 1050px) {
  nav { padding: 0.55rem 1.2rem; column-gap: 0.5rem; grid-template-columns: 1fr auto; }
  .nav-spacer { width: 130px; }
  .logo-float { padding: 0.5rem 0.9rem 0.7rem; }
  .logo-float img { height: 86px; }
  #siteHeader.scrolled .logo-float { padding: 0.35rem 0.75rem 0.5rem; }
  #siteHeader.scrolled .logo-float img { height: 52px; }
  #siteHeader.scrolled nav { padding: 0.45rem 1.2rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: flex;
    position: fixed; top: 0; right: 0;
    height: 100vh; width: min(80vw, 320px);
    flex-direction: column; gap: 0;
    padding: 5.5rem 2rem 2rem;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(201, 168, 76, 0.25);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; width: 100%;
    padding: 1.05rem 0; font-size: 0.9rem; letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    opacity: 0.9;
  }
  .nav-links-cta { display: block; margin-top: 1.4rem; }
  .nav-links-cta a {
    text-align: center; border: none;
    background: var(--gold); color: var(--dark);
    padding: 0.9rem 0; border-radius: 2px;
    font-family: 'Cinzel', serif; letter-spacing: 0.15em; opacity: 1;
  }
}

/* ── RESPONSIVE: LAYOUT ── */
@media (max-width: 900px) {
  section { padding: 5rem 1.5rem; }
  /* ID-Selektoren überschreiben die section-Regel oben – daher hier einzeln
     nachziehen, sonst bleiben 4rem Seitenabstand und der Inhalt wird zu schmal. */
  #galerie, #bewertungen, #reservierung { padding: 5rem 1.5rem; }
  #start { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .bew-grid { grid-template-columns: 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .res-form { grid-template-columns: 1fr; }
  .res-form .full, .res-submit { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-auto-rows: 190px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; height: 240px; }
  #menu { padding: 5rem 1.5rem; }
  .footer-bar { padding: 1rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
	.hero-title	{font-size: clamp(2.5rem, 8vw, 7rem)}
}
/* ── SLIDER ── */
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.52) 50%, rgba(0,0,0,0.82) 100%);
}
.slider-dots {
  position: absolute; bottom: 5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.sdot {
  width: 28px; height: 3px;
  background: rgba(250,240,220,0.35);
  border: none; cursor: pointer; border-radius: 2px;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.sdot.active { background: var(--gold); width: 48px; }

/* gallery hover on real images */
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  display: flex; align-items: flex-end;
  padding: 1rem 1.2rem;
}
.gallery-overlay span {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--cream); text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1100;
  display: none; align-items: center; justify-content: center;
  background: rgba(10, 9, 7, 0.94);
  backdrop-filter: blur(6px);
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-figure {
  margin: 0; max-width: 90vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
  animation: lbFade 0.3s ease both;
}
@keyframes lbFade { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.lb-img {
  max-width: 90vw; max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-caption {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem; letter-spacing: 0.12em;
  color: var(--gold); text-align: center;
  margin-top: 1rem;
}
.lb-close, .lb-nav {
  position: fixed; z-index: 1101;
  background: rgba(26, 22, 16, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lb-close {
  top: 1.4rem; right: 1.4rem;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 2rem; line-height: 1; padding-bottom: 4px;
}
.lb-prev { left: 1.4rem; }
.lb-next { right: 1.4rem; }

@media (max-width: 600px) {
  .lb-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lb-prev { left: 0.6rem; }
  .lb-next { right: 0.6rem; }
  .lb-img { max-height: 70vh; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -1rem; width: 96px; height: 96px; }
  .res-phone-number { font-size: clamp(1.5rem, 8vw, 2.2rem); }
}


/* ── Speisekarte: Unterkategorien & Fußnote ── */
.menu-subhead {
  grid-column: 1 / -1;
  margin: 2rem 0 0.3rem;
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.menu-subhead::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(232,201,122,0.30);
}
.menu-grid > .menu-subhead:first-child { margin-top: 0; }
.menu-note {
  margin: 3rem auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.5);
}
.menu-grid > .menu-note { grid-column: 1 / -1; margin-top: 2rem; }

/* ── Zeus Favoriten-Box ── */
.menu-favorites {
  margin: 0 0 3.5rem;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border: 1px solid rgba(232,201,122,0.35);
  border-radius: 3px;
  background: rgba(201,168,76,0.05);
}
.menu-favorites-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-light);
  text-align: center;
  margin: 0;
}
.menu-favorites-sub {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.55);
  margin: 0.3rem 0 1.8rem;
}
.menu-favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px,100%), 1fr));
  gap: 1.3rem 2.6rem;
}
.menu-fav-item .menu-item-top { margin-bottom: 0.3rem; }

/* ── Getränke & Zusatz-Notizen ── */
.menu-item-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.92rem;
  color: rgba(245,240,232,0.5);
  margin-left: 0.35rem;
}
.menu-panel--drinks .menu-item-price {
  white-space: normal;
  text-align: right;
  line-height: 1.5;
}
.menu-panel--drinks .menu-item {
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

/* ── Telefon-Reservierung & Anfahrt ── */
.res-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: var(--dark);
  padding: clamp(1.6rem, 4vw, 2.2rem) clamp(2rem, 6vw, 3.8rem);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.res-phone:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.28); }
.res-phone-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-light);
}
.res-phone-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.res-hours {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text);
  opacity: 0.7;
}
.res-address { margin-top: 2.6rem; }
.res-address p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text);
}
.res-maps {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.res-maps:hover { color: var(--gold); border-color: var(--gold-light); }

/* ── Footer: Webdesign-Credit (Hauptstadt Medien) ── */
.hm {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.3);
}
.hm a {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.hm a:hover { opacity: 1; }
.hm img {
  height: 26px;
  width: auto;
  display: block;
}

/* ── Speisekarte: PDF-Download-Button ── */
.menu-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.menu-pdf-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201,168,76,0.3);
}
.menu-pdf-btn svg { width: 17px; height: 17px; }

/* ── Cookie-Hinweis ── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(201,168,76,0.5);
  backdrop-filter: blur(8px);
  padding: 1.1rem 1.5rem;
}
.cookie-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem; line-height: 1.6;
  color: rgba(245,240,232,0.8);
  flex: 1; min-width: 260px;
}
.cookie-text a { color: var(--rose-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.7rem; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.7rem 1.4rem; border-radius: 2px; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.cookie-decline {
  background: transparent; color: #fff;
  border: 1px solid rgba(245,240,232,0.4);
}
.cookie-decline:hover { border-color: #fff; }
.cookie-accept {
  background: var(--gold); color: var(--dark); border: 1px solid var(--gold);
}
.cookie-accept:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
@media (max-width: 600px) {
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ── Floating Action Buttons (Stack: Maps + Telefon nur mobil, Back-to-Top) ── */
.fab-stack { position: fixed; right: 1.5rem; bottom: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .65rem; z-index: 999; }
.fab-stack a, .fab-stack button {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%; background: var(--gold); color: var(--dark);
  cursor: pointer; text-decoration: none; box-shadow: 0 6px 18px rgba(26,22,16,0.30);
  transition: background .25s ease, transform .3s ease;
}
.fab-stack a:hover, .fab-stack button:hover { background: var(--gold-light); transform: translateY(-3px); }
.fab-stack a:focus-visible, .fab-stack button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.fab-stack a.fab-action { display: none; }
.back-to-top { opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity .3s ease, transform .3s ease, background .25s ease, visibility .3s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 768px) {
  .fab-stack { right: 1rem; bottom: 1rem; gap: .6rem; }
  .fab-stack a, .fab-stack button { width: 46px; height: 46px; }
  .fab-stack a.fab-action { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .fab-stack a, .fab-stack button { transition: opacity .3s ease, background .25s ease, visibility .3s; transform: none; }
  .back-to-top.show, .fab-stack a:hover, .fab-stack button:hover { transform: none; }
}

/* ── News-/Bild-Popup (Platzhalter, austauschbar) ── */
.news-popup { position: fixed; inset: 0; z-index: 1150; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.news-popup[hidden] { display: none; }
.news-popup__backdrop { position: absolute; inset: 0; background: rgba(26,22,16,0.74); animation: newsFade .3s ease; }
.news-popup__dialog { position: relative; max-width: min(440px, 92vw); max-height: 90vh; border-radius: 6px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); animation: newsPop .35s cubic-bezier(.2,.8,.3,1.15); }
.news-popup__img { display: block; width: 100%; height: auto; max-height: 90vh; object-fit: contain; }
.news-popup__close { position: absolute; top: .6rem; right: .6rem; width: 38px; height: 38px; border: none; border-radius: 50%; background: rgba(26,22,16,0.6); color: #fff; font-size: 1.6rem; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease; }
.news-popup__close:hover { background: var(--gold); color: var(--dark); }
.news-popup__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@keyframes newsFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes newsPop { from { opacity: 0; transform: scale(.92) translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .news-popup__backdrop, .news-popup__dialog { animation: none; } }

/* ── Mäander-Zierband (wie Zeus Feldberg) ── */
.hero-meander {
  position: absolute; left: 0; right: 0; bottom: 5px; z-index: 3;
  height: 22px;
  background: url('bilder/zeus-takeaway-maeander.svg') repeat-x center / auto 100%;
  opacity: 0.6;
  pointer-events: none;
}
.menu-meander {
  height: 15px;
  margin-top: 2.2rem;
  background: url('bilder/zeus-takeaway-maeander.svg') repeat-x center / auto 100%;
  opacity: 0.35;
}

/* ── Hero-Emblem: ionische Säule + Olivenzweige (Logo-Motiv) ── */
.hero-divider .emblem {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--gold);
}
.emblem-column { height: 34px; width: auto; }
.emblem-olive { height: 15px; width: auto; opacity: 0.9; }
.emblem-olive--l { transform: scaleX(-1); }

/* ── About-Feature-Icons (Säule / Olivenzweig) ── */
.feature-icon {
  display: block;
  height: 20px; width: auto;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 0.7rem;
}
.feature-icon--column { height: 30px; }
.feature-icon--family { height: 24px; }

/* ── Datenschutzkonforme Google-Maps-Karte (Zwei-Klick) ── */
.map-consent {
  position: relative;
  margin: 2.8rem auto 0;
  max-width: 760px;
  height: 380px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 3px;
  overflow: hidden;
  background: var(--dark);
}
.map-consent__gate {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.55rem; text-align: center; padding: 2rem;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.map-consent__pin { color: var(--gold); }
.map-consent__title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem; letter-spacing: 0.12em;
  color: var(--cream);
}
.map-consent__note {
  font-size: 0.78rem; line-height: 1.65;
  color: rgba(245,240,232,0.55);
  max-width: 430px;
}
.map-consent__note a { color: var(--rose-light); text-decoration: underline; }
.map-consent__btn {
  margin-top: 0.6rem;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.8rem 1.9rem; border-radius: 2px; cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.map-consent__btn:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: 0 8px 26px rgba(201,168,76,0.3);
}
.map-consent.loaded { background: #fff; }
.map-consent iframe { display: block; width: 100%; height: 100%; border: 0; }
@media (max-width: 600px) { .map-consent { height: 320px; } }

/* ── Bestellen-Sektion (Take Away) ── */
.bestell-aktionen {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.9rem; margin-top: 2rem;
}
.bestell-rabatt {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px dashed var(--gold);
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
}

/* ── Herkunfts-/Vertrauensblock (Take Away) ── */
.herkunft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.herkunft-card {
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(255,255,255,0.02);
  border-radius: 2px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}
.herkunft-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.herkunft-zahl {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2.6rem; line-height: 1;
  color: var(--gold);
}
.herkunft-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-light);
  margin-top: 0.6rem;
}
.herkunft-text {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(245,240,232,0.6);
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .herkunft-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Abstand unter dem zweizeiligen Kopfbereich ──
   Der Hero liegt hinter dem fixierten Header; Logo-Leiste + Navigation brauchen
   deshalb oben Platz, sonst verdeckt der Kopf den Hero-Text. */
#hero { padding-top: 170px; }
@media (max-width: 1050px) { #hero { padding-top: 115px; } }

/* ── Hinweis auf den Schwesterbetrieb ──
   Dezenter Streifen über dem Footer. Er verlinkt das jeweils andere Lokal,
   ohne die eigene Marke zu überlagern. */
.schwester {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.22);
  border-bottom: 1px solid rgba(201,168,76,0.22);
  padding: 1.3rem 1.5rem;
}
.schwester-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem 1.2rem; flex-wrap: wrap; text-align: center;
}
.schwester-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.6);
}
.schwester-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.86rem; letter-spacing: 0.02em;
  color: var(--cream);
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.schwester-link strong { color: var(--gold); font-weight: 600; }
.schwester-link svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; }
.schwester-pfeil { color: var(--gold); font-size: 1.2rem; line-height: 1; }
.schwester-link:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.schwester-link:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
@media (max-width: 600px) {
  .schwester-inner { flex-direction: column; gap: 0.7rem; }
  .schwester-link { font-size: 0.8rem; padding: 0.6rem 1rem; }
}

/* ── Tippziele der Slider-Punkte vergrößern ──
   Die Punkte sind optisch nur 3px hoch. Über ein unsichtbares Feld davor
   bekommen sie eine Tippfläche von 44px, ohne dass sich das Aussehen ändert. */
.sdot { position: relative; }
.sdot::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 44px;
  transform: translateY(-50%);
}
.slider-dots { gap: 0.9rem; }
