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

:root {
  color-scheme: dark;
  --bg: #4b2d1f;
  --tile-frame-bg:
    var(--grain-texture),
    radial-gradient(circle at 18% 8%, rgba(190, 126, 74, 0.22), transparent 34%),
    radial-gradient(circle at 80% 78%, rgba(30, 18, 13, 0.48), transparent 42%),
    linear-gradient(145deg, rgba(99, 62, 40, 0.96), rgba(45, 28, 20, 0.98));
  --surface: rgba(244, 226, 197, 0.82);
  --surface-strong: rgba(226, 197, 158, 0.92);
  --text: #352417;
  --muted: #6d553f;
  --primary: #8f5a35;
  --primary-dark: #4b2d1f;
  --terracotta: #9a623c;
  --terracotta-dark: #3a2116;
  --border: rgba(83, 48, 24, 0.18);
  --chrome-edge: rgba(255, 247, 231, 0.62);
  --red-glow: rgba(122, 73, 40, 0.42);
  --terracotta-glow: rgba(122, 73, 40, 0.34);
  --fire-background: url("assets/fire-background.webp");
  --grain-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 0.3'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  --shadow: 0 24px 55px rgba(80, 50, 24, 0.22);
  --shadow-hover: 0 28px 70px rgba(80, 50, 24, 0.3);

  --page-width: 1240px;
  --content-radius: clamp(22px, 4vw, 32px);
  --logo-radius: clamp(14px, 2vw, 18px);

  --sidebar-width: clamp(250px, 25vw, 300px);
  --nav-image-size: clamp(64px, 7vw, 92px);
  --page-padding-x: clamp(14px, 4vw, 40px);
  --page-padding-y: clamp(18px, 4vw, 36px);
  --section-padding: clamp(26px, 5vw, 60px);
  --card-title-size: clamp(32px, 6vw, 60px);
  --card-title-max-width: 760px;
  --card-body-size: clamp(16px, 2vw, 19px);
  --card-copy-max-width: 760px;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background: transparent;
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(45, 26, 17, 0.22) 0%, rgba(34, 18, 11, 0.1) 38%, rgba(22, 10, 6, 0.2) 100%),
    var(--fire-background) center bottom / cover no-repeat,
    var(--bg);
}

.background-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    var(--grain-texture),
    linear-gradient(180deg, rgba(70, 40, 24, 0.16), rgba(20, 9, 5, 0.22));
  background-position: 0 0, center;
  background-size: 140px 140px, auto;
  background-repeat: repeat, no-repeat;
  opacity: 0.42;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.1s;
}

.skip-link:focus {
  top: 16px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page {
  position: relative;
  z-index: 1;
  width: min(var(--page-width), calc(100% - var(--page-padding-x) * 2));
  min-height: 100vh;
  margin: 0 auto;
  padding: var(--page-padding-y) 0;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 36px);
}

.header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: clamp(142px, 18vw, 212px);
  aspect-ratio: 1;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo:focus-visible,
.nav-link:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(122, 73, 40, 0.5);
  outline-offset: 4px;
}

.mobile-menu {
  display: contents;
}

.menu-toggle {
  display: none;
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    var(--grain-texture),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(145, 92, 48, 0.1)),
    var(--surface);
  box-shadow: var(--shadow);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: -55% -18%;
  z-index: 0;
  background:
    var(--grain-texture),
    radial-gradient(circle at 24% 36%, rgba(211, 128, 76, 0.42), transparent 30%),
    radial-gradient(circle at 74% 60%, rgba(135, 74, 37, 0.26), transparent 34%),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0;
  transform: translateX(-22%) rotate(8deg);
  transition: opacity 0.22s ease, transform 0.34s ease;
}

.menu-toggle > * {
  position: relative;
  z-index: 1;
}

.menu-toggle:hover,
.mobile-menu.open .menu-toggle {
  border-color: rgba(122, 73, 40, 0.7);
  background-color: rgba(122, 73, 40, 0.2);
  box-shadow: 0 0 22px rgba(126, 83, 54, 0.28), 0 20px 42px rgba(80, 50, 24, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  color: #fffaf2;
}

.menu-toggle:hover::before,
.mobile-menu.open .menu-toggle::before {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.menu-toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle-icon::before {
  top: 7px;
}

.menu-toggle-icon::after {
  top: 15px;
}

.mobile-menu.open .menu-toggle-icon::before {
  top: 11px;
  transform: rotate(45deg);
}

.mobile-menu.open .menu-toggle-icon::after {
  top: 11px;
  transform: rotate(-45deg);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  padding-top: clamp(0px, 1vw, 14px);
}

.nav-link {
  --nav-fire-size: clamp(46px, 4.2vw, 52px);
  --nav-fire-reserve: clamp(44px, 3.7vw, 50px);
  --nav-text-pad-y: clamp(12px, 1.5vw, 16px);
  --nav-text-pad-x: clamp(14px, 2vw, 18px);
  display: grid;
  grid-template-columns: var(--nav-image-size) minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
}

.nav-icon {
  width: var(--nav-image-size);
  height: var(--nav-image-size);
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.nav-icon::after {
  content: none;
}

.nav-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  color: transparent;
  font-size: 0;
}

.nav-text {
  min-width: 0;
  padding: var(--nav-text-pad-y) calc(var(--nav-text-pad-x) + var(--nav-fire-reserve)) var(--nav-text-pad-y) var(--nav-text-pad-x);
  border-radius: 14px;
  background:
    var(--grain-texture),
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(139, 84, 39, 0.1)),
    rgba(255, 248, 235, 0.72);
  border: 1px solid var(--border);
  font-size: clamp(11.5px, 1.1vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 var(--chrome-edge), 0 12px 24px rgba(80, 50, 24, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav-text::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    var(--grain-texture),
    radial-gradient(circle at 22% 36%, rgba(188, 124, 73, 0.46), transparent 31%),
    radial-gradient(circle at 72% 58%, rgba(123, 47, 34, 0.58), transparent 35%),
    linear-gradient(105deg, rgba(80, 45, 27, 0.58), rgba(143, 90, 52, 0.48), rgba(190, 126, 74, 0.34), rgba(80, 45, 27, 0.54));
  opacity: 0;
  transform: translateX(-16%) rotate(3deg);
  transition: opacity 0.22s ease, transform 0.34s ease;
}

.nav-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: var(--nav-fire-size);
  height: calc(100% + 24px);
  z-index: 1;
  background: url("assets/fire-button.webp") left bottom / auto 118% no-repeat;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(190, 126, 74, 0.46));
  transform: translate(6px, -50%) scale(0.96);
  transform-origin: right center;
  transition: opacity 0.2s ease, transform 0.24s ease;
  pointer-events: none;
}

.nav-text {
  isolation: isolate;
}

.nav-label {
  position: relative;
  z-index: 2;
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-link[data-page="reservierung"] {
  --nav-fire-reserve: clamp(36px, 3.2vw, 44px);
}

.nav-link[data-page="reservierung"] .nav-text {
  font-size: clamp(11.2px, 1vw, 12px);
}

.nav-link[data-page="reservierung"] .nav-label {
  overflow: visible;
  text-overflow: clip;
}

.nav-text::before,
.nav-text::after {
  pointer-events: none;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
  transform: scale(1.04);
  box-shadow: 0 12px 24px rgba(80, 50, 24, 0.2);
}

.nav-link:hover .nav-text,
.nav-link.active .nav-text {
  border-color: rgba(143, 90, 52, 0.82);
  color: #fff6e8;
  background-color: rgba(122, 73, 40, 0.42);
  box-shadow: 0 0 24px var(--terracotta-glow), inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 30px rgba(80, 50, 24, 0.28);
  transform: translateX(4px);
}

.nav-link:hover .nav-text::before,
.nav-link.active .nav-text::before {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.nav-link:hover .nav-text::after,
.nav-link.active .nav-text::after {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.content {
  min-width: 0;
  height: clamp(500px, calc(100vh - 160px), 680px);
  min-height: 0;
  background: var(--tile-frame-bg);
  border: 1px solid rgba(214, 165, 104, 0.32);
  border-radius: var(--content-radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 207, 0.18),
    inset 0 0 0 1px rgba(58, 34, 22, 0.34),
    0 24px 54px rgba(35, 20, 13, 0.34);
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 18px;
  backdrop-filter: blur(10px);
}

.content.content-home {
  min-height: 0;
}

.content.content-menu {
  min-height: 0;
}

.content.content-order {
  min-height: 0;
}

.content.content-contact {
  min-height: 0;
}

.content.content-reservation {
  min-height: 0;
}

.section {
  display: none;
  animation: fade 0.25s ease;
}

.section.active {
  display: block;
}

.content > .section.active:not(.home-section):not(.menu-section):not(.order-section):not(.contact-section):not(.reservation-section):not(.about-section) {
  height: 100%;
  overflow: auto;
  border-radius: var(--content-radius);
  padding: var(--section-padding);
  background: var(--tile-frame-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 207, 0.14),
    inset 0 0 0 1px rgba(214, 165, 104, 0.18),
    0 16px 34px rgba(27, 16, 10, 0.24);
}

.content > .centered-copy-section.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.centered-copy-section p {
  margin-right: auto;
  margin-left: auto;
}

.section h1,
.section h2 {
  font-family: "Denk One", Inter, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: var(--card-title-size);
  line-height: 1.05;
  letter-spacing: 0;
  max-width: var(--card-title-max-width);
  margin: 0 auto clamp(14px, 2vw, 20px);
  text-align: center;
  color: #fff2dd;
}

.section p {
  max-width: var(--card-copy-max-width);
  color: rgba(255, 238, 207, 0.82);
  font-size: var(--card-body-size);
  line-height: 1.7;
  margin: 0 auto clamp(22px, 3vw, 30px);
  text-align: center;
}

.inline-page-link {
  color: #ffe1a8;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.inline-page-link:hover {
  color: #fff7e9;
}

.inline-page-link:focus-visible {
  outline: 3px solid rgba(190, 126, 74, 0.55);
  outline-offset: 3px;
}

.about-section {
  height: 100%;
}

.about-scroll {
  color: rgba(255, 238, 207, 0.88);
}

.about-panel {
  min-height: 100%;
  padding: clamp(22px, 4vw, 46px);
  text-align: center;
}

.about-panel p {
  max-width: 760px;
}

.about-panel .opening-hours {
  margin: clamp(24px, 3vw, 36px) auto 0;
}

.menu-section {
  height: 100%;
}

.menu-scroll {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: var(--content-radius);
  background:
    var(--grain-texture),
    radial-gradient(circle at 20% 0%, rgba(169, 103, 58, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(72, 44, 29, 0.98), rgba(29, 18, 13, 0.98));
  border: 1px solid rgba(197, 139, 80, 0.4);
  padding: clamp(8px, 1.1vw, 12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 207, 0.16),
    inset 0 0 0 1px rgba(27, 16, 10, 0.56),
    inset 0 18px 28px rgba(255, 230, 188, 0.05),
    0 16px 34px rgba(27, 16, 10, 0.28);
  scrollbar-color: rgba(190, 126, 74, 0.86) rgba(43, 26, 18, 0.88);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.menu-section > .menu-scroll {
  border: 0;
  padding: 0;
  box-shadow: none;
}
.menu-scroll::-webkit-scrollbar {
  width: 12px;
}

.menu-scroll::-webkit-scrollbar-track {
  background:
    var(--grain-texture),
    linear-gradient(180deg, rgba(35, 21, 14, 0.9), rgba(61, 38, 25, 0.82));
  border-radius: 999px;
}

.menu-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid rgba(39, 24, 16, 0.95);
  background:
    linear-gradient(180deg, rgba(226, 172, 108, 0.92), rgba(134, 82, 47, 0.96));
}

.menu-page-picture {
  display: block;
}

.menu-page-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  border: 1px solid rgba(221, 179, 122, 0.18);
  box-shadow: 0 12px 28px rgba(16, 9, 6, 0.36);
}

.menu-page-picture + .menu-page-picture {
  margin-top: clamp(10px, 1.6vw, 16px);
}

.order-section {
  height: 100%;
}

.order-scroll {
  color: rgba(255, 238, 207, 0.88);
}

.order-panel {
  min-height: 100%;
  padding: clamp(18px, 3.2vw, 38px);
}

.order-header {
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.order-header h2,
.order-menu-title,
.delivery-category h3 {
  font-family: "Denk One", Inter, Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.order-header h2 {
  max-width: 900px;
  margin: 0 auto clamp(12px, 1.5vw, 18px);
  color: #fff2dd;
  font-size: var(--card-title-size);
  line-height: 1.02;
  text-align: center;
}

.order-header h2 span {
  display: block;
  margin-top: 6px;
  color: #f1c27d;
  font-size: 0.54em;
}

.order-phones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px clamp(14px, 2vw, 22px);
  margin-bottom: clamp(10px, 1.4vw, 14px);
}

.order-phones a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #ffe5b7;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(22, 10, 6, 0.36);
}

.order-phones a:hover {
  color: #fff7e9;
}

.order-note {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 238, 207, 0.68);
  font-size: clamp(11px, 1.1vw, 13px);
  line-height: 1.45;
}

.order-menu-title {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  color: #fff2dd;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  text-align: center;
}

.delivery-category + .delivery-category {
  margin-top: clamp(24px, 3.2vw, 38px);
}

.delivery-category h3 {
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  color: #f1c27d;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.18;
  text-transform: uppercase;
}

.delivery-item + .delivery-item {
  margin-top: clamp(12px, 1.5vw, 18px);
}

.delivery-row {
  display: flex;
  align-items: baseline;
  gap: clamp(7px, 1vw, 12px);
  color: #fff5e4;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 800;
  line-height: 1.32;
}

.delivery-row span {
  min-width: 0;
  flex: 0 1 auto;
}

.delivery-row i {
  flex: 1 1 34px;
  min-width: 18px;
  border-bottom: 1px dotted rgba(241, 194, 125, 0.62);
  transform: translateY(-0.22em);
}

.delivery-row strong {
  color: #ffe1a8;
  font-size: 0.96em;
  white-space: nowrap;
}

.delivery-item p {
  max-width: none;
  margin: 4px 0 0;
  color: rgba(255, 238, 207, 0.68);
  font-size: clamp(12.5px, 1.2vw, 15px);
  line-height: 1.42;
  text-align: left;
}

.contact-section {
  height: 100%;
}

.contact-scroll {
  color: rgba(255, 238, 207, 0.88);
}

.contact-panel {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(16px, 2.6vw, 30px);
  text-align: center;
}

.contact-header h2,
.opening-hours h3 {
  font-family: "Denk One", Inter, Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-header h2 {
  margin: 0 0 clamp(12px, 1.5vw, 18px);
  color: #fff2dd;
  font-size: var(--card-title-size);
  line-height: 1.02;
}

.contact-phones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px clamp(14px, 2vw, 24px);
}

.contact-phones a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #ffe5b7;
  font-size: clamp(15px, 1.65vw, 20px);
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(22, 10, 6, 0.36);
}

.contact-phones a:hover {
  color: #fff7e9;
}

.contact-map-frame {
  --frame-photo-top: 15.2%;
  --frame-photo-right: 12.8%;
  --frame-photo-bottom: 13.8%;
  --frame-photo-left: 12.8%;
  width: min(680px, 100%);
  aspect-ratio: 3145 / 2156;
  justify-self: center;
  position: relative;
  filter: drop-shadow(0 18px 22px rgba(19, 10, 6, 0.34));
}

.contact-map-frame iframe {
  position: absolute;
  top: var(--frame-photo-top);
  left: var(--frame-photo-left);
  z-index: 1;
  width: calc(100% - var(--frame-photo-left) - var(--frame-photo-right));
  height: calc(100% - var(--frame-photo-top) - var(--frame-photo-bottom));
  border: 0;
  display: block;
  background: rgba(35, 21, 14, 0.92);
  filter: sepia(0.1) saturate(0.9) contrast(1.03);
}

.contact-frame-art {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.contact-address {
  display: grid;
  gap: 4px;
  color: #fff5e4;
  font-style: normal;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(22, 10, 6, 0.38);
}

.opening-hours {
  width: min(660px, 100%);
  justify-self: center;
  padding: clamp(12px, 1.7vw, 18px);
  border: 1px solid rgba(214, 165, 104, 0.28);
  border-radius: 18px;
  background:
    var(--grain-texture),
    linear-gradient(145deg, rgba(95, 57, 35, 0.56), rgba(38, 23, 16, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 207, 0.12),
    0 14px 28px rgba(27, 16, 10, 0.22);
}

.opening-hours h3 {
  margin: 0 0 10px;
  color: #f1c27d;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.05;
}

.opening-hours dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.opening-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 238, 207, 0.86);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 800;
  line-height: 1.32;
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
}

.opening-hours dd {
  color: #ffe1a8;
  white-space: nowrap;
}

.reservation-section {
  height: 100%;
}

.reservation-scroll {
  color: rgba(255, 238, 207, 0.88);
}

.reservation-panel {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(18px, 3vw, 34px);
}

.reservation-header {
  text-align: center;
}

.reservation-header h2 {
  margin: 0 0 clamp(10px, 1.3vw, 14px);
  color: #fff2dd;
  font-family: "Denk One", Inter, Arial, Helvetica, sans-serif;
  font-size: var(--card-title-size);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.reservation-header p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 238, 207, 0.78);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.45;
}

.reservation-note,
.reservation-confirmation,
.reservation-status {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.reservation-note {
  color: rgba(255, 238, 207, 0.68);
  font-size: clamp(10px, 0.9vw, 11.5px);
  line-height: 1.4;
}

.reservation-form {
  width: min(760px, 100%);
  justify-self: center;
  display: grid;
  gap: clamp(14px, 1.8vw, 20px);
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(214, 165, 104, 0.3);
  border-radius: 20px;
  background:
    var(--grain-texture),
    linear-gradient(145deg, rgba(95, 57, 35, 0.58), rgba(38, 23, 16, 0.66));
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 207, 0.13),
    0 16px 32px rgba(27, 16, 10, 0.24);
}

.reservation-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reservation-honeypot {
  display: none;
}

.reservation-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.reservation-type legend {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: #f1c27d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.reservation-type label {
  cursor: pointer;
}

.reservation-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reservation-type span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 165, 104, 0.28);
  border-radius: 14px;
  background:
    var(--grain-texture),
    linear-gradient(145deg, rgba(255, 238, 207, 0.14), rgba(86, 50, 31, 0.34));
  color: rgba(255, 238, 207, 0.82);
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.reservation-type input:checked + span {
  border-color: rgba(241, 194, 125, 0.74);
  background-color: rgba(143, 90, 52, 0.54);
  color: #fff6e8;
  box-shadow:
    0 0 22px rgba(190, 126, 74, 0.26),
    inset 0 1px 0 rgba(255, 238, 207, 0.18);
}

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

.reservation-grid label {
  display: grid;
  gap: 6px;
  color: #f1c27d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.reservation-grid input,
.reservation-grid select,
.reservation-grid textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(214, 165, 104, 0.32);
  border-radius: 12px;
  background:
    var(--grain-texture),
    rgba(255, 248, 235, 0.9);
  color: #352417;
  font: inherit;
  font-size: 15px;
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.reservation-grid textarea {
  min-height: 92px;
  resize: vertical;
}

.reservation-grid input:focus,
.reservation-grid select:focus,
.reservation-grid textarea:focus {
  outline: 3px solid rgba(190, 126, 74, 0.4);
  outline-offset: 2px;
}

.reservation-duration {
  display: none;
}

.reservation-form.is-kegelbahn .reservation-duration {
  display: grid;
}

.reservation-message {
  grid-column: 1 / -1;
}

.reservation-confirmation {
  color: rgba(255, 238, 207, 0.72);
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.45;
}

.reservation-privacy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 44px;
  color: rgba(255, 238, 207, 0.72);
  cursor: pointer;
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.45;
}

.reservation-privacy input {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 2px;
  accent-color: #b87545;
}

.reservation-privacy a {
  color: #ffe1a8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reservation-privacy a:hover {
  color: #fff7e9;
}

.reservation-submit {
  justify-self: center;
  min-width: min(260px, 100%);
}

.reservation-status {
  min-height: 1.3em;
  color: #ffe1a8;
  font-size: 13px;
  font-weight: 800;
}

.home-section {
  height: 100%;
}

.home-visual {
  min-height: inherit;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--content-radius);
  isolation: isolate;
  padding: 0;
  background: var(--tile-frame-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 207, 0.14),
    inset 0 0 0 1px rgba(214, 165, 104, 0.18),
    0 20px 42px rgba(80, 50, 24, 0.26);
}

.home-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    var(--grain-texture),
    repeating-linear-gradient(0deg, rgba(116, 69, 42, 0.22) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(116, 69, 42, 0.18) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(63, 36, 22, 0.28), rgba(35, 19, 12, 0.18));
  background-size: 140px 140px, 18px 18px, 18px 18px, auto;
  opacity: 0.2;
  pointer-events: none;
}

.home-hero-image {
  width: 100%;
  height: 100%;
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  color: rgba(255, 238, 207, 0.9);
  text-align: center;
}

.home-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 50%, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, #000 45%, transparent 85%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, #000 45%, transparent 85%);
}

.home-overlay h1 {
  max-width: 760px;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  color: #ffffff;
  font-family: "Denk One", Inter, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: var(--card-title-size);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow:
    0 0 8px rgba(0, 0, 0, 1),
    0 2px 4px rgba(0, 0, 0, 1),
    0 4px 8px rgba(0, 0, 0, 1),
    0 6px 13px rgba(0, 0, 0, 1),
    0 9px 20px rgba(0, 0, 0, 1),
    0 14px 30px rgba(0, 0, 0, 1),
    0 20px 44px rgba(0, 0, 0, 1),
    0 30px 64px rgba(0, 0, 0, 1),
    0 42px 92px rgba(0, 0, 0, 0.95);
}

.home-point {
  width: min(540px, 100%);
  display: grid;
  grid-template-columns: clamp(24px, 2.6vw, 32px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(8px, 1.2vw, 14px);
  margin-bottom: clamp(14px, 2vw, 22px);
  text-align: left;
}

.home-point:last-child {
  margin-bottom: 0;
}

.home-point-fire {
  width: clamp(22px, 2.4vw, 30px);
  min-width: 0;
  aspect-ratio: 559 / 1137;
  display: block;
  justify-self: end;
  margin-top: 0.1em;
  margin-right: 0;
  background-image: url("assets/fire-point.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter:
    drop-shadow(0 0 8px rgba(255, 150, 60, 0.85))
    drop-shadow(0 0 18px rgba(241, 110, 40, 0.6))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55));
}

.home-point p {
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  font-family: "Denk One", Inter, Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: var(--card-body-size);
  line-height: 1.7;
  overflow-wrap: break-word;
  text-shadow:
    0 0 7px rgba(0, 0, 0, 1),
    0 2px 4px rgba(0, 0, 0, 1),
    0 4px 8px rgba(0, 0, 0, 1),
    0 6px 12px rgba(0, 0, 0, 1),
    0 9px 19px rgba(0, 0, 0, 1),
    0 13px 28px rgba(0, 0, 0, 1),
    0 19px 42px rgba(0, 0, 0, 1),
    0 28px 60px rgba(0, 0, 0, 1),
    0 38px 84px rgba(0, 0, 0, 0.95);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background:
    var(--grain-texture),
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.2), transparent 34%),
    rgba(122, 73, 40, 0.88);
  color: #fff6e8;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(121, 52, 31, 0.32);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 18px rgba(126, 83, 54, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 30px rgba(80, 50, 24, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -70% -18%;
  z-index: -1;
  background:
    var(--grain-texture),
    radial-gradient(circle at 22% 36%, rgba(190, 126, 74, 0.48), transparent 31%),
    radial-gradient(circle at 72% 58%, rgba(110, 44, 29, 0.52), transparent 36%),
    linear-gradient(120deg, rgba(73, 43, 24, 0.64), rgba(122, 73, 40, 0.5), rgba(190, 126, 74, 0.36), rgba(73, 43, 24, 0.58));
  transform: translateX(-12%) rotate(8deg);
  transition: transform 0.34s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(126, 83, 54, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 34px rgba(80, 50, 24, 0.28);
}

.button:hover::before {
  transform: translateX(0) rotate(0deg);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.footer {
  grid-column: 1 / -1;
  align-self: end;
  width: 100%;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  width: 100%;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: rgba(255, 248, 235, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff6e8;
}

.footer-link:focus-visible {
  outline: 3px solid rgba(190, 126, 74, 0.55);
  outline-offset: 4px;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1025px) {
  body {
    overflow: hidden;
  }

  .page {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    padding: clamp(10px, 1.8vh, 22px) 0;
    gap: clamp(12px, 2.1vh, 24px) clamp(20px, 3vw, 34px);
    overflow: hidden;
  }

  .logo {
    width: clamp(90px, 15vh, 168px);
  }

  .sidebar {
    min-height: 0;
    gap: clamp(7px, 1.4vh, 14px);
    padding-top: 0;
    overflow: visible;
    overscroll-behavior: contain;
  }

  .nav-link {
    --nav-image-size: clamp(44px, 8.7vh, 78px);
    --nav-fire-size: clamp(34px, 6vh, 48px);
    --nav-fire-reserve: clamp(32px, 5.5vh, 46px);
    --nav-text-pad-y: clamp(7px, 1.35vh, 13px);
    --nav-text-pad-x: clamp(11px, 1.6vw, 16px);
  }

  .nav-text {
    font-size: clamp(10.5px, 1.45vh, 12.5px);
  }

  .content {
    height: 100%;
  }
}

@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    min-height: 100svh;
    height: auto;
    max-height: none;
    gap: clamp(12px, 2vw, 20px);
    padding: clamp(12px, 2.2vw, 22px) 0;
    overflow: visible;
  }

  .logo {
    width: clamp(104px, 15vw, 156px);
  }

  .mobile-menu {
    display: block;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 1.8vw, 16px);
    padding-top: 0;
  }

  .nav-link {
    --nav-image-size: clamp(52px, 6.4vw, 72px);
    --nav-fire-size: clamp(40px, 4.8vw, 48px);
    --nav-fire-reserve: clamp(36px, 4.3vw, 44px);
    --nav-text-pad-y: clamp(10px, 1.4vw, 14px);
    --nav-text-pad-x: clamp(12px, 1.7vw, 16px);
  }

  .nav-link[data-page="reservierung"] {
    --nav-fire-reserve: 44px;
  }

  .nav-text {
    font-size: clamp(11px, 1.5vw, 13px);
  }

  .content {
    height: clamp(500px, 68vh, 760px);
    min-height: 460px;
  }

  .content.content-menu,
  .content.content-order,
  .content.content-contact,
  .content.content-reservation {
    height: 100%;
  }

  .home-visual {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .content {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .content.content-home {
    height: auto;
    min-height: clamp(560px, 82svh, 920px);
  }

  .content.content-menu,
  .content.content-order,
  .content.content-contact,
  .content.content-reservation {
    height: clamp(560px, 82svh, 920px);
  }

  .home-section {
    height: auto;
  }

  .home-visual {
    display: grid;
    height: auto;
    min-height: clamp(560px, 82svh, 920px);
    overflow: hidden;
    gap: 0;
  }

  .home-hero-image {
    grid-area: 1 / 1;
    min-width: 0;
    height: auto;
    align-self: stretch;
  }

  .home-hero-image img {
    min-height: clamp(560px, 82svh, 920px);
  }

  .home-overlay {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    z-index: 2;
    min-height: clamp(560px, 82svh, 920px);
    overflow-y: visible;
    padding: clamp(28px, 4vw, 48px);
  }

  .section h1,
  .section h2 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .home-overlay h1 {
    max-width: 620px;
    margin-bottom: clamp(14px, 2vw, 22px);
  }

  .home-point {
    width: min(100%, 620px);
    grid-template-columns: clamp(22px, 2.3vw, 28px) minmax(0, 1fr);
    gap: clamp(7px, 1vw, 10px);
  }

  .home-point-fire {
    width: clamp(18px, 1.9vw, 22px);
  }

  .home-point p {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.58;
  }
}

@media (max-width: 640px) {
  .home-break {
    display: none;
  }

  html,
  body {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .page {
    width: calc(100% - 32px);
    max-width: var(--page-width);
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    gap: clamp(8px, 1.35vh, 12px);
    padding: clamp(8px, 1.35vh, 12px) 0;
    overflow: hidden;
  }

  .logo {
    width: clamp(112px, 34vw, 152px);
  }

  .menu-toggle {
    display: flex;
    min-height: clamp(48px, 7vh, 56px);
  }

  .mobile-menu {
    display: block;
    position: relative;
    z-index: 20;
  }

  .sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: var(--tile-frame-bg);
    box-shadow:
      inset 0 1px 0 rgba(255, 238, 207, 0.14),
      0 22px 38px rgba(24, 14, 9, 0.44);
    pointer-events: none;
    overscroll-behavior: contain;
    scrollbar-color: rgba(190, 126, 74, 0.86) rgba(43, 26, 18, 0.88);
    scrollbar-width: thin;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
  }

  .mobile-menu.open .sidebar {
    max-height: min(66vh, 580px);
    max-height: min(66svh, 580px);
    overflow-y: auto;
    opacity: 1;
    padding: 10px;
    border-color: rgba(214, 165, 104, 0.28);
    pointer-events: auto;
  }

  .nav-link {
    --nav-image-size: 62px;
    --nav-fire-size: 48px;
    --nav-fire-reserve: 48px;
    --nav-text-pad-y: 14px;
    --nav-text-pad-x: 16px;
    grid-template-columns: var(--nav-image-size) minmax(0, 1fr);
    gap: 12px;
  }

  .nav-link[data-page="reservierung"] {
    --nav-fire-reserve: 42px;
  }

  .nav-link[data-page="reservierung"] .nav-text {
    font-size: 13px;
  }

  .nav-text {
    font-size: 13px;
  }

  .nav-link:hover .nav-text,
  .nav-link.active .nav-text {
    transform: none;
  }

  .content {
    height: 100%;
    min-height: 0;
    padding: 0;
  }

  .content.content-home {
    height: 100%;
    min-height: 0;
  }

  .content.content-menu,
  .content.content-order,
  .content.content-contact,
  .content.content-reservation {
    height: 100%;
    padding: 0;
  }

  .order-panel {
    padding: 16px 14px 22px;
  }

  .order-header h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .order-header h2 span {
    font-size: 0.5em;
  }

  .order-phones {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .order-phones a {
    font-size: 15px;
  }

  .order-note {
    font-size: 11px;
  }

  .order-menu-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .delivery-category h3 {
    font-size: clamp(15px, 4.6vw, 18px);
  }

  .delivery-row {
    gap: 6px;
    font-size: 14px;
  }

  .delivery-item p {
    font-size: 12px;
  }

  .contact-panel {
    align-content: start;
    gap: 12px;
    padding: 14px 12px 20px;
  }

  .contact-header h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .contact-phones {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .contact-phones a {
    font-size: 15px;
  }

  .contact-map-frame {
    width: min(100%, 520px);
  }

  .contact-address {
    font-size: clamp(17px, 5.2vw, 22px);
  }

  .opening-hours {
    padding: 12px;
    border-radius: 15px;
  }

  .opening-hours h3 {
    font-size: clamp(21px, 6.2vw, 28px);
  }

  .opening-hours dl div {
    display: grid;
    justify-content: center;
    gap: 2px;
    font-size: 13px;
  }

  .reservation-panel {
    gap: 12px;
    padding: 14px 12px 20px;
  }

  .reservation-header h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .reservation-note {
    font-size: 10.5px;
  }

  .reservation-form {
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
  }

  .reservation-type {
    gap: 8px;
  }

  .reservation-type span {
    min-height: 44px;
    font-size: 13px;
  }

  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reservation-grid label {
    min-width: 0;
    width: 100%;
  }

  .reservation-grid input,
  .reservation-grid select,
  .reservation-grid textarea {
    min-height: 44px;
    font-size: 14px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .reservation-grid input[type="date"],
  .reservation-grid input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .reservation-confirmation,
  .reservation-privacy,
  .reservation-status {
    font-size: 11.5px;
  }

  .home-visual {
    display: block;
    padding: 0;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .home-overlay {
    justify-content: center;
    padding: clamp(24px, 8vw, 42px);
  }

  .home-overlay h1 {
    max-width: 340px;
    font-size: clamp(30px, 9vw, 42px);
    margin-bottom: 16px;
  }

  .home-point {
    width: min(100%, 360px);
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
    margin-bottom: 12px;
  }

  .home-point-fire {
    width: 18px;
  }

  .home-point p {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.5;
  }

  .footer-nav {
    gap: 10px 16px;
  }

  .footer-link {
    font-size: 11px;
    min-height: 44px;
    padding: 0 4px;
  }

  .section h1,
  .section h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .page {
    width: calc(100% - 24px);
    gap: clamp(7px, 1.2vh, 10px);
    padding: clamp(7px, 1.2vh, 10px) 0;
  }

  .logo {
    width: clamp(102px, 32vw, 136px);
  }

  .menu-toggle {
    min-height: 48px;
  }

  .nav-link {
    --nav-image-size: 56px;
    --nav-fire-size: 44px;
    --nav-fire-reserve: 44px;
    --nav-text-pad-y: 12px;
    --nav-text-pad-x: 14px;
  }

  .nav-text {
    font-size: 12px;
  }

  .nav-link[data-page="reservierung"] .nav-text {
    font-size: 12px;
  }

  .content {
    height: 100%;
    min-height: 0;
    padding: 0;
  }

  .content.content-home {
    height: 100%;
    min-height: 0;
  }

  .content.content-menu,
  .content.content-order,
  .content.content-contact,
  .content.content-reservation {
    height: 100%;
    padding: 0;
  }

  .order-panel {
    padding: 14px 11px 20px;
  }

  .order-header h2 {
    font-size: clamp(27px, 8.4vw, 34px);
  }

  .delivery-row {
    gap: 5px;
    font-size: 13px;
  }

  .delivery-item p {
    font-size: 12px;
  }

  .contact-panel {
    gap: 10px;
    padding: 12px 9px 18px;
  }

  .contact-header h2 {
    font-size: clamp(27px, 8.4vw, 34px);
  }

  .contact-phones a {
    font-size: 14px;
  }

  .contact-address {
    font-size: 16px;
  }

  .opening-hours h3 {
    font-size: 21px;
  }

  .opening-hours dl div {
    font-size: 12px;
  }

  .reservation-panel {
    gap: 10px;
    padding: 12px 9px 18px;
  }

  .reservation-header h2 {
    font-size: clamp(27px, 8.4vw, 34px);
  }

  .reservation-form {
    padding: 10px;
  }

  .reservation-type span {
    min-height: 44px;
    font-size: 12px;
  }

  .reservation-grid label {
    font-size: 12px;
  }

  .reservation-grid input,
  .reservation-grid select,
  .reservation-grid textarea {
    min-height: 44px;
    font-size: 13px;
  }

  .home-visual {
    padding: 0;
  }

  .home-overlay {
    padding: clamp(18px, 7vw, 28px);
  }

  .home-overlay h1 {
    max-width: 300px;
    font-size: clamp(27px, 8.4vw, 34px);
    margin-bottom: 12px;
  }

  .home-point {
    width: min(100%, 310px);
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 5px;
    margin-bottom: 9px;
  }

  .home-point-fire {
    width: 16px;
  }

  .home-point p {
    font-size: 13px;
    line-height: 1.42;
  }

  .section h1,
  .section h2 {
    font-size: clamp(27px, 8.4vw, 34px);
  }
}

.legal-page {
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.legal-page .content {
  min-height: clamp(360px, 55vh, 560px);
}

.legal-content {
  color: rgba(255, 238, 207, 0.86);
  text-align: center;
  scrollbar-color: rgba(190, 126, 74, 0.86) rgba(43, 26, 18, 0.88);
  scrollbar-width: thin;
}

.legal-content::-webkit-scrollbar {
  width: 12px;
}

.legal-content::-webkit-scrollbar-track {
  background:
    var(--grain-texture),
    linear-gradient(180deg, rgba(35, 21, 14, 0.9), rgba(61, 38, 25, 0.82));
  border-radius: 999px;
}

.legal-content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid rgba(39, 24, 16, 0.95);
  background:
    linear-gradient(180deg, rgba(226, 172, 108, 0.92), rgba(134, 82, 47, 0.96));
}

.legal-content h1 {
  text-align: center;
  font-size: clamp(18px, 6vw, 60px);
}

.legal-content h2 {
  max-width: 860px;
  margin: clamp(24px, 3vw, 36px) auto clamp(8px, 1.2vw, 12px);
  color: #f1c27d;
  font-family: "Denk One", Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.legal-content p,
.legal-content ul {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.legal-content p,
.legal-content li {
  color: rgba(255, 238, 207, 0.82);
  font-size: clamp(14px, 1.55vw, 17px);
  line-height: 1.65;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding-left: 0;
  list-style-position: inside;
  list-style: disc inside;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.legal-content a {
  color: #ffe1a8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content > .button {
  margin-top: clamp(18px, 2.6vw, 32px);
  text-decoration: none;
}

.success-content,
.not-found-content {
  align-content: center;
}

.success-content p:last-of-type,
.not-found-copy {
  margin-bottom: 0;
}

.not-found-code {
  margin-bottom: clamp(8px, 1.4vw, 16px);
  color: #f1c27d;
  font-size: clamp(54px, 12vw, 92px);
  line-height: 0.95;
}

.not-found-title {
  margin-top: 0;
}

.not-found-copy {
  max-width: 560px;
}

.not-found-button {
  display: inline-flex;
}

h1, h2, h3 {
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
