/* ==========================================================================
   Gasthaus Landeplatzl — Warmes Wirtshaus-Editorial
   ========================================================================== */

:root {
  --paper:       #f7ead2;
  --paper-deep:  #efdcbd;
  --card:        #fdf6e7;
  --ink:         #2c2318;
  --ink-soft:    #6b5a45;
  --green:       #234630;
  --green-deep:  #142b1c;
  --green-soft:  #e6e9d5;
  --red:         #b53c26;
  --red-deep:    #8f2c1a;
  --amber:       #cf8534;
  --gold:        #a97c26;
  --line:        #e0cca6;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Nunito Sans", "Segoe UI", sans-serif;
  --font-hand:    "Caveat", cursive;

  --shadow-soft: 0 10px 30px -12px rgba(88, 52, 20, .26);
  --shadow-lift: 0 24px 50px -20px rgba(88, 52, 20, .40);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

/* warmer Lichtschein, der die Seite durchflutet (fixiert, ohne teures fixed-Attachment) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 60% at 50% -12%, #fdf1d8 0%, rgba(253,241,216,0) 55%),
    radial-gradient(85% 55% at 100% 28%, rgba(207,133,52,.13) 0%, rgba(207,133,52,0) 60%),
    radial-gradient(80% 50% at 0% 78%, rgba(181,60,38,.07) 0%, rgba(181,60,38,0) 55%);
}

/* feines Papierkorn über allem */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 560; line-height: 1.12; }

a { color: var(--green); }

::selection { background: var(--amber); color: #fff; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* --------------------------------------------------------------------------
   Karo-Muster (rot-weiß, wie das Tischtuch)
   -------------------------------------------------------------------------- */
.karo-band {
  height: 12px;
  background:
    repeating-linear-gradient(90deg, rgba(178,59,42,.55) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(0deg,  rgba(178,59,42,.55) 0 12px, transparent 12px 24px),
    #fdfaf2;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 240, 225, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(43,38,32,.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  max-width: 1220px;
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 620;
  font-size: 1.45rem;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand svg { width: 30px; height: 30px; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.brand:hover svg { transform: translateY(-3px) rotate(-4deg); }
.main-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .92rem;
  padding: 8px 13px;
  border-radius: 99px;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .2s;
}
/* animierter Unterstrich (nicht bei der Reservieren-Pille) */
.main-nav a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.main-nav a:not(.nav-call):hover { color: var(--green); transform: translateY(-1px); }
.main-nav a:not(.nav-call):hover::after { transform: scaleX(1); }
.nav-call {
  background: var(--red);
  color: #fff !important;
  box-shadow: var(--shadow-soft);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-call:hover { background: var(--red-deep) !important; color: #fff !important; transform: translateY(-2px); box-shadow: var(--shadow-lift); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/hero.jpg") center 40% / cover no-repeat;
  transform: scale(1.06);
  will-change: transform;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 78% 8%, rgba(207,133,52,.28) 0%, rgba(207,133,52,0) 55%),
    linear-gradient(180deg, rgba(30,33,20,.42) 0%, rgba(28,30,18,.16) 34%, rgba(40,24,12,.82) 100%);
}
.hero-content {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 140px 24px 110px;
}
/* gestaffelter Auftritt beim Laden */
.hero-content > * {
  opacity: 0;
  animation: heroIn .9s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-kicker        { animation-delay: .15s; }
.hero h1            { animation-delay: .32s; }
.hero-sub           { animation-delay: .5s; }
.hero-actions       { animation-delay: .66s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-kicker {
  font-family: var(--font-hand);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #ffd9a0;
  display: inline-block;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  transform-origin: left center;
  animation: heroIn .9s cubic-bezier(.2,.7,.2,1) .15s forwards,
             kickerSway 5s ease-in-out 1.2s infinite;
}
@keyframes kickerSway {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1deg); }
}
.hero h1 {
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  font-weight: 640;
  letter-spacing: -.015em;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
  margin-bottom: 18px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: #ffd9a0;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 46ch;
  margin-bottom: 30px;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 99px;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s, background .22s;
}
.btn svg { width: 19px; height: 19px; transition: transform .3s ease; }
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(.99); }
/* Telefon-Icon „klingelt" beim Hover */
.btn:hover svg { animation: ring .5s ease; transform-origin: 50% 60%; }
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  20%      { transform: rotate(-14deg); }
  40%      { transform: rotate(11deg); }
  60%      { transform: rotate(-7deg); }
  80%      { transform: rotate(4deg); }
}
.btn-red   { background: var(--red); color: #fff; box-shadow: var(--shadow-lift); }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--shadow-soft); }
.btn-green:hover { background: var(--green-deep); }

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: .95rem;
  padding: 10px 18px;
  border-radius: 99px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.status-chip .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #3da35d;
  box-shadow: 0 0 0 0 rgba(61,163,93,.5);
  animation: pulse 2s infinite;
}
.status-chip.closed .dot { background: #c94f3d; animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,163,93,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(61,163,93,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,163,93,0); }
}

/* Scroll-Indikator */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 78px;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: heroIn .9s ease .9s forwards, cueBob 2.4s ease-in-out 1.8s infinite;
}
.scroll-cue .mouse {
  display: block;
  width: 27px; height: 44px;
  border: 2.5px solid rgba(255,255,255,.8);
  border-radius: 16px;
  position: relative;
}
.scroll-cue .wheel {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: #ffd9a0;
  border-radius: 3px;
  animation: wheelDrop 2.4s ease-in-out infinite;
}
@keyframes cueBob   { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }
@keyframes wheelDrop{ 0%,100% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 60% { opacity: 1; transform: translateY(13px); } }
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* geschwungener Übergang unten */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  color: var(--paper);
}
.hero-wave svg { width: 100%; height: 100%; display: block; }

/* --------------------------------------------------------------------------
   Abschnitte allgemein
   -------------------------------------------------------------------------- */
section { padding: 90px 0; }

.section-kicker {
  font-family: var(--font-hand);
  font-size: 1.7rem;
  color: var(--red);
  transform: rotate(-1.2deg);
  display: inline-block;
  margin-bottom: 4px;
}
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.section-lead { max-width: 62ch; color: var(--ink-soft); font-size: 1.08rem; }

/* Einblendungen */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
/* gestaffelte Einblendung zusammengehöriger Karten */
.hl-grid .reveal:nth-child(2)  { transition-delay: .08s; }
.hl-grid .reveal:nth-child(3)  { transition-delay: .16s; }
.hl-grid .reveal:nth-child(4)  { transition-delay: .08s; }
.hl-grid .reveal:nth-child(5)  { transition-delay: .16s; }
.hl-grid .reveal:nth-child(6)  { transition-delay: .24s; }
.section-kicker.reveal   { transition-delay: 0s; }
.section-title.reveal    { transition-delay: .07s; }
.section-lead.reveal     { transition-delay: .14s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-content > *, .hero-kicker { opacity: 1; animation: none; }
  *, *::before, *::after { animation: none !important; }
}

/* --------------------------------------------------------------------------
   Über uns
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  transform: rotate(-1.4deg);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 130px; height: 130px;
  border-radius: 16px;
  transform: rotate(3deg);
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(178,59,42,.45) 0 14px, transparent 14px 28px),
    repeating-linear-gradient(0deg,  rgba(178,59,42,.45) 0 14px, transparent 14px 28px),
    #fff;
}
.about-note {
  position: absolute;
  bottom: -26px;
  right: 8px;
  font-family: var(--font-hand);
  font-size: 1.65rem;
  color: var(--green);
  background: var(--card);
  padding: 8px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  animation: noteFloat 6s ease-in-out infinite;
}
@keyframes noteFloat {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-1.5deg) translateY(-7px); }
}
.about-photo img { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.about-photo:hover img { transform: rotate(-0.4deg) scale(1.015); }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1.5px solid var(--line);
  padding: 9px 16px;
  border-radius: 99px;
  font-weight: 800;
  font-size: .92rem;
  color: var(--green);
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s, border-color .22s;
}
.badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--amber); }
.badge svg { width: 17px; height: 17px; color: var(--amber); transition: transform .35s ease; }
.badge:hover svg { transform: scale(1.2) rotate(-6deg); }

/* --------------------------------------------------------------------------
   Highlights
   -------------------------------------------------------------------------- */
.highlights { background: var(--paper-deep); position: relative; }
.hl-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
  margin-top: 46px;
}
.hl-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.hl-card:hover { transform: translateY(-6px) rotate(-.3deg); box-shadow: var(--shadow-lift); }
.hl-card.big   { grid-column: span 7; }
.hl-card.small { grid-column: span 5; }
.hl-card.third { grid-column: span 4; }
.hl-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.hl-card.third .hl-photo { aspect-ratio: 4 / 3; }
.hl-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hl-card:hover .hl-photo img { transform: scale(1.05); }
.hl-price {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 1.02rem;
  padding: 7px 15px;
  border-radius: 99px;
  transform: rotate(2.5deg);
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.45);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.hl-card:hover .hl-price { transform: rotate(-3deg) scale(1.08); }
.hl-body { padding: 22px 24px 26px; }
.hl-body h3 { font-size: 1.45rem; color: var(--green); margin-bottom: 6px; }
.hl-body p { color: var(--ink-soft); font-size: .98rem; }

/* Märchenteller-Karte */
.hl-card.maerchen {
  background: var(--green);
  color: #f2ead8;
  justify-content: center;
  padding: 34px 30px;
  overflow: visible;
}
.hl-card.maerchen h3 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 10px;
}
.hl-card.maerchen .hand { font-family: var(--font-hand); font-size: 1.6rem; color: #ffd9a0; display: block; transform: rotate(-1.5deg); margin-bottom: 4px; }
.hl-card.maerchen p { color: #d8dfcc; font-size: .97rem; }
.hl-card.maerchen ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.hl-card.maerchen li { display: flex; justify-content: space-between; gap: 12px; font-weight: 700; font-size: .98rem; }
.hl-card.maerchen li span:last-child { color: #ffd9a0; white-space: nowrap; }

/* --------------------------------------------------------------------------
   Mittagsmenü
   -------------------------------------------------------------------------- */
.lunch-panel {
  margin-top: 46px;
  background: var(--green);
  color: #f2ead8;
  border-radius: 26px;
  padding: 48px 50px;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.lunch-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(255,217,160,.4);
  border-radius: 18px;
  pointer-events: none;
}
.lunch-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 22px; margin-bottom: 26px; }
.lunch-head h3 { font-size: 2rem; color: #fff; }
.lunch-head .zeitraum { font-family: var(--font-hand); font-size: 1.5rem; color: #ffd9a0; }
.lunch-days { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.lunch-day {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  padding: 20px 22px;
}
.lunch-day h4 { color: #ffd9a0; font-size: 1.2rem; margin-bottom: 8px; }
.lunch-day ul { list-style: none; }
.lunch-day li { padding: 2px 0; font-size: .98rem; }
.lunch-day .preis { margin-top: 10px; font-weight: 900; font-size: 1.15rem; color: #fff; }
.lunch-day .tag-hinweis { font-size: .85rem; color: #ffd9a0; margin-top: 6px; font-style: italic; }
.lunch-foot { margin-top: 24px; font-size: .92rem; color: #cfd8c3; }

/* --------------------------------------------------------------------------
   Speisekarte
   -------------------------------------------------------------------------- */
.menu-cats { margin-top: 46px; display: grid; gap: 14px; }
details.menu-cat {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s;
}
details.menu-cat[open] { box-shadow: var(--shadow-soft); }
details.menu-cat summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  user-select: none;
}
details.menu-cat summary::-webkit-details-marker { display: none; }
details.menu-cat summary::after {
  content: "";
  margin-left: auto;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--amber);
  border-bottom: 2.5px solid var(--amber);
  transform: rotate(45deg);
  transition: transform .3s;
  flex-shrink: 0;
}
details.menu-cat[open] summary::after { transform: rotate(-135deg); }
details.menu-cat summary:hover { background: var(--paper); }
details.menu-cat summary:hover::after { transform: rotate(45deg) translate(2px, 2px); }
details.menu-cat[open] summary:hover::after { transform: rotate(-135deg) translate(-2px, -2px); }
details.menu-cat summary { transition: background .2s; }
details.menu-cat summary .cat-count { transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
details.menu-cat summary:hover .cat-count { transform: scale(1.12); }
.cat-count {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 800;
  color: var(--ink-soft);
  background: var(--paper-deep);
  padding: 3px 11px;
  border-radius: 99px;
}
.cat-inner { padding: 4px 26px 26px; }
.cat-hinweis {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--red);
  margin-bottom: 14px;
}
.menu-item { padding: 11px 12px; margin: 0 -12px; border-bottom: 1px dashed var(--line); border-radius: 10px; transition: background .2s ease, transform .2s ease; }
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: var(--paper); transform: translateX(4px); }
.mi-row { display: flex; align-items: baseline; gap: 8px; }
.mi-name { font-weight: 800; font-size: 1.02rem; }
.mi-allerg { font-size: .72rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; white-space: nowrap; }
.mi-dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); min-width: 24px; }
.mi-price { font-weight: 900; color: var(--green); white-space: nowrap; }
.mi-price .var-label { font-weight: 700; color: var(--ink-soft); font-size: .85rem; }
.mi-desc { color: var(--ink-soft); font-size: .92rem; margin-top: 2px; max-width: 68ch; }
.mi-prices-multi { display: flex; gap: 18px; flex-wrap: wrap; white-space: nowrap; }

.allergen-note {
  margin-top: 26px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.allergen-note details { display: inline; }
.allergen-note summary { cursor: pointer; font-weight: 800; color: var(--green); display: inline; }
.allergen-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.allergen-list span {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: .82rem;
}
.allergen-list b { color: var(--gold); }

.menu-fallback {
  margin-top: 40px;
  background: var(--card);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Feiern & Feste
   -------------------------------------------------------------------------- */
.feiern {
  position: relative;
  color: #fff;
  padding: 130px 0;
  isolation: isolate;
}
.feiern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/gastgarten.jpg") center / cover no-repeat fixed;
}
@media (max-width: 900px) { .feiern::before { background-attachment: scroll; } }
.feiern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(18,41,29,.85) 15%, rgba(18,41,29,.45) 70%, rgba(18,41,29,.25));
}
.feiern .section-kicker { color: #ffd9a0; }
.feiern .section-title { color: #fff; }
.feiern .section-lead { color: #e8e3d3; }
.feiern .btn { margin-top: 28px; }

/* --------------------------------------------------------------------------
   Kontakt / Öffnungszeiten
   -------------------------------------------------------------------------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 46px;
  align-items: start;
}
.card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px;
  box-shadow: var(--shadow-soft);
}
.card h3 {
  font-size: 1.55rem;
  color: var(--green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card h3 svg { width: 24px; height: 24px; color: var(--amber); flex-shrink: 0; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; vertical-align: top; border-bottom: 1px dashed var(--line); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 800; width: 42%; padding-right: 10px; }
.hours-table .ruhetag td { color: var(--red); }
.hours-table tr.today td { color: var(--green); }
.hours-table tr.today td:first-child::after {
  content: "heute";
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--red);
  margin-left: 8px;
}
.hours-sub { display: block; font-size: .84rem; color: var(--ink-soft); font-weight: 400; }
.hours-note { margin-top: 16px; font-size: .9rem; color: var(--ink-soft); }
.hours-note b { color: var(--red); }
.season-chip {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  font-size: .88rem;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; transition: transform .2s ease; }
.contact-list li:hover { transform: translateX(4px); }
.contact-list svg { width: 21px; height: 21px; color: var(--amber); flex-shrink: 0; margin-top: 3px; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.contact-list li:hover svg { transform: scale(1.18); }
.contact-list a { font-weight: 800; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list .muted { color: var(--ink-soft); font-size: .93rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-deep);
  color: #cfd8c3;
  padding: 60px 0 40px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h4 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.site-footer .brandline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: #fff;
}
.site-footer .hand { font-family: var(--font-hand); font-size: 1.45rem; color: #ffd9a0; }
.site-footer a { color: #e8e3d3; }
.site-footer ul { list-style: none; display: grid; gap: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: .84rem;
  color: #9fb094;
}
.footer-bottom details summary { cursor: pointer; }
.footer-bottom .credits { max-width: 640px; margin-top: 10px; line-height: 1.8; }
.footer-bottom .credits a { color: #cfd8c3; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hl-card.big, .hl-card.small, .hl-card.third { grid-column: span 6; }
}
@media (max-width: 760px) {
  section { padding: 64px 0; }
  .header-inner { flex-wrap: wrap; gap: 6px; padding: 10px 16px; }
  .brand { font-size: 1.25rem; }
  .main-nav { margin-left: 0; width: 100%; }
  .hero-content { padding: 150px 24px 90px; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-grid .about-photo { order: -1; }
  .hl-grid { grid-template-columns: 1fr; gap: 22px; }
  .hl-card.big, .hl-card.small, .hl-card.third { grid-column: auto; }
  .lunch-panel { padding: 36px 26px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .card { padding: 28px 24px; }
  .mi-row { flex-wrap: wrap; }
  .mi-dots { min-width: 12px; }
}
