@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-canvas: #FAF7E6;
  --color-paper: #F9F5E4;
  --color-paper-deep: #EEEADC;
  --color-hero: #150704;
  --color-hero-soft: #2E140E;
  --color-footer: #280B07;
  --color-brand-red: #AC2A0F;
  --color-brand-red-deep: #73210F;
  --color-card-button: #B22B06;
  --color-button: #F7A63E;
  --color-button-lit: #F7B257;
  --color-ink: #180603;
  --color-muted: #70412B;
  --color-line: #D3C1AA;
  --color-cream-text: #FAF7E6;
  --shadow-subject: 0 26px 70px rgb(24 6 3 / 0.55);
  --shadow-button: 0 8px 18px rgb(172 42 15 / 0.28);
  --texture-opacity: 0.12;
  --rgb-ink: 24 6 3;
  --rgb-red: 172 42 15;
  --rgb-red-deep: 115 33 15;
  --rgb-hero: 21 7 4;
  --rgb-button: 247 166 62;
  --font-display: "Oswald", "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-body: "Outfit", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-footer);
  color: var(--color-ink);
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background: var(--color-canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-button);
  color: var(--color-ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--color-cream-text);
  outline-offset: 3px;
}

.top-strip {
  min-height: 26px;
  background: var(--color-brand-red);
  color: var(--color-cream-text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.top-strip-inner {
  width: min(100% - clamp(24px, 5vw, 64px), var(--container));
  min-height: 26px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
  overflow: hidden;
}

.top-strip a {
  color: var(--color-button-lit);
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--color-canvas);
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  width: min(100% - clamp(24px, 5vw, 64px), var(--container));
  min-height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-brand-red);
  color: var(--color-cream-text);
  box-shadow: inset 0 0 0 2px rgb(var(--rgb-button) / 0.3);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--color-brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.btn,
.card-order,
.menu-toggle,
.map-link,
.utility-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 160ms var(--ease-out),
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.btn:hover,
.card-order:hover,
.menu-toggle:hover,
.map-link:hover,
.utility-links a:hover {
  transform: translateY(-1px);
}

.btn:active,
.card-order:active,
.menu-toggle:active,
.map-link:active,
.utility-links a:active {
  transform: translateY(1px) scale(0.98);
}

.btn:focus-visible,
.card-order:focus-visible,
.menu-toggle:focus-visible,
.map-link:focus-visible,
.utility-links a:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--color-brand-red);
  outline-offset: 3px;
}

.btn-primary,
.btn-header,
.btn-panel {
  background: var(--color-button);
  color: var(--color-ink);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover,
.btn-header:hover,
.btn-panel:hover {
  background: var(--color-button-lit);
  box-shadow: 0 10px 24px rgb(var(--rgb-button) / 0.32);
}

.btn-secondary,
.card-order {
  background: var(--color-card-button);
  color: var(--color-cream-text);
  box-shadow: 0 8px 18px rgb(var(--rgb-red) / 0.24);
}

.btn-secondary:hover,
.card-order:hover {
  background: var(--color-brand-red-deep);
  box-shadow: 0 10px 22px rgb(var(--rgb-red-deep) / 0.3);
}

.btn {
  padding: 0 24px;
  font-size: 0.88rem;
}

.btn-header {
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  padding: 0 16px;
  border-color: var(--color-line);
  background: var(--color-paper);
  color: var(--color-ink);
  font-size: 0.82rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - 96px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 48%, rgb(var(--rgb-red) / 0.28), transparent 31%),
    radial-gradient(ellipse at 64% 78%, rgb(var(--rgb-button) / 0.12), transparent 32%),
    linear-gradient(118deg, var(--color-hero) 0%, var(--color-hero-soft) 55%, var(--color-hero) 100%);
  color: var(--color-cream-text);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  opacity: var(--texture-opacity);
  background:
    radial-gradient(ellipse at 76% 34%, rgb(var(--rgb-button) / 0.22), transparent 24%),
    radial-gradient(ellipse at 24% 72%, rgb(var(--rgb-red-deep) / 0.24), transparent 31%),
    linear-gradient(118deg, rgb(var(--rgb-ink) / 0.26), transparent 42%, rgb(var(--rgb-button) / 0.1));
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgb(var(--rgb-hero) / 0.72) 100%),
    linear-gradient(180deg, transparent 66%, rgb(var(--rgb-hero) / 0.45));
}

.hero-smoke {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.38;
  background:
    radial-gradient(ellipse at 66% 20%, rgb(var(--rgb-button) / 0.18), transparent 18%),
    radial-gradient(ellipse at 82% 38%, rgb(var(--rgb-red) / 0.22), transparent 20%),
    radial-gradient(ellipse at 48% 88%, rgb(var(--rgb-red-deep) / 0.2), transparent 28%);
  filter: blur(18px);
  transform: translateZ(0);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100dvh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  padding-block: clamp(36px, 7vh, 72px);
}

.hero-copy {
  max-width: 470px;
  animation: hero-copy-in 640ms var(--ease-out) both;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: var(--color-button-lit);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.order-panel h2,
.hours-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 0;
  font-size: clamp(3.38rem, 6.5vw, 4.75rem);
  line-height: 0.98;
}

.hero-title span {
  min-width: 0;
}

.hero-lede {
  max-width: 410px;
  margin: 18px 0 0;
  color: rgb(250 247 230 / 0.86);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-phone {
  margin: 18px 0 0;
  color: rgb(250 247 230 / 0.76);
  font-size: 0.93rem;
  font-weight: 600;
}

.hero-phone a {
  color: var(--color-button-lit);
}

.hero-media {
  position: relative;
  min-height: min(58vw, 620px);
  display: grid;
  place-items: center;
  animation: hero-pizza-in 700ms var(--ease-out) 90ms both;
}

.hero-pizza-wrap {
  position: relative;
  width: min(61vw, 760px);
  max-width: 100%;
}

.hero-pizza-wrap::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 4%;
  left: 12%;
  height: 22%;
  border-radius: 999px;
  background: rgb(var(--rgb-ink) / 0.58);
  filter: blur(24px);
  transform: rotate(-3deg);
}

.hero-pizza {
  position: relative;
  z-index: 2;
  width: 100%;
  object-fit: contain;
  filter: saturate(1.16) contrast(1.06) drop-shadow(var(--shadow-subject));
}

.hero-stamp {
  position: absolute;
  top: 8%;
  left: 4%;
  z-index: 3;
  width: clamp(88px, 11vw, 150px);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgb(var(--rgb-ink) / 0.48);
  opacity: 0.86;
  transform: rotate(-8deg);
}

.page-main {
  background: var(--color-canvas);
}

.menu-section {
  padding-block: clamp(54px, 8vw, 84px) clamp(46px, 7vw, 72px);
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading .section-kicker,
.about-panel .section-kicker,
.hours-panel .section-kicker,
.order-panel .section-kicker {
  color: var(--color-brand-red);
}

.section-title {
  color: var(--color-ink);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.03;
}

.section-copy {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.seller-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.seller-card {
  min-width: 0;
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-paper);
  box-shadow: 0 1px 0 rgb(var(--rgb-ink) / 0.04);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.seller-card:hover,
.seller-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--color-brand-red);
  box-shadow: 0 14px 34px rgb(var(--rgb-ink) / 0.11);
}

.seller-card img {
  width: 100%;
  aspect-ratio: 1.23;
  object-fit: cover;
  border-bottom: 1px solid var(--color-line);
  transition: transform 220ms var(--ease-out), filter 220ms var(--ease-out);
}

.seller-card:hover img,
.seller-card:focus-within img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.seller-card-body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.seller-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.seller-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.seller-card strong {
  color: var(--color-ink);
  font-size: 0.94rem;
}

.card-order {
  justify-self: start;
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.8rem;
}

.deals-about {
  padding-block: clamp(22px, 4vw, 38px) clamp(58px, 9vw, 88px);
}

.deals-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

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

.deal-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--color-brand-red) 0%, var(--color-brand-red-deep) 100%);
  color: var(--color-cream-text);
  box-shadow: 0 16px 38px rgb(var(--rgb-red) / 0.18);
}

.deal-tile-wide {
  grid-column: 1 / -1;
  min-height: 178px;
}

.deal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.08) contrast(1.08);
}

.deal-tile div {
  position: absolute;
  inset: auto 16px 16px;
  display: grid;
  gap: 4px;
}

.deal-tile span {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-button-lit);
}

.deal-tile strong {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.about-panel {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-paper);
}

.about-media {
  position: relative;
  min-height: 260px;
  background: var(--color-paper-deep);
}

.about-media > img:first-child {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.about-stamp {
  position: absolute;
  right: 18px;
  bottom: -34px;
  width: 116px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgb(var(--rgb-ink) / 0.28);
  transform: rotate(6deg);
}

.about-copy {
  padding: 42px clamp(20px, 3.2vw, 34px) clamp(22px, 3vw, 30px);
}

.about-copy .section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.55rem);
}

.about-copy p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--color-muted);
}

.delivery-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
}

.delivery-list strong {
  color: var(--color-ink);
}

.delivery-list span {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--color-brand-red);
}

.contact-shell {
  background: var(--color-canvas);
  padding-bottom: clamp(48px, 8vw, 76px);
}

.contact-band {
  width: min(100% - clamp(24px, 5vw, 64px), var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.8fr) minmax(245px, 0.72fr);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgb(var(--rgb-ink) / 0.18);
}

.map-panel,
.order-panel,
.hours-panel {
  min-width: 0;
}

.map-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--color-footer);
}

.map-panel iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  background: var(--color-paper-deep);
}

.map-link {
  justify-self: start;
  min-height: 38px;
  padding: 0 15px;
  background: var(--color-paper);
  color: var(--color-ink);
  font-size: 0.78rem;
}

.order-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(150deg, var(--color-brand-red) 0%, var(--color-card-button) 100%);
  color: var(--color-cream-text);
}

.order-panel .section-kicker {
  color: var(--color-button-lit);
}

.order-panel h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  line-height: 0.98;
}

.order-phone {
  width: fit-content;
  color: var(--color-button-lit);
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 2.4vw, 1.85rem);
  font-weight: 700;
}

.order-phone-second {
  color: rgb(250 247 230 / 0.9);
}

.btn-panel {
  justify-self: start;
  margin-top: 8px;
}

.hours-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--color-footer);
  color: var(--color-cream-text);
}

.hours-panel h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.hours-panel p {
  margin: 0;
  color: rgb(250 247 230 / 0.82);
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.utility-links a {
  min-height: 38px;
  padding: 0 14px;
  border-color: rgb(250 247 230 / 0.22);
  color: var(--color-cream-text);
  font-size: 0.76rem;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  background: var(--color-button);
  color: var(--color-ink);
}

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

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding-block: clamp(32px, 6vw, 54px);
}

.footer-brand {
  display: grid;
  gap: 7px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand span,
.footer-contact a,
.footer-nav a {
  color: rgb(250 247 230 / 0.78);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-contact {
  justify-content: end;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-button-lit);
}

.footer-nav a:focus-visible,
.footer-contact a:focus-visible {
  outline: 2px solid var(--color-button-lit);
  outline-offset: 4px;
}

.medweb-line {
  border-top: 1px solid rgb(250 247 230 / 0.14);
  padding: 14px clamp(18px, 5vw, 40px) 16px;
  color: rgb(250 247 230 / 0.72);
  font-size: 0.85rem;
  text-align: center;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-pizza-in {
  from {
    opacity: 0.82;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1020px) {
  .header-inner {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.84rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  }

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

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

  .map-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 76px;
  }

  .top-strip {
    min-height: 24px;
  }

  .top-strip-inner {
    min-height: 24px;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.72rem;
  }

  .header-inner {
    min-height: 62px;
    grid-template-columns: minmax(0, auto) 1fr;
  }

  .brand-badge {
    width: 39px;
    height: 39px;
    font-size: 0.94rem;
  }

  .brand-text strong {
    font-size: 1.18rem;
  }

  .brand-text small {
    font-size: 0.66rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 8px clamp(16px, 5vw, 28px) 14px;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    background: var(--color-canvas);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 180ms var(--ease-out),
      opacity 180ms var(--ease-out),
      visibility 180ms var(--ease-out);
  }

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

  .nav-links a {
    min-height: 44px;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .btn-header {
    padding-inline: 15px;
    font-size: 0.78rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 32px 30px;
  }

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

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.08rem, 10.2vw, 3.35rem);
    line-height: 1.04;
  }

  .hero-lede {
    max-width: 32rem;
    margin-top: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    width: 100%;
    padding-inline: 16px;
    font-size: 0.8rem;
  }

  .hero-media {
    min-height: 235px;
    justify-items: center;
    overflow: visible;
  }

  .hero-pizza-wrap {
    width: min(96vw, 520px);
  }

  .hero-stamp {
    top: -2px;
    left: auto;
    right: 2%;
    width: 78px;
    opacity: 0.82;
  }

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

  .contact-band {
    grid-template-columns: 1fr;
  }

  .order-panel {
    order: 1;
  }

  .map-panel {
    order: 2;
    grid-column: auto;
  }

  .hours-panel {
    order: 3;
  }

  .map-panel iframe {
    min-height: 300px;
  }

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

  .footer-contact {
    justify-content: start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .top-strip-inner {
    width: min(100% - 24px, var(--container));
  }

  .top-strip-inner span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-inner {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    gap: 8px;
  }

  .brand-text small {
    display: none;
  }

  .hero-inner {
    padding-block: 26px 28px;
  }

  .hero-kicker,
  .section-kicker {
    font-size: 0.75rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(1.82rem, 8.9vw, 2.55rem);
  }

  .hero-lede {
    font-size: 0.95rem;
  }

  .hero-phone {
    font-size: 0.86rem;
  }

  .hero-media {
    min-height: 205px;
    margin-top: -2px;
  }

  .hero-pizza-wrap {
    width: 100%;
  }

  .seller-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .seller-card {
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
  }

  .section-heading {
    text-align: left;
  }

  .section-copy {
    margin-inline: 0;
  }

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

  .deal-tile-wide {
    grid-column: auto;
  }

  .about-media > img:first-child {
    height: 240px;
  }

  .delivery-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-band {
    width: min(100% - 24px, var(--container));
  }

  .order-panel,
  .hours-panel,
  .map-panel {
    padding-inline: 18px;
  }

  .map-panel iframe {
    min-height: 270px;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .btn-header {
    padding-inline: 12px;
  }

  .menu-toggle {
    padding-inline: 13px;
  }

  .hero-title {
    font-size: clamp(1.82rem, 8.9vw, 2.05rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    padding-inline: 12px;
  }

  .hero-media {
    min-height: 190px;
  }
}

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

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

  .btn:hover,
  .card-order:hover,
  .menu-toggle:hover,
  .map-link:hover,
  .utility-links a:hover,
  .seller-card:hover,
  .seller-card:focus-within,
  .seller-card:hover img,
  .seller-card:focus-within img {
    transform: none;
  }

  .hero-smoke {
    opacity: 0.18;
    filter: none;
  }
}
