:root {
  --red: #e31529;
  --red-dark: #c90c1d;
  --blue: #075586;
  --blue-dark: #063c61;
  --blue-deep: #052d49;
  --cream: #f6f0e6;
  --cream-deep: #e9dfcf;
  --paper: #fffdf8;
  --ink: #17222b;
  --muted: #687179;
  --line: rgba(23, 34, 43, 0.15);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --page: min(1320px, calc(100vw - 48px));
  --header-height: 88px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

section[id] {
  scroll-margin-top: 0;
}

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

body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-orderbar {
  display: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(240, 24, 43, 0.18);
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(240, 24, 43, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--blue-deep);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: linear-gradient(180deg, rgba(4, 28, 45, 0.92), rgba(4, 28, 45, 0));
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 45, 73, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--page);
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 0.24rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.3vw, 2.8rem);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.header-facebook,
.mobile-header-facebook {
  display: grid;
  place-items: center;
  color: #fff;
  background: #1877f2;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-facebook {
  width: 56px;
  min-height: 56px;
}

.header-facebook:hover,
.mobile-header-facebook:hover {
  background: #fff;
  color: #1877f2;
  transform: translateY(-2px);
}

.header-facebook svg,
.mobile-header-facebook svg,
.button-facebook svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-online {
  min-height: 56px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-weight: 900;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.header-online:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-order {
  display: grid;
  min-height: 56px;
  padding: 0.65rem 1rem 0.6rem;
  align-content: center;
  background: var(--red);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-order:hover {
  background: #fff;
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.header-order span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-order strong {
  margin-top: 0.12rem;
  font-size: 0.93rem;
}

.mobile-header-actions,
.menu-toggle,
.mobile-nav {
  display: none;
}

.menu-toggle b,
.mobile-menu-shortcuts,
.mobile-category-picker {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  animation: hero-scale 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 37, 61, 0.98) 0%, rgba(3, 37, 61, 0.92) 39%, rgba(3, 37, 61, 0.46) 67%, rgba(3, 37, 61, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 45, 73, 0.18), rgba(5, 45, 73, 0.08) 54%, rgba(5, 45, 73, 0.86));
}

.hero-community {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: max(24px, calc((100vw - min(1320px, calc(100vw - 48px))) / 2));
  width: min(350px, 31vw);
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.95rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 5px solid #1877f2;
  color: #fff;
  background: rgba(3, 38, 62, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  animation: hero-rise 0.8s 0.55s ease both;
}

.hero-community:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(3, 38, 62, 0.96);
  transform: translateY(calc(-50% - 4px));
}

.hero-community-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #1877f2;
}

.hero-community-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-community-copy {
  display: grid;
}

.hero-community-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-community-copy strong {
  margin-top: 0.18rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 0.82;
}

.hero-community-copy > span {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-community > b {
  grid-column: 2;
  color: #8ebeff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 8vh);
  padding-bottom: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #fff;
  animation: hero-rise 0.7s 0.15s ease both;
}

.hero-kicker::before {
  display: inline-block;
  width: 2.8rem;
  height: 2px;
  margin-right: 0.8rem;
  background: var(--red);
  vertical-align: middle;
  content: "";
}

.hero h1 {
  max-width: 650px;
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 7.4vw, 7.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.77;
  text-transform: uppercase;
  animation: hero-rise 0.85s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 span {
  display: block;
  color: var(--red);
  text-shadow: 0 4px 20px rgba(77, 0, 8, 0.22);
}

.hero-live-order {
  width: min(570px, 100%);
  margin-top: 1.7rem;
  padding: 0.85rem 0.9rem;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(3, 38, 62, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  animation: hero-rise 0.8s 0.38s ease both;
}

.hero-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff8390;
  box-shadow: 0 0 0 5px rgba(255, 131, 144, 0.13);
}

.hero-live-order[data-order-state="open"] .hero-live-dot {
  background: #62e094;
  box-shadow: 0 0 0 5px rgba(98, 224, 148, 0.14);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.hero-live-copy {
  min-width: 0;
  display: grid;
}

.hero-live-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-live-copy strong {
  margin-top: 0.15rem;
  font-size: 0.82rem;
  line-height: 1.25;
}

.hero-live-copy > span {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
}

.hero-live-order > a {
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: #fff;
  background: var(--red);
  font-size: 0.65rem;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.hero-live-order > a:hover {
  color: var(--blue-deep);
  background: #fff;
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  animation: hero-rise 0.8s 0.48s ease both;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0.9rem 1.3rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.84rem;
  font-weight: 900;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover {
  color: var(--blue-deep);
  background: #fff;
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(4, 37, 61, 0.28);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button-facebook {
  min-width: 140px;
  color: #fff;
  background: #1877f2;
}

.button-facebook:hover {
  color: #1877f2;
  background: #fff;
}

.button-outline {
  color: var(--blue-deep);
  border: 1px solid rgba(5, 45, 73, 0.35);
}

.button-outline:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.hero-meta {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - min(1320px, calc(100vw - 48px))) / 2));
  bottom: 0;
  left: max(24px, calc((100vw - min(1320px, calc(100vw - 48px))) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 45, 73, 0.88);
  backdrop-filter: blur(12px);
  animation: hero-rise 0.8s 0.65s ease both;
}

.hero-meta > * {
  display: grid;
  min-height: 104px;
  padding: 1.3rem 1.6rem;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta > *:last-child {
  border-right: 0;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta strong {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.hero-meta a {
  transition: background-color 0.2s ease;
}

.hero-meta a:hover {
  background: var(--red);
}

.hero-payment {
  background: rgba(255, 255, 255, 0.06);
}

.hero-payment strong {
  color: #fff;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  color: #fff;
  background: var(--red);
}

.intro-strip p {
  min-height: 86px;
  margin: 0;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.23);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intro-strip p:last-child {
  border: 0;
}

.intro-strip p::before {
  display: none;
}

.intro-strip-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.intro-strip-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.intro-strip-copy {
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}

.intro-strip-copy strong {
  font: inherit;
  line-height: 1.05;
}

.intro-strip-copy small {
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.food-control {
  padding: 1.15rem max(24px, calc((100vw - min(1320px, calc(100vw - 48px))) / 2));
  color: var(--blue-deep);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.food-control-inner {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.8rem;
  align-items: center;
}

.food-control-icon {
  width: 52px;
  height: 52px;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue-deep);
}

.food-control-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.food-control-copy {
  min-width: 0;
}

.food-control-copy p {
  margin: 0;
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.food-control-copy h2 {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.food-control-copy > span {
  margin-top: 0.35rem;
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

.food-control-actions {
  min-width: 0;
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.food-control-actions a {
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.food-control-actions a:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.food-control-actions .food-control-primary {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.menu-section {
  padding: clamp(5rem, 9vw, 9rem) max(24px, calc((100vw - min(1320px, calc(100vw - 48px))) / 2));
  background:
    linear-gradient(rgba(7, 85, 134, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 85, 134, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.owner-copy h2,
.recipe-copy h2,
.visit-copy h2,
.order-band h2 {
  margin: 0.55rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.menu-pdf-link {
  width: fit-content;
  margin: 1rem 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

.menu-pdf-link span {
  color: var(--muted);
  font-weight: 600;
}

.menu-pdf-link:hover {
  color: var(--red);
}

.menu-sync {
  min-height: 66px;
  margin-top: 1.4rem;
  padding: 0.9rem 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  border: 1px solid rgba(7, 85, 134, 0.14);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
}

.menu-sync > div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.menu-sync-dot {
  width: 0.65rem;
  height: 0.65rem;
  flex: none;
  border-radius: 50%;
  background: #2b9a63;
  box-shadow: 0 0 0 5px rgba(43, 154, 99, 0.12);
}

.menu-sync p {
  margin: 0;
}

.menu-sync > div p {
  display: grid;
  gap: 0.1rem;
}

.menu-sync strong {
  color: var(--blue-deep);
}

.menu-sync > div span:last-child {
  font-size: 0.56rem;
}

.menu-sync > p {
  text-align: center;
}

.menu-sync > a {
  color: var(--blue-deep);
  font-weight: 900;
}

.popular-picks {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  color: #fff;
  background: var(--blue-deep);
}

.popular-picks-heading {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.popular-picks-heading .eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.popular-picks-heading h3 {
  margin: 0.5rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.popular-picks button {
  position: relative;
  min-height: 180px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.25s ease;
}

.popular-picks button:last-child {
  border-right: 0;
}

.popular-picks button::after {
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.popular-picks button:hover {
  background: rgba(255, 255, 255, 0.07);
}

.popular-picks button:hover::after {
  background: var(--red);
  transform: scale(1.15);
}

.popular-picks button > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popular-picks button > strong {
  margin-top: 1.25rem;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.popular-picks button > small {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
}

.popular-picks button > b {
  margin-top: auto;
  color: #fff;
  font-family: var(--display);
  font-size: 1.35rem;
}

.taste-finder {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  min-height: 570px;
  margin-top: 2.5rem;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.taste-finder-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.taste-finder-copy .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.taste-finder-copy h3 {
  max-width: 680px;
  margin: 0.55rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.taste-finder-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.65;
}

.guide-step {
  min-width: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  border: 0;
}

.guide-step + .guide-step {
  margin-top: 1.25rem;
}

.guide-step legend {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-step legend span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-size: 0.68rem;
}

.guide-options {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.55rem;
}

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

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

.guide-options button {
  min-height: 58px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 900;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.guide-options button.is-active {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

@media (hover: hover) {
  .guide-options button:hover {
    border-color: var(--red);
    background: var(--red);
    transform: translateY(-2px);
  }
}

.guide-size-options button {
  display: grid;
}

.guide-size-options button strong {
  font-size: 0.7rem;
}

.guide-size-options button small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.55rem;
}

.guide-size-options button.is-active small {
  color: #fff;
}

.pizza-guide-result {
  min-width: 0;
  display: grid;
  grid-template-rows: 260px 1fr;
  color: var(--blue-deep);
  background: #f4f1e9;
}

.taste-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.taste-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 45, 73, 0.52), transparent 45%), linear-gradient(0deg, rgba(5, 45, 73, 0.48), transparent 55%);
  content: "";
}

.taste-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.taste-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: var(--blue-deep);
}

.taste-image-pair img {
  min-width: 0;
  object-position: center 36%;
}

.taste-finder:hover .taste-image img {
  transform: scale(1.045);
}

.taste-image span {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.3rem;
  color: #fff;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-sheet {
  position: relative;
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.guide-sheet::before {
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
  height: 14px;
  background: radial-gradient(circle at 7px 0, transparent 7px, #f4f1e9 7.5px) 0 0 / 14px 14px repeat-x;
  content: "";
}

.guide-sheet-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.guide-sheet-heading span {
  color: var(--red);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-sheet-heading strong {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.guide-results {
  margin-top: 0.8rem;
  border-top: 1px solid rgba(5, 45, 73, 0.18);
}

.guide-results button {
  width: 100%;
  min-height: 72px;
  padding: 0.7rem 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 20px;
  gap: 0.7rem;
  align-items: center;
  color: var(--blue-deep);
  border-bottom: 1px solid rgba(5, 45, 73, 0.14);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, background-color 0.2s ease, padding 0.2s ease;
}

.guide-results button:hover {
  padding-right: 0.55rem;
  padding-left: 0.55rem;
  color: #fff;
  background: var(--blue);
}

.guide-result-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
}

.guide-result-copy {
  min-width: 0;
  display: grid;
}

.guide-result-copy strong {
  font-family: var(--display);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.guide-result-copy small {
  margin-top: 0.18rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.54rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-results button:hover .guide-result-copy small {
  color: rgba(255, 255, 255, 0.68);
}

.guide-results button > b {
  font-family: var(--display);
  font-size: 1.25rem;
  white-space: nowrap;
}

.guide-result-arrow {
  color: var(--red);
  font-weight: 900;
}

.guide-results button:hover .guide-result-arrow {
  color: #fff;
}

.guide-call {
  margin-top: auto;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  background: var(--red);
  transition: background-color 0.2s ease;
}

.guide-call:hover {
  background: var(--blue);
}

.guide-call span {
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-call strong {
  font-size: 0.68rem;
  white-space: nowrap;
}

.menu-toolbar {
  position: sticky;
  z-index: 12;
  top: calc(var(--header-height) + 0.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.65rem;
  border: 1px solid rgba(5, 45, 73, 0.1);
  background: rgba(249, 247, 241, 0.96);
  box-shadow: 0 1rem 2.5rem rgba(5, 45, 73, 0.08);
  backdrop-filter: blur(14px);
}

.price-overview {
  min-height: 74px;
  padding: 0.8rem 1.2rem;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  background: var(--paper);
}

.price-overview > span {
  color: var(--red);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-overview > strong {
  margin-top: 0.2rem;
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.price-overview > small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.58rem;
}

.size-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.size-picker button {
  position: relative;
  min-height: 74px;
  padding: 0.85rem 1rem;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.size-picker button:last-child {
  border-right: 0;
}

.size-picker button:hover,
.size-picker button.is-active {
  color: #fff;
  background: var(--blue);
}

.size-picker button.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
}

.size-picker span {
  font-size: 0.82rem;
  font-weight: 900;
}

.size-picker small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.62rem;
}

.size-picker button:hover small,
.size-picker button.is-active small {
  color: rgba(255, 255, 255, 0.64);
}

.menu-search {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-search svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
}

.menu-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.82rem;
}

.menu-tabs {
  display: flex;
  margin-top: 1.4rem;
  gap: clamp(1.25rem, 2.4vw, 2.4rem);
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-status {
  min-height: 58px;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.menu-status p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.menu-status p strong {
  color: var(--blue-deep);
}

.menu-status > a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.menu-status > a strong {
  margin-left: 0.45rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

.menu-status > a:hover {
  color: var(--blue-deep);
}

.menu-extra-price {
  color: var(--blue-deep);
  font-weight: 800;
}

.menu-tabs button {
  position: relative;
  flex: none;
  padding: 0 0 0.85rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.menu-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.menu-tabs button:hover,
.menu-tabs button.is-active {
  color: var(--blue-deep);
}

.menu-tabs button.is-active::after {
  transform: scaleX(1);
}

.menu-layout {
  display: block;
  margin-top: 1.2rem;
}

.menu-price-columns {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 1rem;
  min-height: 52px;
  padding: 0 0.8rem;
  align-items: center;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-price-columns > div {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-price-columns > div span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.menu-price-columns > div span:nth-child(2) {
  color: var(--red);
  background: rgba(240, 24, 43, 0.055);
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr;
}

.menu-item {
  --i: 0;
  position: relative;
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 1rem;
  min-height: 104px;
  padding: 1rem 0.8rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  cursor: default;
  animation: menu-item-in 0.35s both;
  animation-delay: calc(var(--i) * 16ms);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-item::before {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -0.75rem;
  width: 3px;
  background: var(--red);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.2s ease;
}

.menu-item:hover {
  background: rgba(7, 85, 134, 0.045);
}

.menu-item:hover::before {
  transform: scaleY(1);
}

.menu-item.is-highlighted {
  background: rgba(7, 85, 134, 0.09);
  animation: menu-highlight 1.6s ease;
}

.menu-item.is-highlighted::before {
  transform: scaleY(1);
}

@keyframes menu-highlight {
  0%, 100% { background: rgba(7, 85, 134, 0.04); }
  35% { background: rgba(238, 31, 51, 0.12); }
}

@keyframes menu-item-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-number {
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
}

.menu-item-copy strong {
  display: block;
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.menu-item-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-badge {
  padding: 0.28rem 0.42rem;
  color: #fff;
  background: var(--red);
  font-size: 0.48rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-item-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.menu-item-detail {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 800;
}

.menu-prices {
  margin: 0;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-prices > div {
  min-width: 0;
  padding: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-prices > div + div {
  border-left: 1px solid var(--line);
}

.menu-prices > div:nth-child(2) {
  background: rgba(240, 24, 43, 0.055);
}

.menu-prices dt {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.menu-prices dd {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.menu-price {
  justify-self: end;
  padding-right: 1rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.menu-list.is-price-changing .menu-price {
  animation: price-pop 0.32s ease;
}

@keyframes price-pop {
  0% { transform: translateY(0); }
  45% { color: var(--blue); transform: translateY(-7px) scale(1.08); }
  100% { transform: translateY(0); }
}

.menu-note {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  min-height: 390px;
  padding: 2rem;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.menu-note::before,
.menu-note::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.menu-note::before {
  width: 290px;
  height: 290px;
  right: -130px;
  bottom: -100px;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025);
}

.menu-note::after {
  width: 110px;
  height: 110px;
  right: -20px;
  bottom: -10px;
  background: var(--red);
  border: 0;
}

.menu-note h3 {
  position: relative;
  z-index: 1;
  margin: 1.2rem 0 0;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-note > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.7;
}

.menu-note-price {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 2rem;
}

.menu-note-price span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-note-price strong {
  color: #fff;
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 1;
}

.menu-note-actions {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 1.7rem;
  left: 2rem;
  padding-top: 0.85rem;
  display: grid;
  gap: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-note-actions a {
  font-size: 0.72rem;
  font-weight: 900;
}

.menu-note-wolt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem !important;
}

.menu-note-actions a:hover {
  color: #fff;
}

.menu-note-hint {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  font-weight: 700;
}

.menu-empty {
  padding: 3rem;
  color: var(--muted);
  border: 1px solid var(--line);
  text-align: center;
}

.menu-order-box {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(240px, 0.7fr));
  color: #fff;
  background: var(--blue-deep);
}

.menu-order-box > div,
.menu-order-box > a {
  min-height: 170px;
  padding: 1.7rem;
}

.menu-order-box > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-order-box .eyebrow {
  color: rgba(255, 255, 255, 0.52);
}

.menu-order-box h3 {
  margin: 0.55rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-order-box > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s ease;
}

.menu-order-box > a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-order-box > a span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-order-box > a.menu-order-delivery span {
  color: #fff;
}

.menu-order-box > a strong {
  margin-top: 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.menu-order-delivery {
  background: var(--red);
}

.owner-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.owner-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.11) 0 2px, transparent 3px),
    linear-gradient(135deg, var(--blue) 0 53%, #06436d 53% 100%);
  background-size: 28px 28px, auto;
}

.owner-visual::before,
.owner-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.owner-visual::before {
  width: 33rem;
  height: 33rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.02);
}

.owner-visual::after {
  right: -7rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  background: var(--red);
}

.owner-frame {
  position: relative;
  z-index: 2;
  width: min(68%, 500px);
  padding: 9px;
  background: #fff;
  box-shadow: 0 2rem 4rem rgba(3, 31, 51, 0.35);
  transform: rotate(-2.2deg);
}

.owner-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.owner-year {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 15%;
  padding: 1.2rem 1.4rem 1rem;
  color: var(--blue-deep);
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(3, 31, 51, 0.22);
  transform: rotate(2deg);
}

.owner-year small,
.owner-year strong {
  display: block;
}

.owner-year small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owner-year strong {
  margin-top: 0.18rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3.3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.owner-year strong span {
  color: var(--red);
}

.owner-line {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.owner-copy {
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-copy .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.owner-copy h2 {
  max-width: 650px;
  color: #fff;
}

.owner-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  line-height: 1.8;
}

.owner-copy .owner-slogan {
  margin: 2rem 0 0;
  padding: 1.1rem 0 1.1rem 1.3rem;
  border-left: 3px solid var(--red);
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.owner-copy .button {
  width: fit-content;
  margin-top: 2rem;
}

.recipe-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 760px;
  background: var(--cream);
}

.recipe-image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.recipe-image:hover img {
  transform: scale(1.035);
}

.recipe-image > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.6rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 45, 73, 0.68);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-copy {
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recipe-copy h2 {
  color: var(--blue-deep);
}

.recipe-lead {
  max-width: 560px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.recipe-facts {
  display: grid;
  margin: 3rem 0 0;
  border-top: 1px solid rgba(5, 45, 73, 0.16);
}

.recipe-facts div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  padding: 1.1rem 0;
  align-items: center;
  border-bottom: 1px solid rgba(5, 45, 73, 0.16);
}

.recipe-facts dt {
  color: var(--red);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recipe-facts dd {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.identity-section {
  padding: clamp(5rem, 8vw, 8rem) max(24px, calc((100vw - min(1320px, calc(100vw - 48px))) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  background: var(--paper);
}

.identity-copy {
  max-width: 600px;
  padding: 0 clamp(1rem, 2vw, 2rem) 1rem 0;
  align-self: center;
}

.identity-copy h2,
.social-wall-copy h2 {
  margin: 0.55rem 0 0;
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: clamp(3.3rem, 5.8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.87;
  text-transform: uppercase;
}

.identity-copy > p:not(.eyebrow),
.social-wall-copy > p:not(.eyebrow) {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.identity-facts {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.identity-facts div {
  padding: 0.85rem 0;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.identity-facts dt {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-facts dd {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 800;
}

.identity-wall,
.identity-mascot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--blue-deep);
}

.identity-wall {
  height: 640px;
}

.identity-mascot {
  height: 680px;
  margin-bottom: 0;
}

.identity-wall img,
.identity-mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.identity-wall img {
  object-position: center;
}

.identity-mascot img {
  object-position: 52% center;
}

.identity-wall:hover img,
.identity-mascot:hover img {
  transform: scale(1.035);
}

.identity-wall::after,
.identity-mascot::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(5, 45, 73, 0.88));
  content: "";
}

.identity-wall figcaption,
.identity-mascot figcaption {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  color: #fff;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.silkeborg-story {
  padding: clamp(5rem, 8vw, 8rem) max(24px, calc((100vw - min(1320px, calc(100vw - 48px))) / 2));
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.silkeborg-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
}

.silkeborg-copy {
  max-width: 540px;
}

.silkeborg-copy .eyebrow {
  color: #81b8ff;
}

.silkeborg-copy h2 {
  margin: 0.65rem 0 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6.7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.silkeborg-copy > p:not(.eyebrow) {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.75;
}

.silkeborg-facts {
  margin: 2rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.silkeborg-facts > li {
  padding: 1rem 1rem 1rem 0;
  display: grid;
}

.silkeborg-facts > li + li {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.silkeborg-facts strong {
  font-family: var(--display);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.silkeborg-facts span {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.silkeborg-hero {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #0a70b8;
}

.silkeborg-hero::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 50%, #1688d4 50% 100%);
  content: "";
}

.silkeborg-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(3, 38, 62, 0.92));
  content: "";
}

.silkeborg-hero img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 66%;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.silkeborg-hero:hover img {
  transform: scale(1.035);
}

.silkeborg-hero figcaption {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.silkeborg-hero figcaption span {
  color: #9bc8ff;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.silkeborg-hero figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.9;
  text-align: right;
  text-transform: uppercase;
}

.community-gallery {
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 310px);
  gap: 12px;
}

.community-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #03263e;
}

.community-card:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1;
}

.community-card:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.community-card:nth-child(3) {
  grid-column: 1 / 6;
  grid-row: 2;
}

.community-card:nth-child(4) {
  grid-column: 6 / 13;
  grid-row: 2;
}

.community-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(transparent, rgba(3, 38, 62, 0.9));
  content: "";
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.community-card:nth-child(1) img {
  object-position: center 36%;
}

.community-card:nth-child(3) img {
  object-position: center 54%;
}

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

.community-card figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.95rem;
  left: 1rem;
  display: grid;
}

.community-card figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.community-card figcaption span {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.order-band {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 24px;
  overflow: hidden;
  color: #fff;
  background: var(--red);
  text-align: center;
}

.order-band::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.03), 0 0 0 10rem rgba(255, 255, 255, 0.02);
  content: "";
  transform: translate(-50%, -50%);
}

.order-band > * {
  position: relative;
  z-index: 1;
}

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

.order-band h2 {
  font-size: clamp(4.5rem, 10vw, 9rem);
}

.order-choices {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100vw - 48px));
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.order-choices a {
  min-height: 180px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(5, 45, 73, 0.14);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.order-choices a + a {
  border-left: 0;
}

.order-choices a:hover {
  background: var(--blue-deep);
  transform: translateY(-4px);
}

.order-choices span {
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-choices strong {
  margin-top: 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.order-choices small {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
}

.order-choices .mobilepay-note {
  width: fit-content;
  margin-top: 1rem;
  padding: 0.48rem 0.65rem;
  color: var(--blue-deep);
  background: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visit-section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.visit-copy h2 {
  max-width: 650px;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-details div {
  padding: 1.4rem 1.4rem 1.4rem 0;
}

.visit-details div + div {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}

.visit-details span {
  display: block;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-details strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--blue-deep);
  font-size: 0.88rem;
  line-height: 1.65;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.visit-actions .button-primary:hover {
  color: #fff;
  background: var(--blue);
}

.map-graphic {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-graphic:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px -40px rgba(5, 45, 73, 0.7);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-graphic svg {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 78%;
}

.map-road {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 8;
}

.map-road-main {
  stroke-width: 15;
}

.map-road-thin {
  stroke-width: 4;
}

.route-line {
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: route-move 1.2s linear infinite;
}

.route-start {
  fill: #fff;
}

.route-pulse {
  fill: rgba(240, 24, 43, 0.2);
  stroke: rgba(240, 24, 43, 0.55);
  animation: pulse 1.8s ease-in-out infinite;
}

.route-end {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 4;
}

.map-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.map-label-city {
  top: 18%;
  left: 17%;
}

.map-label-place {
  top: 38%;
  right: 9%;
  color: #fff;
}

.map-address {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 142px;
  padding: 1.6rem 2rem;
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(4, 36, 59, 0.94);
}

.map-address span,
.map-address small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-address strong {
  margin: 0.3rem 0;
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.social-wall {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  color: #fff;
  background: var(--blue-deep);
}

.social-wall-image {
  position: relative;
  min-height: 560px;
  display: block;
  overflow: hidden;
}

.social-wall-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-wall:hover .social-wall-image img {
  transform: scale(1.035);
}

.social-wall-image > span {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.8rem 1rem;
  color: #fff;
  background: #1264c4;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.social-wall-copy {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-wall-copy .eyebrow {
  color: rgba(255, 255, 255, 0.52);
}

.social-wall-copy h2 {
  color: #fff;
}

.social-wall-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.64);
}

.social-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-proof-grid {
  margin-top: 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.social-proof-grid > li {
  min-width: 0;
  padding: 1.15rem 0.8rem;
  display: grid;
  align-content: end;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.social-proof-grid > li:first-child {
  padding-left: 0;
}

.social-proof-grid > li:last-child {
  padding-right: 0;
  border-right: 0;
}

.social-proof-grid strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.social-proof-grid span {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.social-wall .button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.social-wall .button-outline:hover {
  color: var(--blue-deep);
  border-color: #fff;
  background: #fff;
}

.site-footer {
  padding: 0 max(24px, calc((100vw - min(1320px, calc(100vw - 48px))) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #03263e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.75fr;
  gap: 2rem;
  padding: 4rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff;
}

.footer-brand span {
  display: grid;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand small {
  margin-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main > div {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-main > div p {
  margin: 0 0 0.3rem;
  color: #ff8f99;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
}

.mobile-orderbar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-scale {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes live-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.72; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes route-move {
  to { stroke-dashoffset: -22; }
}

@keyframes pulse {
  0%, 100% { transform-origin: 487px 256px; transform: scale(0.85); opacity: 0.5; }
  50% { transform-origin: 487px 256px; transform: scale(1.15); opacity: 1; }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 80px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .mobile-header-facebook {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-content: center;
    gap: 7px;
    color: #fff;
    background: var(--red);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .site-header.is-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    height: calc(100svh - var(--header-height));
    padding: 2rem 24px;
    background: var(--blue-deep);
  }

  .mobile-nav:not([hidden]) {
    display: grid;
    align-content: start;
  }

  .mobile-nav a {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-nav a:last-child {
    margin-top: 1.5rem;
    padding: 1rem;
    border: 0;
    background: var(--red);
    text-align: center;
  }

  .mobile-nav .mobile-nav-wolt {
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-align: center;
  }

  .mobile-nav .mobile-nav-phone {
    margin-top: 0.75rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 4vh);
  }

  .hero-community {
    right: 24px;
    width: min(310px, 38vw);
  }

  .menu-toolbar {
    grid-template-columns: 1fr;
  }

  .popular-picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .popular-picks-heading {
    grid-column: 1 / -1;
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .menu-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

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

  .menu-order-box > div {
    grid-column: 1 / -1;
    min-height: 140px;
  }

  .menu-order-box > a {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .menu-order-box > a:nth-child(2) {
    border-left: 0;
  }

  .recipe-section {
    grid-template-columns: 1fr 1fr;
  }

  .owner-section {
    grid-template-columns: 1fr 1fr;
  }

  .identity-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  }

  .identity-copy {
    grid-column: auto;
    max-width: 560px;
    padding-right: 0;
  }

  .identity-mascot {
    height: 560px;
    margin-bottom: 0;
  }

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

  .silkeborg-intro {
    grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
    gap: 2.5rem;
  }

  .silkeborg-hero {
    min-height: 600px;
  }

  .community-gallery {
    grid-template-rows: repeat(2, 260px);
  }

  .visit-section {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1040px) {
  .mobile-header-facebook {
    display: none;
  }

  .hero-community {
    display: none;
    top: calc(var(--header-height) + 1rem);
    right: 24px;
    left: 24px;
    width: auto;
    padding: 0.9rem;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    transform: none;
  }

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

  .hero-community-icon {
    width: 48px;
    height: 48px;
  }

  .hero-community-copy small {
    display: none;
  }

  .hero-community-copy strong {
    font-size: 2.4rem;
  }

  .hero-community > b {
    grid-row: 1;
    grid-column: 3;
  }

  .hero-actions .button-facebook {
    display: none;
  }

  .taste-finder {
    grid-template-columns: 1fr;
  }

  .taste-finder-copy {
    padding: clamp(2.5rem, 7vw, 4rem);
  }

  .taste-finder-copy h3 {
    max-width: 680px;
    font-size: clamp(4rem, 10vw, 5.5rem);
  }

  .pizza-guide-result {
    grid-template-rows: 320px auto;
  }

  .taste-image {
    min-height: 320px;
  }

  .guide-sheet {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 24px);
    --header-height: 64px;
  }

  body {
    padding-bottom: 0;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    background: rgba(5, 45, 73, 0.98);
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 1.35rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-header-facebook {
    display: none;
  }

  .mobile-nav {
    padding: 1rem 16px;
  }

  .mobile-nav a {
    padding: 1rem 0;
    font-size: 1.65rem;
  }

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

  .hero-media img {
    object-position: 52% 56%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 36, 59, 0.15) 10%, rgba(4, 36, 59, 0.56) 42%, rgba(4, 36, 59, 0.98) 75%),
      linear-gradient(90deg, rgba(4, 36, 59, 0.42), transparent);
  }

  .hero-community {
    display: none;
  }

  .hero-content {
    justify-content: flex-end;
    min-height: 620px;
    height: auto;
    padding-top: 210px;
    padding-bottom: 2rem;
  }

  .hero h1 {
    max-width: 350px;
    margin-top: 0.75rem;
    font-size: clamp(3rem, 14vw, 3.7rem);
    line-height: 0.85;
  }

  .hero-live-order {
    margin-top: 1rem;
    padding: 0.65rem;
    gap: 0.65rem;
  }

  .hero-live-copy strong {
    font-size: 0.72rem;
  }

  .hero-live-copy > span {
    display: none;
  }

  .hero-live-order > a {
    min-height: 40px;
    padding: 0.55rem 0.65rem;
    font-size: 0.58rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0.8rem;
    gap: 0.55rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

  .hero-actions .button-facebook {
    display: none;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .hero-meta {
    display: none;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip p {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0.7rem 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-family: var(--body);
    font-size: 0.76rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .menu-section {
    padding: 3.5rem 16px;
    background-size: 32px 32px;
  }

  .taste-finder {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .taste-finder-copy {
    padding: 2rem 1.1rem;
  }

  .taste-finder-copy h3 {
    font-size: clamp(2.55rem, 12vw, 3.3rem);
    line-height: 0.92;
  }

  .taste-finder-copy > p:not(.eyebrow) {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .guide-step {
    margin-top: 1.25rem;
  }

  .guide-step + .guide-step {
    margin-top: 1rem;
  }

  .guide-options button {
    min-height: 54px;
    font-size: 0.7rem;
  }

  .taste-image {
    min-height: 170px;
  }

  .pizza-guide-result {
    grid-template-rows: 170px auto;
  }

  .pizza-guide-result .taste-image {
    display: grid;
  }

  .guide-sheet {
    min-height: 0;
    padding: 1.25rem 1.1rem 1.1rem;
  }

  .guide-sheet-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .guide-results button {
    min-height: 76px;
    grid-template-columns: 34px minmax(0, 1fr) auto 14px;
    gap: 0.5rem;
  }

  .guide-result-copy small {
    max-width: none;
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .guide-call {
    margin-top: 1rem;
  }

  .guide-call strong {
    font-size: 0.72rem;
  }

  .social-proof-grid strong {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .social-proof-grid span {
    font-size: 0.46rem;
  }

  .section-heading {
    display: grid;
    gap: 1.3rem;
  }

  .section-heading h2,
  .owner-copy h2,
  .recipe-copy h2,
  .visit-copy h2 {
    font-size: clamp(2.75rem, 12vw, 3.35rem);
    line-height: 0.92;
  }

  .section-heading > p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .menu-sync {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .menu-sync > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
    line-height: 1.6;
  }

  .popular-picks {
    margin-right: -16px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(235px, 78vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .popular-picks-heading {
    display: none;
  }

  .popular-picks::-webkit-scrollbar {
    display: none;
  }

  .popular-picks button {
    min-height: 142px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .popular-picks button:last-child {
    border-bottom: 0;
  }

  .size-picker {
    grid-template-columns: repeat(4, 1fr);
  }

  .menu-toolbar {
    position: relative;
    top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .size-picker button {
    min-height: 68px;
  }

  .menu-search {
    min-height: 58px;
  }

  .menu-status {
    padding: 0.85rem 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .menu-tabs {
    gap: 0.55rem;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 0;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tabs button {
    flex: none;
    min-height: 42px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line);
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: none;
  }

  .menu-tabs button.is-active {
    color: #fff;
    border-color: var(--blue-deep);
    background: var(--blue-deep);
  }

  .menu-tabs button::after {
    display: none;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 0;
    padding: 1.15rem 0;
    gap: 0.7rem;
  }

  .menu-price-columns {
    display: none;
  }

  .menu-prices {
    grid-column: 1 / -1;
    margin-top: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .menu-prices > div {
    min-height: 58px;
    padding: 0.65rem 0.75rem;
    display: grid;
    align-content: center;
    justify-content: start;
    border-bottom: 1px solid var(--line);
  }

  .menu-prices > div + div {
    border-left: 0;
  }

  .menu-prices > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .menu-prices dt {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    color: var(--muted);
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: normal;
  }

  .menu-prices dd {
    margin-top: 0.2rem;
    font-size: 1.35rem;
  }

  .menu-item-copy strong {
    font-size: 1.3rem;
  }

  .menu-item-copy p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .menu-price {
    padding-right: 0;
    font-size: 1.5rem;
  }

  .menu-note {
    position: relative;
    top: auto;
    min-height: 340px;
  }

  .menu-pdf-link {
    margin: 1rem 0 0;
  }

  .menu-order-box {
    grid-template-columns: 1fr;
  }

  .menu-order-box > div,
  .menu-order-box > a {
    min-height: 120px;
  }

  .menu-order-box > a {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .owner-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .owner-visual {
    min-height: 400px;
  }

  .owner-frame {
    width: min(72%, 430px);
  }

  .owner-year {
    right: 5%;
    bottom: 13%;
  }

  .owner-copy {
    padding: 3.5rem 16px;
  }

  .owner-copy > p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .identity-section {
    padding: 3.5rem 16px;
    grid-template-columns: 1fr;
  }

  .identity-copy {
    grid-column: auto;
    padding: 0 0 1rem;
  }

  .identity-copy h2,
  .social-wall-copy h2 {
    font-size: clamp(2.75rem, 12vw, 3.35rem);
    line-height: 0.92;
  }

  .identity-wall {
    height: 430px;
  }

  .identity-mascot {
    height: 400px;
  }

  .silkeborg-story {
    padding: 3.5rem 16px;
  }

  .silkeborg-intro {
    grid-template-columns: 1fr;
  }

  .silkeborg-copy {
    max-width: 100%;
  }

  .silkeborg-copy h2 {
    font-size: clamp(3rem, 13vw, 3.7rem);
    line-height: 0.9;
  }

  .silkeborg-hero {
    min-height: 420px;
  }

  .silkeborg-hero figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .silkeborg-hero figcaption strong {
    text-align: left;
  }

  .community-gallery {
    margin: 3rem -16px 0;
    padding: 0 16px 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .community-gallery::-webkit-scrollbar {
    display: none;
  }

  .community-card,
  .community-card:nth-child(n) {
    width: auto;
    height: 340px;
    flex: 0 0 84vw;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .community-card:nth-child(2) img {
    object-position: center 58%;
  }

  .recipe-section {
    grid-template-columns: 1fr;
  }

  .recipe-image {
    min-height: 430px;
  }

  .recipe-copy {
    padding: 4rem 16px;
  }

  .recipe-lead {
    font-size: 0.9rem;
  }

  .order-band {
    padding: 3.5rem 16px;
  }

  .order-band h2 {
    font-size: clamp(3rem, 13vw, 3.7rem);
    line-height: 0.9;
  }

  .order-choices {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .order-choices a {
    min-height: 130px;
  }

  .order-choices a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    border-left: 0;
  }

  .visit-section {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    padding: 3.5rem 0;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .visit-details div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .visit-actions {
    display: grid;
  }

  .map-graphic {
    min-height: 360px;
  }

  .social-wall {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .social-wall-image {
    min-height: 280px;
  }

  .social-wall-copy {
    padding: 3.5rem 16px;
  }

  .social-actions {
    display: grid;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 1.2rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-orderbar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    min-height: 56px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    color: #fff;
    background: var(--blue-deep);
    box-shadow: 0 -8px 30px rgba(5, 45, 73, 0.18);
  }

  .mobile-orderbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 900;
  }

  .mobile-orderbar a:last-child {
    background: var(--red);
  }

  .mobile-orderbar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .reveal.will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 390px) {
  .hero-community {
    gap: 0.6rem;
  }

  .hero-community-copy strong {
    font-size: 2rem;
  }

  .hero-community > b {
    font-size: 0.56rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-actions .button {
    font-size: 0.74rem;
  }

  .menu-item {
    grid-template-columns: 1.9rem minmax(0, 1fr) auto;
  }

  .menu-number {
    width: 1.9rem;
    height: 1.9rem;
  }

  .menu-price {
    font-size: 1.3rem;
  }

  .menu-prices > div {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  .menu-prices dt {
    font-size: 0.54rem;
  }

  .menu-prices dd {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) and (max-height: 600px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    height: var(--header-height);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 520px;
    height: auto;
  }

  .hero-content {
    min-height: 520px;
    height: auto;
    padding-top: 100px;
    padding-bottom: 2rem;
    justify-content: center;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 3.4rem;
    line-height: 0.84;
  }

  .hero-meta {
    display: none;
  }

  .taste-finder-copy {
    padding: 2rem;
  }

  .taste-finder-copy h3 {
    font-size: 3.2rem;
  }

  .pizza-guide-result {
    grid-template-rows: 180px auto;
  }

  .taste-image {
    min-height: 180px;
  }

  .guide-sheet {
    min-height: 0;
  }
}

@media (max-width: 1040px) {
  :root {
    --page: calc(100vw - 24px);
    --header-height: 64px;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  h1,
  h2,
  h3 {
    font-family: var(--body) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.08 !important;
    text-transform: none !important;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    background: rgba(5, 45, 73, 0.98);
  }

  .header-inner {
    height: var(--header-height);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 1.35rem;
  }

  .menu-toggle {
    width: 88px;
    height: 44px;
    grid-template-columns: 21px auto;
    grid-template-rows: 2px 2px;
    column-gap: 9px;
    row-gap: 7px;
  }

  .menu-toggle span:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle span:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .menu-toggle b {
    grid-column: 2;
    grid-row: 1 / 3;
    display: block;
    align-self: center;
    font-size: 0.76rem;
    line-height: 1;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding-top: var(--header-height);
    overflow: hidden;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: clamp(310px, 54vw, 430px);
  }

  .hero-media img {
    animation: none;
    object-position: center 43%;
  }

  .hero-shade {
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    height: clamp(310px, 54vw, 430px);
    background: linear-gradient(180deg, rgba(5, 45, 73, 0.05), rgba(5, 45, 73, 0.42));
  }

  .hero-content {
    width: var(--page);
    min-height: 0;
    height: auto;
    padding: 2rem 0 2.25rem;
    justify-content: flex-start;
    background: var(--blue-deep);
  }

  .hero h1 {
    max-width: 620px;
    margin-top: 0.7rem;
    font-size: clamp(2.65rem, 8vw, 4.2rem);
  }

  .hero h1 span {
    margin-top: 0.15rem;
  }

  .hero-live-order {
    width: min(620px, 100%);
    margin-top: 1.25rem;
  }

  .hero-live-order > a {
    min-height: 44px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 0.8rem;
  }

  .hero-meta,
  .hero-community,
  .mobile-header-facebook {
    display: none;
  }

  .intro-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 12px;
    background: var(--paper);
  }

  .intro-strip p {
    min-width: 0;
    min-height: 78px;
    padding: 0.9rem 1rem;
    justify-content: flex-start;
    gap: 0.75rem;
    border: 0;
    background: var(--red);
    font-family: var(--body);
    font-size: 0.86rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .intro-strip-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .intro-strip-copy strong {
    line-height: 1.2;
  }

  .intro-strip-copy small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.67rem;
  }

  .section-heading h2,
  .owner-copy h2,
  .visit-copy h2,
  .order-band h2,
  .identity-copy h2,
  .social-wall-copy h2,
  .silkeborg-copy h2 {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }

  .section-heading > p,
  .owner-copy > p:not(.eyebrow),
  .identity-copy > p:not(.eyebrow),
  .silkeborg-copy > p:not(.eyebrow),
  .visit-copy > p:not(.eyebrow),
  .social-wall-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .mobile-menu-shortcuts {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .mobile-menu-shortcuts a {
    min-height: 54px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--blue-deep);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
  }

  .mobile-menu-shortcuts a:first-child {
    background: var(--red);
  }

  .popular-picks {
    display: none;
  }

  .taste-finder {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .taste-finder-copy h3 {
    font-size: clamp(2rem, 7vw, 3.25rem);
  }

  .taste-finder-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .menu-toolbar {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mobile-category-picker {
    min-height: 62px;
    padding: 0.55rem 0.75rem;
    display: grid;
    align-content: center;
    gap: 0.3rem;
    border: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-category-picker span {
    color: var(--red);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-category-picker select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    border: 0;
    outline: 0;
    color: var(--blue-deep);
    background: transparent;
    font-size: 1rem;
    font-weight: 800;
  }

  .price-overview,
  .menu-tabs {
    display: none;
  }

  .menu-search {
    min-height: 62px;
  }

  .menu-search input {
    min-height: 44px;
  }

  .menu-price-columns {
    display: none;
  }

  .menu-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 0;
    padding: 1.15rem 0;
    gap: 0.7rem;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .menu-prices {
    grid-column: 1 / -1;
    margin-top: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .menu-prices > div {
    min-height: 58px;
    padding: 0.65rem 0.75rem;
    display: grid;
    align-content: center;
    justify-content: start;
    border-bottom: 1px solid var(--line);
  }

  .menu-prices > div + div {
    border-left: 0;
  }

  .menu-prices > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .menu-prices dt {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    color: var(--muted);
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: normal;
  }

  .menu-prices dd {
    margin-top: 0.2rem;
    font-size: 1.35rem;
  }

  .owner-section,
  .identity-section,
  .silkeborg-intro,
  .visit-section,
  .social-wall {
    grid-template-columns: 1fr;
  }

  .owner-visual {
    min-height: 440px;
  }

  .identity-mascot,
  .silkeborg-hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .community-gallery {
    margin: 3rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 1rem;
    overflow: visible;
  }

  .community-card,
  .community-card:nth-child(n) {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    grid-column: auto;
    grid-row: auto;
  }

  .community-card:nth-child(2) {
    aspect-ratio: 3 / 4;
  }

  .footer-main a,
  .footer-bottom a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .social-wall-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .hero-media,
  .hero-shade {
    height: 290px;
  }

  .hero-content {
    padding: 1.5rem 0 1.75rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 2.85rem);
  }

  .hero-actions,
  .mobile-menu-shortcuts,
  .menu-toolbar {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .intro-strip p {
    min-height: 68px;
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .intro-strip p:last-child {
    border-bottom: 0;
  }

  .intro-strip-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .intro-strip-copy strong {
    font-size: 0.88rem;
  }

  .intro-strip-copy small {
    font-size: 0.7rem;
  }

  .food-control {
    padding: 1.2rem 16px;
  }

  .food-control-inner {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 0.85rem;
  }

  .food-control-icon {
    width: 46px;
    height: 46px;
    grid-row: 1;
  }

  .food-control-copy h2 {
    font-size: 1.35rem;
    line-height: 1.05;
  }

  .food-control-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
  }

  .food-control-actions a {
    min-height: 50px;
  }

  .mobile-orderbar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: calc(64px + env(safe-area-inset-bottom, 0px));
    padding-right: env(safe-area-inset-right, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    padding-left: env(safe-area-inset-left, 0px);
    color: #fff;
    background: var(--blue-deep);
    box-shadow: 0 -8px 30px rgba(5, 45, 73, 0.2);
  }

  .mobile-orderbar a {
    min-width: 0;
    min-height: 64px;
    padding: 0.7rem 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-orderbar a:last-child {
    background: var(--red);
  }

  .mobile-orderbar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-orderbar svg {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  body:has(input:focus) .mobile-orderbar {
    display: none;
  }

  .menu-section,
  .owner-copy,
  .identity-section,
  .silkeborg-story,
  .order-band,
  .social-wall-copy {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pizza-guide-result {
    grid-template-rows: auto auto;
  }

  .taste-finder,
  .taste-finder-copy,
  .pizza-guide-result,
  .taste-image,
  .guide-sheet,
  .guide-results,
  .guide-results button,
  .guide-call {
    min-width: 0;
    max-width: 100%;
  }

  .guide-options button,
  .guide-result-copy,
  .guide-result-copy strong,
  .guide-result-copy small {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .guide-results button {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .guide-result-number {
    width: auto;
    min-width: 34px;
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  .guide-call {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .guide-call strong {
    white-space: normal;
  }

  .taste-image,
  .pizza-guide-result .taste-image {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .owner-visual {
    min-height: 360px;
  }

  .community-gallery {
    grid-template-columns: 1fr;
  }

  .community-card:nth-child(n) {
    aspect-ratio: 4 / 3;
  }

  .community-card:nth-child(2) {
    aspect-ratio: 3 / 4;
  }

  .silkeborg-facts {
    grid-template-columns: 1fr;
  }

  .silkeborg-facts > li {
    min-width: 0;
    padding-right: 0;
  }

  .silkeborg-facts > li + li {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .silkeborg-facts strong,
  .silkeborg-facts span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-brand,
  .footer-main > div:last-child {
    min-width: 0;
    grid-column: auto;
  }

  .footer-brand span,
  .footer-brand strong,
  .footer-brand small {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .map-address {
    min-width: 0;
    padding-right: 20px;
    padding-left: 20px;
  }

  .map-address span,
  .map-address strong,
  .map-address small {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.menu-section button:focus-visible,
.menu-section input:focus-visible,
.visit-section a:focus-visible,
.recipe-section a:focus-visible {
  outline-color: var(--red);
}
