:root {
  --red: #b51f1f;
  --red-dark: #7d1414;
  --green: #1f6f3e;
  --green-dark: #124425;
  --cream: #fff4df;
  --cream-2: #f8e4bd;
  --ink: #111111;
  --charcoal: #24201b;
  --muted: #6f6255;
  --white: #ffffff;
  --line: rgba(36, 32, 27, 0.14);
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.18);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 244, 223, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.1);
}

.order-ribbon {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.order-ribbon a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.ribbon-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cream-2);
}

.navbar {
  width: var(--container);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark,
.footer-brand {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-emblem {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 3px solid var(--red);
  background: var(--cream);
  color: var(--red-dark);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  padding: 4px;
  border: 2px solid rgba(181, 31, 31, 0.22);
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.1);
}

.brand-mark strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.brand-mark small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-order-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid rgba(31, 111, 62, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav-order-cta a {
  color: var(--red);
  text-decoration: none;
}

.nav-order-cta a + a {
  padding-left: 8px;
  border-left: 1px solid rgba(31, 111, 62, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.nav-links a {
  text-decoration: none;
  position: relative;
  padding-block: 8px;
}

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

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

.delivery-partners {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-left: 6px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.partners-label {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.partners-label small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}

.partner-link::after {
  display: none;
}

.partner-link img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-info-link {
  padding: 5px 7px;
  border: 1px solid rgba(181, 31, 31, 0.28);
  border-radius: 7px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: none;
}

.partner-info-link::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
}

.nav-toggle-bars::before {
  transform: translateY(-7px);
}

.nav-toggle-bars::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  min-height: min(760px, 78vh);
  overflow: hidden;
  background: #111;
  color: var(--white);
  display: grid;
  align-items: center;
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.86) 0%, rgba(17, 17, 17, 0.58) 42%, rgba(17, 17, 17, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: 0 auto;
  padding-block: clamp(54px, 7vw, 88px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-since {
  margin: 14px 0 0;
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 800;
}

.hero-phrase {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.mobile-call-bar {
  display: flex;
  gap: 12px;
}

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

.button,
.phone-card,
.mobile-call-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  padding: 13px 18px;
}

.button svg,
.phone-card svg,
.mobile-call-bar svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(181, 31, 31, 0.35);
}

.button-secondary {
  background: var(--cream);
  color: var(--ink);
}

.button:hover,
.phone-card:hover,
.mobile-call-bar a:hover {
  transform: translateY(-2px);
}

.ordering-note {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
}

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

.trust-grid div {
  min-height: 116px;
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.trust-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.section {
  padding-block: clamp(70px, 9vw, 118px);
}

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

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

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.menu-section {
  padding-block: clamp(42px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(31, 111, 62, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(181, 31, 31, 0.07) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
}

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

.menu-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(260px, 0.75fr);
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(36, 32, 27, 0.09);
}

.menu-feature img {
  width: 100%;
  height: clamp(190px, 22vw, 270px);
  background: var(--cream);
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
}

.menu-feature h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.menu-feature p:not(.eyebrow) {
  margin: 12px 0 20px;
  color: var(--muted);
}

.size-guide-wrap,
.pizza-table-wrap {
  overflow-x: auto;
  margin: 18px 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(36, 32, 27, 0.08);
}

.size-guide-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.size-guide-table th,
.size-guide-table td {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.size-guide-table thead th {
  background: var(--red-dark);
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.size-guide-table tbody th {
  color: var(--charcoal);
  text-align: left;
}

.pizza-table {
  width: 100%;
  min-width: 1020px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.pizza-table caption {
  padding: 18px 20px;
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 900;
  text-align: left;
}

.pizza-table caption span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.4;
}

.pizza-table th,
.pizza-table td {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  text-align: right;
  white-space: nowrap;
}

.pizza-table thead th {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.pizza-table thead th small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  line-height: 1.1;
  text-transform: none;
}

.pizza-table th:first-child,
.pizza-table td:first-child {
  text-align: left;
}

.pizza-table tbody th {
  color: var(--charcoal);
  font-weight: 900;
}

.pizza-name-with-image {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  white-space: normal;
}

.pizza-thumb {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 10px;
  background: var(--cream);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(36, 32, 27, 0.12);
}

.pizza-table .pizza-ingredients,
.pizza-table:not(.extras-table) thead th:nth-child(2) {
  min-width: 380px;
  color: var(--muted);
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

.pizza-table:not(.extras-table) thead th:nth-child(2) {
  color: var(--white);
}

.pizza-table tbody tr:nth-child(even) {
  background: rgba(31, 111, 62, 0.06);
}

.extras-table {
  min-width: 860px;
  table-layout: fixed;
}

.extras-table th:first-child,
.extras-table td:first-child {
  width: 52%;
}

.extras-table thead th:not(:first-child),
.extras-table tbody td {
  width: 12%;
  text-align: right;
}

.extras-table tbody th {
  line-height: 1.35;
  white-space: normal;
}

.menu-grid-real {
  margin-top: 0;
}

.menu-card,
.delivery-card,
.policy-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(36, 32, 27, 0.08);
}

.menu-card {
  padding: 24px;
}

.featured-menu {
  background: var(--red-dark);
  color: var(--white);
}

.featured-menu .menu-list small {
  color: rgba(255, 255, 255, 0.78);
}

.menu-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.menu-list li {
  padding-block: 15px;
  border-top: 1px solid var(--line);
}

.menu-list-with-image {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
}

.menu-list-with-image img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: var(--cream);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(36, 32, 27, 0.12);
}

.featured-menu .menu-list li {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.menu-list span,
.menu-list small {
  display: block;
}

.menu-list span {
  font-weight: 900;
}

.menu-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pdf-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.pdf-panel .eyebrow {
  color: var(--cream-2);
}

.pdf-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.pdf-preview-link {
  display: block;
  width: 100%;
  max-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.pdf-preview-link:focus-visible {
  outline: 3px solid var(--cream-2);
  outline-offset: 4px;
}

.pdf-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
}

.call-section,
.contact-section {
  background: var(--green-dark);
  color: var(--white);
}

.call-section .eyebrow,
.contact-section .eyebrow {
  color: var(--cream-2);
}

.call-section .section-heading p,
.contact-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.address-line {
  max-width: 520px;
  font-weight: 800;
}

.call-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: start;
}

.call-panel {
  display: grid;
  gap: 14px;
}

.phone-card {
  justify-content: flex-start;
  min-height: 96px;
  padding: 18px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.phone-card small,
.phone-card strong {
  display: block;
}

.phone-card small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.phone-card strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.1;
}

.order-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.order-steps li {
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.order-steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--cream-2);
  font-weight: 900;
}

.order-steps strong,
.order-steps span {
  display: block;
}

.order-steps strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.order-steps span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.story-section {
  background: var(--cream-2);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.story-copy p {
  margin: 0 0 18px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

blockquote {
  margin: 30px 0 0;
  padding: 24px 0 24px 24px;
  border-left: 5px solid var(--red);
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
}

.mascot-section {
  padding-block: clamp(38px, 5vw, 66px);
  background: var(--white);
}

.mascot-layout {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.mascot-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: min(100%, 340px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.mascot-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mascot-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.delivery-card {
  min-height: 230px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--green);
}

.delivery-card h3 {
  margin-top: 32px;
}

.delivery-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.delivery-cost-note {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px !important;
  padding: 8px 10px;
  border: 1px solid rgba(31, 111, 62, 0.16);
  border-radius: 8px;
  background: rgba(31, 111, 62, 0.06);
  color: var(--charcoal) !important;
  font-size: 0.95rem;
}

.delivery-cost-note strong {
  color: var(--green);
}

.delivery-number {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 900;
}

.location-section {
  padding-block: clamp(34px, 4vw, 56px);
  background: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
}

.location-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.location-card {
  display: flex;
  align-items: center;
  justify-self: center;
  width: min(100%, 280px);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.location-card img {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  padding: 6px;
  border: 1px solid rgba(181, 31, 31, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  object-fit: contain;
}

.location-card span,
.location-card strong,
.location-card small {
  display: block;
}

.location-card span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.15;
}

.location-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-row strong {
  text-align: right;
  font-size: 1.1rem;
}

.contact-row strong a {
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.muted-row {
  background: rgba(255, 255, 255, 0.08);
}

.policy-box {
  grid-column: 1 / -1;
  padding: 22px;
  background: var(--cream);
  color: var(--ink);
}

.policy-box p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 46px 0 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(190px, auto) minmax(250px, auto);
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-with-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-layout p {
  max-width: 300px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-call {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-call a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-call span {
  color: var(--cream-2);
  font-weight: 900;
}

.footer-partners {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.84);
}

.footer-partners > span {
  color: var(--cream-2);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-partners > small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.footer-partner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.footer-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  text-decoration: none;
}

.footer-partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-more-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 244, 223, 0.36);
  border-radius: 8px;
  color: var(--cream-2);
  font-weight: 900;
  text-decoration: none;
}

.footer-more-link:hover,
.footer-more-link:focus-visible {
  border-color: var(--cream-2);
  background: rgba(255, 244, 223, 0.08);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-delivery-note {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 -12px 32px rgba(17, 17, 17, 0.26);
}

.mobile-call-bar a {
  min-width: 0;
  min-height: 52px;
  padding-inline: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.92rem;
}

.mobile-call-bar a:nth-child(2) {
  background: var(--green);
}

@media (max-width: 980px) {
  .nav-order-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 113px 16px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px;
  }

  .delivery-partners {
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .partner-link {
    width: 38px;
    height: 38px;
  }

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

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

  .trust-grid div:nth-child(2n) {
    border-right: 0;
  }

  .menu-feature,
  .pdf-panel {
    grid-template-columns: 1fr;
  }

  .menu-feature img {
    height: clamp(180px, 46vw, 260px);
  }

  .call-layout,
  .contact-layout,
  .location-layout,
  .split-layout,
  .mascot-layout {
    grid-template-columns: 1fr;
  }

  .mascot-image-wrap {
    justify-self: center;
    width: min(100%, 320px);
  }

  .order-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  body {
    padding-bottom: 74px;
  }

  .order-ribbon {
    min-height: 44px;
    flex-wrap: wrap;
    gap: 5px 9px;
    font-size: 0.82rem;
  }

  .navbar {
    min-height: 68px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-emblem {
    width: 42px;
    font-size: 1.45rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-mark strong {
    max-width: 150px;
    font-size: 1rem;
  }

  .nav-links {
    inset: 112px 14px auto;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-overlay {
    background: rgba(17, 17, 17, 0.66);
  }

  .hero-content {
    padding-block: 38px 44px;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.4rem);
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .button {
    min-height: 54px;
  }

  .trust-grid,
  .menu-grid,
  .delivery-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 62px;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .menu-card,
  .delivery-card,
  .menu-feature,
  .location-card,
  .pdf-panel {
    padding: 20px;
  }

  .pizza-table {
    min-width: 900px;
    font-size: 0.88rem;
  }

  .size-guide-table {
    min-width: 620px;
    font-size: 0.88rem;
  }

  .pizza-table .pizza-ingredients,
  .pizza-table:not(.extras-table) thead th:nth-child(2) {
    min-width: 310px;
  }

  .extras-table {
    min-width: 780px;
  }

  .pizza-table th,
  .pizza-table td {
    padding: 10px;
  }

  .pdf-panel object {
    min-height: 420px;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-row strong {
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
    width: 100%;
  }

  .social-links a {
    flex: 1 1 130px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-call-bar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
