@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("assets/fonts/open-sans-latin-400-800.woff2") format("woff2");
}

@font-face {
  font-family: "Yesteryear";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/yesteryear-v21.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --bg: #202020;
  --bg-deep: #151515;
  --panel: #272727;
  --panel-soft: #222222;
  --gold: #847348;
  --gold-soft: rgba(132, 115, 72, 0.22);
  --text: #f4f0e8;
  --muted: #b5afa3;
  --dim: #817b70;
  --line: rgba(244, 240, 232, 0.13);
  --line-strong: rgba(132, 115, 72, 0.44);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1320px;
  --header: 76px;
  --anchor-offset: 182px;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 40;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--gold);
  color: #111;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(32, 32, 32, 0.88);
  backdrop-filter: blur(18px);
}

.topbar {
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
  background: rgba(21, 21, 21, 0.72);
}

.topbar-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.topbar p {
  margin: 0;
}

.topbar span {
  color: var(--gold);
}

.topbar a {
  color: var(--gold);
}

.topbar-social a {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(132, 115, 72, 0.72);
  border-radius: 50%;
  background: rgba(132, 115, 72, 0.12);
  color: transparent;
  font-size: 0;
}

.topbar-social a::before {
  content: "f";
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(1px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 32px, var(--max));
  min-height: 108px;
  margin: 0 auto;
  gap: 8px 18px;
  padding: 12px 0 24px;
}

.brand {
  grid-column: 2;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(132px, 16vw, 174px);
  height: auto;
}

.site-nav {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(15px, 1.18vw, 17px);
  font-weight: 600;
}

.site-nav > a,
.nav-group > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 10px;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--gold-soft);
  color: var(--text);
  outline: none;
}

.nav-group {
  position: relative;
}

.nav-flyout {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-flyout::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.nav-group:hover .nav-flyout,
.nav-group:focus-within .nav-flyout {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-flyout a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 124px) 0;
  overflow: hidden;
}

main > .section + .section,
.legacy-section,
.legacy-reservation,
.legacy-contact {
  border-top: 1px solid rgba(244, 240, 232, 0.08);
}

.section.compact {
  padding: clamp(56px, 7vw, 92px) 0;
}

#oeffnungszeiten {
  background:
    radial-gradient(circle at 12% 18%, rgba(132, 115, 72, 0.14), transparent 34%),
    linear-gradient(180deg, #242424, #202020);
  padding-top: clamp(44px, 5vw, 64px);
}

#speisen {
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.64), rgba(31, 31, 31, 0.56) 48%, rgba(31, 31, 31, 0.67)),
    url("assets/images/slide-2.jpg") center / cover fixed;
}

#genussmomente {
  background:
    linear-gradient(115deg, rgba(24, 24, 24, 0.63), rgba(32, 32, 32, 0.53) 48%, rgba(24, 24, 24, 0.67)),
    url("assets/images/gallery-01.jpg") center / cover fixed;
}

#anlaesse {
  background:
    linear-gradient(90deg, rgba(32, 32, 32, 0.67), rgba(32, 32, 32, 0.5)),
    url("assets/images/gallery-10.jpg") center / cover;
}

#catering {
  background:
    linear-gradient(90deg, rgba(36, 36, 36, 0.52), rgba(36, 36, 36, 0.67)),
    url("assets/images/wp-head-image01.jpg") center / cover;
}

.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  height: 600px;
  min-height: 600px;
  max-height: 600px;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 48%, rgba(132, 115, 72, 0.32), transparent 28%),
    linear-gradient(105deg, rgba(16, 16, 16, 0.64), rgba(20, 20, 20, 0.41) 43%, rgba(12, 12, 12, 0.48)),
    url("assets/images/gallery-01.jpg") center / cover;
  transform: scale(1.02);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.eyebrow,
.card-label {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 6px;
  font-family: "Yesteryear", Georgia, "Times New Roman", serif;
  font-size: clamp(65px, 10.8vw, 139px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-wordmark {
  display: block;
  width: min(100%, clamp(230px, 30vw, 470px));
  height: auto;
  margin: 0 0 24px;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 850;
  letter-spacing: 0.02em;
}

h2 {
  margin-bottom: 16px;
  font-family: "Yesteryear", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.content-accordion > summary span,
.menu-category h3 {
  font-family: "Yesteryear", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
}

.form-lead {
  padding-top: 5px;
}

.krimi-form-head h1 {
  margin-top: 8px;
  margin-bottom: 18px;
}

.krimi-form-head .form-lead {
  padding-top: 0;
}

.hero-actions,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.chip-row a,
.now-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 16px;
  font-weight: 760;
}

.button.primary {
  background: var(--gold);
  color: #141414;
}

.button.ghost,
.chip-row a,
.now-card a {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
}

.chip-row a.chip-accent {
  position: relative;
  padding: 7px 14px 0;
  border-color: var(--line);
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.chip-row a.chip-accent::after {
  content: attr(data-tag);
  position: absolute;
  top: -8px;
  right: -7px;
  padding: 2px 7px 3px;
  border: 1px solid rgba(132, 115, 72, 0.72);
  border-radius: 999px;
  color: #141414;
  background: var(--gold);
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.button.ghost {
  background: rgba(0, 0, 0, 0.38);
}

.button.small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 14px;
}

.now-card,
.info-panel,
.text-panel,
.event-card,
.content-accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
}

.now-card {
  padding: 24px;
  border-color: rgba(132, 115, 72, 0.4);
  background:
    linear-gradient(145deg, rgba(132, 115, 72, 0.16), rgba(0, 0, 0, 0.34)),
    rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.now-card::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 22px;
  background: var(--gold);
}

.now-card h2 {
  font-size: 34px;
}

.now-card p:not(.card-label) {
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.section-head.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-head.split h2 {
  margin-bottom: 0;
}

.today-strip {
  position: sticky;
  z-index: 24;
  top: calc(var(--header) + 34px);
  border-top: 1px solid rgba(244, 240, 232, 0.09);
  border-bottom: 1px solid rgba(244, 240, 232, 0.11);
  background: rgba(21, 21, 21, 0.94);
  backdrop-filter: blur(16px);
}

.today-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 74px;
}

.today-strip a {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 18px;
  border-left: 1px solid rgba(244, 240, 232, 0.08);
}

.today-strip a:last-child {
  border-right: 1px solid rgba(244, 240, 232, 0.08);
}

.today-strip span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.today-strip strong {
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-panel,
.text-panel {
  position: relative;
  padding: clamp(22px, 2.6vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(22, 22, 22, 0.74);
  backdrop-filter: blur(6px);
}

.info-panel::before,
.text-panel::before,
.content-accordion::before,
.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.info-panel:first-child {
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(132, 115, 72, 0.16), rgba(255, 255, 255, 0.025)),
    rgba(22, 22, 22, 0.82);
}

.hours-list {
  display: grid;
  gap: 13px;
  margin: 0;
}

.hours-list div {
  display: grid;
  gap: 4px;
}

.hours-list dt {
  color: var(--gold);
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
}

.accordion-stack {
  display: grid;
  gap: 14px;
}

.content-accordion {
  position: relative;
  overflow: clip;
  border-color: rgba(244, 240, 232, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(8px);
}

.content-accordion > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.36fr) 34px;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  min-height: 74px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid transparent;
}

.content-accordion > summary::-webkit-details-marker {
  display: none;
}

.content-accordion > summary span {
  color: var(--text);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 850;
  line-height: 1.05;
}

.content-accordion > summary small {
  color: var(--dim);
  justify-self: start;
  text-align: left;
}

.content-accordion > summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
}

.content-accordion[open] > summary::after {
  content: "×";
}

.content-accordion[open] > summary {
  border-bottom-color: rgba(244, 240, 232, 0.09);
  background: rgba(0, 0, 0, 0.14);
}

.menu-categories {
  display: grid;
  gap: 16px;
  padding: 22px 22px 26px;
}

.menu-category {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(244, 240, 232, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(15, 15, 15, 0.46);
}

.menu-category summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 62px;
  margin: 0;
  padding: 16px 18px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(132, 115, 72, 0.17), rgba(255, 255, 255, 0.026)),
    rgba(34, 34, 34, 0.74);
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease, transform 180ms ease;
}

.menu-category summary::-webkit-details-marker {
  display: none;
}

.menu-category h3 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font);
  font-size: clamp(21px, 1.75vw, 27px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.1;
}

.menu-category summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(132, 115, 72, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.menu-category[open] summary::after {
  content: "×";
}

.menu-category summary > .price {
  display: none;
}

.menu-category[open] {
  border-color: rgba(132, 115, 72, 0.5);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.menu-category[open] summary {
  background:
    linear-gradient(90deg, rgba(132, 115, 72, 0.28), rgba(255, 255, 255, 0.034)),
    rgba(30, 30, 30, 0.86);
}

.menu-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}

.menu-preview span {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: rgba(244, 240, 232, 0.58);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.4;
}

.menu-preview span + span::before {
  width: 4px;
  height: 4px;
  margin: 0 9px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  opacity: 0.58;
}

.menu-category summary:hover .menu-preview span,
.menu-category[open] .menu-preview span {
  color: rgba(244, 240, 232, 0.78);
}

.menu-category summary:hover .menu-preview span + span::before,
.menu-category[open] .menu-preview span + span::before {
  opacity: 0.72;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: clamp(24px, 3vw, 36px);
  padding: 24px 18px 22px;
}

#reibeplaetzchen .dish-grid {
  padding: 16px 22px 24px;
  row-gap: 28px;
}

.dish {
  display: grid;
  gap: 3px;
  min-height: 0;
  padding: 0 0 15px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
  border-radius: 0;
  background: transparent;
}

.reibe-dish {
  padding-top: 8px;
}

.dish-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.dish h4 {
  margin: 0;
  color: #f3f0e8;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 760;
  line-height: 1.18;
}

.dish:hover h4,
.drink-item:hover strong,
.menu-line:hover strong {
  color: #fff8e8;
}

.price {
  color: var(--gold);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 760;
  white-space: nowrap;
}

.dish p {
  margin: 0;
  color: #969696;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 520;
  line-height: 1.32;
}

.dish p + p {
  color: #858585;
  font-style: italic;
  font-weight: 480;
}

.badge {
  width: max-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(132, 115, 72, 0.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.additions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 6vw, 84px);
  row-gap: 26px;
  padding: 24px 0 8px;
}

.steak-menu {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: clamp(24px, 3vw, 36px);
  padding: 24px 18px 22px;
}

.steak-main,
.steak-side {
  display: grid;
  align-content: start;
  gap: 10px;
}

.steak-main {
  grid-row: span 2;
}

.steak-side.prominent {
  grid-column: 2;
}

.steak-side h4,
.steak-main h4 {
  margin: 0 0 4px;
  color: #f3f0e8;
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 760;
  line-height: 1.14;
}

.menu-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: start;
  color: var(--text);
}

.menu-line strong {
  color: #f3f0e8;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 760;
  line-height: 1.18;
}

.menu-line span {
  color: var(--gold);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 760;
  line-height: 1.25;
  text-align: right;
}

.menu-line.multi-price span {
  color: var(--muted);
  font-weight: 650;
}

.menu-line.multi-price .price-part {
  color: var(--gold);
  font-weight: 760;
}

.additions-box {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.additions-box h4 {
  margin: 0 0 12px;
  color: #f3f0e8;
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 760;
}

.additions-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #969696;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 520;
  line-height: 1.35;
}

.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 330px;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.018)),
    rgba(20, 20, 20, 0.78);
  backdrop-filter: blur(6px);
}

.event-card.featured {
  grid-row: span 2;
  min-height: 470px;
  border-color: rgba(132, 115, 72, 0.56);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(16, 16, 16, 0.84)),
    linear-gradient(145deg, rgba(132, 115, 72, 0.3), rgba(255, 255, 255, 0.04));
}

.event-card.featured.image-variant {
  overflow: hidden;
  align-content: start;
  grid-template-rows: auto auto auto;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.17), rgba(8, 8, 8, 0.22) 45%, rgba(8, 8, 8, 0.32)),
    linear-gradient(90deg, rgba(8, 8, 8, 0.07), rgba(8, 8, 8, 0.01) 58%, rgba(8, 8, 8, 0.08)),
    url("assets/images/krimi-dinner-illustration.jpg") 48% 86% / cover no-repeat;
}

.event-card.featured.image-variant > *:not(.event-variants) {
  position: relative;
  z-index: 1;
}

.event-card.featured.image-variant .card-label,
.event-card.featured.image-variant h3,
.event-card.featured.image-variant > p {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.event-card.featured.image-variant .event-meta {
  display: grid;
  gap: 8px;
  align-self: start;
  width: 100%;
  margin-top: -4px;
  margin-bottom: 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(1px);
  color: #fff;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.event-card.featured.image-variant .event-meta span {
  display: block;
  width: 100%;
}

.event-card.featured.image-variant .event-meta strong {
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.event-card.featured.image-variant > p {
  width: 100%;
  margin-top: 0;
  margin-bottom: 86px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(1px);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.35;
}

.event-card.featured.image-variant .button {
  position: absolute;
  left: 82px;
  bottom: 42px;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  background: rgba(132, 115, 72, 0.72);
  backdrop-filter: blur(2px);
}

.event-variants {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  gap: 5px;
}

.event-variants button {
  min-width: 34px;
  min-height: 28px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
}

.event-variants button.active {
  border-color: rgba(132, 115, 72, 0.82);
  color: #141414;
  background: var(--gold);
}

.event-card.notice {
  grid-column: 1 / -1;
  min-height: 0;
  grid-template-columns: 0.52fr 0.48fr;
  align-items: center;
  gap: clamp(18px, 4vw, 54px);
  padding: clamp(22px, 3vw, 34px);
  border-color: rgba(132, 115, 72, 0.58);
  background:
    linear-gradient(135deg, rgba(132, 115, 72, 0.2), rgba(255, 255, 255, 0.035)),
    #282828;
}

.event-card.notice h3 {
  font-family: var(--font);
  color: var(--gold);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 900;
}

.event-card.notice .event-meta {
  gap: 6px;
}

.event-card.notice > p {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 760;
  line-height: 1.45;
}

.event-card h3 {
  color: var(--text);
  font-family: "Yesteryear", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
}

.event-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.event-meta strong {
  color: var(--gold);
}

.event-card p {
  color: var(--muted);
}

.event-card .button {
  align-self: end;
  justify-self: start;
}

.two-col {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
}

#anlaesse .two-col,
#catering .two-col {
  min-height: 370px;
  align-items: center;
}

#anlaesse .section-head,
#catering .section-head {
  padding: clamp(22px, 3vw, 34px) 0;
}

.panel-list {
  display: grid;
  gap: 14px;
}

#anlaesse .panel-list,
#catering .panel-list {
  max-width: 780px;
  justify-self: end;
}

.text-panel p,
.muted {
  color: var(--muted);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 22px 22px;
}

.drinks-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.drinks-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.drinks-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(42px, 7vw, 88px);
  row-gap: clamp(34px, 5vw, 64px);
  padding: 16px 22px 36px;
}

.drink-group {
  display: grid;
  align-content: start;
  gap: 18px;
}

.drink-group h3 {
  margin: 0;
  color: var(--gold);
  font-family: "Yesteryear", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
}

.drink-list {
  display: grid;
  gap: 20px;
}

.drink-item {
  display: grid;
  gap: 7px;
}

.drink-item p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 21px);
}

.form-preview {
  display: grid;
  gap: 16px;
}

.form-preview label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 720;
}

.form-preview small {
  color: var(--dim);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.form-preview input,
.form-preview select,
.form-preview textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  color-scheme: dark;
}

.form-preview select option {
  background: #181818;
  color: var(--text);
}

.form-preview select option:checked {
  background: var(--gold);
  color: #141414;
}

.form-preview input:focus,
.form-preview select:focus,
.form-preview textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.seasonal-layer {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  width: min(390px, calc(100% - 36px));
}

.seasonal-dialog {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 21, 21, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.seasonal-dialog h2 {
  margin-bottom: 10px;
  font-size: 34px;
}

.seasonal-dialog p:not(.card-label) {
  color: var(--muted);
}

.seasonal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.legacy-section {
  padding: clamp(52px, 7vw, 86px) 0 0;
  background:
    linear-gradient(rgba(32, 32, 32, 0.43), rgba(32, 32, 32, 0.67)),
    url("assets/images/slide-2.jpg") center / cover fixed;
}

.legacy-section .section-inner,
.legacy-band .section-inner,
.legacy-reservation .section-inner,
.legacy-contact .section-inner {
  width: min(100% - 80px, 1160px);
}

.legacy-title {
  padding: 18px 24px 22px;
  border: 1px solid rgba(132, 115, 72, 0.28);
  border-bottom: 0;
  background: rgba(22, 22, 22, 0.82);
  box-shadow: var(--shadow);
  text-align: center;
}

.legacy-title h2,
.legacy-reservation h2 {
  margin: 0;
  color: var(--gold);
}

.legacy-title h2 {
  font-size: clamp(38px, 5vw, 74px);
}

.legacy-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.55fr);
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(244, 240, 232, 0.1);
  background: rgba(20, 20, 20, 0.86);
  box-shadow: var(--shadow);
}

.legacy-split.reverse {
  grid-template-columns: minmax(0, 0.48fr) minmax(260px, 0.52fr);
  margin-bottom: 0;
}

.legacy-copy {
  display: grid;
  align-content: center;
  min-height: 330px;
  padding: clamp(28px, 4vw, 52px);
  text-align: center;
  color: var(--muted);
}

.legacy-copy h3 {
  margin: 0 0 18px;
  color: var(--text);
  text-transform: uppercase;
  font-size: clamp(19px, 2vw, 29px);
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.legacy-copy p {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
}

.legacy-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.legacy-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.legacy-image.portrait {
  min-height: 430px;
}

.legacy-band {
  padding: 30px 0 28px;
  background: #252525;
  text-align: center;
}

.legacy-band p {
  margin: 0 0 10px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.12;
}

.legacy-band h3 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 21px);
}

.legacy-band a,
.legacy-contact a {
  color: var(--gold);
  white-space: nowrap;
}

.legacy-gallery-section {
  padding: 54px 0 74px;
  border-top: 1px solid rgba(244, 240, 232, 0.08);
  background: #202020;
}

.legacy-gallery {
  --gallery-ratio-sum: 15.2;
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: hidden;
  background: #202020;
}

.legacy-gallery a {
  display: block;
  flex: 0 0 auto;
  overflow: visible;
  height: clamp(64px, calc((100vw - 32px) / var(--gallery-ratio-sum)), 132px);
  background: #202020;
}

.legacy-gallery img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transition: transform 180ms ease;
}

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

.gallery-layer {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  overflow: auto;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
}

.gallery-layer[hidden] {
  display: none;
}

.gallery-dialog {
  position: relative;
  width: min(100%, 980px);
  max-height: min(86vh, 760px);
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(244, 240, 232, 0.18);
  border-radius: 8px;
  background: rgba(32, 32, 32, 0.96);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.5);
}

.gallery-dialog figure {
  display: grid;
  gap: 12px;
  margin: 0;
}

.gallery-dialog img {
  display: block;
  width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
  border-radius: 6px;
  background: #151515;
}

.gallery-dialog figcaption {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.gallery-close,
.gallery-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.16);
  background: rgba(32, 32, 32, 0.9);
  color: var(--text);
  cursor: pointer;
}

.gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 29px;
  line-height: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 58px;
  transform: translateY(-50%);
  border-radius: 8px;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.legacy-reservation {
  display: grid;
  align-items: center;
  min-height: 596px;
  padding: 0;
  text-align: center;
  background:
    linear-gradient(rgba(32, 32, 32, 0.13), rgba(32, 32, 32, 0.2)),
    url("assets/images/bg-contact-03.jpg") center center / cover no-repeat;
}

.legacy-reservation .section-inner {
  padding: 34px 28px;
  background: rgba(25, 25, 25, 0.08);
}

.legacy-reservation p {
  margin: 12px auto 24px;
  max-width: 740px;
  color: var(--text);
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.5;
}

.reservation-phone {
  min-height: 58px;
  gap: 12px;
  padding: 0 30px 0 18px;
  border-radius: 20px;
  background: var(--gold);
  font-size: clamp(31px, 2.9vw, 42px);
  font-weight: 850;
  letter-spacing: 0;
}

.reservation-phone.button.primary {
  color: #fff;
}

.reservation-phone > span:last-child {
  color: #fff;
  font-size: clamp(30px, 2.72vw, 40px) !important;
  line-height: 1;
  font-weight: 900;
}

.reservation-phone-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  transform: translateX(-24px);
  margin-right: -12px;
}

.reservation-phone-icon svg {
  width: 31px !important;
  height: 31px !important;
  fill: currentColor;
}

.legacy-contact {
  padding: 0 0 34px;
  background: #202020;
}

.legacy-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 28px;
}

.legacy-map {
  display: block;
  background: #f4f1eb;
}

.legacy-map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.legacy-contact address {
  padding: 28px;
  background: rgba(25, 25, 25, 0.78);
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.legacy-contact address h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(32px, 2.7vw, 46px);
  line-height: 1;
}

.footer-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 2.2vw, 30px);
  bottom: clamp(16px, 2.2vw, 30px);
  z-index: 70;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 50%;
  background: rgba(132, 115, 72, 0.92);
  color: #111;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.legal-page {
  min-height: 70vh;
  background: #202020;
}

.legal-content {
  display: grid;
  max-width: 940px;
  gap: 14px;
}

.legal-content h1 {
  margin: 0;
  color: var(--text);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.legal-content p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--gold);
  font-weight: 800;
}

.legal-content h2 {
  margin: 28px 0 2px;
  color: var(--gold);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 850;
  line-height: 1.2;
}

.legal-list-item {
  padding-left: 16px;
}

@media (max-width: 1020px) {
  :root {
    --anchor-offset: calc(var(--header) + 74px);
  }

  .topbar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    min-height: var(--header);
    padding: 8px 0;
  }

  .brand {
    grid-column: 2;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: none;
    max-height: calc(100vh - var(--header));
    overflow: auto;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(21, 21, 21, 0.98);
  }

  body.menu-open .site-nav {
    display: grid;
    justify-content: stretch;
  }

  .site-nav > a,
  .nav-group > a {
    min-height: 50px;
    padding: 0 12px;
    font-size: 17px;
  }

  .nav-flyout {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 10px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group:focus-within .nav-flyout,
  .nav-group:hover .nav-flyout {
    display: grid;
  }

  .hero-grid,
  .hours-grid,
  .event-grid,
  .two-col,
  .legacy-split,
  .legacy-split.reverse,
  .legacy-contact-grid {
    grid-template-columns: 1fr;
  }

  .today-strip {
    top: var(--header);
  }

  .today-strip .section-inner {
    width: 100%;
  }

  .today-strip-inner {
    display: flex;
    min-height: 68px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .today-strip-inner::-webkit-scrollbar {
    display: none;
  }

  .today-strip a {
    flex: 0 0 152px;
    padding: 10px 14px;
  }

  .event-card.notice {
    grid-template-columns: 1fr;
  }

  .section-head.split {
    display: grid;
  }

  .additions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --header: 68px;
  }

  .header-inner,
  .section-inner {
    width: min(100% - 24px, var(--max));
  }

  .legacy-section .section-inner,
  .legacy-band .section-inner,
  .legacy-reservation .section-inner,
  .legacy-contact .section-inner {
    width: min(100% - 24px, 1160px);
  }

  .brand-logo {
    width: 104px;
  }

  .hero {
    height: auto;
    min-height: 560px;
    max-height: none;
  }

  .hero-copy,
  .now-card {
    min-width: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .hero-actions .button {
    flex: none;
    width: 100%;
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    text-align: center;
  }

  .lead,
  .now-card p,
  .seasonal-dialog p {
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 70px;
  }

  .lead {
    max-width: 340px;
    font-size: 20px;
  }

  .now-card {
    padding: 18px;
  }

  .now-card p:not(.card-label) {
    max-width: 300px;
  }

  .seasonal-layer {
    right: 12px;
    left: 12px;
    width: auto;
  }

  .seasonal-dialog {
    padding: 20px;
  }

  .seasonal-dialog p:not(.card-label) {
    max-width: 250px;
  }

  .legacy-gallery-section {
    padding: 42px 0 58px;
  }

  .gallery-dialog {
    padding: 12px;
  }

  .gallery-dialog img {
    max-height: 62vh;
  }

  .gallery-nav {
    width: 40px;
    height: 50px;
    font-size: 36px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .chip-row {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .chip-row a {
    flex: 1 1 auto;
    min-width: min(100%, 150px);
  }

  .content-accordion > summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: start;
  }

  .content-accordion > summary small {
    display: block;
    grid-column: 1;
    margin-top: 4px;
  }

  .dish-grid,
  .additions-grid,
  .steak-menu,
  .drinks-menu,
  .drinks-grid {
    grid-template-columns: 1fr;
  }

  .dish-top {
    display: grid;
  }

  .price {
    white-space: normal;
  }

  .event-card {
    min-height: 0;
  }

  #speisen,
  #genussmomente,
  .legacy-section {
    background-attachment: scroll;
  }

  .legacy-section {
    padding-top: 52px;
  }

  .footer-inner {
    display: grid;
    justify-content: start;
    padding: 20px 0;
  }
}
