@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Cinzel:wght@400;600;700&display=swap');

:root {
  --dark:       #16140f;
  --dark-mid:   #1e1b13;
  --dark-card:  #26231a;
  --dark-hover: #302c20;
  --gold:       #c9a55a;
  --gold-light: #e2c07a;
  --gold-dim:   rgba(201, 165, 90, 0.25);
  --cream:      #f0ebe0;
  --cream-muted:#b8b2a4;
  --divider:    rgba(201, 165, 90, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--dark);
  color: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  text-shadow:
    0 0 18px rgba(201, 165, 90, 0.45),
    0 0 40px rgba(201, 165, 90, 0.2);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: 0.05em; }
h3 { font-size: 1.25rem; }
p  { color: var(--cream-muted); }

.section-label,
.menu-section-title,
.menu-category-title,
.menu-item-price,
.highlight-card h3,
.kontakt-card h3,
.res-info-box h3,
.team-card-name,
.team-card-role,
.team-value h3,
.stat-number,
.about-quote,
.footer-logo,
.nav-logo,
.ornament {
  text-shadow: 0 0 10px rgba(201, 165, 90, 0.75), 0 0 28px rgba(201, 165, 90, 0.35);
}

a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold-light); }

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(22, 20, 15, 0.96);
  border-bottom: 1px solid var(--divider);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.25cm 2rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.3;
}
.nav-logo span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 20px rgba(255, 255, 255, 0.6),
    0 0 40px rgba(201, 165, 90, 0.4);
}

.nav-links { display: flex; gap: 1.1rem; list-style: none; }
.nav-links a {
  color: var(--cream-muted);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.25s;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  text-shadow: 0 0 6px rgba(240, 235, 224, 0.4), 0 0 15px rgba(201, 165, 90, 0.2);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-color: var(--gold);
  text-shadow: 0 0 8px rgba(201, 165, 90, 0.9), 0 0 20px rgba(201, 165, 90, 0.5);
}

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ─── */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--dark-mid);
  border-top: 1px solid var(--divider);
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--cream-muted);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.nav-mobile a:hover { color: var(--gold); }

/* ─── Section Base ─── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1.5rem; }
.divider-gold {
  width: 60px; height: 1px; background: var(--gold);
  margin: 1.5rem auto;
}
.divider-gold.left { margin-left: 0; }

/* ─── Ornament ─── */
.ornament { color: var(--gold); letter-spacing: 0.5em; font-size: 1rem; }

/* ─── Hero Fullscreen ─── */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 42px;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Bild als echtes img – scharf, kein Verzerren */
.hero-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  z-index: 0;
}

/* Gradient-Overlay: oben kaum sichtbar, unten dunkler */
.hero-full-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(22, 20, 15, 0.08)  0%,
      rgba(22, 20, 15, 0.10) 40%,
      rgba(22, 20, 15, 0.65) 70%,
      rgba(22, 20, 15, 0.93) 100%
    );
}

/* Text-Block am unteren Rand */
.hero-full-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem 5rem;
  max-width: 750px;
  width: 100%;
}

.hero-full-content .hero-year {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #0a0a0a;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 1),
    0 0 16px rgba(255, 255, 255, 0.9),
    0 0 32px rgba(255, 255, 255, 0.7),
    0 0 60px rgba(255, 255, 255, 0.4),
    0 0 90px rgba(201, 165, 90, 0.3);
}

.hero-full-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  text-shadow:
    0 0 12px rgba(240, 235, 224, 0.8),
    0 0 30px rgba(240, 235, 224, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-full-title em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow:
    0 0 12px rgba(232, 201, 125, 0.95),
    0 0 30px rgba(232, 201, 125, 0.6),
    0 0 60px rgba(201, 165, 90, 0.35);
}

.hero-full-sub {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 2rem;
  text-shadow:
    0 0 10px rgba(240, 235, 224, 0.7),
    0 0 25px rgba(240, 235, 224, 0.3);
}

/* Bildunterschrift unten rechts */
.hero-full-caption {
  position: absolute;
  bottom: 1.25rem;
  right: 1.75rem;
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.4);
}

/* ─── Hero (fallback) ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--dark); position: relative;
}
.hero-content { position: relative; z-index: 1; padding: 2rem; }
.hero-year {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; display: block;
}
.hero h1 { color: var(--cream); line-height: 1.15; margin-bottom: 0.3rem; }
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--gold); letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
.hero-desc {
  max-width: 540px; margin: 0 auto 2.5rem;
  font-size: 0.95rem; color: var(--cream-muted);
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Hero split layout (with Mittagskarte panel) ─── */
.hero-full--mk {
  justify-content: flex-start;
}
.hero-full--mk .hero-full-content {
  text-align: left;
  padding: 0 2rem 4.5rem 5%;
  max-width: 52%;
}
.hero-full--mk .hero-cta {
  justify-content: flex-start;
}
.hero-full--mk .divider-gold {
  margin: 1.5rem 0;
}

/* ─── Hero Mittagskarte Panel ─── */
.hero-mk-panel {
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 296px;
  background: rgba(8, 6, 2, 0.80);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-top: 2px solid var(--gold);
  border-left: 1px solid rgba(201, 165, 90, 0.22);
  border-right: 1px solid rgba(201, 165, 90, 0.22);
  border-bottom: 1px solid rgba(201, 165, 90, 0.22);
  overflow: hidden;
}
.hero-mk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 0.8rem;
}
.hero-mk-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.hero-mk-kw {
  font-family: 'Lato', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  color: var(--cream-muted);
}
.hero-mk-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,165,90,0.4) 20%, rgba(201,165,90,0.4) 80%, transparent);
  margin: 0 1.5rem;
}
.hero-mk-body {
  min-height: 158px;
  padding: 1.2rem 1.5rem 0.75rem;
}
.hero-mk-panel .mk-slide {
  background: none;
  border: none;
  padding: 0;
  gap: 0.5rem;
  animation: mkFadeIn 0.4s ease forwards;
}
.hero-mk-panel .mk-slide-cat {
  font-size: 0.57rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.hero-mk-panel .mk-slide-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--cream);
}
.hero-mk-panel .mk-slide-beilage {
  font-size: 0.77rem;
  color: rgba(184,178,164,0.72);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-mk-panel .mk-slide-price {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  padding: 0;
  border: none;
  background: none;
  margin-top: 0.4rem;
}
.hero-mk-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.5rem 0.6rem;
  border-top: 1px solid rgba(201,165,90,0.12);
}
.hero-mk-dots-row {
  display: flex;
  gap: 5px;
  align-items: center;
}
.hero-mk-panel .mk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201,165,90,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.hero-mk-panel .mk-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}
.hero-mk-arrows {
  display: flex;
  gap: 5px;
}
.hero-mk-arr {
  background: none;
  border: 1px solid rgba(201,165,90,0.3);
  color: rgba(201,165,90,0.8);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
}
.hero-mk-arr:hover {
  background: rgba(201,165,90,0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.hero-mk-link-bar {
  display: block;
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,165,90,0.65);
  text-decoration: none;
  background: rgba(201,165,90,0.04);
  border-top: 1px solid rgba(201,165,90,0.12);
  transition: color 0.2s, background 0.2s;
}
.hero-mk-link-bar:hover {
  color: var(--gold);
  background: rgba(201,165,90,0.09);
}

@media (max-width: 1060px) {
  /* Mobile: revert to centered title */
  .hero-full--mk { justify-content: center; }
  .hero-full--mk .hero-full-content {
    text-align: center;
    padding: 0 1.25rem 6rem;
    max-width: 750px;
  }
  .hero-full--mk .hero-cta { justify-content: center; }
  .hero-full--mk .divider-gold { margin: 1.5rem auto; }

  /* Mobile: compact strip at bottom of hero */
  .hero-mk-panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    bottom: 0; left: 0; right: 0; top: auto;
    transform: none;
    width: 100%;
    height: 58px;
    border-top: 2px solid var(--gold);
    border-left: none; border-right: none; border-bottom: none;
    background: rgba(6, 5, 2, 0.88);
    padding: 0;
    overflow: hidden;
  }
  .hero-mk-head {
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-right: 1px solid rgba(201,165,90,0.2);
  }
  .hero-mk-kw { display: none; }
  .hero-mk-rule { display: none; }
  .hero-mk-body {
    flex: 1;
    min-height: 0;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-mk-panel .mk-slide {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    animation: none;
  }
  .hero-mk-panel .mk-slide-cat { display: none; }
  .hero-mk-panel .mk-slide-name {
    font-size: 0.88rem;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-mk-panel .mk-slide-beilage { display: none; }
  .hero-mk-panel .mk-slide-price {
    font-size: 0.88rem;
    margin: 0;
    flex-shrink: 0;
  }
  .hero-mk-foot {
    padding: 0 0.75rem;
    border-top: none;
    flex-shrink: 0;
  }
  .hero-mk-dots-row { display: none; }
  .hero-mk-link-bar { display: none; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
}

/* ─── Highlights ─── */
.highlights { background: var(--dark-mid); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.highlight-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--divider);
  background: var(--dark-card);
}
.highlight-icon { font-size: 2rem; margin-bottom: 1rem; }
.highlight-card h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1rem; letter-spacing: 0.05em; }
.highlight-card p { font-size: 0.9rem; }

/* ─── About / Geschichte ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.about-text p { margin-bottom: 1.25rem; font-size: 0.95rem; }
.stat-row { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-muted); }

/* ─── Menu Preview ─── */
.menu-preview { background: var(--dark-mid); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--divider);
}
.menu-preview-item {
  padding: 2rem;
  background: var(--dark-card);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--divider);
  transition: background 0.25s;
}
.menu-preview-item:hover { background: var(--dark-hover); }
.menu-item-info h3 { font-size: 1rem; color: var(--cream); margin-bottom: 0.25rem; }
.menu-item-info p { font-size: 0.82rem; }
.menu-item-price {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 1rem;
  white-space: nowrap;
}
.menu-preview-cta { text-align: center; margin-top: 2.5rem; }

/* ─── Page Header ─── */
.page-header {
  background: var(--dark-mid);
  text-align: center;
  margin-top: 0;
  padding: 8rem 2rem 4rem;
  border-bottom: 1px solid var(--divider);
}
.page-header h1 {
  color: var(--cream);
  text-shadow:
    0 0 12px rgba(240, 235, 224, 0.9),
    0 0 30px rgba(201, 165, 90, 0.7),
    0 0 60px rgba(201, 165, 90, 0.4),
    0 0 100px rgba(201, 165, 90, 0.15);
}

/* ─── Speisekarte ─── */
.menu-section-title {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  display: inline-block;
  padding: 0.3rem 0.9rem;
  margin: 2.5rem 0 1.5rem;
}
.menu-category {
  margin-bottom: 3.5rem;
}
.menu-category-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  border-bottom: 1px solid var(--divider);
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}
.menu-category-note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--cream-muted);
  margin-bottom: 1.5rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201,165,90,0.12);
  transition: background 0.2s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(201,165,90,0.03); }
.menu-item-body { flex: 1; }
.menu-item-body strong {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.2rem;
}
.menu-item-body .item-fr {
  font-style: italic;
  font-size: 0.78rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.menu-item-body .item-desc {
  font-size: 0.82rem;
  color: var(--cream-muted);
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.1rem;
}
.vegi-badge { color: #6abf6a; font-size: 0.85rem; }

/* Lieferanten */
.lieferanten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.lieferant-item {
  padding: 1rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--divider);
}
.lieferant-item strong { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 0.3rem; }
.lieferant-item span { font-size: 0.85rem; color: var(--cream-muted); }

/* ─── Reservierung ─── */
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--divider);
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--dark-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.res-info-box {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 2rem;
}
.res-info-box h3 { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; letter-spacing: 0.05em; }
.res-info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 0.85rem; font-size: 0.9rem; }
.res-info-icon { color: var(--gold); width: 20px; flex-shrink: 0; margin-top: 2px; }

/* ─── Kontakt ─── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-card {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.kontakt-card h3 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--divider);
}
.kontakt-row { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 0.85rem; font-size: 0.9rem; }
.kontakt-icon { color: var(--gold); width: 18px; flex-shrink: 0; margin-top: 3px; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table tr { border-bottom: 1px solid rgba(201,165,90,0.1); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.55rem 0; vertical-align: top; }
.hours-table td:first-child { color: var(--cream-muted); width: 55%; }
.hours-table td:last-child { color: var(--cream); text-align: right; }
.closed { color: #c96060 !important; }

.map-placeholder {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--cream-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.map-placeholder a { font-size: 0.8rem; letter-spacing: 0.1em; }

/* ─── Footer ─── */
.footer {
  background: var(--dark-mid);
  border-top: 1px solid var(--divider);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.footer-sub { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--cream-muted); text-transform: uppercase; }
.footer-divider { width: 40px; height: 1px; background: var(--gold); margin: 1.5rem auto; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; list-style: none; margin-bottom: 2rem; }
.footer-links a { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: var(--cream-muted); }
.footer-copy a { color: var(--cream-muted); }
.footer-copy a:hover { color: var(--gold); }

/* ─── Sprachauswahl ─── */
.lang-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-left: 1.5rem;
}
.lang-btn {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--cream-muted);
  background: none;
  border: 1px solid transparent;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: color 0.2s, border-color 0.2s;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  text-shadow: 0 0 8px rgba(201,165,90,0.7);
}

/* ─── WhatsApp Button ─── */
.call-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2.5s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}
.call-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ─── Like Button ─── */
.like-btn {
  position: fixed;
  bottom: calc(2rem + 58px + 12px);
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--dark-card);
  border: 1px solid var(--divider);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.3s;
}
.like-btn:hover { transform: scale(1.1); }
.like-btn.liked {
  border-color: rgba(240, 80, 130, 0.55);
  box-shadow: 0 4px 20px rgba(240, 80, 130, 0.3);
}
.like-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--cream-muted);
  transition: fill 0.25s, transform 0.25s;
  pointer-events: none;
}
.like-btn.liked svg { fill: #f05082; }
.like-count {
  font-size: 9px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream-muted);
  line-height: 1;
  pointer-events: none;
  transition: color 0.25s;
}
.like-btn.liked .like-count { color: #f05082; }
@keyframes likePop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.5); }
  65%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}
.like-btn.pop svg { animation: likePop 0.42s ease; }

/* ─── Animations ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ─── Responsive ─── */

/* Tablet */
@media (max-width: 1280px) {
  .nav-links { gap: 0.85rem; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.07em; }
}
@media (max-width: 1024px) {
  .nav-links { gap: 0.7rem; }
  .nav-links a { font-size: 0.58rem; letter-spacing: 0.05em; }
  .nav-logo { font-size: 0.95rem; }
  .nav-logo span { font-size: 0.6rem; }
  .lang-switcher { margin-left: 0.5rem; }
  .hero-full-title { font-size: clamp(2.4rem, 5vw, 3.8rem); }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .lang-switcher { display: none; }
  .nav-inner { padding: 0.6rem 1.25rem; }
  .nav-logo { font-size: 1rem; }
  .nav-logo span { font-size: 0.65rem; }

  /* Mobile menu language switcher */
  .nav-mobile { padding-bottom: 1.25rem; }
  .nav-mobile-lang {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--divider);
  }

  /* Hero */
  .hero-full { height: 100svh; min-height: 520px; }
  .hero-full-img { object-position: 60% 40%; }
  .hero-full-content { padding: 0 1.25rem 3.5rem; }
  .hero-full-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-full-content .hero-year { font-size: 0.6rem; letter-spacing: 0.22em; }
  .hero-full-sub { font-size: 0.72rem; letter-spacing: 0.1em; }
  .hero-cta { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; max-width: 260px; text-align: center; }
  .hero-full-caption { display: none; }

  /* Sections */
  .section { padding: 3.5rem 1.25rem; }
  .page-header { padding: 6rem 1.25rem 2.5rem; }
  .page-header h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* Grids */
  .about-grid,
  .reservation-grid,
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lieferanten-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stat-row { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: 2rem; }

  /* Menu items */
  .menu-item { flex-direction: column; gap: 0.3rem; }
  .menu-item-price { align-self: flex-end; }

  /* Kontakt */
  .kontakt-card { padding: 1.25rem; }
  .hours-table td { font-size: 0.82rem; }

  /* Reservierung */
  .res-info-box { padding: 1.25rem; }

  /* Buttons */
  .btn { padding: 0.8rem 1.75rem; font-size: 0.72rem; }

  /* WhatsApp */
  .call-btn { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
  .call-btn svg { width: 26px; height: 26px; }

  /* Like button */
  .like-btn { width: 52px; height: 52px; bottom: calc(1.25rem + 52px + 10px); right: 1.25rem; }
  .like-btn svg { width: 23px; height: 23px; }

  /* Team */
  .team-values { grid-template-columns: 1fr 1fr; }

  /* About quote */
  .about-quote { font-size: 1.2rem; }
}

/* Small mobile */
@media (max-width: 400px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .team-values { grid-template-columns: 1fr; }
  .lieferanten-grid { grid-template-columns: 1fr; }
  .hero-full-title { font-size: 1.9rem; }
  .nav-logo span { display: none; }
}

/* Hide "· Seit 1825" in logo on small screens to prevent wrapping */
@media (max-width: 560px) {
  .nav-since { display: none; }
}

/* ─── Chatbot ─── */
.cb-toggle {
  position: fixed;
  bottom: 2rem;
  right: 6.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 18px rgba(201,165,90,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cb-toggle:hover, .cb-toggle.cb-active {
  transform: scale(1.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 28px rgba(201,165,90,0.4);
}
.cb-toggle svg { width: 26px; height: 26px; }

.cb-window {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 340px;
  max-height: 500px;
  background: var(--dark-mid);
  border: 1px solid var(--divider);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  z-index: 998;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
}
.cb-window.cb-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.cb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--dark-card);
  border-bottom: 1px solid var(--divider);
  border-radius: 4px 4px 0 0;
}
.cb-header-info { display: flex; align-items: center; gap: 0.75rem; }
.cb-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark-hover);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}
.cb-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--cream);
}
.cb-status {
  font-size: 0.68rem;
  color: #5cb85c;
  letter-spacing: 0.05em;
}
.cb-close {
  background: none;
  border: none;
  color: var(--cream-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  transition: color 0.2s;
}
.cb-close:hover { color: var(--cream); }

.cb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--dark-hover) transparent;
}
.cb-msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
  font-size: 0.83rem;
  line-height: 1.55;
}
.cb-msg-bot {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  color: var(--cream-muted);
  align-self: flex-start;
}
.cb-msg-user {
  background: rgba(201,165,90,0.12);
  border: 1px solid rgba(201,165,90,0.3);
  color: var(--cream);
  align-self: flex-end;
}
.cb-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
.cb-link:hover { color: var(--gold-light); }

.cb-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.7rem 0.9rem;
}
.cb-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: cb-bounce 1s infinite;
}
.cb-typing span:nth-child(2) { animation-delay: 0.15s; }
.cb-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes cb-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.cb-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 1rem 0.75rem;
}
.cb-suggestion {
  background: transparent;
  border: 1px solid var(--divider);
  color: var(--gold);
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.04em;
}
.cb-suggestion:hover {
  background: rgba(201,165,90,0.1);
  border-color: var(--gold);
}

.cb-footer {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--divider);
}
.cb-input {
  flex: 1;
  background: var(--dark-card);
  border: 1px solid var(--divider);
  color: var(--cream);
  padding: 0.55rem 0.75rem;
  font-size: 0.83rem;
  font-family: 'Lato', sans-serif;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.cb-input:focus { border-color: var(--gold); }
.cb-send {
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.cb-send:hover { background: var(--gold-light); }

@media (max-width: 768px) {
  .cb-window { width: calc(100vw - 3rem); right: 1.25rem; left: auto; bottom: 5rem; }
  .cb-toggle { bottom: 1.25rem; right: 5.25rem; width: 52px; height: 52px; }
  .cb-toggle svg { width: 23px; height: 23px; }
}

/* ─── Rating Bar ─── */
.rating-bar {
  background: var(--dark-card);
  border-bottom: 1px solid var(--divider);
  padding: 0.9rem 2rem;
}

.rating-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.rating-google {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
}

.rating-stars {
  color: #f4b942;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.rating-info {
  font-size: 0.88rem;
  color: var(--cream-muted);
}

.rating-info strong {
  color: var(--cream);
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}

.rating-sub { font-size: 0.82rem; }

.rating-cta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--divider);
  padding: 0.3rem 0.85rem;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.rating-cta:hover { border-color: var(--gold); }

@media (max-width: 480px) {
  .rating-sub { display: none; }
  .rating-bar { padding: 0.75rem 1.25rem; }
}

/* ─── Mittagskarte ─── */
.mk-week-pill {
  display: inline-block;
  background: var(--dark-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
}

.mk-incl-text {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--cream-muted);
  margin-top: 0.6rem;
}

/* Homepage preview grid */
.mk-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.mk-card {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.mk-card:hover { border-color: var(--gold); transform: translateY(-2px); }

.mk-cat-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.mk-dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.mk-dish-beilage {
  font-size: 0.78rem;
  color: var(--cream-muted);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.mk-dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--divider);
  margin-top: auto;
}

.mk-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold);
}

.mk-allergene-small { font-size: 0.68rem; color: var(--cream-muted); }
.mk-vegi { font-size: 0.85rem; }

/* Full page info bar */
.mk-page-info {
  background: var(--dark-mid);
  border-bottom: 1px solid var(--divider);
  padding: 1.25rem 2rem;
  text-align: center;
}

.mk-page-week-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mk-page-incl {
  font-size: 0.82rem;
  color: var(--cream-muted);
  font-style: italic;
}

/* Full page menu content */
.mk-full-cat {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--divider);
}
.mk-full-cat:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.mk-full-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mk-full-cat-icon { font-size: 1.4rem; }

.mk-full-cat-name {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.mk-full-cat-hint {
  font-size: 0.82rem;
  color: var(--cream-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 165, 90, 0.12);
}

.mk-full-dish {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201, 165, 90, 0.08);
}
.mk-full-dish:first-of-type { padding-top: 0; }
.mk-full-dish:last-child { border-bottom: none; }

.mk-full-dish-left {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.mk-day-tag {
  display: inline-block;
  min-width: 2.2rem;
  background: var(--dark-hover);
  border: 1px solid var(--divider);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.2rem 0.35rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.mk-full-dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.mk-vegi-badge {
  display: inline-block;
  font-size: 0.62rem;
  background: rgba(100, 180, 100, 0.12);
  color: #7bc47b;
  border: 1px solid rgba(100, 180, 100, 0.3);
  padding: 0.1rem 0.4rem;
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.mk-allergene-inline {
  font-size: 0.68rem;
  color: var(--cream-muted);
  margin-left: 0.2rem;
}

.mk-full-dish-beilage {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.mk-full-dish-en {
  font-size: 0.76rem;
  color: rgba(184, 178, 164, 0.55);
  font-style: italic;
  margin-top: 0.2rem;
}

.mk-full-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

/* Allergen legend */
.mk-allergen-section {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 2rem;
  margin-top: 2.5rem;
}

.mk-allergen-section h3 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: none;
}

.mk-allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.mk-allergen-item { font-size: 0.78rem; color: var(--cream-muted); }
.mk-allergen-item strong { color: var(--cream); margin-right: 0.3rem; }

.mk-allergen-note {
  font-size: 0.78rem;
  color: var(--cream-muted);
  font-style: italic;
  border-top: 1px solid var(--divider);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

/* ─── Freibier Hero Overlay ─── */
.fb-hero-overlay {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 520px;
  text-align: center;
  background: rgba(12, 8, 2, 0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 32px 22px;
  overflow: hidden;
}
.fb-hero-overlay .fb-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(200,146,42,.28);
}
.fb-hero-overlay .fb-corner { width: 22px; height: 22px; }
.fb-hero-overlay .fb-corner svg { width: 22px; height: 22px; }
.fb-hero-overlay .fb-c-tl { top: 4px; left: 4px; }
.fb-hero-overlay .fb-c-tr { top: 4px; right: 4px; }
.fb-hero-overlay .fb-c-bl { bottom: 4px; left: 4px; }
.fb-hero-overlay .fb-c-br { bottom: 4px; right: 4px; }
@media (max-width: 600px) {
  .fb-hero-overlay { top: 44%; padding: 20px 18px 16px; }
  .fb-hero-overlay .fb-info-block .fb-cell-value { font-size: 17px !important; }
}

/* ─── Mittagskarte Hero Overlay (legacy) ─── */
.mk-hero-overlay {
  position: absolute;
  z-index: 3;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 580px;
  text-align: center;
}
.mk-hero-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.mk-hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.mk-hero-overlay .mk-slideshow-outer { margin-top: 0; }
.mk-hero-overlay .mk-slideshow-stage { min-height: 0; }
.mk-hero-overlay .mk-slide {
  background: rgba(22, 20, 15, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(201, 165, 90, 0.45);
  padding: 1.1rem 1.5rem;
  gap: 0.4rem;
}
.mk-hero-overlay .mk-slide-name { font-size: 1.1rem; }
.mk-hero-overlay .mk-slide-beilage { display: none; }
.mk-hero-overlay .mk-slide-price { font-size: 0.95rem; padding: 0.2rem 0.8rem; margin-top: 0; }
.mk-hero-overlay .mk-dots { margin-top: 0.6rem; }
.mk-hero-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,165,90,0.5);
  padding-bottom: 2px;
  text-shadow: 0 0 12px rgba(226,192,122,0.7), 0 0 28px rgba(201,165,90,0.4);
  transition: color 0.2s, text-shadow 0.2s;
}
.mk-hero-link:hover {
  color: #fff0c0;
  text-shadow: 0 0 16px rgba(255,220,120,0.95), 0 0 36px rgba(201,165,90,0.6);
}
@media (max-width: 768px) {
  .mk-hero-overlay { top: 28%; }
}
@media (max-width: 480px) {
  .mk-hero-overlay { top: 25%; width: 95%; }
}

/* ─── Mittagskarte Slideshow ─── */
.mk-slideshow-outer {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 2rem auto 0;
}
.mk-slideshow-stage {
  flex: 1;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}
@keyframes mkFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mk-slide {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  animation: mkFadeIn 0.5s ease forwards;
}
.mk-slide-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.mk-slide-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--cream);
  line-height: 1.3;
}
.mk-slide-beilage {
  font-size: 0.83rem;
  color: var(--cream-muted);
  line-height: 1.65;
  max-width: 440px;
}
.mk-slide-price {
  font-size: 1.05rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  border: 1px solid rgba(201,165,90,0.3);
  padding: 0.3rem 1.1rem;
  margin-top: 0.2rem;
}
.mk-slide-btn {
  background: none;
  border: 1px solid var(--divider);
  color: var(--gold);
  font-size: 2rem;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mk-slide-btn:hover { border-color: var(--gold); background: rgba(201,165,90,0.08); }
.mk-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.mk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--divider);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.mk-dot.active { background: var(--gold); transform: scale(1.4); }

@media (max-width: 768px) {
  .mk-preview-grid { grid-template-columns: 1fr 1fr; }
  .mk-full-dish { flex-direction: column; gap: 0.5rem; }
  .mk-full-price { align-self: flex-end; }
  .mk-page-week-row { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 600px) {
  .mk-slideshow-outer { gap: 0.5rem; }
  .mk-slide-btn { width: 2.25rem; height: 2.25rem; font-size: 1.6rem; }
  .mk-slide { padding: 2rem 1rem; }
}
@media (max-width: 480px) {
  .mk-preview-grid { grid-template-columns: 1fr; }
}

/* ─── Freibier Ticker ─── */
.fb-ticker {
  background: #16140f;
  border-bottom: 1px solid rgba(200,146,42,.35);
  overflow: hidden;
  padding: 11px 0;
  position: fixed;
  top: 58px; /* updated by JS via positionTicker() */
  left: 0;
  right: 0;
  z-index: 999;
}
.fb-ticker::before,
.fb-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.fb-ticker::before {
  left: 0;
  background: linear-gradient(to right, #16140f, transparent);
}
.fb-ticker::after {
  right: 0;
  background: linear-gradient(to left, #16140f, transparent);
}
.fb-ticker-track {
  display: flex;
  width: max-content;
  animation: fbTicker 28s linear infinite;
}
@keyframes fbTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fb-ticker-text {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8922a;
  white-space: nowrap;
}

/* ─── Freibier Event Section (new clean layout) ─── */
.fb-event-section {
  position: relative;
  background: linear-gradient(160deg, #140e04 0%, #0e0a03 50%, #120f05 100%);
  overflow: hidden;
}
.fb-event-inner {
  position: relative;
  z-index: 6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 48px;
}
.fb-event-top {
  text-align: center;
  margin-bottom: 44px;
}
.fb-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.fb-event-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fb-event-left .fb-eyebrow { text-align: left; margin-bottom: 8px; }
.fb-event-left .fb-hero { text-align: left; margin-bottom: 28px; }
.fb-event-left .fb-beer { margin-bottom: 28px; }
.fb-event-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 16px;
}
.fb-event-menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .fb-event-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fb-event-left { align-items: center; }
  .fb-event-left .fb-eyebrow,
  .fb-event-left .fb-hero { text-align: center; }
  .fb-event-inner { padding: 44px 28px; }
}
@media (max-width: 480px) {
  .fb-event-menu-cols { grid-template-columns: 1fr; }
  .fb-event-inner { padding: 36px 20px; }
}

/* ─── Freibier Event Section (legacy standalone) ─── */
.freibier-section {
  position: relative;
  background: linear-gradient(170deg, #140e04 0%, #0e0a03 40%, #100d05 100%);
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.freibier-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, #c8922a, #f0c060, #c8922a, transparent);
}
.freibier-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, #c8922a, #f0c060, #c8922a, transparent);
}
.fb-frame {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(200,146,42,.28);
  pointer-events: none;
  z-index: 2;
  animation: fbFramePulse 4s ease-in-out infinite alternate;
}
.fb-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200,146,42,.10);
}
@keyframes fbFramePulse {
  from { border-color: rgba(200,146,42,.2); }
  to   { border-color: rgba(200,146,42,.5); box-shadow: inset 0 0 40px rgba(200,146,42,.05); }
}
.fb-corner { position: absolute; z-index: 3; width: 32px; height: 32px; }
.fb-corner svg { width: 32px; height: 32px; }
.fb-c-tl { top: 13px; left: 13px; }
.fb-c-tr { top: 13px; right: 13px; transform: scaleX(-1); }
.fb-c-bl { bottom: 13px; left: 13px; transform: scaleY(-1); }
.fb-c-br { bottom: 13px; right: 13px; transform: scale(-1,-1); }
.fb-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.fb-glow.g1 {
  width: 500px; height: 400px;
  top: -100px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200,146,42,.18) 0%, transparent 70%);
  animation: fbPulse 5s ease-in-out infinite alternate;
}
.fb-glow.g2 {
  width: 400px; height: 300px;
  bottom: -60px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200,146,42,.13) 0%, transparent 70%);
  animation: fbPulse 6s ease-in-out infinite alternate-reverse;
}
@keyframes fbPulse {
  from { opacity: .6; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;  transform: translateX(-50%) scale(1.12); }
}
.fb-scanline {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,146,42,.4) 30%, rgba(240,192,96,.6) 50%, rgba(200,146,42,.4) 70%, transparent 100%);
  animation: fbScan 10s linear infinite;
  pointer-events: none; z-index: 5;
}
@keyframes fbScan {
  0%   { top: 0%;   opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.fb-inner {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 680px;
  padding: 60px 64px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fb-rest-name {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 5px; text-transform: uppercase;
  color: rgba(200,146,42,.75);
  margin-bottom: 28px;
}
.fb-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 22px;
}
.fb-div-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,146,42,.45));
}
.fb-div-line.rev { background: linear-gradient(to left, transparent, rgba(200,146,42,.45)); }
.fb-div-star { color: #c8922a; font-size: 14px; }
.fb-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 7px; text-transform: uppercase;
  color: rgba(200,146,42,.55);
  margin-bottom: 6px;
}
.fb-hero {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(72px, 18vw, 120px);
  line-height: .85;
  letter-spacing: -2px;
  color: #f5ede0;
  margin-bottom: 8px;
}
.fb-hero em {
  font-style: italic;
  background: linear-gradient(90deg, #a86c10 0%, #f0c060 35%, #fff0b0 50%, #f0c060 65%, #a86c10 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fbGoldShimmer 3.5s linear infinite;
}
@keyframes fbGoldShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.fb-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(245,237,224,.38);
  margin-bottom: 36px;
}
.fb-beer {
  margin-bottom: 36px;
  filter: drop-shadow(0 0 30px rgba(200,120,26,.35));
  animation: fbFloat 3.5s ease-in-out infinite;
}
@keyframes fbFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.fb-info-block {
  width: 100%;
  border: 1px solid rgba(200,146,42,.22);
  display: flex;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  background: rgba(200,146,42,.03);
}
.fb-info-cell {
  flex: 1; text-align: center;
  padding: 22px 16px;
}
.fb-info-cell + .fb-info-cell { border-left: 1px solid rgba(200,146,42,.22); }
.fb-cell-label {
  font-family: 'Lato', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: #c8922a; margin-bottom: 9px;
}
.fb-cell-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: #f5ede0; line-height: 1.1;
}
.fb-cell-note {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 300;
  color: rgba(245,237,224,.38);
  margin-top: 5px;
}
.fb-fine {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 300;
  color: rgba(245,237,224,.22);
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.fb-menu { width: 100%; margin-bottom: 28px; }
.fb-menu-title {
  font-family: 'Lato', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: #c8922a;
  margin-bottom: 16px;
}
.fb-menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fb-menu-col {
  border: 1px solid rgba(200,146,42,.18);
  padding: 16px 14px;
  background: rgba(200,146,42,.03);
  text-align: left;
}
.fb-col-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600;
  color: #f5ede0;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.fb-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(200,146,42,.08);
}
.fb-item:last-of-type { border-bottom: none; }
.fb-item span:first-child {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 300;
  color: rgba(245,237,224,.7);
}
.fb-item span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600;
  color: #c8922a; white-space: nowrap;
}
.fb-item-note {
  font-family: 'Lato', sans-serif;
  font-size: 9px; font-weight: 300;
  color: rgba(245,237,224,.35);
  margin-top: 8px;
}
.fb-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(245,237,224,.5);
}
.fb-footer-logo strong { font-weight: 700; color: #f0e4cc; }
@media (max-width: 600px) {
  .fb-inner { padding: 48px 28px 44px; }
  .fb-hero { font-size: clamp(64px, 20vw, 100px); }
  .fb-frame { inset: 12px; }
  .fb-c-tl { top: 6px; left: 6px; }
  .fb-c-tr { top: 6px; right: 6px; }
  .fb-c-bl { bottom: 6px; left: 6px; }
  .fb-c-br { bottom: 6px; right: 6px; }
}
@media (max-width: 380px) {
  .fb-menu-cols { grid-template-columns: 1fr; }
  .fb-inner { padding: 40px 20px 36px; }
}

/* ─── Sommer-Fondue Event Section ─── */
.sf-section {
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}
.sf-wrap {
  max-width: 620px;
  width: 100%;
  padding: 56px 48px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sf-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, rgba(200,169,106,0.10) 0%, transparent 70%);
  animation: sfbgpulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sfbgpulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.sf-corner {
  position: absolute; width: 70px; height: 70px;
  border: 1px solid #c8a96a; opacity: 0;
  animation: sfcornerin 1s ease forwards;
}
.sf-corner.tl { top:16px; left:16px; border-right:none; border-bottom:none; animation-delay:0.8s; }
.sf-corner.tr { top:16px; right:16px; border-left:none; border-bottom:none; animation-delay:1.0s; }
.sf-corner.bl { bottom:16px; left:16px; border-right:none; border-top:none; animation-delay:1.2s; }
.sf-corner.br { bottom:16px; right:16px; border-left:none; border-top:none; animation-delay:1.4s; }
@keyframes sfcornerin { from { opacity: 0; } to { opacity: 0.45; } }
.sf-inner { position: relative; z-index: 1; }
@keyframes sfadeup { to { opacity: 1; transform: translateY(0); } }
@keyframes sftitleglow {
  0%,100% { text-shadow: 0 0 18px rgba(220,185,100,0.85), 0 0 40px rgba(200,165,80,0.45), 0 0 80px rgba(200,155,60,0.2); }
  50%      { text-shadow: 0 0 28px rgba(240,200,100,1), 0 0 60px rgba(220,175,80,0.7), 0 0 110px rgba(200,155,60,0.35); }
}
.sf-label {
  font-family: 'Cinzel', serif; font-size: 9px; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase; color: #c8a96a;
  opacity: 0; transform: translateY(16px);
  animation: sfadeup 0.8s ease forwards 0.1s;
  margin-bottom: 28px; display: block;
}
.sf-title {
  font-family: 'Cinzel', serif; font-size: 52px; font-weight: 700;
  letter-spacing: 0.06em; line-height: 1.1; color: #e8c97a;
  opacity: 0; transform: translateY(20px);
  animation: sfadeup 0.9s ease forwards 0.4s, sftitleglow 3s ease-in-out infinite 1.5s;
  margin-bottom: 16px;
}
.sf-badge-row {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 28px; opacity: 0; transform: translateY(14px);
  animation: sfadeup 0.8s ease forwards 0.6s;
}
.sf-badge {
  font-family: 'Lato', sans-serif;
  font-size: 13px; font-weight: 300; font-style: italic;
  letter-spacing: 0.14em; color: #c8a96a;
}
.sf-glass-wrap { display: inline-flex; align-items: center; animation: sfglassbob 2.5s ease-in-out infinite; }
.sf-glass-wrap.right { animation: sfglassbob-r 2.5s ease-in-out infinite 0.4s; }
@keyframes sfglassbob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes sfglassbob-r { 0%,100% { transform: scaleX(-1) translateY(0); } 50% { transform: scaleX(-1) translateY(-5px); } }
.sf-bubble { animation: sfrise 2s ease-in infinite; opacity: 0; }
.sf-bubble:nth-child(1) { animation-delay: 0.2s; }
.sf-bubble:nth-child(2) { animation-delay: 0.8s; }
.sf-bubble:nth-child(3) { animation-delay: 1.4s; }
@keyframes sfrise { 0% { transform: translateY(0); opacity: 0.8; } 100% { transform: translateY(-18px); opacity: 0; } }
.sf-divider {
  display: flex; align-items: center; gap: 12px;
  max-width: 220px; margin: 0 auto 28px;
  opacity: 0; animation: sfadeup 0.8s ease forwards 0.85s;
}
.sf-divider.sf-divider2 { animation-delay: 1.35s; }
.sf-divider-line { flex:1; height:1px; background:#c8a96a; opacity:0.35; }
.sf-divider-diamond { width:5px; height:5px; background:#c8a96a; transform:rotate(45deg); flex-shrink:0; }
.sf-body {
  font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 300;
  line-height: 1.9; letter-spacing: 0.04em; color: #a09a8e;
  max-width: 380px; margin: 0 auto 36px;
  opacity: 0; transform: translateY(14px);
  animation: sfadeup 0.8s ease forwards 1.05s;
}
.sf-body strong { color: #c8a96a; font-weight: 400; }
.sf-cta {
  display: inline-block; font-family: 'Cinzel', serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: #0f0f0f; background: #c8a96a; padding: 15px 44px; text-decoration: none;
  margin-bottom: 32px; opacity: 0; transform: translateY(14px);
  animation: sfadeup 0.8s ease forwards 1.25s;
  transition: background 0.25s, box-shadow 0.25s;
}
.sf-cta:hover { background: #d9bb80; box-shadow: 0 0 28px rgba(200,169,106,0.55); color: #0f0f0f; }
.sf-footer {
  font-family: 'Cinzel', serif; font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; color: #383830; text-transform: lowercase;
  opacity: 0; animation: sfadeup 0.8s ease forwards 1.45s; display: block;
}
@media (max-width: 480px) {
  .sf-wrap { padding: 44px 24px 36px; }
  .sf-title { font-size: 36px; }
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: rgba(22,20,15,0.97);
  border-top: 1px solid var(--divider);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.cb-visible { transform: translateY(0); }
.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.55;
}
.cookie-banner-text a { color: var(--gold); text-decoration: underline; }
.cookie-banner-text a:hover { color: var(--gold-light); }
.cookie-banner-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: none;
  color: var(--cream-muted);
  border: 1px solid var(--divider);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-decline:hover { color: var(--cream); border-color: var(--cream-muted); }
@media (max-width: 600px) {
  .cookie-banner { padding: 1rem 1.25rem; }
  .cookie-banner-btns { width: 100%; justify-content: flex-end; }
}

/* ─── Open Status Badge ─── */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  margin-left: 0;
  vertical-align: middle;
  white-space: nowrap;
  text-shadow: none;
  flex-shrink: 0;
}
.open-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.open-status.is-open .open-status-dot { background: #5cb85c; animation: statusPulse 2s infinite; }
.open-status.is-closed .open-status-dot { background: #c96060; }
.open-status.is-open { color: #5cb85c; }
.open-status.is-closed { color: #c96060; }
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92,184,92,0.5); }
  50% { box-shadow: 0 0 0 4px rgba(92,184,92,0); }
}

/* ─── Footer Links ─── */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.5rem;
}
.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── Events Page ─── */
.events-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.event-card {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  align-items: start;
  transition: border-color 0.3s;
}
.event-card:hover { border-color: var(--gold); }
.event-card-date {
  text-align: center;
  background: rgba(201,165,90,0.07);
  border: 1px solid var(--divider);
  padding: 1rem 0.75rem;
}
.event-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.event-date-month {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.25rem;
}
.event-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.event-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.event-card-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.event-meta-item {
  font-size: 0.8rem;
  color: var(--cream-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.event-meta-icon { color: var(--gold); font-size: 0.85rem; }
.event-card-desc { font-size: 0.86rem; color: var(--cream-muted); line-height: 1.7; }
.event-no-upcoming {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--cream-muted);
  background: var(--dark-card);
  border: 1px solid var(--divider);
}
@media (max-width: 600px) {
  .event-card { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 1.25rem; }
  .event-card-date { display: flex; align-items: center; gap: 0.75rem; width: fit-content; padding: 0.5rem 1rem; }
}

/* ─── Gutscheine Page ─── */
.gutschein-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.gutschein-card {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.gutschein-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.gutschein-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 0.5rem;
}
.gutschein-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--gold);
  margin: 0.25rem 0 0.5rem;
  line-height: 1.1;
}
.gutschein-card-note {
  font-size: 0.78rem;
  color: var(--cream-muted);
  margin-top: 0.5rem;
  line-height: 1.55;
}
.gutschein-custom {
  background: rgba(201,165,90,0.05);
  border: 1px solid var(--gold);
}
.gutschein-custom .gutschein-amount { font-size: 1.6rem; color: var(--gold-light); }
.gutschein-order-box {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}
.gutschein-order-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.gutschein-order-box p { font-size: 0.88rem; color: var(--cream-muted); margin-bottom: 1.5rem; }
.gutschein-contacts {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gutschein-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--cream);
}
.gutschein-contact-item a { color: var(--gold); }
.gutschein-contact-item a:hover { color: var(--gold-light); }

/* ─── Impressum Page ─── */
.impressum-block {
  background: var(--dark-card);
  border: 1px solid var(--divider);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}
.impressum-block h2 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-shadow: none;
}
.impressum-block p, .impressum-block li {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.8;
}
.impressum-block ul { padding-left: 1.25rem; margin: 0.5rem 0; }
.impressum-block a { color: var(--gold); }
.impressum-block a:hover { color: var(--gold-light); }
@media (max-width: 768px) {
  .impressum-block { padding: 1.5rem 1.25rem; }
}
