:root {
  --red: #cb0b0b;
  --red-dark: #a20707;
  --green: #56993a;
  --green-dark: #397723;
  --cream: #faf2df;
  --cream-soft: #fffaf0;
  --ink: #231b18;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(76, 22, 16, 0.14);
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

.section-pad {
  padding: 110px 0;
}

.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;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.topline {
  min-height: 38px;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--cream);
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topline p {
  margin: 0;
}

.topline a {
  border-bottom: 1px solid rgba(250, 242, 223, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 242, 223, 0.96);
  border-bottom: 1px solid rgba(203, 11, 11, 0.13);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 190px;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 8px 0 5px;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--cream);
  background: var(--red);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 52px;
  padding: 14px 22px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 11px 18px 9px;
}

.button-red {
  color: var(--cream);
  background: var(--red);
  box-shadow: 5px 5px 0 var(--green);
}

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

.button-cream {
  color: var(--red);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--green);
}

.button-cream:hover,
.button-cream:focus-visible {
  color: var(--cream);
  background: var(--green-dark);
}

.button-outline-light {
  color: var(--cream);
  border-color: rgba(250, 242, 223, 0.7);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--red);
  background: var(--cream);
  border-color: var(--cream);
}

.button-outline {
  color: var(--red);
  border-color: var(--red);
  background: transparent;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  border-bottom: 3px solid var(--green);
  font-weight: 900;
  line-height: 1.25;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.light-link {
  color: var(--cream);
  border-color: var(--cream);
}

.checker {
  width: 100%;
  height: 28px;
  flex: 0 0 auto;
  background-size: 56px 28px;
}

.checker-cream {
  background-image:
    linear-gradient(45deg, var(--cream) 25%, transparent 25%),
    linear-gradient(-45deg, var(--cream) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--cream) 75%),
    linear-gradient(-45deg, transparent 75%, var(--cream) 75%);
  background-position: 0 0, 0 14px, 28px -14px, -28px 0;
}

.checker-red {
  background-color: var(--cream);
  background-image:
    linear-gradient(45deg, var(--red) 25%, transparent 25%),
    linear-gradient(-45deg, var(--red) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--red) 75%),
    linear-gradient(-45deg, transparent 75%, var(--red) 75%);
  background-position: 0 0, 0 14px, 28px -14px, -28px 0;
}

.hero {
  min-height: calc(100svh - 126px);
  display: flex;
  flex-direction: column;
  color: var(--cream);
  background: var(--red);
  overflow: hidden;
}

.hero-grid {
  flex: 1;
  min-height: 680px;
  padding: 68px 0 62px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 5px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--cream);
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

h1 {
  max-width: 670px;
  font-size: clamp(4rem, 7vw, 7.2rem);
}

h2 {
  font-size: clamp(3.2rem, 5.2vw, 5.5rem);
}

h3 {
  font-size: 2.35rem;
}

.script-line {
  margin: 18px 0 22px;
  color: var(--cream);
  font-family: "Lobster Two", cursive;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  transform: rotate(-1.2deg);
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(250, 242, 223, 0.92);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border: 4px solid rgba(250, 242, 223, 0.55);
  border-radius: 50%;
}

.hero-pizza {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  filter: drop-shadow(0 34px 38px rgba(80, 0, 0, 0.34));
  animation: pizza-float 5s ease-in-out infinite;
}

.hero-mascot {
  position: absolute;
  right: -3%;
  bottom: -4%;
  z-index: 4;
  width: 118px;
  transform: rotate(10deg);
}

.pizza-note {
  position: absolute;
  z-index: 3;
  margin: 0;
  padding: 11px 15px 9px;
  color: var(--red);
  background: var(--cream);
  border: 3px solid var(--green);
  box-shadow: 4px 4px 0 var(--green);
  font-family: "Lobster Two", cursive;
  font-size: 21px;
  line-height: 1;
}

.note-one {
  top: 9%;
  left: 0;
  transform: rotate(-5deg);
}

.note-two {
  right: 1%;
  bottom: 20%;
  transform: rotate(4deg);
}

@keyframes pizza-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.welcome {
  position: relative;
  background: var(--cream);
}

.welcome::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 54px solid rgba(86, 153, 58, 0.12);
  border-radius: 50%;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 100px;
  align-items: start;
}

.section-heading h2,
.gallery-heading h2,
.together-copy h2 {
  color: var(--red);
}

.welcome-copy {
  padding-top: 46px;
}

.welcome-copy p {
  margin-bottom: 24px;
}

.lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
}

.menu-section {
  color: var(--cream);
  background: var(--green);
}

.menu-intro {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 60px;
}

.menu-intro .eyebrow {
  color: var(--cream);
}

.menu-intro h2 {
  max-width: 760px;
}

.menu-intro > p {
  max-width: 360px;
  margin: 0;
  color: rgba(250, 242, 223, 0.88);
  font-size: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card {
  color: var(--ink);
  background: var(--cream);
  border: 4px solid var(--cream);
  box-shadow: 8px 8px 0 var(--red);
  transform: rotate(-0.8deg);
}

.menu-card:nth-child(2) {
  transform: translateY(24px) rotate(0.7deg);
}

.menu-card:nth-child(3) {
  transform: rotate(0.4deg);
}

.menu-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.045);
}

.menu-card-copy {
  padding: 26px 24px 30px;
}

.menu-card-copy h3 {
  color: var(--red);
}

.menu-card-copy p:last-child {
  margin: 17px 0 0;
}

.menu-number {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.menu-cta {
  margin-top: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.menu-cta .script-line {
  margin: 0;
  font-size: 35px;
}

.together {
  background: var(--cream);
  overflow: hidden;
}

.together-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 92px;
  align-items: center;
}

.team-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--red);
  border-radius: 200px 200px 0 0;
  box-shadow: var(--shadow);
}

.team-visual .checker {
  position: absolute;
  top: 62px;
  left: 0;
  background-color: transparent;
}

.team-visual img {
  position: relative;
  z-index: 2;
  width: min(520px, 92%);
}

.together-copy {
  position: relative;
}

.together-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
}

.together-copy .lead {
  color: var(--green-dark);
}

.button-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.drumstick-mascot {
  position: absolute;
  right: -9%;
  bottom: -44%;
  width: 130px;
  transform: rotate(12deg);
}

.gallery-section {
  background: var(--cream-soft);
}

.gallery-heading {
  margin-bottom: 44px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 6px 6px 0 var(--green);
}

.gallery-item:nth-child(2) {
  transform: rotate(1deg);
}

.gallery-item:nth-child(3) {
  transform: rotate(-1deg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-tall {
  aspect-ratio: 1.2 / 1;
}

.visit {
  color: var(--cream);
  background: var(--red);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  align-items: center;
}

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

.visit-copy address {
  margin: 30px 0 10px;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.visit-copy address a:hover,
.visit-phone:hover {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 4px;
}

.visit-phone {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 22px;
  font-weight: 900;
}

.visit-copy > p {
  max-width: 460px;
  color: rgba(250, 242, 223, 0.9);
}

.map-wrap {
  min-height: 510px;
  padding: 12px;
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--green);
  transform: rotate(0.5deg);
}

.map-wrap iframe {
  width: 100%;
  height: 486px;
  display: block;
  border: 0;
}

.site-footer {
  color: var(--cream);
  background: var(--green-dark);
}

.footer-grid {
  padding: 76px 0 62px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 58px;
}

.footer-brand img {
  width: 126px;
  height: 126px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(250, 242, 223, 0.34);
  border-radius: 10px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.18);
  line-height: 1.1;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.app-badge:hover {
  border-color: var(--cream);
  background: rgba(0, 0, 0, 0.32);
}

.app-badge-copy {
  display: flex;
  flex-direction: column;
}

.app-badge-copy span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.app-badge-copy strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.footer-title {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a:not(.button) {
  display: block;
  margin: 0 0 12px;
  color: rgba(250, 242, 223, 0.9);
}

.footer-grid > div:not(.footer-brand) > a:not(.button):hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}

.footer-bottom {
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(250, 242, 223, 0.24);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

/* Interior menu pages */
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1) !important;
}

.page-hero {
  color: var(--cream);
  background: var(--red);
  overflow: hidden;
}

.page-hero-grid {
  min-height: 540px;
  padding: 58px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 64px;
}

.page-hero h1 {
  margin-bottom: 4px;
}

.page-hero .script-line {
  margin-bottom: 20px;
}

.page-hero-grid > div > p:last-child {
  max-width: 620px;
  font-size: 21px;
}

.page-hero-grid > img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(18px 24px 0 rgba(96, 5, 5, 0.35));
}

.catering-page-hero .page-hero-grid > img {
  height: 420px;
  object-fit: cover;
  object-position: center 25%;
  border: 10px solid var(--cream);
  transform: rotate(1.5deg);
}

.sticky-order {
  position: sticky;
  top: 0;
  z-index: 15;
  min-height: 64px;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: var(--cream);
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgba(35, 27, 24, 0.18);
  font-weight: 800;
}

.sticky-order .button {
  min-height: 44px;
  padding: 10px 20px;
}

.menu-browser,
.catering-menu {
  background: var(--cream-soft);
}

.menu-browser-heading {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
}

.menu-browser-heading h2 {
  max-width: 760px;
}

.menu-browser-heading > p {
  max-width: 480px;
}

.category-nav {
  position: sticky;
  top: 78px;
  z-index: 10;
  margin: 0 0 74px;
  padding: 14px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  color: var(--cream);
  background: var(--ink);
  border-radius: 14px;
  scrollbar-width: thin;
}

.category-nav a,
.category-nav span {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(250, 242, 223, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.category-nav a:hover,
.category-nav a:focus-visible {
  color: var(--ink);
  background: var(--cream);
}

.catering-menu .category-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.catering-menu .category-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.menu-category {
  padding: 0 0 88px;
  scroll-margin-top: 155px;
}

.menu-category + .menu-category {
  padding-top: 76px;
  border-top: 3px solid var(--red);
}

.menu-category-title {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.65fr);
  align-items: end;
  gap: 42px;
}

.menu-category-title h2 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.menu-category-title > p {
  max-width: 500px;
}

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

.menu-item {
  min-height: 156px;
  padding: 25px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  border: 1px solid rgba(35, 27, 24, 0.12);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(86, 153, 58, 0.16);
}

.menu-item h3 {
  margin-bottom: 7px;
  font-size: 23px;
}

.menu-item p {
  color: #655852;
  font-size: 16px;
  line-height: 1.45;
}

.menu-item-price {
  min-width: 88px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  color: var(--red);
  white-space: nowrap;
}

.menu-item-price strong {
  font-size: 20px;
}

.menu-item-price span {
  color: #766861;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-source-note,
.menu-error {
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 2px solid var(--red);
  background: var(--cream);
}

.menu-source-note p {
  max-width: 700px;
}

.menu-loading {
  padding: 80px 0;
  text-align: center;
  font-family: "Lobster Two", cursive;
  font-size: 34px;
}

.catering-subsection {
  margin-top: 46px;
}

.catering-subsection > h3 {
  margin-bottom: 20px;
  font-family: "Lobster Two", cursive;
  font-size: 36px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  border-top: 2px solid var(--ink);
}

.price-list p {
  margin: 0;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px dashed rgba(35, 27, 24, 0.34);
}

.price-list span {
  color: var(--red-dark);
  font-weight: 700;
  text-align: right;
}

.catering-final {
  position: relative;
  margin-top: 18px;
  padding: 58px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px 48px;
  color: var(--cream);
  background: var(--red);
  overflow: hidden;
}

.catering-final > img {
  position: absolute;
  right: 25%;
  bottom: -35px;
  width: 150px;
  opacity: 0.18;
}

.catering-final h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.catering-final .button-row {
  position: relative;
  flex-direction: column;
}

.compact-footer {
  padding-top: 0;
}

@media (max-width: 980px) {
  .page-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .page-hero-grid > img {
    width: min(560px, 90%);
    margin-inline: auto;
  }

  .menu-browser-heading,
  .menu-category-title {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .category-nav {
    top: 10px;
  }

  .catering-final {
    grid-template-columns: 1fr;
  }

  .catering-final .button-row {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-hero-grid {
    padding: 52px 0;
    gap: 34px;
  }

  .catering-page-hero .page-hero-grid > img {
    height: 320px;
  }

  .sticky-order {
    justify-content: space-between;
    padding-inline: 14px;
    font-size: 14px;
  }

  .category-nav {
    width: calc(100% + 28px);
    margin-left: -14px;
    border-radius: 0;
  }

  .catering-menu .category-nav {
    display: flex;
  }

  .menu-category {
    padding-bottom: 66px;
  }

  .menu-category + .menu-category {
    padding-top: 58px;
  }

  .menu-item {
    min-height: 0;
    padding: 21px 19px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-item-price {
    align-items: flex-start;
  }

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

  .price-list p {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .price-list span {
    text-align: left;
  }

  .menu-source-note,
  .menu-error,
  .catering-final {
    padding: 30px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 86px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    min-height: calc(100svh - 88px);
    padding: 46px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    color: var(--cream);
    background: var(--red);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav > a:not(.button) {
    padding: 16px 0;
    border-bottom: 1px solid rgba(250, 242, 223, 0.28);
    font-size: 24px;
  }

  .main-nav .button {
    margin-top: 22px;
    color: var(--red);
    background: var(--cream);
  }

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

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

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

  .hero-grid {
    min-height: auto;
    padding: 72px 0 40px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(690px, 100%);
    min-height: 560px;
    margin-inline: auto;
  }

  .welcome-grid,
  .together-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .welcome-copy {
    padding-top: 0;
  }

  .menu-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .menu-card:nth-child(2) {
    transform: rotate(0.7deg);
  }

  .menu-card:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }

  .team-visual {
    width: min(610px, 100%);
    margin-inline: auto;
  }

  .drumstick-mascot {
    right: 0;
    bottom: -32%;
  }

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

  .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
  }

  .map-wrap {
    min-height: 440px;
  }

  .map-wrap iframe {
    height: 416px;
  }

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

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

@media (max-width: 640px) {
  :root {
    --shell: min(1180px, calc(100% - 28px));
  }

  .shell {
    width: calc(100% - 28px);
  }

  body {
    font-size: 17px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .topline {
    min-height: 34px;
    justify-content: space-between;
    gap: 12px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .topline p,
  .topline a {
    white-space: nowrap;
  }

  .topline p {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .topline a {
    flex: 0 0 auto;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    width: 154px;
  }

  .main-nav {
    top: 74px;
    min-height: calc(100svh - 74px);
  }

  .checker {
    height: 20px;
    background-size: 40px 20px;
  }

  .checker-cream,
  .checker-red {
    background-position: 0 0, 0 10px, 20px -10px, -20px 0;
  }

  .hero-grid {
    min-width: 0;
    padding-top: 56px;
    gap: 28px;
  }

  .hero-copy {
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 13vw, 3.8rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-copy .script-line {
    max-width: 100%;
    font-size: 1.75rem;
    overflow-wrap: anywhere;
  }

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

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

  .hero-visual::before {
    width: 96%;
  }

  .hero-mascot {
    right: -2%;
    bottom: 1%;
    width: 88px;
  }

  .pizza-note {
    font-size: 17px;
  }

  .note-one {
    top: 4%;
  }

  .note-two {
    right: 0;
    bottom: 16%;
  }

  .welcome-grid {
    gap: 34px;
  }

  .lead {
    font-size: 21px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .menu-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-visual {
    min-height: 480px;
  }

  .drumstick-mascot {
    display: none;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gallery-item:first-child {
    grid-column: auto;
    aspect-ratio: 1.15 / 1;
  }

  .gallery-item {
    aspect-ratio: 1.15 / 1;
  }

  .visit-grid {
    gap: 42px;
  }

  .map-wrap {
    min-height: 360px;
    padding: 8px;
    box-shadow: 6px 6px 0 var(--green);
  }

  .map-wrap iframe {
    height: 344px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 26px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

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

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