@font-face {
  font-family: "Abril Fatface";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/abril-fatface-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --orange: #fd8943;
  --orange-soft: #fff0e7;
  --orange-deep: var(--orange);
  --ink: #221914;
  --muted: #695a50;
  --cream: #fffaf2;
  --paper: #ffffff;
  --line: rgba(34, 25, 20, 0.14);
  --shadow: 0 22px 60px rgba(78, 44, 18, 0.16);
  --display: "Abril Fatface", Georgia, serif;
  --body: "Halenoir", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  border-radius: 999px;
  background: var(--ink);
  padding: 10px 16px;
  color: #fff;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px #fff;
}

main:focus {
  outline: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header {
  position: fixed;
  top: 16px;
  right: clamp(16px, 4vw, 52px);
  left: clamp(16px, 4vw, 52px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(31, 19, 12, 0.28);
  box-shadow: 0 12px 38px rgba(22, 12, 7, 0.14);
  padding: 12px clamp(16px, 3vw, 30px);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(34, 25, 20, 0.1);
  background: rgba(255, 250, 242, 0.84);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(34, 25, 20, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 0;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(20, 10, 5, 0.2));
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo,
.legal-site-header .brand-logo {
  filter: drop-shadow(0 3px 5px rgba(20, 10, 5, 0.14));
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 13, 8, 0.88) 0%, rgba(23, 13, 8, 0.58) 0%, rgba(23, 13, 8, 0.06) 80%),
    linear-gradient(0deg, rgba(23, 13, 8, 0.46) 0%, rgba(23, 13, 8, 0) 20%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(100%, 720px);
  padding: 142px clamp(20px, 7vw, 88px) clamp(54px, 9vh, 92px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--orange);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.9rem, 8vw, 7.1rem);
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

p {
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.section,
.section-band,
.pizza-band,
.footer {
  padding-right: clamp(20px, 6vw, 76px);
  padding-left: clamp(20px, 6vw, 76px);
}

.section,
.section-band {
  padding-top: clamp(68px, 10vw, 120px);
  padding-bottom: clamp(68px, 10vw, 120px);
}

.intro {
  background: var(--orange-soft);
}

.intro-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.intro p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 3.3rem);
  line-height: 1.08;
}

.quick-facts {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.quick-facts span {
  border-bottom: 1px solid var(--line);
  padding: 0 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 58px);
  text-align: center;
}

.section-heading.compact {
  max-width: 520px;
  margin: 0;
  text-align: left;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.offer-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 34px);
}

.offer-number {
  display: block;
  margin-bottom: 52px;
  color: var(--orange-deep);
  font-weight: 900;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.pizza-band {
  display: grid;
  max-width: 1160px;
  margin: 0 auto clamp(38px, 7vw, 82px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  border-radius: 8px;
  background: var(--orange-deep);
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow);
  color: #fff;
}

.pizza-band .eyebrow {
  color: #fff;
}

.pizza-band p:last-child {
  max-width: 640px;
  margin: 18px 0 0;
  font-weight: 600;
}

.pizza-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.split {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.hours {
  display: grid;
  border-top: 1px solid var(--line);
}

.hours div {
  display: grid;
  grid-template-columns: minmax(110px, 0.4fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.hours span {
  color: var(--muted);
  font-weight: 700;
}

.hours strong {
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
}

.Auszeichnungen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 0;
}

.Auszeichnungen img {
  width: min(175px, calc(50vw - 28px));
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
}



.contact {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

address {
  margin-top: 26px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--orange-deep);
  transform: translateY(-2px);
}

.contact-link span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}

.social-band {
  display: grid;
  max-width: 1160px;
  margin: 0 auto clamp(50px, 9vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px) clamp(20px, 6vw, 76px);
}

.social-band > div:first-child {
  align-self: start;
}

.social-band p:last-child {
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.social-embeds {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.social-embed,
.social-embed-placeholder {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.social-embed {
  display: block;
}

.social-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 476px;
  border: 0;
}

.embed-fallback-link {
  display: block;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--orange-deep);
  padding: 11px 14px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-embed.instagram iframe {
  min-height: 540px;
}

.social-embed-placeholder {
  display: grid;
  min-height: 320px;
  align-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}

.social-embed-placeholder span {
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-embed-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.social-load-button {
  grid-column: 1 / -1;
  justify-self: center;
}

.social-actions {
  display: grid;
  gap: 12px;
}

.social-link {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--orange-deep);
  transform: translateY(-2px);
}

.social-link span {
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-embed {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--orange-soft);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.map-consent {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.map-consent span {
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-consent p {
  max-width: 360px;
  margin: 10px auto 20px;
  color: var(--muted);
  font-weight: 700;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  padding-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer p {
  margin: 0;
}

.footer-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-link {
  color: var(--orange-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-banner {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 40;
  width: min(430px, calc(100vw - 28px));
  color: var(--ink);
}

.consent-banner[hidden] {
  display: none;
}

.consent-content {
  display: grid;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 24px 70px rgba(34, 25, 20, 0.22);
  padding: 18px;
  backdrop-filter: blur(16px);
}

.consent-content h2 {
  font-size: 2rem;
}

.consent-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.consent-options {
  display: grid;
  gap: 10px;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 11px 12px;
}

.consent-option strong,
.consent-option small {
  display: block;
}

.consent-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.consent-option input {
  width: 19px;
  height: 19px;
  accent-color: var(--orange-deep);
  flex: 0 0 auto;
}

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

.consent-actions .button {
  min-height: 42px;
  padding: 9px 12px;
  font-size: 0.85rem;
}

.consent-settings-button {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 2px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-secondary {
  border: 2px solid var(--ink) !important;
  background: #fff !important;
  color: var(--ink) !important;
}

.consent-dialog {
  width: min(520px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 24px 70px rgba(34, 25, 20, 0.26);
  color: var(--ink);
  padding: 0;
}

.consent-dialog::backdrop {
  background: rgba(34, 25, 20, 0.32);
  backdrop-filter: blur(3px);
}

.consent-dialog-content {
  padding: 22px;
}

.consent-dialog h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.consent-dialog p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.consent-dialog-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.consent-dialog-actions .button {
  min-height: 44px;
  padding: 9px 12px;
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.9);
    padding: 10px;
    color: var(--ink);
    box-shadow: 0 18px 46px rgba(34, 25, 20, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    backdrop-filter: blur(18px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 16px;
    padding: 11px 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(253, 137, 67, 0.16);
  }

  .hero {
    min-height: 82svh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(23, 13, 8, 0.78) 0%, rgba(23, 13, 8, 0.34) 78%),
      linear-gradient(90deg, rgba(23, 13, 8, 0.6), rgba(23, 13, 8, 0.14));
  }

  .hero-content {
    padding-top: 132px;
  }

  .intro-grid,
  .offer-grid,
  .pizza-band,
  .split,
  .contact,
  .social-band,
  .flavor-groups,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .pizza-band {
    margin-right: 20px;
    margin-left: 20px;
  }

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

}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    max-width: 14ch;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 4.25rem);
  }

  .hero-content {
    padding-right: 20px;
    padding-bottom: 58px;
    padding-left: 20px;
  }

  .button {
    width: 100%;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }

  .consent-actions {
    justify-content: stretch;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-page {
    padding-top: 180px;
  }

  .menu-page {
    padding-top: 158px;
  }

  .social-embeds {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 150px clamp(20px, 6vw, 76px) 82px;
}

.legal-site-header {
  border-color: rgba(34, 25, 20, 0.1);
  background: rgba(255, 250, 242, 0.84);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(34, 25, 20, 0.12);
}

.legal-page h1 {
  margin: 18px 0 26px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.legal-page h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a {
  color: var(--orange-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.menu-page {
  padding-top: 132px;
}

.menu-intro,
.menu-section {
  padding-right: clamp(20px, 6vw, 76px);
  padding-left: clamp(20px, 6vw, 76px);
}

.menu-intro {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: clamp(42px, 7vw, 82px);
  padding-bottom: clamp(52px, 8vw, 92px);
}

.menu-intro h1 {
  color: var(--ink);
}

.menu-intro > p:last-of-type {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.menu-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.menu-jump-nav a {
  border: 1px solid rgba(199, 86, 29, 0.3);
  border-radius: 999px;
  background: var(--paper);
  padding: 9px 15px;
  color: var(--orange-deep);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.menu-jump-nav a:hover,
.menu-jump-nav a:focus-visible {
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-2px);
}

.menu-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.menu-section {
  scroll-margin-top: 128px;
  padding-top: clamp(62px, 9vw, 100px);
  padding-bottom: clamp(62px, 9vw, 100px);
}

.menu-section-tinted {
  background: var(--orange-soft);
}

.menu-heading,
.flavor-groups,
.menu-grid {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.menu-heading {
  margin-bottom: 34px;
}

.menu-heading p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.flavor-groups,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flavor-groups {
  margin-bottom: 32px;
}

.flavor-groups article,
.menu-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 20px;
}

.flavor-groups p,
.menu-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.flavor-groups small,
.menu-item small {
  display: block;
  margin-top: 14px;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.menu-item {
  position: relative;
  min-height: 180px;
}

.allergen-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(12px, 3vw, 30px) clamp(20px, 6vw, 76px) clamp(74px, 10vw, 120px);
}

.allergen-section h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.allergen-section p:last-child {
  max-width: 940px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.menu-pizza {
  margin-top: clamp(52px, 8vw, 90px);
}

@media (max-width: 860px) {
  .flavor-groups,
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flavor-groups article,
  .menu-item {
    padding: 24px;
  }

  .flavor-groups p,
  .menu-item p {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .flavor-groups small,
  .menu-item small {
    margin-top: 18px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

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

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