/*
  Pizza Crush — static pizza restaurant frontend
  Mobile-first, no frameworks or external font dependencies.
  Final Pizza Crush brand, menu, location and contact content.
*/

:root {
  --ink: #171713;
  --ink-deep: #0d0d0b;
  --charcoal: #22221d;
  --paper: #f5efe3;
  --paper-deep: #e9dece;
  --white: #fffaf1;
  --muted: #777264;
  --line: rgba(23, 23, 19, 0.16);
  --line-light: rgba(255, 250, 241, 0.17);
  --red: #d63620;
  --red-dark: #a82415;
  --orange: #ffb13b;
  --green: #1e7b54;
  --shadow: 0 22px 60px rgba(30, 24, 17, 0.13);
  --radius: 3px;
  --container: 1240px;
  --header-height: 70px;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  padding-bottom: 64px;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
dl,
dd,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  border-radius: 2px;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.announcement {
  position: relative;
  z-index: 101;
  min-height: 34px;
  padding: 7px 14px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  line-height: 1.6;
}

.announcement p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8cf6a8;
  box-shadow: 0 0 0 4px rgba(140, 246, 168, 0.15);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 34px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  background: var(--ink-deep);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.logo-brand {
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
}

.brand-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.footer-brand .logo-brand {
  width: min(100%, 290px);
}

.footer-brand .brand-logo {
  width: 100%;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--red);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

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

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.34em;
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 0;
  place-content: center;
  gap: 5px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  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);
}

.primary-nav {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  padding: 100px 8vw 70px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  background:
    radial-gradient(circle at 85% 20%, rgba(214, 54, 32, 0.25), transparent 34%),
    var(--ink-deep);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.primary-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-nav > a:not(.nav-phone) {
  font-family: var(--font-display);
  font-size: clamp(34px, 11vw, 54px);
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-phone)::after {
  content: "↗";
  margin-left: 10px;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.48em;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid var(--line-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nav-phone svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
}

/* Hero */
.hero {
  --hero-image: url("../images/pizza-crush-hero-960.webp");
  position: relative;
  display: flex;
  min-height: min(850px, calc(100svh - 34px));
  overflow: hidden;
  align-items: center;
  background-color: var(--ink-deep);
  background-image:
    linear-gradient(90deg, rgba(8, 8, 7, 0.98) 0%, rgba(8, 8, 7, 0.87) 41%, rgba(8, 8, 7, 0.32) 74%, rgba(8, 8, 7, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.55) 0%, transparent 38%),
    var(--hero-image);
  background-position: 62% center;
  background-size: cover;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(5, 5, 4, 0.64));
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  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='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 68px);
  padding-bottom: 74px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

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

.hero h1,
.section-heading h2,
.about-copy h2,
.order-intro h2,
.location-heading h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(58px, 15.8vw, 118px);
  text-wrap: balance;
}

.hero h1 em,
.about-copy h2 em {
  color: var(--orange);
  font-style: normal;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
}

.hero-lede {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 250, 241, 0.79);
  font-size: clamp(15px, 2.2vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border 180ms ease, transform 180ms ease;
}

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

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

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

.button-ghost {
  border-color: rgba(255, 250, 241, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-highlights {
  display: grid;
  max-width: 640px;
  margin-top: 38px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.hero-highlights li {
  min-width: 0;
  padding: 15px 11px 0 0;
}

.hero-highlights li + li {
  padding-left: 11px;
  border-left: 1px solid var(--line-light);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
}

.hero-highlights strong {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.hero-highlights span {
  overflow: hidden;
  margin-top: 3px;
  color: rgba(255, 250, 241, 0.54);
  font-size: 9px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-scroll {
  display: none;
}

/* Marquee */
.marquee {
  overflow: hidden;
  padding: 15px 0;
  background: var(--orange);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 20px;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee b {
  color: var(--red);
  font-size: 12px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Section headings */
.section-heading {
  display: grid;
  gap: 22px;
}

.section-heading h2,
.order-intro h2,
.about-copy h2 {
  margin-top: 14px;
  font-size: clamp(48px, 12vw, 92px);
}

.section-heading > p {
  max-width: 540px;
  color: var(--muted);
  font-size: 14px;
}

/* Menu */
.menu-section {
  position: relative;
  padding: 80px 0 96px;
  background:
    radial-gradient(circle at 0 0, rgba(214, 54, 32, 0.07), transparent 25%),
    var(--paper);
}

.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -190px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(214, 54, 32, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(214, 54, 32, 0.035), 0 0 0 110px rgba(214, 54, 32, 0.02);
  pointer-events: none;
}

.category-nav {
  position: sticky;
  z-index: 20;
  top: 69px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin: 38px -16px 0;
  padding: 12px 16px;
  background: var(--paper);
  border-block: 1px solid var(--line);
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

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

.category-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border 180ms ease;
}

.category-nav a:hover,
.category-nav a.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.menu-category {
  padding-top: 74px;
  scroll-margin-top: 92px;
}

.category-heading {
  display: flex;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.category-heading > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.category-number {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
}

.category-heading p {
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.category-heading h3 {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: clamp(27px, 7vw, 42px);
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.category-heading > a {
  display: none;
  flex: 0 0 auto;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-heading > a span {
  color: var(--red);
}

.menu-grid {
  display: grid;
  gap: 20px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.11);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 9px 25px rgba(38, 29, 18, 0.05);
  cursor: pointer;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.menu-card:hover,
.menu-card:focus-visible {
  border-color: rgba(214, 54, 32, 0.55);
  box-shadow: var(--shadow);
}

.menu-card.is-selected {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 54, 32, 0.14), var(--shadow);
}

.menu-card.is-selected::after {
  content: "Selected";
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  border-radius: 2px;
  background: var(--orange);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-media {
  position: relative;
  aspect-ratio: 1.14;
  overflow: hidden;
  background: var(--charcoal);
}

.card-media::after,
.drinks-image::after,
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(12, 12, 10, 0.2));
  pointer-events: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  transition: filter 180ms ease;
}

.menu-card:hover .card-media img,
.menu-card:focus-visible .card-media img {
  filter: saturate(1.06);
}

.image-crop-right img {
  object-position: 73% center;
  transform: scale(1.14);
}

.image-crop-left img {
  object-position: 26% center;
  transform: scale(1.12);
}

.image-zoom img {
  transform: scale(1.18);
}

.card-badge {
  position: absolute;
  z-index: 2;
  bottom: 11px;
  left: 11px;
  padding: 6px 8px;
  border-radius: 2px;
  background: var(--orange);
  color: var(--ink);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.card-badge.hot {
  background: var(--red);
  color: var(--white);
}

.card-badge.new {
  background: #d5e8b5;
  color: #27461f;
}

.card-body {
  padding: 19px 18px 18px;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.card-title-row h4 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.03;
  text-transform: uppercase;
}

.card-title-row > span {
  flex: 0 0 auto;
  color: rgba(23, 23, 19, 0.28);
  font-size: 9px;
  font-weight: 900;
}

.card-body > p {
  min-height: 48px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
}

.size-list li {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: #4f4b41;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.select-prompt {
  display: flex;
  margin-top: 17px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.select-prompt b {
  font-size: 15px;
  transition: transform 180ms ease;
}

.menu-card:hover .select-prompt b {
  transform: translate(2px, -2px);
}

.compact-card .card-media {
  aspect-ratio: 1.35;
}

.drinks-layout {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.drinks-image {
  position: relative;
  min-height: 290px;
  overflow: hidden;
}

.drinks-image img {
  width: 100%;
  height: 100%;
}

.drink-list {
  padding: 7px 18px 18px;
}

.drink-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}

.drink-row:hover,
.drink-row:focus-visible,
.drink-row.is-selected {
  color: var(--orange);
}

.drink-row > span {
  color: rgba(255, 250, 241, 0.36);
  font-size: 9px;
  font-weight: 800;
}

.drink-row h4 {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.drink-row p {
  margin-top: 5px;
  color: rgba(255, 250, 241, 0.53);
  font-size: 9px;
}

.drink-row > b {
  display: none;
  color: rgba(255, 250, 241, 0.6);
  font-size: 8px;
  font-weight: 700;
}

.drink-row > i {
  color: var(--red);
  font-size: 18px;
  font-style: normal;
}

/* Actual menu lists and deals */
.price-list li {
  border-color: rgba(214, 54, 32, 0.24);
  background: rgba(214, 54, 32, 0.055);
  color: var(--red-dark);
}

.menu-list-layout .drink-row {
  grid-template-columns: 24px minmax(0, 1fr) auto 16px;
}

.menu-list-layout .drink-row > b {
  display: block;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.deal-banner {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.deal-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 11, 0.94) 0%, rgba(13, 13, 11, 0.68) 47%, rgba(13, 13, 11, 0.12) 100%);
}

.deal-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}

.deal-banner > div {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 64px 24px;
}

.deal-banner > div > p {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.deal-banner h4 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(38px, 9vw, 70px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.93;
  text-transform: uppercase;
}

.deal-banner > div > span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 11px;
}

.deal-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.deal-card {
  display: flex;
  min-height: 260px;
  padding: 21px;
  border: 1px solid rgba(23, 23, 19, 0.13);
  border-radius: var(--radius);
  flex-direction: column;
  background: #fffaf2;
  box-shadow: 0 9px 25px rgba(38, 29, 18, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.deal-card:hover,
.deal-card:focus-visible,
.deal-card.is-selected {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.deal-card.is-selected {
  background: #fff4df;
  box-shadow: 0 0 0 3px rgba(214, 54, 32, 0.13), var(--shadow);
}

.deal-card.featured-deal {
  background: var(--ink);
  color: var(--white);
}

.deal-card.featured-deal .select-prompt {
  border-color: var(--line-light);
  color: var(--orange);
}

.deal-card-head {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.featured-deal .deal-card-head {
  border-color: var(--line-light);
}

.deal-card-head span {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.deal-card-head strong {
  flex: 0 0 auto;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
}

.featured-deal .deal-card-head strong {
  color: var(--orange);
}

.deal-card ul {
  display: grid;
  gap: 5px;
  margin-top: 15px;
  flex: 1 1 auto;
  color: var(--muted);
  font-size: 11px;
}

.featured-deal ul {
  color: rgba(255, 250, 241, 0.64);
}

.deal-card li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--red);
  font-weight: 900;
}

.featured-deal li::before {
  color: var(--orange);
}

/* About */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 85% 100%, rgba(214, 54, 32, 0.2), transparent 32%),
    var(--ink-deep);
  color: var(--white);
}

.about-section::before {
  content: "EST. 20XX";
  position: absolute;
  top: 20px;
  right: -12px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 250px);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}

.about-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
}

.about-stamp {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: -28px;
  display: grid;
  width: 112px;
  height: 112px;
  border: 5px solid var(--ink-deep);
  border-radius: 50%;
  place-content: center;
  background: var(--orange);
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.about-stamp strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 0.9;
}

.about-stamp span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-stamp i {
  color: var(--red);
  font-style: normal;
  font-size: 10px;
}

.about-copy h2 {
  max-width: 700px;
}

.about-lede {
  margin-top: 27px;
  color: var(--white) !important;
  font-size: clamp(17px, 2.6vw, 21px) !important;
  line-height: 1.55 !important;
}

.about-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 250, 241, 0.57);
  font-size: 13px;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  margin-top: 32px;
  border-block: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.about-stats div {
  min-width: 0;
  padding: 17px 8px 17px 0;
}

.about-stats div + div {
  padding-left: 9px;
  border-left: 1px solid var(--line-light);
}

.about-stats dt {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.about-stats dd {
  margin-top: 5px;
  overflow: hidden;
  color: rgba(255, 250, 241, 0.48);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  margin-top: 29px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--orange);
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
}

/* Inquiry form */
.order-section {
  position: relative;
  padding: 88px 0 100px;
  background:
    linear-gradient(rgba(23, 23, 19, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
}

.order-layout {
  display: grid;
  gap: 47px;
}

.order-intro h2 {
  max-width: 720px;
}

.order-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.not-checkout {
  display: flex;
  max-width: 600px;
  margin-top: 28px;
  padding: 15px;
  border-left: 3px solid var(--red);
  gap: 12px;
  background: rgba(214, 54, 32, 0.07);
}

.not-checkout svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--red);
}

.not-checkout strong,
.not-checkout span {
  display: block;
}

.not-checkout strong {
  font-size: 11px;
  text-transform: uppercase;
}

.not-checkout span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.order-steps {
  max-width: 600px;
  margin-top: 28px;
}

.order-steps li {
  display: flex;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
  gap: 13px;
}

.order-steps li > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  background: var(--ink);
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
}

.order-steps strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
}

.order-steps p {
  color: var(--muted);
  font-size: 10px;
}

.form-shell {
  position: relative;
  padding: 22px 18px 24px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: var(--shadow);
}

.form-shell.form-flash {
  animation: form-flash 1.15s ease;
}

@keyframes form-flash {
  0%, 100% { box-shadow: var(--shadow); }
  20% { border-color: var(--red); box-shadow: 0 0 0 8px rgba(214, 54, 32, 0.18), var(--shadow); }
}

.form-topline {
  display: flex;
  margin: -22px -18px 23px;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
}

.form-topline p {
  min-width: 0;
}

.form-topline span,
.form-topline strong {
  display: block;
}

.form-topline p > span {
  color: rgba(255, 250, 241, 0.45);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-topline strong {
  overflow: hidden;
  margin-top: 2px;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 177, 59, 0.12);
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-grid {
  display: grid;
  gap: 17px;
}

.field {
  position: relative;
  min-width: 0;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 7px;
  color: #39372f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.field label > span,
.field legend > span {
  color: var(--red);
}

.field label > small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 19, 0.22);
  border-radius: 2px;
  background: #fffef9;
  color: var(--ink);
  font-size: 13px;
  outline: 0;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 13px;
}

.field select {
  padding-right: 35px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5 7.5 5 5 5-5' fill='none' stroke='%23171713' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.field textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aaa596;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 54, 32, 0.1);
  background: #fff;
}

.field select:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  background-color: #f1ede4;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.choice-field.has-error .choice-card > span {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(214, 54, 32, 0.08);
}

.fieldset,
.choice-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field-help,
.error-message,
.character-count {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}

.error-message {
  min-height: 0;
  color: var(--red);
  font-weight: 700;
}

.character-count {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 2px 4px;
  background: #fffef9;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.choice-card {
  position: relative;
  margin: 0 !important;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  display: grid;
  min-height: 90px;
  padding: 11px;
  border: 1px solid rgba(23, 23, 19, 0.2);
  border-radius: 2px;
  align-content: center;
  justify-items: start;
  background: #fffef9;
  transition: background 160ms ease, border 160ms ease, color 160ms ease;
}

.choice-card svg {
  width: 20px;
  height: 20px;
  margin-bottom: 7px;
  color: var(--red);
}

.choice-card b,
.choice-card small {
  display: block;
}

.choice-card b {
  font-size: 10px;
}

.choice-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.choice-card input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.choice-card input:checked + span svg {
  color: var(--orange);
}

.choice-card input:checked + span small {
  color: rgba(255, 250, 241, 0.53);
}

.choice-card input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.button-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.button-submit:hover {
  background: var(--ink);
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.privacy-note {
  margin-top: 11px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.55;
  text-align: center;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid rgba(30, 123, 84, 0.28);
  background: rgba(30, 123, 84, 0.09);
  color: #16553b;
  font-size: 11px;
  line-height: 1.55;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  border-color: rgba(214, 54, 32, 0.3);
  background: rgba(214, 54, 32, 0.08);
  color: var(--red-dark);
}

/* Location */
.location-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 177, 59, 0.09), transparent 30%),
    var(--charcoal);
  color: var(--white);
}

.location-heading > p {
  color: rgba(255, 250, 241, 0.55);
}

.location-heading .button {
  justify-self: start;
}

.location-grid {
  display: grid;
  gap: 32px;
  margin-top: 46px;
}

.location-details {
  display: grid;
}

.detail-block {
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
}

.detail-block > span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-block h3 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.12;
  text-transform: uppercase;
}

.detail-block > p {
  margin-top: 8px;
  color: rgba(255, 250, 241, 0.51);
  font-size: 11px;
}

.detail-block a:hover {
  color: var(--orange);
}

.hours {
  margin-top: 10px;
}

.hours div {
  display: flex;
  padding: 5px 0;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 250, 241, 0.65);
  font-size: 11px;
}

.hours dd {
  color: var(--white);
}

.map-shell {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #e8dfcf;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.map-shell > a {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 3;
  padding: 10px 13px;
  background: var(--red);
  color: var(--white);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-shell > a span {
  color: var(--orange);
}

.local-faq {
  display: grid;
  gap: 30px;
  margin-top: 70px;
  padding-top: 42px;
  border-top: 1px solid var(--line-light);
}

.local-faq-heading h3 {
  margin-top: 13px;
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 58px);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.faq-list {
  border-bottom: 1px solid var(--line-light);
}

.faq-list details {
  border-top: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.45;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 13px;
  right: 2px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 40px 19px 0;
  color: rgba(255, 250, 241, 0.58);
  font-size: 11px;
  line-height: 1.75;
}

/* Footer */
.site-footer {
  padding: 64px 0 78px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  gap: 37px;
}

.footer-brand > p {
  margin-top: 20px;
  color: rgba(255, 250, 241, 0.47);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.08;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.footer-column h2 {
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 250, 241, 0.62);
  font-size: 11px;
  line-height: 1.7;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 250, 241, 0.36);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-actionbar {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 64px;
  padding: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 0.6fr 1.4fr;
  gap: 7px;
  background: rgba(13, 13, 11, 0.98);
  color: var(--white);
  box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.mobile-actionbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line-light);
  border-radius: 2px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-actionbar a:last-child {
  border-color: var(--red);
  background: var(--red);
}

.mobile-actionbar svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

/* Tablet */
@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .announcement {
    font-size: 10px;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 82px);
  }

  .hero h1 {
    font-size: clamp(76px, 14vw, 118px);
  }

  .hero-highlights strong {
    font-size: 12px;
  }

  .hero-highlights span {
    font-size: 10px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: end;
  }

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

  .menu-grid .menu-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  }

  .menu-grid .menu-card:last-child:nth-child(odd) .card-media {
    height: 100%;
    aspect-ratio: auto;
  }

  .menu-grid .menu-card:last-child:nth-child(odd) .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card-title-row h4 {
    font-size: 28px;
  }

  .category-heading > a {
    display: inline-block;
  }

  .drinks-layout {
    grid-template-columns: minmax(260px, 0.82fr) minmax(340px, 1.18fr);
  }

  .drinks-image {
    min-height: 420px;
  }

  .image-right-layout .drinks-image {
    order: 2;
  }

  .image-right-layout .drink-list {
    order: 1;
  }

  .deal-banner > div {
    padding: 78px 48px;
  }

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

  .drink-list {
    display: grid;
    align-content: center;
    padding: 25px 28px;
  }

  .drink-row {
    grid-template-columns: 28px 1fr auto 18px;
    padding: 25px 0;
  }

  .drink-row > b {
    display: block;
  }

  .about-media,
  .about-media img {
    min-height: 0;
  }

  .about-stamp {
    right: 26px;
    width: 140px;
    height: 140px;
  }

  .about-stamp strong {
    font-size: 30px;
  }

  .form-shell {
    padding: 30px;
  }

  .form-topline {
    margin: -30px -30px 27px;
    padding: 16px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 19px 16px;
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .choice-card > span {
    min-height: 98px;
    padding: 14px;
  }

  .location-grid {
    grid-template-columns: minmax(250px, 0.72fr) minmax(420px, 1.28fr);
    align-items: stretch;
  }

  .location-details {
    align-content: space-between;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 570px;
  }

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

  .footer-column:last-child {
    grid-column: 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    height: 78px;
  }

  .header-inner {
    gap: 32px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
  }

  .header-inner > .logo-brand .brand-logo {
    height: 66px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    visibility: visible;
    width: auto;
    padding: 0;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.4vw, 34px);
    opacity: 1;
    transform: none;
    background: transparent;
  }

  .primary-nav > a:not(.nav-phone) {
    position: relative;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .primary-nav > a:not(.nav-phone)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    margin: 0;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
  }

  .primary-nav > a:not(.nav-phone):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-phone {
    margin-top: 0;
    padding: 10px 13px;
    font-size: 10px;
  }

  .hero {
    --hero-image: url("../images/pizza-crush-hero-1600.webp");
    min-height: min(920px, calc(100svh - 34px));
    background-position: center;
  }

  .hero-inner {
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .hero-scroll {
    position: absolute;
    z-index: 4;
    right: 38px;
    bottom: 27px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 250, 241, 0.58);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }

  .hero-scroll i {
    position: relative;
    display: block;
    width: 48px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
  }

  .hero-scroll i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: translateX(-100%);
    animation: scroll-line 2s ease infinite;
  }

  @keyframes scroll-line {
    50%, 100% { transform: translateX(100%); }
  }

  .marquee {
    padding: 18px 0;
  }

  .marquee span {
    font-size: 22px;
  }

  .menu-section {
    padding: 112px 0 132px;
  }

  .category-nav {
    top: 77px;
    justify-content: center;
    margin-top: 50px;
  }

  .menu-category {
    padding-top: 96px;
  }

  .category-heading {
    margin-bottom: 30px;
  }

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

  .deal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .deal-banner {
    min-height: 470px;
  }

  .menu-grid .menu-card:last-child:nth-child(odd) {
    grid-column: auto;
    display: block;
  }

  .menu-grid .menu-card:last-child:nth-child(odd) .card-media {
    height: auto;
    aspect-ratio: 1.14;
  }

  .card-body {
    padding: 22px;
  }

  .compact-card .card-body {
    padding: 19px;
  }

  .about-section,
  .order-section,
  .location-section {
    padding: 125px 0;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
    align-items: center;
    gap: clamp(55px, 7vw, 100px);
  }

  .about-media,
  .about-media img {
    min-height: 0;
  }

  .about-media img {
    object-position: center;
  }

  .about-stats dd {
    white-space: normal;
  }

  .order-layout {
    grid-template-columns: minmax(0, 0.83fr) minmax(490px, 1.17fr);
    align-items: start;
    gap: clamp(50px, 7vw, 95px);
  }

  .order-intro {
    position: sticky;
    top: 116px;
  }

  .form-shell {
    padding: 34px;
  }

  .form-topline {
    margin: -34px -34px 30px;
    padding: 18px 34px;
  }

  .location-heading {
    grid-template-columns: 1fr auto;
  }

  .location-heading .button {
    align-self: end;
  }

  .location-grid {
    grid-template-columns: minmax(320px, 0.65fr) minmax(520px, 1.35fr);
    gap: 55px;
  }

  .local-faq {
    grid-template-columns: minmax(260px, 0.65fr) minmax(520px, 1.35fr);
    gap: 55px;
  }

  .footer-main {
    grid-template-columns: 1.6fr 0.8fr 1fr 0.8fr;
    gap: 50px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .mobile-actionbar {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 124px;
  }

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

  .menu-grid {
    gap: 26px;
  }

  .pizza-price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pizza-price-grid .card-title-row h4 {
    font-size: 27px;
  }

  .card-media {
    aspect-ratio: 1.18;
  }

  .card-title-row h4 {
    font-size: 31px;
  }
}

/* Motion accessibility */
@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;
  }
}
