:root {
  --ink: #0b0a08;
  --ink-soft: #14110d;
  --paper: #f2eee3;
  --muted: #a49d91;
  --gold: #edae16;
  --gold-light: #ffc638;
  --rule: rgba(237, 174, 22, 0.38);
  --display: "Barlow Condensed", sans-serif;
  --body: "Oswald", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.45;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.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; }
.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .07;
  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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.wordmark { display: inline-flex; flex-direction: column; text-decoration: none; font-family: var(--display); font-weight: 900; line-height: .72; letter-spacing: -.05em; transform: skew(-4deg); }
.wordmark span { color: var(--gold); font-size: 2rem; }
.wordmark small { color: white; font-size: .78rem; letter-spacing: .35em; margin-top: 9px; margin-left: 7px; }
.site-nav { display: flex; align-items: center; gap: 32px; text-transform: uppercase; font-family: var(--display); font-weight: 700; font-size: .9rem; letter-spacing: .08em; }
.site-nav a { text-decoration: none; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold); }
.site-nav .nav-order { border: 1px solid var(--gold); padding: 12px 18px; color: var(--gold); }
.site-nav .nav-order:hover { color: var(--ink); background: var(--gold); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  align-items: center;
  gap: 40px;
  padding: 145px max(24px, calc((100vw - 1320px) / 2)) 90px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(11,10,8,.98) 0 52%, rgba(11,10,8,.72) 70%, rgba(11,10,8,.92) 100%),
    radial-gradient(circle at 79% 46%, rgba(237,174,22,.3), transparent 29%),
    repeating-linear-gradient(128deg, transparent 0 60px, rgba(255,255,255,.025) 61px 62px),
    var(--ink);
}
.hero::after { content: ""; position: absolute; width: 480px; height: 480px; border: 1px solid rgba(237,174,22,.18); border-radius: 50%; right: -120px; top: 150px; box-shadow: 0 0 0 70px rgba(237,174,22,.03), 0 0 0 140px rgba(237,174,22,.02); }
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 20px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-family: var(--display); font-weight: 800; font-size: .82rem; }
.eyebrow span { display: block; width: 46px; height: 7px; background: var(--gold); transform: skew(-25deg); box-shadow: 8px 0 0 rgba(237,174,22,.35); }
.hero h1 { margin: 0; font-family: var(--display); text-transform: uppercase; font-weight: 900; font-size: clamp(4rem, 7.5vw, 7.3rem); line-height: .82; letter-spacing: -.055em; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--gold); font-style: italic; text-shadow: 4px 4px 0 rgba(237,174,22,.13); }
.hero-intro { max-width: 650px; margin: 32px 0; color: #cbc4b8; font-size: 1.12rem; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 23px; text-decoration: none; text-transform: uppercase; font-family: var(--display); font-weight: 900; font-size: .95rem; letter-spacing: .07em; border: 1px solid; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-3px); }
.button svg { width: 19px; fill: currentColor; }
.button-primary { color: var(--ink); background: var(--gold); border-color: var(--gold); box-shadow: 5px 5px 0 rgba(237,174,22,.2); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.32); }
.button-ghost:hover { border-color: white; }
.hero-notes { display: flex; gap: 24px; margin-top: 38px; color: #948c80; text-transform: uppercase; font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .09em; }
.hero-notes span { display: flex; align-items: center; gap: 10px; }
.hero-notes span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-art { position: relative; z-index: 2; min-height: 540px; display: flex; align-items: center; justify-content: center; transform: rotate(2deg); }
.hero-stamp { position: absolute; top: 30px; right: 8%; color: var(--gold); font-family: var(--display); font-weight: 900; font-style: italic; font-size: 2rem; line-height: .75; text-align: right; transform: rotate(7deg); }
.hero-stamp span { color: white; font-size: 1rem; letter-spacing: .25em; }
.burger-build { position: relative; width: min(460px, 88%); height: 385px; filter: drop-shadow(0 38px 38px rgba(0,0,0,.65)); transform: rotate(-4deg); }
.burger-build > div { position: absolute; left: 7%; width: 86%; }
.bun { background: linear-gradient(180deg, #f4b82c, #b65d0b 80%); border: 4px solid #4e2805; }
.bun-top { top: 20px; height: 120px; border-radius: 52% 52% 25% 25% / 75% 75% 23% 23%; background-image: radial-gradient(ellipse at center, #f9e38e 0 2px, transparent 3px), linear-gradient(180deg, #f6c13b, #b85d0a 80%); background-size: 52px 37px, auto; }
.lettuce { top: 130px; height: 28px; background: #73872b; border-radius: 50%; clip-path: polygon(0 20%, 8% 50%, 16% 5%, 25% 70%, 36% 15%, 45% 80%, 56% 10%, 66% 70%, 77% 8%, 88% 60%, 100% 16%, 98% 85%, 0 100%); }
.cheese { z-index: 3; top: 157px; height: 45px; background: #f5b824; clip-path: polygon(0 0, 100% 0, 94% 65%, 75% 58%, 67% 100%, 51% 60%, 35% 92%, 19% 58%, 4% 76%); }
.patty { top: 172px; height: 55px; border-radius: 45%; background: repeating-linear-gradient(8deg, #3b160c 0 8px, #5c2615 9px 15px); border: 5px solid #210c07; }
.cheese-two { top: 217px; transform: scaleX(.96); }
.patty-two { top: 235px; transform: scaleX(.96); }
.sauce { z-index: 4; top: 284px; height: 18px; background: #e8d1a5; border-radius: 50%; box-shadow: 0 7px 0 #7d1f0d; }
.bun-bottom { top: 292px; height: 77px; border-radius: 20% 20% 45% 45% / 30% 30% 58% 58%; }
.art-caption { position: absolute; bottom: 6px; left: 4%; margin: 0; color: var(--muted); font-family: var(--display); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.price-burst { position: absolute; left: -2%; top: 15%; display: grid; place-items: center; width: 100px; height: 100px; color: var(--ink); background: var(--gold); border-radius: 50%; text-align: center; text-transform: uppercase; font-family: var(--display); font-size: .67rem; font-weight: 800; line-height: 1; transform: rotate(-12deg); box-shadow: 0 0 0 6px var(--ink), 0 0 0 8px var(--gold); }
.price-burst strong { display: block; font-size: 1.42rem; }

.marquee { position: relative; z-index: 3; overflow: hidden; color: var(--ink); background: var(--gold); border-block: 3px solid var(--ink); transform: rotate(-1.2deg) scale(1.02); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 14px 0; animation: ticker 24s linear infinite; font-family: var(--display); font-size: 1.15rem; font-weight: 900; letter-spacing: .08em; }
.marquee-track i { width: 9px; height: 9px; background: var(--ink); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.menu-section { padding: 130px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 45px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .visit-copy h2 { margin: 0; text-transform: uppercase; font-family: var(--display); font-size: clamp(3.5rem, 7vw, 6rem); line-height: .85; letter-spacing: -.045em; }
.section-heading h2 em, .visit-copy h2 em { color: var(--gold); font-style: italic; }
.section-heading > a { margin-bottom: 6px; color: var(--gold); text-transform: uppercase; text-underline-offset: 5px; font-family: var(--display); font-size: .8rem; font-weight: 700; letter-spacing: .08em; }
.menu-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 16px; }
.menu-panel, .munch-box { position: relative; border: 1px solid var(--rule); background: linear-gradient(135deg, rgba(255,255,255,.025), transparent 48%), var(--ink-soft); overflow: hidden; }
.menu-panel { padding: 30px; }
.menu-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(135deg, transparent 0 70px, rgba(237,174,22,.02) 71px 72px); }
.panel-heading { position: relative; display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 19px; border-bottom: 2px solid var(--gold); }
.panel-heading span { color: #5d5549; font-family: var(--display); font-size: .9rem; font-weight: 800; }
.panel-heading h3, .munch-box h3 { margin: 0; color: var(--gold); text-transform: uppercase; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem); line-height: .85; letter-spacing: -.03em; }
.menu-list { position: relative; }
.menu-item { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 15px; padding: 18px 0; border-bottom: 1px dashed rgba(237,174,22,.31); }
.menu-item h4, .pizza-grid h4, .extras-columns h4 { margin: 0; color: var(--paper); text-transform: uppercase; font-family: var(--display); font-size: 1.14rem; line-height: 1.05; }
.menu-item p, .pizza-grid p { margin: 6px 0 0; color: var(--muted); font-size: .84rem; }
.menu-item > strong { color: var(--gold); font-family: var(--display); font-size: 1.23rem; }
.menu-item.featured { margin-inline: -30px; padding-inline: 30px; background: rgba(237,174,22,.06); }
.fully-loaded { padding: 25px 34px 31px; border: 3px solid var(--gold); border-radius: 28px; background: #080807; }
.fully-loaded::before { opacity: .45; }
.loaded-number { position: absolute; z-index: 2; top: 20px; right: 24px; color: #5d5549; font-family: var(--display); font-size: .9rem; font-weight: 800; }
.loaded-title { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 17px; padding: 12px 18px 23px; border-bottom: 3px solid var(--gold); text-align: center; text-transform: uppercase; }
.loaded-title::after { content: ""; width: 42px; height: 6px; margin-left: 5px; background: var(--gold); }
.loaded-title > div { display: grid; line-height: .74; transform: rotate(-1deg); }
.loaded-title strong, .loaded-title span { font-family: var(--display); font-weight: 900; letter-spacing: -.055em; }
.loaded-title strong { color: var(--gold); font-size: clamp(3rem, 5.2vw, 5rem); }
.loaded-title span { color: var(--paper); font-size: clamp(3.4rem, 5.7vw, 5.6rem); text-shadow: 3px 3px 0 rgba(255,255,255,.08); }
.loaded-burger { flex: 0 0 88px; width: 88px; fill: none; stroke: var(--gold); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.loaded-burger circle { fill: var(--gold); stroke: none; }
.loaded-description { position: relative; z-index: 1; margin: 25px 0 10px; padding-bottom: 24px; color: var(--paper); border-bottom: 2px solid var(--gold); text-align: center; text-transform: uppercase; font-family: var(--display); font-size: clamp(1.15rem, 2.2vw, 1.65rem); font-weight: 800; line-height: 1.12; letter-spacing: .02em; }
.loaded-list { position: relative; z-index: 1; }
.loaded-list > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 3px dotted var(--gold); }
.loaded-list > div:last-child { border-bottom: 0; padding-bottom: 1px; }
.loaded-list h4 { margin: 0; color: var(--gold); text-transform: uppercase; font-family: var(--display); font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1; }
.loaded-list strong { color: var(--paper); font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1; }
.munch-box { grid-column: 1 / -1; display: grid; grid-template-columns: 90px 1fr auto 1.4fr; align-items: center; gap: 28px; padding: 38px; background: var(--gold); color: var(--ink); border-color: var(--gold); transform: rotate(.4deg); }
.munch-box::after { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(11,10,8,.45); pointer-events: none; }
.munch-number { font-family: var(--display); font-size: 1rem; font-weight: 900; align-self: start; }
.munch-title { position: relative; z-index: 1; }
.munch-title p { margin: 0 0 8px; text-transform: uppercase; font-family: var(--display); font-weight: 800; letter-spacing: .15em; font-size: .7rem; }
.munch-box h3 { color: var(--ink); font-size: clamp(3rem, 6vw, 5rem); white-space: nowrap; }
.munch-price { position: relative; z-index: 1; padding: 17px 28px; border-inline: 1px solid rgba(11,10,8,.28); text-align: center; }
.munch-price span { display: block; text-transform: uppercase; font-family: var(--display); font-size: .7rem; font-weight: 800; letter-spacing: .2em; }
.munch-price strong { font-family: var(--display); font-size: 2.6rem; line-height: 1; }
.munch-box ul { position: relative; z-index: 1; margin: 0; padding: 0; list-style: none; }
.munch-box li { padding: 6px 0; border-bottom: 1px dashed rgba(11,10,8,.3); font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: .95rem; }
.munch-box li span { font-size: .7rem; }
.pizzas { grid-column: 1 / -1; }
.pizza-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); }
.pizza-grid > div { padding: 22px 18px 4px; border-right: 1px dashed rgba(237,174,22,.3); text-align: center; }
.pizza-grid > div:last-child { border: 0; }
.pizza-grid p { min-height: 47px; }
.pizza-grid span { display: inline-block; margin: 12px 2px 0; padding: 7px 9px; color: var(--gold); border: 1px solid var(--rule); font-family: var(--display); font-size: .8rem; font-weight: 700; }
.extras { grid-column: 1 / -1; }
.extras-columns { position: relative; display: grid; grid-template-columns: .8fr 1.35fr .85fr; gap: 30px; padding-top: 25px; }
.extras-columns > div { padding-right: 25px; border-right: 1px dashed rgba(237,174,22,.3); }
.extras-columns > div:last-child { padding: 0; border: 0; }
.extras-columns h4 { color: var(--gold); font-size: 1.45rem; margin-bottom: 13px; }
.extras-columns h4 small { font-size: .65rem; }
.extras-columns p { display: flex; justify-content: space-between; gap: 10px; margin: 5px 0; color: var(--muted); font-size: .86rem; }
.extras-columns p strong { color: var(--paper); }
.extras-columns .sauce-list { display: block; line-height: 1.75; }
.meal-deal { margin-top: 17px; padding: 13px; color: var(--ink); background: var(--gold); text-transform: uppercase; font-family: var(--display); font-weight: 900; }
.meal-deal strong, .meal-deal small { display: block; }
.meal-deal strong { font-size: 1.6rem; }
.meal-deal small { font-size: .67rem; }
.burger-meal-deal { position: relative; margin: 22px -30px -30px; padding: 18px 30px; border-top: 1px solid rgba(11,10,8,.25); }

.visit-section { position: relative; padding: 100px 0; color: var(--ink); background: var(--paper); overflow: hidden; }
.visit-section::before { content: "STACK’D"; position: absolute; left: -20px; bottom: -120px; color: rgba(11,10,8,.035); font-family: var(--display); font-size: 19rem; font-weight: 900; letter-spacing: -.08em; }
.visit-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.visit-copy .eyebrow { color: #9a6800; }
.contact-stack { margin-top: 42px; }
.contact-stack a { display: flex; align-items: center; gap: 17px; padding: 18px 0; border-bottom: 1px solid rgba(11,10,8,.15); text-decoration: none; }
.contact-stack a:hover svg { transform: rotate(-8deg) scale(1.08); }
.contact-stack svg { width: 35px; height: 35px; padding: 8px; fill: var(--ink); background: var(--gold); transition: transform .2s ease; }
.contact-stack span { font-family: var(--display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; }
.contact-stack small { display: block; color: #746f66; font-size: .64rem; letter-spacing: .15em; }
.hours-card { position: relative; padding: 42px; color: var(--paper); background: var(--ink); box-shadow: 15px 15px 0 var(--gold); transform: rotate(-1deg); }
.hours-card > p { margin: 0 0 28px; color: var(--gold); text-transform: uppercase; font-family: var(--display); font-size: 2.1rem; font-weight: 900; }
.hours-card > div { display: grid; gap: 3px; padding: 15px 0; border-bottom: 1px dashed var(--rule); }
.hours-card span { color: var(--muted); text-transform: uppercase; font-size: .75rem; letter-spacing: .08em; }
.hours-card strong { font-family: var(--display); font-size: 1.25rem; }
.hours-card .button { width: 100%; margin-top: 28px; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 38px max(24px, calc((100vw - 1320px) / 2)); background: var(--ink); }
footer p { margin: 0; color: #7d766c; text-transform: uppercase; font-family: var(--display); font-size: .72rem; letter-spacing: .12em; }
footer p:last-child { text-align: right; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 960px) {
  .site-header { width: calc(100% - 36px); }
  .nav-toggle { position: relative; z-index: 3; display: grid; gap: 5px; width: 44px; height: 44px; padding: 11px; background: var(--gold); border: 0; }
  .nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 3px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px; padding: 70px 32px; background: var(--ink); transform: translateX(100%); transition: transform .35s ease; }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 2.5rem; }
  .site-nav .nav-order { margin-top: 15px; font-size: 1.2rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 160px; }
  .hero-art { min-height: 470px; max-width: 620px; width: 100%; justify-self: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .munch-box { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .munch-number { position: absolute; top: 24px; right: 28px; }
  .munch-price { border-right: 0; }
  .munch-box ul { grid-column: 1 / -1; }
  .pizzas, .extras { grid-column: auto; }
  .pizza-grid { grid-template-columns: repeat(2, 1fr); }
  .pizza-grid > div { border-bottom: 1px dashed rgba(237,174,22,.3); }
  .pizza-grid > div:last-child { grid-column: 1 / -1; }
  .extras-columns { grid-template-columns: 1fr 1fr; }
  .extras-columns > div:nth-child(2) { border: 0; }
  .extras-columns > div:last-child { grid-column: 1 / -1; border-top: 1px dashed rgba(237,174,22,.3); padding-top: 22px; }
  .visit-inner { gap: 40px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; padding-bottom: 62px; }
  .section-shell { width: min(100% - 28px, 1180px); }
  .site-header { width: calc(100% - 28px); padding-top: 19px; }
  .wordmark span { font-size: 1.65rem; }
  .hero { padding: 130px 18px 65px; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 5.2rem); }
  .hero-intro { margin: 25px 0; }
  .hero-actions .button { width: 100%; }
  .hero-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
  .hero-art { min-height: 350px; margin-top: 10px; }
  .burger-build { height: 310px; transform: rotate(-4deg) scale(.8); }
  .hero-stamp { top: -6px; font-size: 1.55rem; }
  .price-burst { left: 0; width: 84px; height: 84px; }
  .art-caption { bottom: -2px; }
  .menu-section { padding: 95px 0 80px; }
  .section-heading { display: block; }
  .section-heading > a { display: inline-block; margin-top: 22px; }
  .menu-panel { padding: 22px 18px; }
  .menu-item.featured { margin-inline: -18px; padding-inline: 18px; }
  .burger-meal-deal { margin: 20px -18px -22px; padding: 17px 18px; }
  .menu-item h4 { font-size: 1rem; }
  .menu-item p { font-size: .78rem; }
  .fully-loaded { padding: 20px 18px 24px; border-radius: 22px; }
  .loaded-title { gap: 10px; padding-inline: 0; }
  .loaded-title::after { display: none; }
  .loaded-burger { flex-basis: 64px; width: 64px; }
  .loaded-title strong { font-size: 2.75rem; }
  .loaded-title span { font-size: 3.2rem; }
  .loaded-description { font-size: 1.05rem; }
  .loaded-list h4 { font-size: 1.25rem; }
  .loaded-list strong { font-size: 1.5rem; }
  .munch-box { grid-template-columns: 1fr; gap: 20px; padding: 30px 24px; }
  .munch-box h3 { white-space: normal; font-size: 3.7rem; }
  .munch-price { padding: 15px 0; border-inline: 0; border-block: 1px solid rgba(11,10,8,.3); }
  .munch-box ul { grid-column: auto; }
  .pizza-grid { grid-template-columns: 1fr; }
  .pizza-grid > div, .pizza-grid > div:last-child { grid-column: auto; border-right: 0; }
  .extras-columns { grid-template-columns: 1fr; }
  .extras-columns > div, .extras-columns > div:nth-child(2), .extras-columns > div:last-child { grid-column: auto; padding: 0 0 20px; border: 0; border-bottom: 1px dashed rgba(237,174,22,.3); }
  .visit-section { padding: 80px 0 90px; }
  .visit-inner { grid-template-columns: 1fr; }
  .hours-card { padding: 30px 24px; box-shadow: 8px 8px 0 var(--gold); }
  footer { grid-template-columns: 1fr; text-align: center; padding-bottom: 32px; }
  footer .wordmark { justify-self: center; }
  footer p:last-child { text-align: center; }
  .mobile-call { position: fixed; z-index: 14; inset: auto 0 0; display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; color: var(--ink); background: var(--gold); text-decoration: none; text-transform: uppercase; font-family: var(--display); font-size: .76rem; font-weight: 900; letter-spacing: .09em; box-shadow: 0 -5px 20px rgba(0,0,0,.35); }
  .mobile-call strong { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
