@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-extrabold-italic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --cream: #f8f1e7;
  --cream-deep: #eadfce;
  --paper: #fffaf3;
  --red: #cc3328;
  --red-dark: #ae261e;
  --brown: #65483e;
  --ink: #2f2724;
  --muted: #76655e;
  --line: rgba(101, 72, 62, 0.22);
  --shadow: 0 24px 70px rgba(82, 46, 31, 0.13);
  --radius: 1.4rem;
  --shell: min(1240px, calc(100% - 48px));
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

button,
input {
  font: inherit;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.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: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  color: white;
  background: var(--red);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 241, 231, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand {
  width: 190px;
}

.brand img {
  width: 100%;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  font-weight: 600;
}

.site-nav a,
.site-footer nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.header-call {
  justify-self: end;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border: 2px solid var(--red);
  border-radius: 14px;
  color: var(--red);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  color: white;
  background: var(--red);
  transform: translateY(-2px);
}

.header-call svg {
  width: 21px;
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 32%, rgba(215, 158, 104, 0.18), transparent 28%),
    var(--cream);
}

.hero-inner {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: 24px;
  padding-block: 66px 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1 {
  margin-bottom: 25px;
  color: var(--red);
  font-size: clamp(4.8rem, 7.2vw, 7.8rem);
  font-style: italic;
  line-height: 0.88;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--brown);
  font-size: 1.24rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 32px;
}

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 24px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(204, 51, 40, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 18px 38px rgba(204, 51, 40, 0.28);
}

.button-secondary {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255, 250, 243, 0.64);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: white;
  background: var(--red);
}

.button svg {
  width: 22px;
  flex: 0 0 auto;
}

.call-button {
  min-width: 210px;
  justify-content: flex-start;
}

.call-button > svg {
  width: 32px;
  fill: currentColor;
  stroke: none;
}

.call-button span {
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  line-height: 1.14;
}

.call-button small {
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-facts {
  display: grid;
  gap: 10px;
  color: var(--brown);
}

.hero-facts div,
.hero-facts a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-facts [data-delivery-row] > span {
  display: grid;
  gap: 1px;
}

.hero-facts [data-delivery-row] strong {
  color: var(--red);
  font-size: 0.95rem;
}

.hero-facts [data-delivery-row] small {
  color: var(--muted);
  font-size: 0.72rem;
}

[data-delivery-row][hidden] {
  display: none;
}

.hero-facts a:hover {
  color: var(--red);
}

.hero-facts svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  align-self: stretch;
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  width: min(760px, 115%);
  max-width: none;
  right: -105px;
  top: 50%;
  transform: translateY(-46%) rotate(-5deg);
  filter: drop-shadow(0 34px 28px rgba(89, 50, 26, 0.2));
  mix-blend-mode: multiply;
  animation: hero-float 7s ease-in-out infinite;
}

.pizza-halo {
  position: absolute;
  width: 560px;
  height: 560px;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #e9d5b9;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(-46%) rotate(-5deg); }
  50% { transform: translateY(-49%) rotate(-3.5deg); }
}

.category-preview {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.78);
}

.category-preview-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.category-preview button {
  min-height: 100px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--brown);
  background: transparent;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.category-preview button:first-child {
  border-left: 1px solid var(--line);
}

.category-preview button:hover,
.category-preview button:focus-visible {
  color: var(--red);
  background: white;
}

.lunch-band {
  color: white;
  background: var(--red);
}

.lunch-inner {
  min-height: 170px;
  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  align-items: center;
  gap: 42px;
}

.lunch-inner > div {
  display: flex;
  align-items: baseline;
  gap: 26px;
}

.lunch-inner h2 {
  margin: 0;
  font-size: 4.3rem;
  font-style: italic;
  line-height: 1;
}

.lunch-inner p {
  margin: 0;
}

.lunch-inner > div p {
  font-size: 1.55rem;
  font-weight: 700;
}

.lunch-divider {
  width: 1px;
  height: 68px;
  background: rgba(255, 255, 255, 0.45);
}

.lunch-note {
  font-size: 1.2rem;
}

.lunch-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 8px;
  border-bottom: 1px solid white;
  font-weight: 700;
}

.menu-section {
  padding-block: 110px 120px;
  background: var(--cream);
}

.menu-intro {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 38px;
}

.menu-intro h2,
.food-feature h2,
.location h2 {
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(4.3rem, 7vw, 7rem);
  font-style: italic;
  line-height: 0.95;
}

.menu-intro p {
  max-width: 570px;
  margin: 0;
  color: var(--brown);
  font-size: 1.2rem;
}

.menu-intro img {
  position: absolute;
  right: 0;
  width: 470px;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 25px 24px rgba(89, 50, 26, 0.16));
  mix-blend-mode: multiply;
}

.menu-tools {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.search-field {
  position: relative;
  width: min(520px, 100%);
  display: flex;
  align-items: center;
}

.search-field > svg {
  position: absolute;
  left: 20px;
  width: 22px;
  pointer-events: none;
}

.search-field input {
  width: 100%;
  height: 58px;
  padding: 0 54px;
  border: 1px solid var(--line);
  outline: 0;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.74);
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.search-field input:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 4px rgba(204, 51, 40, 0.1);
}

.search-clear {
  position: absolute;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--brown);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.search-field.has-value .search-clear {
  opacity: 1;
  pointer-events: auto;
}

.menu-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.category-tabs {
  position: sticky;
  z-index: 20;
  top: 91px;
  display: flex;
  gap: 8px;
  padding: 9px;
  margin-bottom: 56px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 241, 231, 0.94);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

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

.category-tab {
  min-width: max-content;
  min-height: 45px;
  padding: 0 19px;
  border: 0;
  border-radius: 10px;
  color: var(--brown);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.category-tab:hover,
.category-tab:focus-visible {
  color: var(--red);
  background: white;
}

.category-tab[aria-selected="true"] {
  color: white;
  background: var(--red);
}

.menu-results {
  display: grid;
  gap: 80px;
}

.menu-group {
  scroll-margin-top: 180px;
}

.menu-group-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--brown);
}

.menu-group-title {
  margin: 0;
  color: var(--brown);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.menu-group-price {
  margin: 0;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: right;
}

.menu-group-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-style: italic;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
}

.menu-item {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 21px 8px 18px;
  border-bottom: 1px solid var(--line);
  transition: background 170ms ease, padding 170ms ease;
}

.menu-item:hover {
  padding-inline: 15px;
  background: rgba(255, 250, 243, 0.62);
}

.menu-item h3 {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-item-price {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

mark {
  padding: 0 2px;
  color: inherit;
  background: rgba(204, 51, 40, 0.16);
}

.menu-empty {
  padding: 70px 20px;
  text-align: center;
}

.menu-empty h3 {
  margin-bottom: 8px;
  color: var(--brown);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
}

.menu-empty p {
  color: var(--muted);
}

.food-feature {
  padding-block: 100px;
  overflow: hidden;
  background: var(--paper);
}

.food-feature-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr 0.65fr;
  align-items: center;
  gap: 40px;
}

.food-feature h2 {
  color: var(--brown);
  font-size: clamp(3.7rem, 6vw, 6.2rem);
}

.food-feature-copy p {
  max-width: 390px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--red);
  color: var(--red);
  font-weight: 700;
}

.food-shot {
  margin: 0;
}

.food-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(77, 47, 30, 0.15));
  mix-blend-mode: multiply;
}

.food-shot-large {
  transform: rotate(-3deg);
}

.food-shot-small {
  transform: translateY(70px) rotate(4deg);
}

.location {
  padding-block: 120px 100px;
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 80px;
}

.location h2 {
  color: var(--brown);
  font-size: clamp(4.2rem, 7vw, 7rem);
}

.location h2 em {
  color: var(--red);
}

.location-address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--brown);
  font-size: 1.1rem;
  font-weight: 600;
}

.location-address:hover {
  color: var(--red);
}

.location-address svg {
  width: 26px;
  flex: 0 0 auto;
  color: var(--red);
}

.location-call {
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  margin-bottom: 28px;
  border-radius: 18px;
  color: white;
  background: var(--red);
  box-shadow: 0 18px 34px rgba(204, 51, 40, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.location-call:hover,
.location-call:focus-visible {
  transform: translateY(-4px);
  background: var(--red-dark);
}

.location-call svg {
  width: 42px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.location-call span {
  display: flex;
  flex-direction: column;
}

.location-call strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.location-call small {
  margin-top: 6px;
  font-size: 0.95rem;
}

.location-hours {
  max-width: 500px;
}

.location-hours p {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding-block: 13px;
  margin: 0;
  border-bottom: 1px dotted var(--line);
}

.map-frame {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: #ddd0b9;
}

.map-frame iframe {
  width: 100%;
  height: 610px;
  display: block;
  border: 0;
  filter: sepia(0.28) saturate(0.68) contrast(0.95);
}

.map-frame > a {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px solid var(--red);
  border-radius: 14px;
  color: var(--red);
  background: rgba(255, 250, 243, 0.96);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(60, 39, 30, 0.15);
  transition: color 180ms ease, background 180ms ease;
}

.map-frame > a:hover,
.map-frame > a:focus-visible {
  color: white;
  background: var(--red);
}

.map-frame > a svg {
  width: 22px;
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  width: 180px;
}

.site-footer nav {
  display: flex;
  gap: 34px;
  font-weight: 600;
}

.site-footer p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.mobile-callbar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(204, 51, 40, 0.35);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    gap: 24px;
  }

  .hero-inner {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8vw, 6.4rem);
  }

  .hero-visual img {
    width: 700px;
    right: -190px;
  }

  .pizza-halo {
    width: 470px;
    height: 470px;
    right: -60px;
  }

  .food-feature-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .food-shot-small {
    display: none;
  }

  .location-grid {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 70px;
  }

  .header-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .brand {
    width: 158px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--brown);
    background: transparent;
  }

  .nav-toggle > span:not(.sr-only) {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

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

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 54px 28px;
  }

  .hero h1 {
    font-size: clamp(4rem, 16vw, 6rem);
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
    margin-top: -30px;
  }

  .hero-visual img {
    width: 620px;
    max-width: 120%;
    right: 50%;
    transform: translate(50%, -48%) rotate(-4deg);
    animation: none;
  }

  .pizza-halo {
    width: 380px;
    height: 380px;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .category-preview-inner {
    width: 100%;
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    overflow-x: auto;
  }

  .category-preview button {
    min-height: 82px;
    font-size: 1rem;
  }

  .lunch-inner {
    min-height: 230px;
    grid-template-columns: 1fr auto;
    gap: 12px 24px;
    padding-block: 34px;
  }

  .lunch-inner > div {
    gap: 18px;
  }

  .lunch-inner h2 {
    font-size: 3.6rem;
  }

  .lunch-divider {
    display: none;
  }

  .lunch-note {
    grid-column: 1;
  }

  .lunch-inner > a {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .menu-section,
  .location {
    padding-block: 80px;
  }

  .menu-intro {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 250px;
  }

  .menu-intro img {
    width: 410px;
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }

  .category-tabs {
    top: 77px;
    margin-inline: -16px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

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

  .menu-group-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-group-price {
    text-align: left;
  }

  .food-feature-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .food-feature-grid {
    gap: 26px;
  }

  .food-shot-large {
    transform: none;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 500px;
    height: 500px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    justify-self: center;
  }

  .mobile-callbar {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--red);
  }

  .mobile-callbar a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 700;
  }

  .mobile-callbar svg {
    width: 23px;
    fill: currentColor;
    stroke: none;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 5rem);
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    width: 480px;
  }

  .pizza-halo {
    width: 300px;
    height: 300px;
  }

  .hero-actions {
    display: grid;
  }

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

  .button {
    width: 100%;
  }

  .hero-facts {
    font-size: 0.92rem;
  }

  .lunch-inner {
    grid-template-columns: 1fr;
  }

  .lunch-inner > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .lunch-inner > a,
  .lunch-note {
    grid-column: 1;
    grid-row: auto;
  }

  .menu-intro h2,
  .food-feature h2,
  .location h2 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .menu-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .menu-item {
    min-height: 94px;
  }

  .location-call {
    padding-inline: 20px;
  }

  .location-call svg {
    width: 34px;
  }

  .location-hours p {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 420px;
    height: 420px;
  }

  .map-frame > a {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .site-footer nav {
    gap: 22px;
  }
}

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

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

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