:root {
  color-scheme: dark;
  --ink: #0b0d0c;
  --surface: #111512;
  --surface-raised: #181d19;
  --paper: #f5f0e5;
  --muted: #b8b5aa;
  --gold: #e8a92f;
  --gold-light: #ffd97a;
  --green: #153f2c;
  --line: rgba(245, 240, 229, 0.14);
  --shell: min(1180px, calc(100vw - 40px));
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle at 10% 20%, rgba(232,169,47,.12), transparent 22%), radial-gradient(circle at 88% 60%, rgba(21,63,44,.28), transparent 30%);
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(76px, 9vw, 130px); }
.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;
}
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; background: var(--gold); color: #111; padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(4,5,4,.72), transparent);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; justify-self: start; }
.brand-mark {
  display: grid; place-items: center; width: 44px; aspect-ratio: 1; border: 1px solid var(--gold);
  border-radius: 50%; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.6rem;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.brand-copy small { margin-top: 6px; color: #d3d0c6; font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { position: relative; font-size: .88rem; font-weight: 650; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gold); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-call { justify-self: end; padding: 11px 18px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; font-size: .85rem; font-weight: 700; text-decoration: none; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: min(900px, 100svh); display: grid; align-items: center; overflow: hidden; isolation: isolate; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 54%; z-index: -3; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(5,7,5,.94) 0%, rgba(5,7,5,.72) 34%, rgba(5,7,5,.18) 70%), linear-gradient(0deg, rgba(5,7,5,.86), transparent 35%); }
.hero-content { padding-block: 150px 190px; }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: .78rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; line-height: .95; }
h1 { max-width: 820px; font-size: clamp(3.7rem, 9.2vw, 8.3rem); }
h1 em { color: var(--gold-light); font-weight: inherit; }
h2 { font-size: clamp(2.65rem, 5vw, 5.25rem); }
h3 { margin: 0; font-size: 1.35rem; }
.hero-text { max-width: 560px; margin: 30px 0 0; color: #dedbd1; font-size: clamp(1.05rem, 1.8vw, 1.32rem); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; text-decoration: none; transition: transform .2s ease, background-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #17130b; }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.35); background: rgba(11,13,12,.36); backdrop-filter: blur(12px); }
.hero-facts { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: repeat(3, 1fr); padding-inline: max(24px, calc((100vw - 1180px) / 2)); border-top: 1px solid rgba(255,255,255,.18); background: rgba(9,11,9,.72); backdrop-filter: blur(14px); }
.hero-facts div { padding: 24px 26px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-facts div:first-child { padding-left: 0; }
.hero-facts div:last-child { border-right: 0; }
.hero-facts span, .hero-facts strong { display: block; }
.hero-facts span { color: var(--gold-light); font-size: .7rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.hero-facts strong { margin-top: 4px; font-size: .95rem; }

.menu-intro { display: grid; grid-template-columns: .8fr 1.35fr; align-items: start; gap: clamp(50px, 8vw, 110px); }
.section-heading p:last-child { max-width: 500px; margin: 30px 0 0; color: var(--muted); }
.food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.food-card { position: relative; min-height: 280px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-raised); }
.food-card-large { grid-row: span 2; min-height: 578px; }
.food-card img { width: 100%; height: 100%; object-fit: cover; }
.food-card::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(6,8,6,.92)); pointer-events: none; }
.food-card-copy { position: absolute; inset: auto 22px 20px; z-index: 2; display: flex; gap: 15px; align-items: flex-start; }
.food-card-copy > span { color: var(--gold); font-weight: 800; }
.food-card-copy p { margin: 3px 0 0; color: #c9c6bd; font-size: .9rem; line-height: 1.35; }
.bbq-card { display: grid; place-items: center; background: radial-gradient(circle at 70% 20%, #245c41 0%, #143825 28%, #111512 70%); }
.bbq-card::before { content: ""; position: absolute; width: 230px; height: 230px; border: 1px solid rgba(232,169,47,.24); border-radius: 50%; }
.bbq-monogram { color: var(--gold-light); font-family: Georgia, serif; font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -.06em; }

.bbq-story { border-block: 1px solid var(--line); background: #101410; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 10vw, 150px); align-items: start; }
.story-copy { padding-top: 8px; color: #cfcbc1; font-size: 1.08rem; }
.story-copy p { margin: 0 0 24px; }
.story-copy .note { padding-left: 18px; border-left: 2px solid var(--gold); color: var(--muted); font-size: .92rem; }

.event-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 10vw, 150px); align-items: center; }
.event-price { display: grid; place-content: center; aspect-ratio: 1; border: 1px solid rgba(232,169,47,.34); border-radius: 50%; background: radial-gradient(circle, rgba(232,169,47,.14), transparent 64%); text-align: center; }
.event-price span { color: var(--muted); font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; }
.event-price strong { color: var(--gold-light); font-family: Georgia, serif; font-size: clamp(3.6rem, 8vw, 7.3rem); line-height: 1; }
.event-copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: var(--muted); }

.contact-section { background: var(--green); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 150px); align-items: center; }
address { margin-top: 30px; color: #dfddd5; font-style: normal; font-size: 1.15rem; }
.hours-card { padding: clamp(26px, 4vw, 46px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); background: rgba(6,18,12,.28); }
.hours-card h3 { margin-bottom: 18px; font-family: Georgia, serif; font-size: 1.7rem; font-weight: 400; }
.hours-card dl { margin: 0; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 24px; padding-block: 13px; border-top: 1px solid rgba(255,255,255,.13); }
.hours-card dt { color: #d6d9d3; }
.hours-card dd { margin: 0; font-weight: 700; text-align: right; }

.site-footer { padding-block: 32px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-inner p { max-width: 550px; margin: 0; color: #96978f; font-size: .82rem; text-align: right; }

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

@media (max-width: 300px) {
  .site-header { position: absolute; grid-template-columns: 1fr auto; padding-inline: 20px; }
  .header-call { display: none; }
  .menu-toggle { display: grid; width: 46px; height: 46px; place-content: center; gap: 5px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(5,7,5,.45); color: white; }
  .menu-toggle span:not(.sr-only) { width: 19px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { display: none; position: absolute; top: 88px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: rgba(11,13,12,.97); box-shadow: 0 18px 60px rgba(0,0,0,.4); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 12px; }
  .hero { min-height: 860px; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,7,5,.9), rgba(5,7,5,.3)), linear-gradient(0deg, rgba(5,7,5,.96), transparent 60%); }
  .hero-content { align-self: end; padding-block: 170px 230px; }
  .hero-facts { grid-template-columns: 1fr; padding: 12px 20px; }
  .hero-facts div, .hero-facts div:first-child { padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-facts div:last-child { border-bottom: 0; }
  .menu-intro, .event-section, .split, .contact-grid { grid-template-columns: 1fr; }
  .menu-intro { align-items: start; }
  .section-heading { max-width: 650px; }
  .event-price { width: min(340px, 80vw); margin-inline: auto; }
}

@media (max-width: 590px) {
  :root { --shell: min(100% - 28px, 1180px); --radius: 19px; }
  .site-header { padding-top: 18px; }
  .brand-copy small { display: none; }
  .hero { min-height: 820px; }
  .hero-image { object-position: 58% 50%; }
  .hero-shade { background: linear-gradient(180deg, rgba(5,7,5,.2) 20%, rgba(5,7,5,.96) 74%); }
  .hero-content { padding-bottom: 225px; }
  h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card-large {
  min-height: 420px;
  grid-row: auto;
}

.food-card {
  min-height: 300px;
}
  .event-copy .button, .contact-actions .button { width: 100%; }
  .hours-card dl div { display: grid; gap: 2px; }
  .hours-card dd { text-align: left; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
.bbq-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
}
/* Klickfläche über der gesamten Karte */
.video-open {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.video-open span {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 1rem;
}

.video-open:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}

/* Großes Videofenster */
#video-dialog {
  width: min(1000px, 94vw);
  max-width: 94vw;
  max-height: 94dvh;
  padding: 16px;
  border: 1px solid #444;
  border-radius: 16px;
  background: #111;
  color: white;
}

#video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

#large-video {
  display: block;
  width: 100%;
  max-height: 78dvh;
  background: black;
}

.video-close {
  display: block;
  margin: 0 0 12px auto;
  padding: 10px 16px;
  border: 1px solid #666;
  border-radius: 8px;
  background: #222;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}
/* Bilder und Videos innerhalb ihrer Karten zentrieren */
.food-card img,
.food-card video,
.photo-item img {
  object-position: center center;
}
.bbq-card {
  position: relative;
  overflow: hidden;
}

.hero-slideshow video.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: black;
}
/* Anklickbare Fotokarten */
.gallery-card {
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card img {
  transition: transform 0.3s ease;
}

.gallery-card .food-card-copy {
  pointer-events: none;
}

.gallery-card .food-card-copy > span:last-child {
  display: grid;
  gap: 3px;
}

.gallery-card .food-card-copy strong {
  font-size: 1.35rem;
}

.gallery-card .food-card-copy > span:last-child > span {
  color: #c9c6bd;
  font-size: 0.9rem;
}

/* Nur der Mauszeiger ändert sich – das Food-Grid bleibt gleich groß */
.food-grid .food-card:not(.bbq-card) {
  cursor: zoom-in;
}

/* Galerie über der Seite */
#food-gallery {
  width: min(1100px, 94vw);
  max-width: 94vw;
  max-height: 94dvh;
  padding: 16px;
  border: 1px solid #555;
  border-radius: 16px;
  background: #111512;
  color: white;
}

#food-gallery::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

#food-gallery-image {
  display: block;
  width: 100%;
  height: min(68dvh, 700px);
  object-fit: contain;
  background: #080a08;
}

.food-gallery-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
}

.food-gallery-info h3,
.food-gallery-info p {
  margin: 0;
}

.food-gallery-info p {
  color: #c9c6bd;
}

.food-gallery-buttons {
  display: flex;
  gap: 8px;
}

#food-gallery button {
  padding: 10px 14px;
  border: 1px solid #777;
  border-radius: 8px;
  background: #222;
  color: white;
  font: inherit;
  cursor: pointer;
}

#food-gallery-close {
  display: block;
  margin: 0 0 12px auto;
}

@media (max-width: 590px) {
  .food-gallery-info {
    display: block;
  }

  .food-gallery-buttons {
    margin-top: 16px;
  }
}
/* Reservierungsformular */
.reservation-section { background: #111912; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.reservation-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 90px); align-items: start; }
.reservation-intro > p:not(.eyebrow) { color: var(--muted); }
.reservation-intro a { color: var(--gold-light); font-weight: 700; }
.reservation-hours { margin: 28px 0; }
.reservation-hours > div { display: flex; justify-content: space-between; gap: 12px; padding-block: 9px; border-bottom: 1px solid var(--line); }
.reservation-hours dd { margin: 0; text-align: right; }
.reservation-form { display: grid; gap: 19px; padding: clamp(20px, 3vw, 36px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-raised); min-width: 0; }
.reservation-field { display: grid; align-content: start; gap: 7px; min-width: 0; }
.reservation-field label { font-weight: 700; }
.reservation-field label > span:not(.reservation-optional) { color: var(--gold); }
.reservation-optional { font-weight: 400; color: var(--muted); }
.reservation-field input, .reservation-field select { width: 100%; min-width: 0; min-height: 50px; padding: 11px 12px; border: 1px solid #72786f; border-radius: 9px; background: #f9f8f4; color: #182018; font: inherit; color-scheme: light; }
.reservation-field input:focus-visible, .reservation-field select:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.reservation-field select:disabled { opacity: .6; }
.reservation-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reservation-status, .reservation-note { margin: 0; font-size: .875rem; line-height: 1.55; }
.reservation-status { color: var(--gold-light); }
.reservation-note, .reservation-field small, .reservation-service { color: var(--muted); }
.reservation-form .button { justify-self: start; cursor: pointer; font: inherit; font-weight: 750; }
.reservation-form .button:disabled { opacity: .5; cursor: not-allowed; transform: none; }
@media (max-width: 820px) { .reservation-layout { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .reservation-fields { grid-template-columns: 1fr; } .reservation-form .button { width: 100%; } }
