/* =========================================================
   DESIGN TOKENS – Wirtshaus & Bierkultur
   ========================================================= */
:root {
  --bg-deep:        #111110;
  --bg-surface:     #1a1a18;
  --bg-elevated:    #242422;
  --bg-cream:       #f0e8d4;
  --bg-cream-soft:  #e5dcc4;
  --text-cream:     #f0e8d4;
  --text-cream-mid: #b8a98c;
  --text-cream-dim: #6e6a60;
  --text-dark:      #111110;
  --text-dark-mid:  #4a4840;
  --copper:         #c9a54b;
  --copper-bright:  #dbb86a;
  --copper-deep:    #a68530;
  --wine:           #8a4a2e;
  --line-dark:      rgba(201, 165, 75, 0.15);
  --line-cream:     rgba(17, 17, 16, 0.15);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

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

body {
  background: var(--bg-deep);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; word-break: break-all; }
a.brand-lockup, a.nav-cta, .nav-links a, .btn { word-break: normal; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
section, div, nav, footer, header { max-width: 100%; }

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

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-block;
}
.eyebrow.dark { color: var(--copper-deep); }

.headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 30;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--copper);
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-cream-mid);
  max-width: 38rem;
}
.section-intro.dark { color: var(--text-dark-mid); }

/* =========================================================
   UTILITY BAR (Öffnungszeiten, Telefon, grüner Punkt)
   ========================================================= */
.utility {
  background: #0a0a09;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.78rem;
  color: var(--text-cream-dim);
  letter-spacing: 0.04em;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-left, .utility-right {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}
.utility a { transition: color 0.2s; }
.utility a:hover { color: var(--copper); }
.open-status { display: flex; align-items: center; gap: 0.4rem; }
.dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.sep { color: var(--text-cream-dim); opacity: 0.4; }
@media (max-width: 720px) {
  .utility { font-size: 0.7rem; }
  .hours { display: none; }
  .hide-mobile { display: none; }
}

/* =========================================================
   NAVIGATION – Wirtshaus Lockup Style
   ========================================================= */

.nav {
  position: sticky; top: 0;
  z-index: 100;
  background: rgba(17, 17, 16, 0.95);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.6rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo Lockup */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-cream);
}
.brand-name .amp {
  color: var(--copper);
  font-weight: 400;
  font-family: var(--font-display);
  font-style: italic;
}
.brand-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-top: 0.15rem;
}
.brand-tagline .tl {
  flex: 1;
  height: 1px;
  background: var(--copper);
  min-width: 12px;
  opacity: 0.5;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text-cream-mid);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-cream); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--copper);
  color: var(--bg-deep);
  padding: 0.65rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--copper-bright);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-cream);
}
.menu-toggle svg { width: 24px; height: 24px; }

@media (min-width: 981px) {
  .mobile-reservierung { display: none; }
}
@media (max-width: 980px) {
  .nav-inner {
    position: relative;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: var(--gutter);
    right: var(--gutter);
    z-index: 200;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem;
    background: rgba(17, 17, 16, 0.98);
    border: 1px solid var(--line-dark);
    box-shadow: 0 18px 44px rgba(0,0,0,0.35);
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0.35rem;
  }
  .nav-links a::after { display: none; }
  .menu-toggle {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-dark);
  }
}
@media (max-width: 640px) {
  .nav-cta { display: none; }
}
@media (max-width: 520px) {
  .brand-name { font-size: 1.1rem; }
  .brand-tagline { display: none; }
  .brand-icon { width: 40px; height: 40px; max-width: 40px; max-height: 40px; }
}

/* =========================================================
   HERO – Wirtshaus & Bierkultur
   ========================================================= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #111110;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,16,0.88) 0%, rgba(17,17,16,0.55) 45%, rgba(17,17,16,0.2) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) 0;
  max-width: 48rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow .line {
  width: 48px; height: 1px;
  background: var(--copper);
}
.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 .amp {
  color: var(--copper);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-cream-mid);
  max-width: 34rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--copper);
  color: var(--bg-deep);
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 165, 75, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text-cream);
  border-color: var(--text-cream-mid);
}
.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.btn-arrow { width: 14px; height: 14px; }

.hero-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding-bottom: 2.5rem;
  z-index: 2;
}
.hero-meta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.scroll-indicator .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}
@media (max-width: 600px) {
  .hero-meta { display: none; }
  .hero { min-height: 78vh; }
}

/* =========================================================
   INTRO BAND (cream)
   ========================================================= */
.intro-band {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
}
.intro-band-inner {
  max-width: 64rem;
  text-align: center;
}
.intro-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "SOFT" 80;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  font-style: italic;
}
.intro-quote em { color: var(--copper-deep); font-style: normal; }
.intro-meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark-mid);
}
.intro-meta .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--copper-deep);
  text-transform: none;
  display: block;
  margin-bottom: 0.25rem;
}

/* Decorative wheat divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto 2.5rem;
  color: var(--copper-deep);
}
.divider .line {
  height: 1px;
  width: 40px;
  background: currentColor;
  opacity: 0.4;
}
.divider svg { width: 28px; height: 28px; opacity: 0.7; }

/* =========================================================
   MITTAGSMENÜ
   ========================================================= */
.mittag {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--bg-deep);
  position: relative;
}
.mittag-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.mittag-times {
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-cream-mid);
  border-left: 1px solid var(--line-dark);
  padding-left: 1.5rem;
}
.mittag-times strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--copper);
  display: block;
  margin-top: 0.25rem;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.day {
  background: var(--bg-surface);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 18rem;
  position: relative;
  transition: background 0.25s;
}
.day:hover { background: var(--bg-elevated); }
.day-date {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
}
.day-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-cream);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.day-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-cream-mid);
  flex: 1;
}
.day-content strong {
  color: var(--text-cream);
  font-weight: 500;
  display: block;
  margin: 0.4rem 0 0.15rem;
}
.day-allergens {
  font-size: 0.7rem;
  color: var(--text-cream-dim);
  letter-spacing: 0.1em;
}
.day-price {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--copper);
}

.day.today {
  background: linear-gradient(180deg, #242422 0%, #1a1a18 100%);
  position: relative;
  overflow: hidden;
}
.day.today::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
}
.day.today::after {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 165, 75, 0.12), transparent 70%);
  pointer-events: none;
}
.day.today .day-name { color: var(--copper); }
.day.holiday {
  background: repeating-linear-gradient(135deg, var(--bg-surface), var(--bg-surface) 10px, rgba(201,165,75,0.04) 10px, rgba(201,165,75,0.04) 20px);
  opacity: 0.7;
}
.today-badge {
  display: inline-block;
  background: var(--copper);
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .week-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .day.today { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .week-grid { grid-template-columns: 1fr; }
}

.wahlmenue {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border: 1px dashed var(--copper);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.wahlmenue-info { flex: 1; min-width: 0; }
.wahlmenue-info .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.wahlmenue-info h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.wahlmenue-info p {
  font-size: 0.9rem;
  color: var(--text-cream-mid);
}
.wahlmenue-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--copper);
}

.allergens-note {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
  color: var(--text-cream-dim);
  line-height: 1.7;
}
.allergens-note strong { color: var(--text-cream-mid); font-weight: 500; }

/* =========================================================
   EMPFEHLUNGEN
   ========================================================= */
.empfehlungen {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.empf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.empf-header h2 { color: var(--text-dark); }
.empf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-deep);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.25s;
}
.empf-link:hover { gap: 0.85rem; }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.5rem;
}
.dish {
  background: var(--bg-cream-soft);
  border: 1px solid var(--line-cream);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.dish:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.4);
}
.dish-img {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201, 165, 75, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #242422 0%, #2e2e2a 50%, #111110 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.dish-img::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(240, 232, 212, 0.04) 1px, transparent 0);
  background-size: 16px 16px;
}
.dish-img-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
  z-index: 1;
}
.dish-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.dish-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.dish-desc {
  font-size: 0.9rem;
  color: var(--text-dark-mid);
  flex: 1;
  margin-bottom: 0.5rem;
}
.dish-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-cream);
}
.dish-allergens {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dark-mid);
}
.dish-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--copper-deep);
  font-weight: 400;
}

/* =========================================================
   GESCHICHTE / Tom & Alex
   ========================================================= */
.geschichte {
  background: var(--bg-deep);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.gesch-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.gesch-image {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 165, 75, 0.2) 0%, transparent 65%),
    linear-gradient(160deg, #242422 0%, #111110 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.gesch-image::after {
  content: 'Foto: Tom & Alex';
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
}
.gesch-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(240, 232, 212, 0.05) 1px, transparent 0);
  background-size: 22px 22px;
}
.gesch-content h2 { margin-bottom: 1.5rem; }
.gesch-content p {
  color: var(--text-cream-mid);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.gesch-content p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  float: left;
  line-height: 0.9;
  margin: 0.3rem 0.7rem 0 0;
  color: var(--copper);
}
.gesch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}
.gesch-stat .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.gesch-stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
}
@media (max-width: 820px) {
  .gesch-grid { grid-template-columns: 1fr; }
  .gesch-image { max-width: 480px; aspect-ratio: 4/3; }
}

/* =========================================================
   UNSER LOKAL
   ========================================================= */
.lokal {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--bg-surface);
}
.lokal-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lokal-header .section-intro {
  margin: 0 auto;
}
.lokal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.lokal-card {
  background: var(--bg-deep);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.lokal-card:hover { background: var(--bg-elevated); }
.lokal-img {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.lokal-img.garten {
  background-color: #1c1e18;
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(120, 160, 60, 0.18) 0%, transparent 60%),
    linear-gradient(160deg, #222420 0%, #111110 100%);
}
.lokal-img.winter {
  background-color: #1e1c18;
  background-image:
    radial-gradient(ellipse at 50% 30%, rgba(201, 165, 75, 0.18) 0%, transparent 65%),
    linear-gradient(160deg, #242422 0%, #111110 100%);
}
.lokal-img.kamin {
  background-color: #1e1810;
  background-image:
    radial-gradient(ellipse at 50% 70%, rgba(180, 90, 50, 0.28) 0%, transparent 60%),
    linear-gradient(160deg, #241e18 0%, #111110 100%);
}
.lokal-img.stubn {
  background-color: #1a1612;
  background-image:
    radial-gradient(ellipse at 40% 50%, rgba(201, 165, 75, 0.15) 0%, transparent 55%),
    linear-gradient(160deg, #201a14 0%, #111110 100%);
}
.lokal-img::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(240, 232, 212, 0.05) 1px, transparent 0);
  background-size: 20px 20px;
}
.lokal-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lokal-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.lokal-body p {
  color: var(--text-cream-mid);
  font-size: 0.95rem;
  flex: 1;
}
.lokal-body .meta {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

/* =========================================================
   RESERVIERUNG
   ========================================================= */
.reserv {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 165, 75, 0.10) 0%, transparent 60%),
    var(--bg-deep);
}
.reserv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.reserv-content h2 { margin-bottom: 1.5rem; }
.reserv-content p {
  color: var(--text-cream-mid);
  margin-bottom: 1.25rem;
  max-width: 30rem;
}
.reserv-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.reserv-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-cream-mid);
}
.reserv-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}
.reserv-form {
  background: var(--bg-surface);
  border: 1px solid var(--line-dark);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.reserv-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--line-dark);
  color: var(--text-cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: 2px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.field textarea { resize: vertical; min-height: 80px; }
.reserv-form .btn-primary {
  justify-content: center;
  width: 100%;
}
.reserv { overflow: hidden; }
@media (max-width: 820px) {
  .reserv-grid { grid-template-columns: 1fr; }
  .reserv-form {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .reserv-form .full { grid-column: auto; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0a0a09;
  border-top: 1px solid var(--line-dark);
  padding: 4rem 0 1.5rem;
  color: var(--text-cream-mid);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand { margin-bottom: 1rem; color: var(--text-cream); }
.footer-brand p { max-width: 22rem; line-height: 1.6; }
.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer a:hover { color: var(--copper); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-cream-dim);
}
.socials { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.socials a:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.socials svg { width: 16px; height: 16px; }

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

/* =========================================================
   ANIMATIONS
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   UTILITY
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* =========================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================================================= */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-cream);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line-dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-cream);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  color: var(--text-cream-mid);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.legal-content a { color: var(--copper); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.legal-content a:hover { border-bottom-color: var(--copper); }
.legal-content ul {
  color: var(--text-cream-mid);
  line-height: 1.75;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li { margin-bottom: 0.3rem; }
.legal-card {
  background: var(--bg-surface);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--copper);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.25rem;
}
.legal-card p { margin-bottom: 0.6rem; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card strong { color: var(--text-cream); }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(17, 17, 16, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-dark);
  padding: 1.25rem var(--gutter);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}
.cookie-banner.show {
  display: block;
  animation: cookie-slide-up 0.4s ease forwards;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 0;
  font-size: 0.88rem;
  color: var(--text-cream-mid);
  line-height: 1.6;
}
.cookie-text a { color: var(--copper); text-decoration: underline; text-underline-offset: 2px; }
.cookie-buttons {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.65rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-accept {
  background: var(--copper);
  color: var(--bg-deep);
  border-color: var(--copper);
}
.cookie-btn-accept:hover { background: var(--copper-bright); }
.cookie-btn-decline {
  background: transparent;
  color: var(--text-cream-mid);
  border-color: var(--text-cream-dim);
}
.cookie-btn-decline:hover { border-color: var(--text-cream); color: var(--text-cream); }
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
}
/* SEO-/FAQ-Bereich: sichtbar für Gäste, klar lesbar für Suchmaschinen und KI-Systeme */
.seo-faq {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--bg-warm);
  color: var(--text-dark);
}
.seo-faq-head {
  max-width: 52rem;
  margin-bottom: 2rem;
}
.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.seo-faq-item {
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(67, 46, 25, 0.12);
  padding: 1.2rem 1.35rem;
}
.seo-faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
  color: var(--brown-deep);
}
.seo-faq-item p {
  color: var(--text-dark-soft);
  line-height: 1.65;
  font-size: 0.94rem;
}
@media (max-width: 760px) {
  .seo-faq-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   EMPFEHLUNGSKARTE
   ========================================================= */
.empfehlungen-hero {
  padding: clamp(4rem, 9vw, 6rem) 0 2rem;
  background: var(--bg-deep);
}
.empfehlungen-page,
.empfehlungen-drinks,
.empfehlungen-note {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.empfehlungen-page {
  background: var(--bg-deep);
}
.empfehlungen-drinks {
  background: var(--bg-surface);
}
.empfehlungen-note {
  background: var(--bg-deep);
  text-align: center;
}
.empfehlungen-page-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.empfehlungen-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}
.empfehlungen-card {
  background: var(--bg-surface);
  padding: clamp(1.35rem, 3vw, 2rem);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.empfehlungen-drinks .empfehlungen-card {
  background: var(--bg-deep);
}
.empfehlungen-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.12;
  margin: 0 0 0.65rem;
  color: var(--text-cream);
}
.empfehlungen-card p {
  margin: 0;
  color: var(--text-cream-mid);
  line-height: 1.6;
}
.empfehlungen-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--copper);
}
.empfehlungen-allergens {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
}
.empfehlungen-note p {
  color: var(--text-cream-mid);
  line-height: 1.7;
  margin: 0 auto 1.75rem;
}

/* =========================================================
   FOTO-POPUP / SLIDE-IN-BANNER
   ========================================================= */
.site-popup {
  position: fixed;
  right: clamp(0.9rem, 2.4vw, 1.6rem);
  bottom: clamp(0.9rem, 2.4vw, 1.6rem);
  z-index: 100050;
  width: min(var(--site-popup-width, 420px), calc(100vw - 1.8rem));
  max-width: var(--site-popup-width, 420px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 2rem));
  transition: opacity 0.32s ease, transform 0.42s cubic-bezier(.2,.9,.2,1);
}
.site-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.site-popup__box {
  position: relative;
  width: 100%;
  max-height: min(58vh, var(--site-popup-box-max-height, 496px));
  border-radius: 16px;
  padding: 0.45rem;
  background: rgba(17, 17, 16, 0.92);
  border: 1px solid rgba(201, 165, 75, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-popup__image {
  display: block;
  width: 100%;
  max-height: min(54vh, var(--site-popup-image-max-height, 454px));
  object-fit: contain;
  border-radius: 12px;
  background: #111110;
}
.site-popup__close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f5efe1;
  color: #111110;
  border: 1px solid rgba(17, 17, 16, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
}
.site-popup__close:hover,
.site-popup__close:focus-visible {
  background: var(--copper);
  outline: none;
}
@media (max-width: 560px) {
  .site-popup {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    width: auto;
    max-width: none;
    transform: translateY(calc(100% + 1.5rem));
  }
  .site-popup.is-visible {
    transform: translateY(0);
  }
  .site-popup__box {
    max-height: min(46vh, var(--site-popup-box-max-height, 400px));
    border-radius: 15px;
  }
  .site-popup__image {
    max-height: min(42vh, var(--site-popup-image-max-height, 360px));
  }
  .site-popup__close {
    top: -10px;
    right: -8px;
    width: 36px;
    height: 36px;
    font-size: 1.55rem;
  }
}
