@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --pizza-bg: #f7efe4;
  --pizza-bg-deep: #f2e6d8;
  --pizza-surface: rgba(255, 252, 247, 0.84);
  --pizza-surface-strong: rgba(255, 250, 242, 0.95);
  --pizza-surface-soft: rgba(120, 62, 35, 0.08);
  --pizza-cream: #c86c3b;
  --pizza-cream-strong: #ab5225;
  --pizza-gold: #b76034;
  --pizza-orange: #c95f2c;
  --pizza-orange-strong: #aa4922;
  --pizza-red: #8a2e1f;
  --pizza-ink: #2d1a12;
  --pizza-ink-dark: #21120b;
  --pizza-muted: #6a4c3c;
  --pizza-muted-dark: rgba(53, 30, 19, 0.8);
  --pizza-line: rgba(84, 43, 24, 0.12);
  --pizza-line-strong: rgba(84, 43, 24, 0.2);
  --pizza-shadow: 0 16px 40px rgba(35, 19, 12, 0.12);
  --pizza-shadow-soft: 0 10px 24px rgba(35, 19, 12, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--pizza-ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 95, 44, 0.12), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(183, 96, 52, 0.1), transparent 22%),
    linear-gradient(180deg, var(--pizza-bg) 0%, var(--pizza-bg-deep) 100%);
}

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

button {
  font: inherit;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal][data-reveal-direction="left"] {
  transform: translateX(24px);
}

[data-reveal][data-reveal-direction="right"] {
  transform: translateX(-24px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.pizza-page {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.pizza-nav,
.pizza-hero-copy,
.pizza-spotlight,
.pizza-visual-card,
.pizza-visual-plate,
.pizza-menu-section,
.pizza-hours-section,
.contact-card,
.pizza-footer,
.service-card {
  border: 1px solid var(--pizza-line);
  box-shadow: var(--pizza-shadow);
}

.pizza-nav,
.pizza-hero-copy,
.pizza-spotlight,
.pizza-menu-section,
.pizza-hours-section,
.contact-card,
.pizza-footer {
  border-radius: 30px;
}

.pizza-nav {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(255, 248, 239, 0.9);
  backdrop-filter: blur(22px);
}

.pizza-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.pizza-logo strong,
.pizza-hero h1,
.pizza-spotlight h2,
.pizza-visual-card h2,
.pizza-section-heading h2,
.menu-card h3,
.hours-card strong,
.service-card strong {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.pizza-logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--pizza-red), var(--pizza-orange));
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 24px rgba(138, 46, 31, 0.22);
}

.pizza-logo-mark::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0) 34%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(255, 255, 255, 0) 66%);
  transform: translateX(-100%) rotate(12deg);
  animation: logo-sheen 5s linear infinite;
}

.pizza-logo small {
  display: block;
  margin-top: 2px;
  color: var(--pizza-muted);
}

.pizza-nav-links,
.pizza-actions,
.pizza-meta,
.filter-row {
  display: flex;
  flex-wrap: wrap;
}

.pizza-nav-links {
  justify-content: center;
  gap: 18px;
}

.pizza-nav-links a {
  position: relative;
  color: rgba(45, 26, 18, 0.8);
  font-weight: 600;
}

.pizza-nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pizza-gold), var(--pizza-orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.pizza-nav-cta,
.pizza-button,
.contact-phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff9f2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--pizza-orange), var(--pizza-red));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(218, 79, 24, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.pizza-nav-cta:hover,
.pizza-nav-cta:focus-visible,
.pizza-button:hover,
.pizza-button:focus-visible,
.contact-phone-button:hover,
.contact-phone-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 42px rgba(218, 79, 24, 0.32);
  filter: saturate(1.06);
}

.nav-phone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  animation: phone-pulse 1.8s ease-out infinite;
}

.pizza-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-bottom: 18px;
}

.pizza-hero-copy,
.pizza-spotlight {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pizza-hero-copy {
  min-height: 420px;
  padding: clamp(24px, 3.8vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2)),
    linear-gradient(140deg, rgba(255, 244, 229, 0.96), rgba(248, 232, 213, 0.92));
}

.pizza-hero-copy::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -30px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 228, 189, 0.78) 0%, rgba(255, 210, 124, 0.58) 34%, rgba(255, 134, 57, 0.22) 56%, rgba(255, 134, 57, 0) 72%);
  opacity: 0.3;
  filter: blur(10px);
}

.pizza-hero-copy::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 32%, rgba(255, 226, 193, 0.42), rgba(255, 226, 193, 0) 14%),
    radial-gradient(circle at 66% 30%, rgba(201, 63, 45, 0.9), rgba(201, 63, 45, 0) 10%),
    radial-gradient(circle at 48% 56%, rgba(201, 63, 45, 0.9), rgba(201, 63, 45, 0) 10%),
    radial-gradient(circle at 64% 62%, rgba(201, 63, 45, 0.9), rgba(201, 63, 45, 0) 10%),
    radial-gradient(ellipse at 45% 44%, rgba(95, 146, 60, 0.95), rgba(95, 146, 60, 0) 7%),
    radial-gradient(ellipse at 57% 48%, rgba(95, 146, 60, 0.95), rgba(95, 146, 60, 0) 7%),
    radial-gradient(circle at 50% 50%, rgba(243, 155, 70, 0.95) 0%, rgba(230, 124, 49, 0.95) 62%, rgba(188, 97, 42, 0.98) 100%);
  border: 1px solid rgba(132, 64, 36, 0.1);
  box-shadow:
    inset 0 0 0 10px rgba(255, 227, 186, 0.22),
    inset 0 0 0 28px rgba(161, 81, 39, 0.18),
    0 30px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(-16deg);
  opacity: 0.62;
  animation: hero-float 7s ease-in-out infinite;
}

.pizza-pill,
.spotlight-kicker,
.pizza-section-kicker,
.contact-card>p,
.service-card span {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
}

.pizza-pill,
.pizza-section-kicker,
.contact-card>p,
.service-card span {
  color: var(--pizza-gold);
}

.pizza-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.97;
}

.pizza-subtitle,
.pizza-section-text,
.menu-card p,
.menu-note,
.contact-card span,
.pizza-footer p,
.hours-card p,
.hours-card span {
  color: var(--pizza-muted);
  line-height: 1.7;
}

.pizza-subtitle {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  margin-top: 14px;
  font-size: 0.98rem;
}

.pizza-actions {
  position: relative;
  z-index: 1;
  gap: 12px;
  margin-top: 20px;
}

.pizza-button-secondary {
  color: var(--pizza-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 34px rgba(0, 0, 0, 0.2);
}

.pizza-meta {
  position: relative;
  z-index: 1;
  gap: 10px;
  margin-top: 26px;
}

.pizza-meta span {
  display: inline-flex;
  align-items: center;
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(84, 43, 24, 0.16);
  background: rgba(255, 255, 255, 0.58);
  color: var(--pizza-ink);
  backdrop-filter: blur(8px);
}

.pizza-spotlight {
  padding: 24px;
  color: var(--pizza-ink-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.52)),
    linear-gradient(165deg, rgba(255, 238, 214, 0.98), rgba(244, 213, 174, 0.94));
}

.pizza-spotlight::before {
  content: "";
  position: absolute;
  inset: auto -90px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(8px);
}

.spotlight-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.spotlight-kicker {
  color: rgba(97, 48, 18, 0.88);
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(71, 31, 13, 0.1);
  color: rgba(71, 31, 13, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
}

.pizza-spotlight h2,
.pizza-section-heading h2,
.menu-card h3 {
  margin: 0;
  color: inherit;
  line-height: 0.95;
}

.pizza-spotlight h2 {
  position: relative;
  z-index: 1;
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.spotlight-quick {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.spotlight-quick article {
  padding: 14px 0;
  border-bottom: 1px solid rgba(47, 23, 14, 0.12);
}

.spotlight-quick article:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.spotlight-quick strong {
  display: block;
  font-size: 1rem;
}

.spotlight-quick small {
  color: var(--pizza-muted-dark);
  line-height: 1.5;
}

.spotlight-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.spotlight-list article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(47, 23, 14, 0.12);
}

.spotlight-list article:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.spotlight-list article div {
  display: grid;
  gap: 4px;
}

.spotlight-list strong,
.contact-card strong,
.menu-card .price {
  font-weight: 800;
}

.spotlight-list strong {
  font-size: 1.08rem;
}

.spotlight-list small {
  color: var(--pizza-muted-dark);
  line-height: 1.45;
}

.spotlight-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(47, 23, 14, 0.08);
}

.spotlight-contact a {
  width: fit-content;
  font-size: 1.15rem;
  font-weight: 800;
}

.spotlight-contact p {
  margin: 0;
  color: var(--pizza-muted-dark);
  line-height: 1.6;
}

.pizza-service-strip,
.pizza-visual-story,
.pizza-contact-strip,
.hours-board,
.menu-grid {
  display: grid;
}

.pizza-visual-story {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-bottom: 30px;
}

.pizza-visual-card,
.pizza-visual-plate {
  border-radius: 30px;
  border: 1px solid var(--pizza-line);
  box-shadow: var(--pizza-shadow);
}

.pizza-visual-card {
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
    rgba(255, 248, 238, 0.82);
}

.pizza-visual-card h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  line-height: 1;
}


.pizza-visual-plate {
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 28px);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(242, 214, 179, 0.9), rgba(223, 181, 134, 0.9));
}

.pizza-plate {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 52%, rgba(255, 196, 118, 0.92) 0%, rgba(232, 145, 81, 0.96) 58%, rgba(191, 103, 51, 0.96) 100%);
  box-shadow:
    inset 0 0 0 10px rgba(255, 236, 206, 0.28),
    inset 0 0 0 30px rgba(134, 61, 31, 0.16),
    0 20px 36px rgba(86, 38, 17, 0.26);
  animation: plate-drift 7s ease-in-out infinite;
}

.pizza-slice {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 233, 218, 0.9), rgba(201, 54, 35, 0.9) 62%, rgba(133, 30, 22, 0.94) 100%);
  box-shadow:
    inset 0 0 0 5px rgba(255, 175, 126, 0.32),
    0 8px 16px rgba(87, 25, 18, 0.24);
}

.pizza-slice-a {
  top: 24%;
  left: 22%;
}

.pizza-slice-b {
  top: 52%;
  left: 56%;
}

.pizza-slice-c {
  top: 26%;
  left: 60%;
}

.pizza-leaf {
  position: absolute;
  width: 26px;
  height: 14px;
  border-radius: 50px;
  background: linear-gradient(140deg, #6f9d3c, #4f7f2c);
  transform: rotate(-18deg);
}

.pizza-leaf-a {
  top: 38%;
  left: 46%;
}

.pizza-leaf-b {
  top: 62%;
  left: 34%;
}

.pizza-leaf-c {
  top: 44%;
  left: 68%;
}

.pizza-service-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 20px 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.35)),
    rgba(255, 249, 239, 0.86);
  backdrop-filter: blur(12px);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(240, 107, 36, 0.16);
  filter: blur(4px);
}

.service-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 12ch;
  font-size: 1.85rem;
  line-height: 0.95;
}

.pizza-menu-section,
.pizza-hours-section {
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.pizza-menu-section {
  background:
    radial-gradient(circle at top right, rgba(201, 95, 44, 0.14), transparent 20%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.42)),
    var(--pizza-surface);
}

.pizza-hours-section {
  background:
    radial-gradient(circle at top left, rgba(201, 95, 44, 0.12), transparent 18%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.4)),
    rgba(255, 247, 236, 0.88);
}

.pizza-section-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 18px;
}

.pizza-section-heading h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.3rem);
}

.pizza-section-text {
  margin: 12px 0 0;
  max-width: 58ch;
}

.filter-row {
  position: relative;
  z-index: 1;
  gap: 10px;
  margin: 22px 0 18px;
}

.filter-pill {
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  color: var(--pizza-ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(84, 43, 24, 0.14);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.filter-pill:hover,
.filter-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 222, 184, 0.2);
}

.filter-pill.is-active {
  color: var(--pizza-ink-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--pizza-gold), var(--pizza-cream));
  border-color: rgba(255, 228, 189, 0.4);
}

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

.menu-type-block {
  display: grid;
  width: 100%;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(84, 43, 24, 0.12);
  background: rgba(255, 255, 255, 0.26);
}

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

.menu-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(84, 43, 24, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.32)),
    linear-gradient(160deg, rgba(255, 249, 239, 0.95), rgba(252, 244, 233, 0.94));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  animation: menu-card-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--card-delay, 0ms);
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.06) 48%, rgba(255, 255, 255, 0) 66%);
  transform: translateX(-140%);
  transition: transform 540ms ease;
}

.menu-card:hover,
.menu-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 228, 189, 0.18);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.26);
}

.menu-card:hover::before,
.menu-card:focus-within::before {
  transform: translateX(140%);
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.menu-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.9rem;
}

.menu-card .price {
  position: relative;
  z-index: 1;
  color: var(--pizza-cream);
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.menu-note {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 6px 0;
}

.menu-category-title {
  margin: 0;
  color: var(--pizza-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.hours-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(84, 43, 24, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.3)),
    rgba(255, 247, 236, 0.86);
  box-shadow: var(--pizza-shadow-soft);
}

.hours-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 0.95;
}

.hours-card p,
.hours-card span {
  margin: 0;
}

.hours-card p {
  margin-bottom: 16px;
}

.hours-card-closed {
  background:
    linear-gradient(180deg, rgba(201, 95, 44, 0.16), rgba(255, 255, 255, 0)),
    rgba(255, 243, 228, 0.88);
}

.pizza-contact-strip {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.35)),
    rgba(255, 248, 239, 0.86);
}

.contact-card strong {
  display: block;
  font-size: 1.35rem;
  color: var(--pizza-ink);
}

.contact-card-call {
  background:
    radial-gradient(circle at top right, rgba(201, 95, 44, 0.16), transparent 22%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.35)),
    rgba(255, 246, 235, 0.9);
}

.contact-phone-button {
  width: fit-content;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.address-link {
  width: fit-content;
  color: var(--pizza-cream);
  font-weight: 700;
}

.map-frame-wrap {
  overflow: hidden;
  min-height: 300px;
  border-radius: 24px;
  border: 1px solid rgba(84, 43, 24, 0.12);
  box-shadow: var(--pizza-shadow-soft);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.pizza-footer {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 24px 28px;
  background: rgba(255, 252, 247, 0.78);
}

.pizza-footer p {
  margin: 0;
}

@keyframes phone-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes hero-float {

  0%,
  100% {
    transform: rotate(-16deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-12deg) translate3d(-8px, -10px, 0);
  }
}

@keyframes plate-drift {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -6px, 0) rotate(-2deg);
  }
}

@keyframes logo-sheen {
  0% {
    transform: translateX(-120%) rotate(12deg);
  }

  24%,
  100% {
    transform: translateX(140%) rotate(12deg);
  }
}

@keyframes menu-card-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {

  .pizza-hero,
  .pizza-visual-story,
  .pizza-service-strip,
  .hours-board,
  .pizza-contact-strip {
    grid-template-columns: 1fr;
  }

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

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

  .pizza-hero-copy {
    min-height: auto;
  }

  .service-card strong {
    max-width: none;
  }
}

@media (max-width: 840px) {
  .pizza-page {
    width: min(1240px, calc(100% - 18px));
    padding-top: 12px;
  }

  .pizza-nav {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
  }

  .pizza-nav-links {
    justify-content: flex-start;
  }

  .pizza-nav-cta,
  .pizza-button,
  .pizza-button-secondary,
  .contact-phone-button {
    width: 100%;
  }

  .pizza-hero-copy,
  .pizza-spotlight,
  .pizza-visual-card,
  .pizza-visual-plate,
  .pizza-menu-section,
  .pizza-hours-section,
  .contact-card,
  .pizza-footer {
    padding: 22px;
  }

  .pizza-hero-copy::after {
    right: -18px;
    bottom: -78px;
    width: 220px;
    height: 220px;
  }

  .spotlight-topline {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .pizza-hero h1 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .pizza-section-heading h2,
  .pizza-spotlight h2,
  .pizza-visual-card h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .menu-card-header {
    flex-direction: column;
    gap: 8px;
  }

  .hours-card strong,
  .service-card strong {
    font-size: 1.8rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}