/* ═══════════════════════════════════════════
   CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
  --bg-deep: #0D0A07;
  --bg: #171310;
  --bg-elevated: #2A231C;
  --bg-card: #342C24;
  --bg-warm: #3D342A;
  --gold: #C49A5C;
  --gold-bright: #DABB84;
  --gold-dim: #896D3E;
  --gold-glow: rgba(196, 154, 92, 0.15);
  --cream: #F5EDE0;
  --cream-soft: #E5DAC8;
  --text-muted: #BFB19D;
  --text-faint: #847562;
  --wine: #7A3038;
  --border: rgba(196, 154, 92, 0.10);
  --border-hover: rgba(196, 154, 92, 0.25);
  --border-strong: rgba(196, 154, 92, 0.35);

  /* Legacy compat for legal pages */
  --dk: #0D0A07;
  --dk2: #171310;
  --dk3: #2A231C;
  --parch: #E5DAC8;
  --parch2: #BFB19D;
  --gold3: #DABB84;
  --gold2: #896D3E;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--bg-deep);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body {
  background: var(--bg-deep);
  color: var(--cream-soft);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              visibility 0.6s;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  padding-left: 0.25em;
  opacity: 0;
  animation: preIn 0.5s ease 0.15s forwards;
}
.preloader-bar {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  transform-origin: center;
  transform: scaleX(0);
  animation: preBar 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
@keyframes preIn { to { opacity: 0.8; } }
@keyframes preBar { to { transform: scaleX(1); } }

/* ═══════════════════════════════════════════
   TYPOGRAPHY SYSTEM
   ═══════════════════════════════════════════ */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 1rem;
}
.body-text.centered { text-align: center; }

.ornament-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 0 0 1.8rem;
}

/* ═══════════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════════ */
.about-section,
.reviews-section,
.menu-section,
.contact-section,
.gallery-section,
.features-section,
.food-section,
.social-section {
  position: relative;
}
.about-section::before,
.reviews-section::before,
.menu-section::before,
.contact-section::before,
.gallery-section::before,
.features-section::before,
.food-section::before,
.social-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  z-index: 1;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1),
              backdrop-filter 0.5s,
              border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mainNav.scrolled {
  background: rgba(17, 14, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.logo-light { color: var(--cream); }
.logo-gold { color: var(--gold-bright); font-weight: 400; font-style: italic; }

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.3s cubic-bezier(0.22,1,0.36,1);
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream-soft);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-phone:hover { color: var(--gold-bright); }
.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  transition: border-color 0.3s;
}
.nav-phone:hover .phone-icon { border-color: var(--gold); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 35% 45%, #2A231C, transparent),
    radial-gradient(ellipse 60% 50% at 75% 65%, #221B14, transparent),
    radial-gradient(ellipse 40% 30% at 50% 20%, rgba(196,154,92,0.04), transparent),
    var(--bg-deep);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.5);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 80%, rgba(17,14,10,0.85), transparent),
    radial-gradient(ellipse 50% 60% at 15% 10%, rgba(17,14,10,0.6), transparent),
    linear-gradient(to bottom, rgba(17,14,10,0.45) 0%, transparent 40%, rgba(17,14,10,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 350px;
  background: radial-gradient(ellipse, rgba(196,154,92,0.04), transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-ornament {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.hero-ornament::before,
.hero-ornament::after {
  content: '';
  width: 50px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.hero-ornament::after {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.hero-ornament-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}
.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1),
              transform 1.1s cubic-bezier(0.22,1,0.36,1),
              filter 0.9s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-title {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.5s;
}
.hero-title-accent {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}
.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.95s;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
body.loaded .hero-scroll {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 1.3s;
}
.hero-scroll a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.hero-scroll a:hover { color: var(--gold-bright); }
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ═══════════════════════════════════════════
   SECTIONS BASE
   ═══════════════════════════════════════════ */
section {
  padding: 7rem 1.5rem;
  position: relative;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-section {
  background: var(--bg);
  background-image: radial-gradient(ellipse 60% 50% at 70% 20%, rgba(196,154,92,0.03), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-elevated);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.85);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.about-img-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(0.88) saturate(1);
}
.about-img-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(196,154,92,0.18);
  pointer-events: none;
  z-index: 1;
  transition: inset 0.6s cubic-bezier(0.22,1,0.36,1);
}
.about-img-wrap:hover .about-img-frame { inset: 14px; }

.about-text .section-eyebrow { text-align: left; }
.about-text .section-title { text-align: left; }
.about-text .body-text { max-width: none; margin: 0 0 0.8rem; text-align: left; }

.about-details { margin-top: 1.8rem; }
.about-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.about-detail a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.about-detail a:hover { color: var(--gold-bright); }
.detail-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════
   FEATURES / RÄUMLICHKEITEN
   ═══════════════════════════════════════════ */
.features-section {
  background: var(--bg-elevated);
  background-image:
    radial-gradient(ellipse 60% 50% at 25% 30%, rgba(196,154,92,0.045), transparent),
    radial-gradient(ellipse 50% 40% at 80% 75%, rgba(122,48,56,0.04), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 3.2rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.2rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.4s, transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s, background-color 0.4s;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.28),
              0 2px 6px rgba(196,154,92,0.05);
}
.feature-card:hover::after { width: 70%; }
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 50%, rgba(196,154,92,0.08), transparent 70%);
  transition: border-color 0.4s, color 0.4s;
}
.feature-card:hover .feature-icon {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.005em;
  margin-bottom: 0.7rem;
}
.feature-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-section {
  background: var(--bg-deep);
  padding: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-elevated);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.7);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,14,10,0.55), transparent 55%);
  transition: opacity 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.82) saturate(1);
}
.gallery-item:hover::after { opacity: 0.3; }

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews-section {
  background: var(--bg);
  background-image: radial-gradient(ellipse 50% 60% at 30% 80%, rgba(196,154,92,0.03), transparent);
}

.reviews-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 2.5rem 0 3rem;
}
.reviews-stars {
  display: flex;
  gap: 0.2rem;
}
.star-icon {
  width: 18px; height: 18px;
  color: var(--gold);
}
.star-half { opacity: 0.35; }
.reviews-score {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.reviews-count {
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.4s, transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s;
}
.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.review-quote-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 0.5rem; left: 1.2rem;
  pointer-events: none;
}
.review-stars-small {
  display: flex;
  gap: 0.06rem;
  margin-bottom: 0.75rem;
}
.review-stars-small svg {
  width: 11px; height: 11px;
  color: var(--gold);
}
.review-text {
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.3rem;
  position: relative;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.review-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.review-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
}

/* ═══════════════════════════════════════════
   SPEISEKARTE / MENU
   ═══════════════════════════════════════════ */
.menu-section {
  background: var(--bg-elevated);
  background-image: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(196,154,92,0.04), transparent);
}

.pdf-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.pdf-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.8rem;
  border: 1px solid var(--border-hover);
  background: var(--bg-card);
  text-decoration: none;
  min-width: 250px;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.25s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s;
}
.pdf-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(196,154,92,0.06);
}
.pdf-link:active { transform: translateY(-1px); }
.pdf-link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
.pdf-link-icon {
  flex-shrink: 0;
  color: var(--gold);
}
.pdf-link-icon svg { width: 26px; height: 26px; }
.pdf-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.pdf-link-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.pdf-link-sub {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-muted);
}
.pdf-link-arrow {
  width: 15px; height: 15px;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.pdf-link:hover .pdf-link-arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════
   KULINARISCHE IMPRESSIONEN / FOOD
   ═══════════════════════════════════════════ */
.food-section {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(122,48,56,0.05), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196,154,92,0.035), transparent);
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 3.2rem;
}
.food-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.45s, transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.45s;
}
.food-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.95);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.food-item::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196,154,92,0.12);
  pointer-events: none;
  z-index: 2;
  transition: inset 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.4s;
}
.food-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,7,0.55), transparent 55%);
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.food-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.32),
              0 2px 8px rgba(196,154,92,0.06);
}
.food-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) saturate(1.05);
}
.food-item:hover::before {
  inset: 12px;
  border-color: rgba(196,154,92,0.28);
}
.food-item:hover::after { opacity: 0.45; }

/* ═══════════════════════════════════════════
   SOCIAL / FACEBOOK
   ═══════════════════════════════════════════ */
.social-section {
  background: var(--bg-elevated);
  background-image:
    radial-gradient(ellipse 50% 40% at 25% 30%, rgba(196,154,92,0.045), transparent),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(122,48,56,0.04), transparent);
}
/* Social-Section bekommt mehr Breite als Standard-1000px */
.social-section .section-inner {
  max-width: 1280px;
}

/* Aktionen-Section */
.aktionen-section {
  margin: 3.2rem auto 2.5rem;
  max-width: 1100px;
}
.aktionen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}
.aktion-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #15110C;
  transition: border-color 0.4s, transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s;
}
.aktion-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.98) saturate(1);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.aktion-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.3),
              0 2px 8px rgba(196,154,92,0.05);
}
.aktion-card:hover img {
  transform: scale(1.02);
  filter: brightness(1.02) saturate(1.05);
}

/* Termine-Section */
.events-section {
  margin: 3.5rem auto 3rem;
  max-width: 1100px;
}
.events-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.events-line {
  flex: 0 0 auto;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
  opacity: 0.7;
}
.events-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.events-heading {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 0.9rem;
}
.event-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold-dim);
  position: relative;
  transition: border-color 0.4s, transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s, background-color 0.4s;
}
.event-card:hover {
  border-color: var(--border-hover);
  border-left-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 54px;
  padding: 0.55rem 0.4rem;
  border: 1px solid rgba(196,154,92,0.18);
  background: var(--bg-elevated);
}
.event-day {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.event-month {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}
.event-year {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(196,154,92,0.18);
  width: 70%;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.event-info {
  flex: 1;
  min-width: 0;
}
.event-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.005em;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.event-meta {
  font-size: 0.7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ──────────── FACEBOOK FEEDS GRID (Landhaus + Rock and Roll) ──────────── */
.fb-feeds-section {
  margin: 3.5rem auto 0;
  position: relative;
  max-width: 980px;
}
.fb-feeds-section .events-header {
  margin-bottom: 2.6rem;
}

.fb-feeds-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem 2.5rem;
  align-items: start;
  justify-items: center;
}

.fb-feed-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 416px;
  text-align: center;
}

.fb-feed-head {
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.fb-feed-marker {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  display: block;
  box-shadow: 0 0 0 4px rgba(196,154,92,0.08);
}
.fb-feed-marker-rnr {
  background: transparent;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(196,154,92,0.05);
}
.fb-feed-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.005em;
  line-height: 1.25;
  margin: 0;
}
.fb-feed-name em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}
.fb-feed-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.rocknroll-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.rocknroll-eyebrow svg {
  color: var(--gold);
  animation: rnrSpin 14s linear infinite;
}
@keyframes rnrSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .rocknroll-eyebrow svg { animation: none; }
}

.rocknroll-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.005em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.rocknroll-title em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}

.rocknroll-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 2rem;
}
.rocknroll-divider::before,
.rocknroll-divider::after {
  content: '';
  width: 38px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.rocknroll-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.rocknroll-divider span {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* Frame mit Goldecken */
.rocknroll-frame {
  position: relative;
  display: block;
  padding: 18px;
  margin: 0 auto;
  width: 100%;
  max-width: 416px;
  box-sizing: border-box;
}
.rocknroll-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(196,154,92,0.18) 0%, transparent 30%, transparent 70%, rgba(196,154,92,0.12) 100%);
  pointer-events: none;
  z-index: 0;
}
.rocknroll-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  z-index: 3;
  pointer-events: none;
  opacity: 0.85;
}
.rocknroll-corner.top-left {
  top: 0; left: 0;
  border-right: none;
  border-bottom: none;
}
.rocknroll-corner.top-right {
  top: 0; right: 0;
  border-left: none;
  border-bottom: none;
}
.rocknroll-corner.bottom-left {
  bottom: 0; left: 0;
  border-right: none;
  border-top: none;
}
.rocknroll-corner.bottom-right {
  bottom: 0; right: 0;
  border-left: none;
  border-top: none;
}

.rocknroll-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 6px;
  min-height: 360px;
  box-sizing: border-box;
  box-shadow:
    0 22px 50px rgba(0,0,0,0.4),
    0 0 0 1px rgba(196,154,92,0.18),
    inset 0 0 0 1px rgba(0,0,0,0.3);
  z-index: 1;
}
.rocknroll-wrap iframe {
  background: #fff;
  display: block;
  width: 100% !important;
  border: 0;
}

.consent-card-rnr {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 340px;
  padding: 1.6rem 1.5rem;
  background: var(--bg-card);
}
.consent-card-rnr .consent-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}
.consent-card-rnr .consent-title { font-size: 1rem; }
.consent-card-rnr .consent-text { font-size: 0.74rem; }

.rocknroll-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-soft);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold-dim);
  transition: color 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.rocknroll-link svg {
  color: var(--gold);
  flex-shrink: 0;
  transition: color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.rocknroll-link:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
.rocknroll-link:hover svg {
  color: var(--gold-bright);
  transform: translate(2px, -2px);
}
.social-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--border-hover);
  background: var(--bg-card);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.35s, color 0.35s,
              transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s, background-color 0.4s;
}
.social-button svg {
  color: var(--gold);
  flex-shrink: 0;
  transition: color 0.35s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.social-button-arrow {
  color: var(--text-faint) !important;
}
.social-button:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,154,92,0.08);
}
.social-button:hover svg { color: var(--gold-bright); }
.social-button:hover .social-button-arrow {
  color: var(--gold) !important;
  transform: translate(2px, -2px);
}
.social-button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-section {
  background: var(--bg);
  background-image: radial-gradient(ellipse 50% 50% at 60% 30%, rgba(196,154,92,0.03), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-block-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.2rem;
}
.contact-item div {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-item strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 0.1rem;
}
.contact-item a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold-bright); }

/* Hours */
.hours-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hours-table {
  display: flex;
  flex-direction: column;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196,154,92,0.05);
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--cream-soft);
}
.hours-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-bright);
  text-align: right;
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
}
.hours-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  opacity: 0.7;
  margin-top: 0.2rem;
}
.hours-closed {
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.65;
}
.hours-note {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1rem;
  opacity: 0.6;
  line-height: 1.65;
}

/* Map */
.map-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

/* ──────────── DSGVO CONSENT KARTE ──────────── */
.consent-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  padding: 1.5rem 1.8rem;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  color: var(--cream-soft);
  transition: background-color 0.35s;
}
.consent-card:hover { background: var(--bg-warm); }
.consent-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}
.consent-card-large {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 320px;
}
.consent-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.consent-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.005em;
  margin: 0;
}
.consent-text {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0;
}
.consent-text a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.3s;
}
.consent-text a:hover { color: var(--gold); }
.consent-button {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--border-hover);
  background: var(--bg-elevated);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}
.consent-card:hover .consent-button {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.map-caption {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  opacity: 0.55;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--bg-deep);
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.footer-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 auto 2rem;
  opacity: 0.45;
}
.footer-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  margin: 0.8rem 0;
}
.footer-dot {
  width: 3px; height: 3px;
  background: var(--text-faint);
  border-radius: 50%;
  opacity: 0.5;
}
.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-cc-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0.55;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s, color 0.3s;
}
.footer-cc-btn:hover { opacity: 1; color: var(--gold); }
.footer-cc-btn:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ─── CookieConsent v3 — dunkel/gold Theming ─── */
#cc-main {
  --cc-font-family: 'DM Sans', sans-serif;
  --cc-bg: #15110C;
  --cc-primary-color: #F5EDE0;
  --cc-secondary-color: rgba(245, 237, 224, 0.72);
  --cc-btn-primary-bg: #C49A5C;
  --cc-btn-primary-color: #0D0A07;
  --cc-btn-primary-hover-bg: #D4AA6C;
  --cc-btn-primary-hover-color: #0D0A07;
  --cc-btn-primary-border-color: #C49A5C;
  --cc-btn-primary-hover-border-color: #D4AA6C;
  --cc-btn-secondary-bg: rgba(245, 237, 224, 0.04);
  --cc-btn-secondary-color: #F5EDE0;
  --cc-btn-secondary-hover-bg: rgba(245, 237, 224, 0.08);
  --cc-btn-secondary-hover-color: #F5EDE0;
  --cc-btn-secondary-border-color: rgba(196, 154, 92, 0.32);
  --cc-btn-secondary-hover-border-color: rgba(196, 154, 92, 0.6);
  --cc-toggle-on-bg: #C49A5C;
  --cc-toggle-off-bg: rgba(245, 237, 224, 0.18);
  --cc-toggle-on-knob-bg: #0D0A07;
  --cc-toggle-off-knob-bg: #F5EDE0;
  --cc-toggle-readonly-bg: rgba(196, 154, 92, 0.35);
  --cc-toggle-readonly-knob-bg: rgba(245, 237, 224, 0.6);
  --cc-link-color: #C49A5C;
  --cc-modal-border-radius: 4px;
  --cc-btn-border-radius: 2px;
  --cc-pm-toggle-border-radius: 2px;
  --cc-cookie-category-block-bg: rgba(245, 237, 224, 0.025);
  --cc-cookie-category-block-bg-hover: rgba(245, 237, 224, 0.05);
  --cc-cookie-category-block-border: rgba(196, 154, 92, 0.18);
  --cc-cookie-category-block-border-hover: rgba(196, 154, 92, 0.35);
  --cc-section-border: rgba(196, 154, 92, 0.15);
  --cc-cookie-table-border: rgba(196, 154, 92, 0.15);
  --cc-overlay-bg: rgba(13, 10, 7, 0.72);
}
#cc-main .cm__title,
#cc-main .pm__title,
#cc-main .pm__section-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  letter-spacing: 0.005em;
}
#cc-main .cm__btn,
#cc-main .pm__btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.45;
}
.footer-copy + .footer-copy { margin-top: 0.15rem; }

.footer-credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.4;
  margin-top: 1rem;
  transition: opacity 0.3s;
}
.footer-credit:hover { opacity: 0.75; }
.footer-credit a {
  color: var(--gold-bright);
  opacity: 0.85;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}
.footer-credit a:hover {
  color: var(--gold);
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s, box-shadow 0.4s;
}
.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.review-card:nth-child(2) { transition-delay: 0.12s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .review-card { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   HAMBURGER TOGGLE
   ═══════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 601;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   LEGAL PAGES  (Impressum, Datenschutz)
   ═══════════════════════════════════════════ */
.legal-page {
  padding: 8rem 1.5rem 6rem;
  min-height: 100vh;
  background: var(--bg-deep);
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.legal-content h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-top: 2.5rem;
  margin-bottom: 0.7rem;
}
.legal-content h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.legal-content a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-content a:hover { color: var(--gold); }
.legal-content ul, .legal-content ol {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.85;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
}
.legal-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1rem 0 2.5rem;
}

/* Legacy classes used in legal pages */
.section-gold-line { position: relative; }
.section-gold-line::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  z-index: 1;
}
.ornament {
  display: flex; align-items: center; gap: 1rem; justify-content: center; margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 140px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.ornament-sym { color: var(--gold); font-size: 0.7rem; line-height: 1; opacity: 0.5; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 960px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .aktionen-grid { gap: 0.7rem; }
}

@media (max-width: 820px) {
  .fb-feeds-grid {
    grid-template-columns: 1fr;
    gap: 3.8rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 540px) {
  .events-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .aktionen-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* Tablet & kleiner: Hamburger-Nav, damit zentrierte nav-links das Logo nicht ueberlappen */
@media (max-width: 1024px) {
  .nav-inner { padding: 0.75rem 1.2rem; }
  .nav-logo { font-size: 0.92rem; letter-spacing: 0.05em; }
  .nav-toggle { display: flex; z-index: 601; }
  .nav-phone { display: none; }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 14, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    margin: 0; padding: 0;
    z-index: 600;
    list-style: none;
    transform: none;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 768px) {
  .about-grid,
  .contact-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item:nth-child(n+4) { display: none; }

  section { padding: 4.5rem 1.2rem; }
  .hero-title { font-size: clamp(2.4rem, 13vw, 4rem); }
  .hero-ornament::before, .hero-ornament::after { width: 32px; }
  .hero-subtitle { max-width: 300px; }

  .about-text .section-eyebrow,
  .about-text .section-title { text-align: center; }
  .ornament-line { margin: 0 auto 1.8rem; }
  .about-text .body-text { text-align: center; }
  .about-details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pdf-links { flex-direction: column; align-items: center; }
  .pdf-link { min-width: 0; width: 100%; max-width: 340px; }

  .hours-day { font-size: 0.78rem; }
  .hours-time, .hours-closed { font-size: 0.78rem; }

  .legal-page { padding: 6rem 1.2rem 4rem; }
}

@media (max-width: 480px) {
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.28em; }
  .hero-subtitle br { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(n+3) { display: none; }
  .features-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .food-grid { grid-template-columns: 1fr; gap: 0.8rem; max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════
   MOBILE TYPOGRAPHY TUNING — Lesbarkeit
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .body-text { font-size: 1rem; line-height: 1.8; }
  .section-eyebrow { font-size: 0.78rem; letter-spacing: 0.26em; }
  .section-title { font-size: clamp(2rem, 7vw, 2.6rem); }

  .hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.3em; }
  .hero-subtitle { font-size: 1rem; line-height: 1.7; max-width: 320px; }

  .pdf-link-title { font-size: 1.15rem; }
  .pdf-link-sub { font-size: 0.85rem; }

  .feature-title { font-size: 1.2rem; }
  .feature-text { font-size: 1rem; line-height: 1.7; }

  .contact-item div { font-size: 1rem; line-height: 1.65; }
  .contact-item strong { font-size: 0.72rem; }

  .review-text { font-size: 1rem; line-height: 1.75; }
  .review-name { font-size: 0.95rem; }
  .reviews-count { font-size: 0.9rem; }
  .reviews-score { font-size: 1.2rem; }

  .event-title { font-size: 1.05rem; }
  .event-meta { font-size: 0.82rem; }
  .event-month { font-size: 0.66rem; }
  .event-year { font-size: 0.62rem; }

  .hours-day, .hours-time, .hours-closed { font-size: 0.92rem; }

  .hero-scroll a { font-size: 0.68rem; }
}
