/* ==========================================================================
   Zum Alten Bauhof — Design Tokens
   ========================================================================== */

:root {
  /* colors */
  --color-charcoal: #1A1410;
  --color-charcoal-soft: #241C16;
  --color-charcoal-line: rgba(245, 237, 224, 0.12);
  --color-cream: #F5EDE0;
  --color-cream-soft: #ECE0CC;
  --color-cream-line: rgba(26, 20, 16, 0.1);
  --color-terracotta: #C8763A;
  --color-terracotta-dark: #A85F2C;
  --color-olive: #7A8B5C;
  --color-olive-dark: #5F6E45;
  --color-gold: #E8C468;
  --color-gold-dark: #D4A93F;

  /* type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-fast: 160ms;
  --dur-base: 240ms;
  --dur-reveal: 640ms;

  /* layout */
  --header-h: 76px;
  --container-w: 1200px;
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body, h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; }

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2.5rem; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-gold);
  color: var(--color-charcoal);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ==========================================================================
   Shared kickers / headings
   ========================================================================== */

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
  margin-bottom: 0.9rem;
}
.kicker--light { color: var(--color-gold); }

.section-heading {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem);
  max-width: 22ch;
  margin-bottom: 1.25rem;
}
.section-heading--light { color: var(--color-cream); }

/* Plain functional label — no poetic line needed, just states what the section is */
.section-heading--label {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 1.9rem);
  max-width: none;
  margin-bottom: 0;
}

/* Headings whose wording is a full sentence rather than a short headline */
.section-heading--wide {
  max-width: 34ch;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.5rem);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-charcoal);
}
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover { background: var(--color-gold-dark); box-shadow: 0 8px 24px -8px rgba(232, 196, 104, 0.55); }
}

.btn--outline-light {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(245, 237, 224, 0.45);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-light:hover { border-color: var(--color-cream); background: rgba(245, 237, 224, 0.08); }
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid rgba(26, 20, 16, 0.3);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-dark:hover { border-color: var(--color-charcoal); background: rgba(26, 20, 16, 0.05); }
}

.btn--call {
  background: var(--color-gold);
  color: var(--color-charcoal);
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
}
@media (hover: hover) and (pointer: fine) {
  .btn--call:hover { background: var(--color-gold-dark); }
}

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.header.is-solid {
  background: rgba(26, 20, 16, 0.97);
  border-bottom-color: var(--color-charcoal-line);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.header__logo { justify-self: start; }
.header__nav { justify-self: center; }
.header__actions { justify-self: end; }

.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-img {
  height: 168px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .header__logo-img { height: 132px; }
}

.header__nav { display: none; }
@media (min-width: 1024px) {
  .header__nav { display: block; }
  .header__nav ul { display: flex; gap: 2.1rem; }
  .header__nav a {
    color: var(--color-cream);
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
  }
  .header__nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 1.5px;
    background: var(--color-gold);
    transition: right var(--dur-base) var(--ease-out);
  }
  @media (hover: hover) and (pointer: fine) {
    .header__nav a:hover::after { right: 0; }
  }
}

.header__actions { display: flex; align-items: center; gap: 0.9rem; }
.header__call-text { display: none; }
@media (min-width: 480px) {
  .header__call-text { display: inline; }
}
@media (min-width: 1024px) {
  .header__call-text { display: inline; }
}

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
}
.header__toggle span {
  width: 22px;
  height: 1.6px;
  background: var(--color-cream);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

@media (min-width: 1024px) {
  .header__toggle { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--color-charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 2rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.mobile-nav[data-state="open"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.mobile-nav a { color: var(--color-cream); font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; }
.mobile-nav__call { align-self: flex-start; margin-bottom: 0.75rem; font-size: 0.82rem !important; padding: 0.6rem 1.1rem !important; }
.mobile-nav__meta { color: rgba(245, 237, 224, 0.6); font-size: 0.8rem; }

@media (min-width: 1024px) {
  .mobile-nav { display: none; }
}

body.nav-open { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-charcoal);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video, .hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}
.hero__fallback { z-index: 0; }
.hero__video {
  z-index: 1;
  opacity: 0;
  transition: opacity 1.1s var(--ease-in-out);
}
.hero__video--active { opacity: 1; }
.hero__media.video-failed .hero__video { display: none; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.35) 38%, rgba(26,20,16,0.82) 100%),
    linear-gradient(90deg, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.05) 45%, rgba(26,20,16,0.05) 55%, rgba(26,20,16,0.55) 100%);
}

.hero__embers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero__embers span {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 6px 1px rgba(232, 196, 104, 0.8);
  opacity: 0;
  animation: ember-rise 7s ease-in infinite;
}
.hero__embers span:nth-child(1) { left: 8%;  animation-delay: 0s;   animation-duration: 8s; }
.hero__embers span:nth-child(2) { left: 18%; animation-delay: 1.2s; animation-duration: 6.5s; width: 3px; height: 3px; }
.hero__embers span:nth-child(3) { left: 30%; animation-delay: 2.4s; animation-duration: 9s; }
.hero__embers span:nth-child(4) { left: 45%; animation-delay: 0.6s; animation-duration: 7.5s; width: 3px; height: 3px; }
.hero__embers span:nth-child(5) { left: 58%; animation-delay: 3s;   animation-duration: 6.8s; }
.hero__embers span:nth-child(6) { left: 67%; animation-delay: 1.8s; animation-duration: 8.4s; width: 3px; height: 3px; }
.hero__embers span:nth-child(7) { left: 76%; animation-delay: 4s;   animation-duration: 7s; }
.hero__embers span:nth-child(8) { left: 84%; animation-delay: 2.6s; animation-duration: 9.2s; width: 3px; height: 3px; }
.hero__embers span:nth-child(9) { left: 92%; animation-delay: 0.9s; animation-duration: 6.6s; }
.hero__embers span:nth-child(10){ left: 38%; animation-delay: 5s;   animation-duration: 8.8s; width: 3px; height: 3px; }

@keyframes ember-rise {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  10%  { opacity: 0.9; }
  70%  { opacity: 0.5; }
  100% { transform: translate(14px, -92vh) scale(0.4); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 3;
  color: var(--color-cream);
  padding-top: var(--header-h);
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .hero__content { padding-bottom: 5rem; }
}

.hero__kicker {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.4rem;
}

.hero__title {
  font-size: clamp(3rem, 2.2rem + 6.5vw, 7rem);
  letter-spacing: -0.015em;
}
@media (max-width: 400px) {
  .hero__title { font-size: 2.65rem; }
}

.hero__claim {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1rem + 1vw, 1.6rem);
  color: var(--color-cream-soft);
  margin-top: 1.1rem;
  margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

.hero__trust {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1.7rem;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.75);
  text-decoration: none;
}
.hero__trust strong { color: var(--color-cream); font-weight: 700; }
.hero__trust-stars { color: var(--color-gold); font-size: 0.8rem; letter-spacing: 0.05em; }
@media (hover: hover) and (pointer: fine) {
  .hero__trust:hover { color: var(--color-cream); }
}

.hero__meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.6);
  letter-spacing: 0.01em;
}

.open-status { position: relative; padding-left: 1.05rem; }
.open-status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(245, 237, 224, 0.3);
}
.open-status--open::before {
  background: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(122, 139, 92, 0.28);
}
.open-status--closed::before { background: var(--color-terracotta); }

/* ==========================================================================
   Reveal animations
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

.offers__grid [data-reveal]:nth-child(1) { transition-delay: 0ms; }
.offers__grid [data-reveal]:nth-child(2) { transition-delay: 70ms; }
.offers__grid [data-reveal]:nth-child(3) { transition-delay: 140ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { transform: none; transition: opacity var(--dur-reveal) ease; }
  .hero__embers { animation: none; display: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ==========================================================================
   Intro
   ========================================================================== */

.intro { padding: 5rem 0; background: var(--color-cream); }
.intro__inner {
  max-width: 1080px;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) {
  .intro__inner { grid-template-columns: 1.15fr 1fr; gap: 3.5rem; }
}
.intro__heading { font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.5rem); margin-bottom: 1.4rem; }
.intro__text { font-size: 1.08rem; color: rgba(26, 20, 16, 0.78); }

/* Hochformat-Rahmen, fertig für ein echtes Foto: aspect-ratio reserviert den Platz
   schon jetzt (kein Layout-Sprung), object-fit:cover sorgt für saubere Bildausschnitte
   in jedem Seitenverhältnis. Sobald ein Foto da ist: <img class="intro__media-photo">
   anstelle von Icon+Text in dieses Element setzen, dashed Border + Icon/Caption entfernen. */
.intro__media-placeholder {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1.5px dashed rgba(122, 139, 92, 0.5);
  border-radius: 18px;
  background: linear-gradient(165deg, var(--color-cream-soft) 0%, rgba(200, 118, 58, 0.08) 100%);
  box-shadow: 0 20px 45px -24px rgba(26, 20, 16, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  max-width: 320px;
  margin-inline: auto;
}
.intro__media-placeholder svg { width: 38px; height: 38px; color: var(--color-olive); }
.intro__media-placeholder p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(26, 20, 16, 0.5);
  max-width: 16ch;
}
.intro__media-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Echter Inhalt statt Platzhalter: durchgehender statt gestrichelter Rahmen, Video füllt die Box */
.intro__media-placeholder--video {
  border-style: solid;
  padding: 0;
  max-width: 360px;
}
.intro__media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ==========================================================================
   Tagesangebote
   ========================================================================== */

.offers {
  padding: 6rem 0 7rem;
  background: var(--color-charcoal);
  color: var(--color-cream);
}
.offers__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  /* Alle drei Karten exakt gleich groß. Mittwoch hebt sich nur über die Rahmenfarbe ab, nicht über Größe. */
  .offers__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.offer-card {
  background: var(--color-charcoal-soft);
  border: 1px solid var(--color-charcoal-line);
  border-radius: 18px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.offer-card__img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-out);
}
.offer-card__body {
  padding: 2.2rem 1.9rem;
  flex: 1;
}
@media (hover: hover) and (pointer: fine) {
  .offer-card:hover .offer-card__img { transform: scale(1.04); }
}
.offer-card--today {
  border-color: rgba(200, 118, 58, 0.35);
}
.offer-card--today::before {
  content: "Heute";
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  background: var(--color-terracotta);
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  z-index: 3;
}
@media (hover: hover) and (pointer: fine) {
  .offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -18px rgba(0, 0, 0, 0.4);
  }
}

.offer-card__day {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 0.9rem;
}
.offer-card__title {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--color-gold);
}

.offer-card__items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-charcoal-line);
}
.offer-card__items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.85);
}
.offer-card__items li span:last-child {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-terracotta);
  font-variant-numeric: tabular-nums;
}

.offer-card__footnote {
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.7);
  line-height: 1.45;
}

/* ==========================================================================
   Speisekarte
   ========================================================================== */

.menu { padding: 6rem 0 5rem; background: var(--color-cream); }
.menu__intro { text-align: center; }
.menu__intro .section-heading { margin-inline: auto; }
.menu__note { color: rgba(26, 20, 16, 0.7); margin-bottom: 0; max-width: 56ch; margin-inline: auto; }
.menu__note a { color: var(--color-terracotta-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(200, 118, 58, 0.4); }

.menu__nav {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-cream-line);
  margin-top: 2.5rem;
}
/* Fade-Hinweis am rechten Rand: zeigt an, dass auf Mobile weitere Kategorien folgen */
.menu__nav::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 1px;
  width: 48px;
  background: linear-gradient(to right, transparent, var(--color-cream) 75%);
  pointer-events: none;
}
.menu__nav ul {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 1rem 1.5rem;
  scrollbar-width: none;
}
.menu__nav ul::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .menu__nav ul { padding: 1rem 2.5rem; } }

.menu__nav a {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-charcoal);
  background: var(--color-cream-soft);
  border: 1px solid transparent;
  transition: background-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .menu__nav a:hover { background: rgba(200, 118, 58, 0.18); }
}
.menu__nav a.is-active {
  background: var(--color-terracotta);
  color: var(--color-cream);
  transform: scale(1.06);
}

.menu-category {
  padding-top: 3.5rem;
  scroll-margin-top: calc(var(--header-h) + 64px);
}
.menu-category__img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .menu-category__img { height: 160px; }
}
.menu-category__title {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--color-terracotta);
  display: inline-block;
}
.menu-category__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(26, 20, 16, 0.5);
  margin-left: 0.6rem;
}
.menu-category__note {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(26, 20, 16, 0.6);
  margin-bottom: 1.4rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.05rem 0.75rem;
  margin-inline: -0.75rem;
  border-radius: 8px;
  border-bottom: 1px solid var(--color-cream-line);
  transition: background-color var(--dur-base) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .menu-item:hover { background-color: rgba(200, 118, 58, 0.07); }
  .menu-item:hover .menu-item__price { color: var(--color-terracotta); }
}
.menu-item__info { max-width: 78%; }
.menu-item__name { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; }
.menu-item__desc { font-size: 0.9rem; color: rgba(26, 20, 16, 0.62); margin-top: 0.25rem; }
.menu-item__price {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-terracotta-dark);
  white-space: nowrap;
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
  transition: color var(--dur-base) var(--ease-out);
}

/* ==========================================================================
   Events
   ========================================================================== */

.events { position: relative; padding: 5.5rem 0; background: var(--color-charcoal); color: var(--color-cream); overflow: hidden; }
.events__media { position: absolute; inset: 0; z-index: 0; }
.events__video { width: 100%; height: 100%; object-fit: cover; }
.events__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(26,20,16,0.68) 0%, rgba(26,20,16,0.5) 45%, rgba(26,20,16,0.72) 100%);
}
.events__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  /* Karte links, Text rechts — bewusst umgekehrte Reihenfolge zur Kontakt-Section weiter unten */
  .events__inner { grid-template-columns: 0.9fr 1.1fr; }
}
.events__text p { color: rgba(245, 237, 224, 0.78); font-size: 1.05rem; margin-bottom: 1.6rem; max-width: 46ch; }
.events__text .kicker--light,
.events__text .section-heading--light,
.events__text p { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45); }

.events__card {
  position: relative;
  background: linear-gradient(155deg, #2B2118 0%, var(--color-charcoal-soft) 50%, #1D1611 100%);
  border: 1px solid rgba(200, 118, 58, 0.2);
  border-radius: 30px 18px 30px 18px;
  padding: 2.4rem 2.2rem;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(245, 237, 224, 0.07),
    inset 0 0 70px rgba(200, 118, 58, 0.05),
    0 20px 36px -24px rgba(0, 0, 0, 0.6);
}
/* Feines Korn statt flacher Fläche — dezente Tiefe, kein Glow im Abstand */
.events__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.events__card-figure {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2.2rem + 2vw, 3.4rem);
  line-height: 1;
  color: var(--color-gold);
}
.events__card-caption {
  position: relative;
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.7);
  margin-top: 0.5rem;
  margin-bottom: 2.2rem;
}
.events__card-label {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 0.7rem;
}
.events__card-occasions {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245, 237, 224, 0.85);
}

/* ==========================================================================
   Lieferservice
   ========================================================================== */

.delivery {
  padding: 6rem 0;
  background: var(--color-terracotta);
  color: var(--color-charcoal);
  text-align: center;
}
.delivery__inner { max-width: 720px; margin-inline: auto; }
.delivery .kicker--light { color: var(--color-charcoal); opacity: 0.7; }
.delivery .section-heading--light { color: var(--color-charcoal); }
.delivery__text {
  font-size: 1.08rem;
  margin-bottom: 2.5rem;
  color: rgba(26, 20, 16, 0.85);
}

.delivery__facts {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 700px) {
  /* Das Liefergebiet braucht mehr Platz für vier Ortsnamen, statt künstlich gleich breit zu sein */
  .delivery__facts { grid-template-columns: 1fr 1fr 2fr; }
}
.delivery__facts li {
  background: rgba(245, 237, 224, 0.25);
  border-radius: 14px;
  padding: 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
}
.delivery__facts strong { font-family: var(--font-display); font-size: 1.3rem; }
.delivery__facts span { font-size: 0.85rem; opacity: 0.75; }

.delivery__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1rem + 3vw, 3.2rem);
  color: var(--color-charcoal);
  background: var(--color-cream);
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  white-space: nowrap;
  max-width: 100%;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.delivery__phone svg { width: 0.85em; height: 0.85em; }
.delivery__phone:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .delivery__phone:hover { box-shadow: 0 12px 30px -10px rgba(26, 20, 16, 0.45); }
}
.delivery__hint { margin-top: 1.4rem; font-size: 0.92rem; opacity: 0.75; }

/* ==========================================================================
   Bewertungen
   ========================================================================== */

.reviews { padding: 5.5rem 0; background: var(--color-charcoal); color: var(--color-cream); text-align: center; }
.reviews__intro { display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem; }

.reviews__score { display: flex; align-items: baseline; gap: 1rem; }
.reviews__score-figure {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2.4rem + 2.5vw, 4.2rem);
  color: var(--color-gold);
  line-height: 1;
}
.reviews__score-meta { text-align: left; }
.reviews__stars { color: var(--color-gold); font-size: 1.1rem; letter-spacing: 0.1em; }
.reviews__score-meta p { font-size: 0.92rem; color: rgba(245, 237, 224, 0.65); margin-top: 0.3rem; }

/* 3-column layout via real <table>/<td> — proven to render reliably where grid/flex did not */
.reviews__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1.5rem 0;
  margin-bottom: 2.75rem;
}
.reviews__table td {
  width: 33.333%;
  vertical-align: top;
  padding: 0;
  text-align: left;
}

@media (max-width: 767px) {
  .reviews__table, .reviews__table tbody, .reviews__table tr, .reviews__table td {
    display: block;
    width: 100%;
  }
  .reviews__table td { margin-bottom: 1.5rem; }
}

.review-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(245, 237, 224, 0.5);
  border-radius: 18px;
  padding: 1.75rem;
  text-align: left;
}
.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.9);
  margin: 0 0 1.4rem;
  text-align: left;
}
.review-card__name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-cream);
  margin: 0 0 0.2rem;
  text-align: left;
}
.review-card__source {
  display: block;
  font-size: 0.77rem;
  color: rgba(245, 237, 224, 0.45);
  text-align: left;
}

.reviews__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.75rem;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
  background: var(--color-charcoal-soft);
  border-bottom: 1px solid var(--color-charcoal-line);
  padding: 2.5rem 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
}
.trust-bar__figure {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.trust-bar__label {
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.6);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Instagram
   ========================================================================== */
.instagram {
  padding: 5.5rem 0;
  background: var(--color-cream-soft);
}
.instagram__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.instagram__head .section-heading { text-align: center; margin-inline: auto; }
.instagram__handle {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.instagram__handle a {
  color: var(--color-terracotta-dark);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .instagram__handle a:hover { text-decoration: underline; }
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
}
.instagram__item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}
.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .instagram__item:hover img { transform: scale(1.06); }
}
.instagram__cta { display: block; width: fit-content; margin: 0 auto; }

/* ==========================================================================
   Kontakt
   ========================================================================== */

.faq { padding: 5.5rem 0; background: var(--color-cream-soft); }
.faq__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.faq__inner .section-heading { margin-inline: auto; }
.faq__list { text-align: left; margin-top: 2.3rem; }
.faq__item {
  border-bottom: 1px solid var(--color-cream-line);
  padding: 1.1rem 0;
}
.faq__item:first-of-type { border-top: 1px solid var(--color-cream-line); }
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-terracotta-dark);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 0.8rem;
  color: rgba(26, 20, 16, 0.75);
  font-size: 0.95rem;
  max-width: 58ch;
}
.faq__item a { color: var(--color-terracotta-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(200, 118, 58, 0.4); }

.contact { padding: 6rem 0; background: var(--color-cream); }
.contact__grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
}

.contact__list { display: flex; flex-direction: column; gap: 1.6rem; margin-bottom: 2.2rem; }
.contact__list dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
  margin-bottom: 0.35rem;
}
.contact__list dd { font-size: 1.05rem; }
.contact__phone { font-weight: 700; font-size: 1.3rem; color: var(--color-terracotta-dark); }

.contact__hours { font-size: 1rem; }
.contact__hours th { text-align: left; font-weight: 500; padding-right: 1.5rem; padding-bottom: 0.3rem; }
.contact__hours td { text-align: left; padding-bottom: 0.3rem; }

.contact__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.contact__map { border-radius: 16px; overflow: hidden; min-height: 340px; background: var(--color-cream-soft); }
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--color-charcoal); color: var(--color-cream); padding: 4.5rem 0 0; }
.footer__inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-charcoal-line);
}
@media (min-width: 768px) {
  /* Zwei Zonen statt drei gleich breiter Spalten: Marke breiter links, Rest kompakt rechts */
  .footer__inner { grid-template-columns: 1.6fr 1fr; }
}
.footer__brand { display: flex; gap: 1.1rem; align-items: flex-start; max-width: 40ch; }
.footer__mark { height: 180px; width: auto; flex-shrink: 0; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.5rem; }
.footer__brand-desc { font-size: 0.9rem; color: rgba(245, 237, 224, 0.6); line-height: 1.5; }

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer__right { align-items: flex-end; text-align: right; }
}

.footer__nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; }
@media (min-width: 768px) { .footer__nav { justify-content: flex-end; } }
.footer__nav a { font-size: 0.92rem; color: rgba(245, 237, 224, 0.75); }
@media (hover: hover) and (pointer: fine) {
  .footer__nav a:hover { color: var(--color-gold); }
}

.footer__meta { font-size: 0.88rem; color: rgba(245, 237, 224, 0.55); display: flex; flex-direction: column; gap: 0.4rem; }
.footer__meta a { color: rgba(245, 237, 224, 0.8); }
.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
  color: rgba(245, 237, 224, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
}
@media (hover: hover) and (pointer: fine) {
  .footer__instagram:hover { color: var(--color-gold); }
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 1.4rem;
  padding: 1.6rem 0 2rem;
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.5);
  text-align: center;
}
@media (max-width: 1023px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 6rem;
  }
}
.footer__legal { display: flex; gap: 1.3rem; }
.footer__credit--brand {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.3);
}
.footer__credit--brand a { color: rgba(245, 237, 224, 0.4); text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
  .footer__credit--brand a:hover { color: var(--color-gold); }
}
@media (hover: hover) and (pointer: fine) {
  .footer__legal a:hover { color: var(--color-cream); }
}

/* ==========================================================================
   Mobile sticky call bar
   ========================================================================== */

.mobile-callbar {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 80;
  display: flex;
  gap: 0.6rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.mobile-callbar.is-visible { transform: translateY(0); opacity: 1; }

.mobile-callbar__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-weight: 700;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.4);
}
.mobile-callbar__call svg { width: 1.15em; height: 1.15em; }
.mobile-callbar__call:active { transform: scale(0.97); }

.mobile-callbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  background: var(--color-charcoal);
  color: var(--color-cream);
  border-radius: 999px;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.4);
}
.mobile-callbar__menu svg { width: 1.2em; height: 1.2em; }
.mobile-callbar__menu:active { transform: scale(0.97); }

@media (min-width: 1024px) {
  .mobile-callbar { display: none; }
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 7, 5, 0.78);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity 0.35s var(--ease-out);
}
.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  background: var(--color-charcoal-soft);
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 22px;
  padding: 2.5rem 2.25rem 2rem;
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 32px 64px -16px rgba(0,0,0,0.7);
}
.cookie-banner__text {
  font-size: 0.92rem;
  color: rgba(245, 237, 224, 0.72);
  line-height: 1.65;
  text-align: center;
}
.cookie-banner__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-cream);
  margin-bottom: 0.6rem;
}
.cookie-banner__text a { color: var(--color-gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-direction: column; gap: 0.65rem; }
.cookie-banner__accept,
.cookie-banner__decline {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s, background 0.2s;
}
.cookie-banner__accept { background: var(--color-gold); color: var(--color-charcoal); }
.cookie-banner__decline { background: transparent; color: rgba(245,237,224,0.5); border: 1px solid rgba(245,237,224,0.2); }
.cookie-banner__accept:hover { opacity: 0.88; }
.cookie-banner__decline:hover { color: var(--color-cream); border-color: rgba(245,237,224,0.45); }

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 320px;
  background: rgba(26,20,16,0.06);
  border-radius: 16px;
  border: 1px solid rgba(26,20,16,0.12);
  text-align: center;
  color: rgba(26,20,16,0.55);
  font-size: 0.9rem;
}
