/* ==========================================================================
   Eat Local Pizza, Main Stylesheet (Mobile-First)
   ========================================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* `overflow-x: clip` instead of `hidden` so we don't turn body into a
     scroll container, which silently breaks scrollIntoView/anchor jumps. */
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--brand-green);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: var(--z-modal);
  font-weight: 600;
}
.skip-link:focus {
  top: var(--space-2);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}

h1 { font-size: var(--text-4xl); font-weight: 800; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); font-weight: 700; }
h4 { font-size: var(--text-xl); font-weight: 600; }

@media (min-width: 768px) {
  h1 { font-size: var(--text-6xl); }
  h2 { font-size: var(--text-5xl); }
  h3 { font-size: var(--text-3xl); }
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ---- Section ---- */
.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  min-height: 48px;
  min-width: 48px;
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

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

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
}

.btn-order {
  background: var(--brand-red);
  color: #fff;
}

.btn-order:hover {
  box-shadow: var(--shadow-glow-red);
}

.btn-order-full {
  width: 100%;
}

.btn-call {
  background: var(--surface-floating);
  color: var(--text-primary);
  border: 1px solid var(--surface-border);
  width: 100%;
}

.btn-call:hover {
  background: var(--surface-overlay);
}

.btn-green {
  background: var(--brand-green);
  color: #fff;
}

.btn-green:hover {
  box-shadow: var(--shadow-glow-green);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--brand-green);
}

.btn-outline:hover {
  background: var(--brand-green);
  color: #fff;
}

.btn-skip {
  background: transparent;
  color: #fff;
  border: 2px solid #fff !important;
}

.btn-skip:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
}

.btn-facebook {
  background: #1877F2;
  color: #fff;
}

.btn-facebook:hover {
  background: #166FE5;
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.45);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  min-height: 40px;
}

/* ---- CTA Trio (Call / Order / Skip) ---- */
.cta-trio {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

.cta-trio .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .cta-trio {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .cta-trio .btn {
    width: auto;
  }
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: transform var(--duration-normal) var(--ease-smooth),
              opacity var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth);
}

.site-header.is-scrolled {
  border-bottom-color: var(--surface-border);
  background: rgba(10, 10, 10, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3) var(--section-px);
}

.site-logo {
  display: flex;
  align-items: center;
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth);
}

.site-logo:hover {
  transform: scale(1.03);
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.logo-text-lg {
  font-size: var(--text-2xl);
}

.logo-green {
  color: var(--brand-green);
}

/* Desktop nav hidden on mobile */
.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.nav-list a {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  position: relative;
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth);
}

.nav-list a:hover {
  color: var(--text-primary);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  .mobile-toggle {
    display: none;
  }
  .logo-img {
    height: 48px;
  }
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Order Now dropdown */
.order-dropdown {
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .order-dropdown {
    display: block;
  }
}

.order-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.order-dropdown-chevron {
  transition: transform var(--duration-normal) var(--ease-spring);
}

.order-dropdown.is-open .order-dropdown-chevron {
  transform: rotate(180deg);
}

.order-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--surface-floating);
  border: 1px solid var(--surface-border, rgba(255,255,255,0.1));
  border-radius: 12px;
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-spring),
              visibility 0s linear var(--duration-normal);
  z-index: var(--z-dropdown, 100);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4),
              0 2px 8px rgba(0,0,0,0.3);
}

.order-dropdown.is-open .order-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-spring),
              visibility 0s linear 0s;
}

.order-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.order-dropdown-item:hover {
  background: var(--surface-overlay, rgba(255,255,255,0.06));
}

.order-dropdown-item:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: -2px;
}

.order-dropdown-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.order-dropdown-dot--red {
  background: var(--brand-red);
}

.order-dropdown-dot--green {
  background: var(--brand-green);
}

.order-dropdown-dot--white {
  background: #fff;
}

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth);
}

.mobile-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface-base);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: var(--space-9) var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-smooth);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.mobile-nav-list a {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth);
}

.mobile-nav-list a:hover {
  color: var(--brand-green);
}

.mobile-nav-list a:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 4px;
}

.mobile-nav-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-7);
}

.mobile-nav-ctas .btn {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--space-12);
  padding-bottom: var(--space-9);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--surface-base);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.7) 70%),
    linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 var(--section-px);
}

.hero-logo {
  width: 120px;
  margin: 0 auto var(--space-6);
}

@media (min-width: 768px) {
  .hero-logo { width: 160px; }
}

.hero h1 {
  margin-bottom: var(--space-4);
}

.hero-contact-info {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.hero-contact-info a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.hero-contact-info a:hover {
  color: var(--brand-green);
}

.hero-contact-divider {
  margin: 0 var(--space-2);
  opacity: 0.4;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-7);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: var(--text-xl); }
}

@media (min-width: 1024px) {
  .hero-subtitle { font-size: var(--text-2xl); max-width: 640px; }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.hero .btn {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-7);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
}

/* ---- Perogie Pizza Spotlight ---- */
.spotlight-section {
  background: var(--surface-elevated);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.spotlight-img {
  max-width: 400px;
  margin: 0 auto;
}

.spotlight-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.spotlight-text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.spotlight-tagline {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.spotlight-ingredients {
  list-style: none;
  margin-bottom: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.spotlight-ingredients li {
  padding: var(--space-3) var(--space-4);
  background: var(--surface-floating);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand-green);
}

.spotlight-ingredients strong {
  display: block;
  color: var(--text-primary);
  font-weight: 700;
  font-size: var(--text-sm);
}

.spotlight-ingredients span {
  color: var(--brand-green);
  font-size: var(--text-xs);
  font-weight: 500;
}

.spotlight-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.spotlight-price-amount {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--brand-red);
}

.spotlight-price-size {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 600;
}

@media (min-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-14);
  }

  .spotlight-img {
    max-width: none;
  }

  .spotlight-text h2 {
    font-size: var(--text-3xl);
  }
}

@media (min-width: 1024px) {
  .spotlight-text h2 {
    font-size: var(--text-4xl);
  }

  .spotlight-tagline {
    font-size: var(--text-xl);
  }

  .spotlight-ingredients strong {
    font-size: var(--text-base);
  }

  .spotlight-ingredients span {
    font-size: var(--text-sm);
  }

  .spotlight-img img {
    max-width: 500px;
  }
}

/* ---- Classics Section ---- */
.classics-section {
  background: var(--surface-base);
  position: relative;
}

.classics-grid {
  border: 1px solid rgba(228, 0, 33, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: linear-gradient(135deg, rgba(228, 0, 33, 0.03) 0%, transparent 100%);
}

@media (min-width: 640px) {
  .classics-grid {
    padding: var(--space-6);
  }
}

/* Force 3-column layout for classics (higher specificity to override .pizza-grid) */
.pizza-grid.classics-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .pizza-grid.classics-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .pizza-grid.classics-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .pizza-grid.classics-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Build Your Own Section ---- */
/* ---- Build Your Own - The Pizza Workshop ---- */
.byo-section {
  background: var(--surface-base);
  position: relative;
  overflow: hidden;
}

.byo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(33, 168, 49, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.byo-workshop {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

/* ---- Steps ---- */
.byo-step {
  margin-bottom: var(--space-8);
}

.byo-step-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.byo-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-base);
  flex-shrink: 0;
}

.byo-step-number-premium {
  background: linear-gradient(135deg, #D4A574, #C4924E);
}

.byo-step-number-premium svg {
  width: 16px;
  height: 16px;
}

.byo-step-number-order {
  background: var(--brand-red);
}

.byo-step-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.byo-step-pricing {
  font-size: var(--text-sm);
  color: var(--brand-green);
  font-weight: 600;
  margin-left: auto;
}

/* ---- Size Cards (Step 1) ---- */
.byo-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .byo-prices {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
}

.byo-price-card {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  border: 1px solid var(--surface-border);
  transition: transform var(--duration-normal) var(--ease-spring),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.byo-price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.byo-price-card-featured {
  border-color: var(--brand-green);
  background: linear-gradient(180deg, rgba(33, 168, 49, 0.08) 0%, var(--surface-elevated) 100%);
  box-shadow: 0 0 20px rgba(33, 168, 49, 0.1);
}

.byo-price-card-featured:hover {
  box-shadow: var(--shadow-glow-green);
}

.byo-size {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.byo-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
}

.byo-base-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-top: var(--space-1);
}

.byo-best {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--brand-green);
  background: rgba(33, 168, 49, 0.15);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ---- Topping Categories (Step 2) ---- */
.byo-categories {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .byo-categories {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .byo-category-veggies {
    grid-row: span 2;
  }
}

.byo-category {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--surface-border);
}

.byo-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.byo-category-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.byo-category-meats .byo-category-header {
  color: var(--red-300);
}

.byo-category-veggies .byo-category-header {
  color: var(--green-300);
}

.byo-category-cheese .byo-category-header {
  color: #D4A574;
}

.byo-toppings-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.byo-topping-chip {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  background: var(--surface-floating);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: transform var(--duration-normal) var(--ease-spring),
              border-color var(--duration-normal) ease,
              color var(--duration-normal) ease,
              background var(--duration-normal) ease;
}

.byo-topping-chip:hover {
  transform: translateY(-2px) scale(1.04);
  color: var(--text-primary);
}

/* Meat chips - red accent on hover */
.byo-chip-meat {
  border-color: rgba(228, 0, 33, 0.12);
}
.byo-chip-meat:hover {
  border-color: var(--red-400);
  background: rgba(228, 0, 33, 0.08);
}

/* Veggie chips - green accent on hover */
.byo-chip-veggie {
  border-color: rgba(33, 168, 49, 0.12);
}
.byo-chip-veggie:hover {
  border-color: var(--green-400);
  background: rgba(33, 168, 49, 0.08);
}

/* Cheese chips - amber accent on hover */
.byo-chip-cheese {
  border-color: rgba(212, 165, 116, 0.2);
}
.byo-chip-cheese:hover {
  border-color: #D4A574;
  background: rgba(212, 165, 116, 0.08);
}

/* ---- Premium Upgrades ---- */
.byo-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .byo-premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .byo-premium-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.byo-premium-card {
  background: var(--surface-elevated);
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-spring),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.byo-premium-card:hover {
  transform: translateY(-3px);
  border-color: #D4A574;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.1);
}

.byo-premium-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.byo-premium-price {
  font-size: var(--text-xs);
  color: #D4A574;
  font-weight: 600;
}

.byo-topping-note {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-xs);
  font-style: italic;
  margin-top: var(--space-4);
}

/* ---- Specialty Cheese Row ---- */
.byo-specialty-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.byo-specialty-card {
  background: var(--surface-elevated);
  border: 1px solid rgba(33, 168, 49, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-spring),
              border-color var(--duration-normal) ease;
}

.byo-specialty-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-green);
}

.byo-specialty-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--brand-green);
  background: rgba(33, 168, 49, 0.1);
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.byo-specialty-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.byo-specialty-price {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ---- Step 3: Order CTA ---- */
.byo-step-order {
  text-align: center;
  margin-bottom: 0;
}

/* ---- Pizza Grid Section (legacy, keeping for compat) ---- */
.pizza-grid-section {
  background: var(--surface-elevated);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-header h2 {
  margin-bottom: var(--space-3);
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--brand-green);
  margin-bottom: var(--space-3);
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .pizza-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .pizza-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
}

@media (min-width: 1280px) {
  .pizza-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ---- Pizza Card ---- */
.pizza-card {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pizza-card:active {
  transform: translateY(-1px) scale(0.98);
}

.pizza-card:focus-within {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

.pizza-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f5f0e8;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}

.pizza-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.pizza-card:hover .pizza-card-img img {
  transform: scale(1.05);
}

.pizza-card-body {
  padding: var(--space-3);
}

.pizza-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-1);
}

@media (min-width: 768px) {
  .pizza-card-name { font-size: var(--text-base); }
}

@media (min-width: 1024px) {
  .pizza-card-name { font-size: var(--text-lg); }
  .pizza-card-body { padding: var(--space-4); }
}

.pizza-card-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
}

.pizza-card-price {
  font-size: var(--text-xs);
  color: var(--brand-green);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .pizza-card-desc { font-size: var(--text-sm); }
  .pizza-card-price { font-size: var(--text-sm); }
}

.pizza-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: var(--space-2);
}

.size-chip {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-base);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  white-space: nowrap;
}

.size-chip-label {
  color: var(--brand-green);
  font-weight: 700;
}

/* ---- Clear-Background Pizza Cards ---- */
.pizza-card-clear {
  background: var(--surface-floating);
  border: 1px solid var(--surface-border);
  text-align: center;
}

.pizza-card-clear:hover {
  border-color: rgba(33, 168, 49, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

.pizza-card-img-clear {
  background: radial-gradient(circle at 50% 50%, #181818 0%, #0A0A0A 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.pizza-card-img-clear img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease-spring),
              filter var(--duration-normal) var(--ease-smooth);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.pizza-card-clear:hover .pizza-card-img-clear img {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(33, 168, 49, 0.25))
         drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.pizza-card-clear:active .pizza-card-img-clear img {
  transform: scale(1.02);
}

/* Staggered entry animation for clear cards */
@keyframes pizzaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.pizza-card-img-clear img {
  animation: pizzaFloat 4s var(--ease-smooth) infinite;
  animation-play-state: paused;
}

.pizza-card-clear:hover .pizza-card-img-clear img {
  animation-play-state: running;
}

/* ---- Community Section ---- */
.community-section {
  background: var(--surface-elevated);
}

.community-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .community-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.community-text h2 {
  margin-bottom: var(--space-4);
}

.community-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.community-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.community-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 50%);
}

.community-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---- Menu Categories Strip ---- */
.categories-strip {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-2) 0;
}

.categories-strip::-webkit-scrollbar { display: none; }

.categories-list {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  white-space: nowrap;
  padding: 0 var(--section-px);
}

.category-pill {
  display: inline-flex;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-floating);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-full);
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth),
              background var(--duration-normal) var(--ease-smooth),
              color var(--duration-normal) var(--ease-smooth);
  cursor: pointer;
}

.category-pill:hover,
.category-pill.is-active {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
  transform: translateY(-1px);
}

.category-pill:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

/* ---- Order CTA Banner ---- */
.order-banner {
  background: var(--brand-red);
  text-align: center;
}

.order-banner h2 {
  color: #fff;
  margin-bottom: var(--space-2);
}

.order-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-5);
}

.order-banner .btn:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.order-banner-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

@media (min-width: 480px) {
  .order-banner-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ---- Instagram Grid ---- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .instagram-grid { gap: var(--space-3); }
}

.instagram-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.instagram-item:hover img {
  transform: scale(1.08);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--surface-elevated);
  border-top: 1px solid var(--surface-border);
  padding: var(--space-10) 0 var(--space-6);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.footer-grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  max-width: 300px;
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--brand-green);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

.footer-contact address {
  font-style: normal;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-contact a {
  color: var(--brand-green);
  font-weight: 600;
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth);
}

.footer-contact a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--surface-floating);
  color: var(--text-secondary);
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) var(--ease-smooth),
              background var(--duration-normal) var(--ease-smooth);
}

.social-links a:hover {
  background: var(--brand-green);
  color: #fff;
  transform: translateY(-2px);
}

.social-links a:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--surface-border);
  padding-top: var(--space-5);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* ---- Scroll Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: transform var(--duration-slow) var(--ease-out),
              opacity var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger grid children */
@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stagger-in {
  animation: staggerFadeIn 0.5s var(--ease-out) both;
}

/* ==========================================================================
   DESIGN UPGRADE, Visual Polish & Micro-interactions
   ========================================================================== */

/* ---- 1. Hero Cinematic Load Animation ---- */
@keyframes heroRevealUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroRevealScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.45; }
}

.hero-logo {
  animation: heroRevealScale 0.8s var(--ease-out) 0.1s both;
}

.hero h1 {
  animation: heroRevealUp 0.7s var(--ease-out) 0.3s both;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 0 80px rgba(33, 168, 49, 0.08);
}

.hero-contact-info {
  animation: heroRevealUp 0.7s var(--ease-out) 0.45s both;
}

.hero-subtitle {
  animation: heroRevealUp 0.7s var(--ease-out) 0.5s both;
}

.hero-cta {
  animation: heroRevealUp 0.7s var(--ease-out) 0.7s both;
}

.scroll-indicator {
  animation: bounce 2s var(--ease-smooth) 1.5s infinite both;
  opacity: 0;
}

@keyframes bounce {
  0%   { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%  { transform: translateX(-50%) translateY(8px); opacity: 1; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
}

/* Subtle hero background breathing */
.hero-bg img {
  animation: heroPulse 6s var(--ease-smooth) infinite;
}

/* ---- 2. Sticky Header Enhancement ---- */
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3), 0 0 60px rgba(33, 168, 49, 0.03);
}

/* ---- 3. Spotlight Upgrade - Breakout Image + Staggered Ingredients ---- */
.spotlight-img img {
  transition: transform var(--duration-slow) var(--ease-spring);
}

.spotlight-img:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .spotlight-img {
    transform: scale(1.1);
    margin: calc(var(--space-6) * -1) 0;
  }
}

@media (min-width: 1024px) {
  .spotlight-img {
    transform: scale(1.15);
    margin: calc(var(--space-8) * -1) 0;
  }
}

/* Ingredient cards stagger animation */
.spotlight-ingredients li {
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.spotlight-ingredients li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

/* ---- 4. Pizza Card Hover Upgrade - Spotlight Glow + Slide-up + Underline ---- */
.pizza-card-clear::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
  pointer-events: none;
  z-index: 0;
}

.pizza-card-clear {
  position: relative;
  overflow: hidden;
}

.pizza-card-clear:hover::before {
  opacity: 1;
  background: radial-gradient(ellipse at 50% 30%, rgba(33, 168, 49, 0.06) 0%, transparent 70%);
}

.pizza-card-clear .pizza-card-body {
  transition: transform var(--duration-normal) var(--ease-spring);
  position: relative;
  z-index: 1;
}

.pizza-card-clear:hover .pizza-card-body {
  transform: translateY(-4px);
}

/* Green underline sweep on pizza name */
.pizza-card-clear .pizza-card-name {
  position: relative;
  display: inline-block;
}

.pizza-card-clear .pizza-card-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width var(--duration-normal) var(--ease-spring),
              left var(--duration-normal) var(--ease-spring);
}

.pizza-card-clear:hover .pizza-card-name::after {
  width: 100%;
  left: 0;
}

/* ---- 5. Section Dividers - Angled Clip-paths ---- */
.spotlight-section {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  margin-bottom: -30px;
  padding-bottom: calc(var(--section-py) + 30px);
  position: relative;
  z-index: 2;
}

.classics-section {
  clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 calc(100% - 30px));
  padding-top: calc(var(--section-py) + 30px);
  padding-bottom: calc(var(--section-py) + 30px);
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}

/* ---- 6. BYO - (transitions now in base BYO styles) ---- */

/* ---- 7. Order Banner - Diagonal + Texture ---- */
.order-banner {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
  padding-top: calc(var(--section-py) + 20px);
  padding-bottom: calc(var(--section-py) + 20px);
}

.order-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.order-banner .container {
  position: relative;
  z-index: 1;
}

.order-banner .btn.btn-order {
  background: #fff;
  color: var(--brand-red);
  border: 2px solid #fff;
}

.order-banner .btn.btn-green {
  background: #fff;
  color: var(--brand-green);
  border: 2px solid #fff;
}

.order-banner .btn.btn-skip {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.order-banner .btn:hover {
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

/* ---- 8. Community - Tilted Photo + Texture Background ---- */
.community-section {
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(33, 168, 49, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(228, 0, 33, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .community-img {
    transition: transform var(--duration-slow) var(--ease-spring);
    border: 3px solid var(--surface-border);
    box-shadow: var(--shadow-lg);
  }

  .community-img:hover {
    transform: scale(1.02);
  }
}

.community-text p:first-of-type {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-primary);
  border-left: 3px solid var(--brand-green);
  padding-left: var(--space-4);
  margin-bottom: var(--space-5);
}

@media (min-width: 1024px) {
  .community-text p:first-of-type {
    font-size: var(--text-xl);
  }
}

/* ---- 9. Instagram Grid - Color Overlay Hover + Stagger ---- */
.instagram-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33, 168, 49, 0.3);
  mix-blend-mode: multiply;
  z-index: 1;
  transition: opacity var(--duration-normal) var(--ease-smooth);
  pointer-events: none;
}

.instagram-item:hover::before {
  opacity: 0;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

/* Instagram stagger entrance - applied via JS */
@keyframes instagramReveal {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.instagram-item.stagger-in {
  animation: instagramReveal 0.5s var(--ease-out) both;
}

/* ---- 10. Footer - Grain Texture + Logo Glow ---- */
.site-footer {
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-logo {
  filter: drop-shadow(0 0 20px rgba(33, 168, 49, 0.15));
  transition: filter var(--duration-normal) var(--ease-smooth);
}

.footer-logo:hover,
.footer-brand:hover .footer-logo {
  filter: drop-shadow(0 0 30px rgba(33, 168, 49, 0.3));
}

/* ---- Menu Category Pills - Spring Pop ---- */
.category-pill {
  transition: transform var(--duration-normal) var(--ease-spring),
              background var(--duration-normal) var(--ease-smooth),
              color var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.category-pill:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow-green);
}

/* ---- Green Accent Text Color Helpers ---- */
.text-green { color: var(--brand-green); }
.text-red   { color: var(--brand-red); }
.text-center { text-align: center; }

/* ---- Featured Pizzas Carousel (mobile) ---- */
.featured-scroll {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--section-px) var(--space-4);
}

.featured-scroll::-webkit-scrollbar { display: none; }

.featured-scroll .pizza-card {
  min-width: 260px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .featured-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding: 0;
  }
  .featured-scroll .pizza-card {
    min-width: unset;
  }
}

@media (min-width: 1280px) {
  .featured-scroll {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================================================
   DESIGN UPGRADE ROUND 2, Section Rhythm, Dividers, Polish
   ========================================================================== */

/* ---- 2R. Section Surface Variation ---- */
.gourmet-section {
  background: var(--surface-elevated);
}

/* ---- 5R. Gradient Dividers Between Sections ---- */
.section-divider {
  height: 1px;
  border: none;
  margin: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(33, 168, 49, 0.3) 30%, rgba(33, 168, 49, 0.3) 70%, transparent 100%);
}

.section-divider-red {
  background: linear-gradient(90deg, transparent 0%, rgba(228, 0, 33, 0.3) 30%, rgba(228, 0, 33, 0.3) 70%, transparent 100%);
}

/* ---- 3R. Categories Strip Upgrade ---- */
.categories-section {
  background: var(--surface-elevated);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.category-pill {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-base);
  font-weight: 700;
  background: var(--surface-overlay);
  border-width: 2px;
}

@media (min-width: 768px) {
  .category-pill {
    padding: var(--space-3) var(--space-6);
  }
}

/* ---- 7R. Mobile BYO Adjustments ---- */
@media (max-width: 767px) {
  .byo-section .section-header {
    margin-bottom: var(--space-5);
  }
  .byo-step {
    margin-bottom: var(--space-5);
  }
  .byo-step-header {
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }
  .byo-step-pricing {
    width: 100%;
    margin-left: 0;
    font-size: var(--text-xs);
  }
  .byo-category {
    padding: var(--space-3);
  }
  .byo-categories {
    gap: var(--space-3);
  }
  .byo-category-header {
    margin-bottom: var(--space-3);
  }
  .byo-toppings-list {
    gap: 6px;
  }
  .byo-topping-chip {
    padding: 6px var(--space-3);
    font-size: 0.8rem;
  }
  .byo-premium-card {
    padding: var(--space-3);
  }
  .byo-specialty-row {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
  }
}

/* ---- 8R. Section Label Decorative Accent ---- */
.section-label {
  position: relative;
  padding-left: 1.5em;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.85em;
  height: 2px;
  background: currentColor;
}

/* ---- 9R. Community Photo Polish ---- */
.community-img {
  border-radius: var(--radius-xl);
}

.community-img img {
  border-radius: var(--radius-xl);
}

.community-img::after {
  border-radius: var(--radius-xl);
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.1) 40%, transparent 60%);
}

@media (min-width: 768px) {
  .community-img {
    border: 3px solid rgba(33, 168, 49, 0.15);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(33, 168, 49, 0.06);
  }
}

/* ---- 10R. Footer Top-Border Gradient ---- */
.site-footer {
  border-top: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-green) 30%, var(--brand-red) 70%, transparent);
  z-index: 2;
}

/* ---- 6R. Spotlight Clear-Background Pizza ---- */
.spotlight-img-clear {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-img-clear .spotlight-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(228, 0, 33, 0.5) 0%, rgba(228, 0, 33, 0.15) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.spotlight-img-clear:hover .spotlight-glow {
  transform: translate(-50%, -50%) scale(1.15);
  background: radial-gradient(circle, rgba(228, 0, 33, 0.65) 0%, rgba(228, 0, 33, 0.25) 40%, transparent 70%);
}

.spotlight-img-clear img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform var(--duration-slow) var(--ease-spring);
}

.spotlight-img-clear:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .spotlight-img-clear {
    transform: scale(1.1);
    margin: calc(var(--space-6) * -1) 0;
  }
}

@media (min-width: 1024px) {
  .spotlight-img-clear {
    transform: scale(1.15);
    margin: calc(var(--space-8) * -1) 0;
  }

  .spotlight-img-clear img {
    max-width: 500px;
  }
}

/* ---- 4R. Gourmet Featured Row ---- */
.gourmet-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

@media (max-width: 639px) {
  .gourmet-featured {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.gourmet-featured .pizza-card-clear {
  border-color: rgba(33, 168, 49, 0.25);
}

.gourmet-featured .pizza-card-name {
  font-size: var(--text-lg);
}

@media (min-width: 1024px) {
  .gourmet-featured .pizza-card-name {
    font-size: var(--text-xl);
  }
}

.staff-pick-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--brand-green);
  background: rgba(33, 168, 49, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-top: var(--space-2);
}

.gourmet-rest-label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-5);
  position: relative;
  padding-left: 1.5em;
  display: inline-block;
}

.gourmet-rest-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.85em;
  height: 2px;
  background: var(--brand-green);
}

.gourmet-rest-wrapper {
  text-align: center;
}

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-full);
}

.badge-green {
  background: rgba(33, 168, 49, 0.15);
  color: var(--brand-green);
}

.badge-red {
  background: rgba(228, 0, 33, 0.15);
  color: var(--brand-red);
}

/* Vibrant summer-only badge - saturated gradient, dark text, soft golden
   glow. Used on the seasonal Margherita card in the homepage classics grid
   to call out limited summer availability. */
.badge-summer {
  background: linear-gradient(135deg, #ffd84d 0%, #ff8c1a 100%);
  color: #1a0f00;
  box-shadow: 0 0 14px rgba(255, 184, 60, 0.55), 0 2px 6px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  font-weight: 800;
}

/* Subtle warm accent ring on the seasonal Margherita card so it visually
   belongs to the classics grid but reads as the summer-only standout. */
.pizza-card--summer {
  box-shadow: 0 0 0 1px rgba(255, 184, 60, 0.35), 0 10px 30px rgba(255, 140, 26, 0.15);
}

/* Wide / extended card: spans the full grid row and uses a horizontal
   image+body layout so multi-size pricing (S/M/L/XL chips) has room
   to breathe. Used for the seasonal Margherita as our 7th classic
   since it is the only XL+S/M/L classic. */
.pizza-card--wide {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .pizza-card--wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: var(--space-6);
    align-items: center;
  }
  .pizza-card--wide .pizza-card-img {
    height: 100%;
  }
  .pizza-card--wide .pizza-card-body {
    text-align: left;
    padding: var(--space-4) var(--space-2);
  }
  .pizza-card--wide .pizza-card-name {
    font-size: var(--text-3xl);
  }
  .pizza-card--wide .pizza-card-desc {
    max-width: 56ch;
    margin-left: 0;
    margin-right: 0;
  }
  .pizza-card--wide .pizza-card-sizes {
    justify-content: flex-start;
  }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-green { color: var(--brand-green); }
.text-red { color: var(--brand-red); }
.text-muted { color: var(--text-muted); }
.mt-auto { margin-top: auto; }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */

/* ---- Menu Hero ---- */

.menu-hero .container {
  position: relative;
  z-index: 2;
}

/* ---- Sticky Category Nav ---- */

.menu-nav-pill.active {
  color: #fff;
  background: var(--brand-green);
}

/* ---- Menu Container ---- */

/* ---- Menu Section ---- */

.menu-section-header .badge {
  margin-top: var(--space-2);
}

/* Premium styling for Classics */

/* ---- Pizza Card (Menu Page) ---- */

/* ---- Price Grid (S/M/L/XL) ---- */

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

/* ---- Simple Menu Items (Sides, Desserts, etc.) ---- */

/* ---- Menu Page Responsive ---- */

/* ---- Menu Subsection System ---- */

/* ---- Vertical Pizza Cards (menu page) ---- */

/* ---- BYO Card ---- */

.byo-topping-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

/* ---- Menu Item Hover Enhancement ---- */

/* ---- Frozen Banner ---- */

/* ---- Gift Card Shimmer ---- */

/* ---- Specials Spotlight Treatment ---- */

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-hero {
  padding: calc(var(--header-height) + var(--space-12)) var(--section-px) var(--space-10);
  background: var(--surface-base);
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.about-hero p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  padding: var(--space-14) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

.about-story-text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.about-story-text p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-story-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* Values Grid */
.values-section {
  padding: var(--space-14) 0;
  background: var(--surface-elevated);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.value-card {
  background: var(--surface-floating);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: transform 0.3s var(--ease-spring);
}

.value-card:hover {
  transform: translateY(-4px);
}

/* Catering "Who We Cater For" cards: each gets a unique photo backdrop
   (set via inline background-image in the template). A radial vignette
   centered on the card concentrates the darkening behind the centered
   text while letting the photo show through at the edges. */
.value-card--bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--surface-floating);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.value-card--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(10, 10, 10, 0.78) 0%,
      rgba(10, 10, 10, 0.55) 65%,
      rgba(10, 10, 10, 0.45) 100%
    );
  z-index: -1;
}
.value-card--bg h3,
.value-card--bg p {
  color: #fff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 16px rgba(0, 0, 0, 0.65);
  position: relative;
}
.value-card--bg p {
  color: rgba(255, 255, 255, 0.96);
}
.value-card--bg:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.value-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.value-card-link {
  color: var(--brand-green);
  font-weight: 600;
  transition: color 0.2s ease;
}

.value-card-link:hover {
  color: var(--green-400);
}

/* Photo Gallery */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.about-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .about-hero h1 {
    font-size: var(--text-4xl);
  }

  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-14);
  }

  .about-story-grid-reverse {
    direction: rtl;
  }

  .about-story-grid-reverse > * {
    direction: ltr;
  }
}

@media (min-width: 1024px) {
  .about-hero h1 {
    font-size: var(--text-5xl);
  }

  .about-hero p {
    font-size: var(--text-xl);
  }

  .about-story-text h2 {
    font-size: var(--text-3xl);
  }

  .about-story-text p {
    font-size: var(--text-lg);
  }

  .value-card h3 {
    font-size: var(--text-xl);
  }

  .value-card p {
    font-size: var(--text-base);
  }

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

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

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-hero {
  padding: calc(var(--header-height) + var(--space-12)) var(--section-px) var(--space-10);
  background: var(--surface-base);
  text-align: center;
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.contact-hero p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 540px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding: var(--space-10) 0;
}

.contact-info-card {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.contact-info-card h2 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.contact-detail {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 168, 49, 0.1);
  border-radius: var(--radius-md);
  color: var(--brand-green);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text h3 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact-detail-text p {
  color: var(--text-primary);
  font-size: var(--text-base);
}

.contact-detail-text a {
  color: var(--brand-green);
  transition: color 0.2s ease;
}

.contact-detail-text a:hover {
  color: var(--green-400);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-elevated);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.contact-cta .btn {
  text-align: center;
}

.contact-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-1);
}

.contact-hours-grid dt {
  font-weight: 600;
  color: var(--text-primary);
  padding: var(--space-2) 0;
}

.contact-hours-grid dd {
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  text-align: right;
}

@media (min-width: 768px) {
  .contact-hero h1 {
    font-size: var(--text-4xl);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .contact-cta {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .contact-hero h1 {
    font-size: var(--text-5xl);
  }

  .contact-hero p {
    font-size: var(--text-xl);
  }

  .contact-info-card h2 {
    font-size: var(--text-2xl);
  }

  .contact-detail-text p {
    font-size: var(--text-lg);
  }
}

/* ==========================================================================
   Pizza Lightbox Modal
   ========================================================================== */

/* Zoom hint on pizza cards */
.pizza-lightbox-trigger {
  cursor: pointer;
}

.pizza-zoom-hint {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--duration-normal) ease, transform var(--duration-normal) var(--ease-spring);
  pointer-events: none;
  z-index: 2;
}

.pizza-zoom-hint svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.pizza-lightbox-trigger:hover .pizza-zoom-hint,
.pizza-lightbox-trigger:focus-visible .pizza-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

.pizza-card-img-clear {
  position: relative;
}

/* Lightbox overlay */
.pizza-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) ease, visibility 0s var(--duration-slow);
}

.pizza-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--duration-slow) ease, visibility 0s 0s;
}

/* Backdrop */
.pizza-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Content container */
.pizza-lightbox-content {
  position: relative;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--duration-slow) var(--ease-spring);
}

.pizza-lightbox.is-open .pizza-lightbox-content {
  transform: scale(1) translateY(0);
}

/* Close button */
.pizza-lightbox-close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) var(--ease-spring);
}

.pizza-lightbox-close svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.pizza-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.pizza-lightbox-close:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

/* Image */
.pizza-lightbox-img-wrap {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.pizza-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
  transform: scale(0.9);
  transition: transform 0.6s var(--ease-spring);
}

.pizza-lightbox.is-open .pizza-lightbox-img {
  transform: scale(1);
}

/* Info panel */
.pizza-lightbox-info {
  text-align: center;
  padding: 0 var(--space-6) var(--space-6);
}

.pizza-lightbox-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
  letter-spacing: var(--tracking-tight);
}

.pizza-lightbox-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-3);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.pizza-lightbox-price {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: var(--space-2);
}

.pizza-lightbox-badge {
  display: none;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(228, 0, 33, 0.15);
  color: var(--brand-red);
}

.pizza-lightbox-badge.has-badge {
  display: inline-block;
}

/* Mobile adjustments */
@media (max-width: 639px) {
  .pizza-lightbox-content {
    width: 95%;
  }

  .pizza-lightbox-img-wrap {
    max-width: 320px;
    padding: var(--space-2);
  }

  .pizza-lightbox-name {
    font-size: var(--text-xl);
  }

  .pizza-lightbox-info {
    padding: 0 var(--space-4) var(--space-4);
  }
}

/* ==========================================================================
   CATERING PAGE
   ========================================================================== */

/* ---- Catering Hero ---- */
.catering-hero {
  padding: calc(var(--header-height) + var(--space-12)) var(--section-px) var(--space-10);
  background: var(--surface-base);
  text-align: center;
}

.catering-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.catering-hero p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Catering Features ---- */
.catering-features-section {
  background: var(--surface-elevated);
}

/* ---- Catering Steps ---- */
.catering-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 720px;
  margin: var(--space-8) auto 0;
}

.catering-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.catering-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.catering-step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(33, 168, 49, 0.15);
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
}

.catering-step-number-final {
  background: rgba(228, 0, 33, 0.15);
  color: var(--brand-red);
}

.catering-step-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.catering-step-content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.catering-step-content a {
  color: var(--brand-green);
  font-weight: 600;
  transition: color 0.2s ease;
}

.catering-step-content a:hover {
  color: var(--green-400);
}

/* ---- Catering Responsive ---- */
@media (min-width: 768px) {
  .catering-hero h1 {
    font-size: var(--text-4xl);
  }

  .catering-step-content h3 {
    font-size: var(--text-xl);
  }

  .catering-step-content p {
    font-size: var(--text-base);
  }
}

@media (min-width: 1024px) {
  .catering-hero h1 {
    font-size: var(--text-5xl);
  }

  .catering-hero p {
    font-size: var(--text-xl);
  }
}

/* ═══════════════════════════════════════════
   FROZEN PIZZAS PAGE
   ═══════════════════════════════════════════ */

/* (Base .frozen-hero styling lives in the .frozen-page .frozen-hero
   block lower in this file, which has higher specificity and is the
   single source of truth for the frozen-pizzas page hero.) */
.frozen-hero p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.94);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Print menu page hero (lifestyle banner with fridge image) ───
   Background image + linear-gradient overlay are set inline by the
   template so the image URL stays a single source of truth.
   Text sits left, fridge image bleeds in from the right. */
/* Print menu page hero: text-only intro band with a soft red radial
   tint as backdrop. Image-led treatment was removed pending a better
   asset; revisit when the new visual is ready. */
.print-menu-hero {
  position: relative;
  padding: calc(var(--header-height, 72px) + var(--space-12)) 0 var(--space-10);
  background:
    radial-gradient(80% 60% at 70% 50%, rgba(228, 0, 33, 0.07), transparent 70%),
    var(--surface-base);
}
.print-menu-hero-text {
  max-width: 720px;
}
.print-menu-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-4xl);
  letter-spacing: -0.03em;
  margin: var(--space-2) 0 var(--space-4);
  line-height: 1.1;
}
.print-menu-hero .print-menu-lede {
  font-size: var(--text-lg);
  color: var(--gray-300);
  line-height: 1.65;
  margin: 0;
}
@media (min-width: 900px) {
  .print-menu-hero {
    padding: var(--space-16) 0 var(--space-14);
  }
  .print-menu-hero h1 {
    font-size: var(--text-5xl);
  }
}

/* Tier headers */
.frozen-tier-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.frozen-tier-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-2xl);
  letter-spacing: -0.03em;
}

/* Frozen pizza grid - override to allow 2 cols on mobile for the 2-item tier */
.frozen-pizza-grid {
  gap: var(--space-6);
}

/* Placeholder for pizzas without images */
.frozen-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--surface-elevated);
  border-radius: 50%;
}

/* Badge variant for green */
.badge-green {
  display: inline-block;
  padding: 0.25em 0.75em;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  background: rgba(33, 168, 49, 0.15);
  color: var(--brand-green);
}

/* Retailer cards */
.frozen-retailers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.frozen-retailer-card {
  background: var(--surface-elevated);
  border: 1px solid var(--surface-floating);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.frozen-retailer-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(33, 168, 49, 0.08),
    0 12px 32px rgba(33, 168, 49, 0.04);
}

.frozen-retailer-icon {
  margin-bottom: var(--space-4);
}

.frozen-retailer-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.frozen-retailer-address {
  color: var(--gray-300);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.frozen-retailer-phone {
  margin-bottom: var(--space-2);
}

.frozen-retailer-phone a {
  color: var(--brand-green);
  font-weight: 600;
  font-size: var(--text-base);
  transition: color 0.2s ease;
}

.frozen-retailer-phone a:hover {
  color: var(--green-400);
}

.frozen-retailer-hours {
  color: var(--gray-400);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.frozen-retailer-link {
  color: var(--brand-green);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: color 0.2s ease;
}

.frozen-retailer-link:hover {
  color: var(--green-400);
}

.btn-sm {
  padding: 0.5em 1.5em;
  font-size: var(--text-sm);
}

/* ---- Frozen Responsive ---- */
@media (min-width: 768px) {
  .frozen-hero h1 {
    font-size: var(--text-4xl);
  }

  .frozen-tier-header h2 {
    font-size: var(--text-3xl);
  }

  .frozen-retailers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .frozen-hero h1 {
    font-size: var(--text-5xl);
  }

  .frozen-hero p {
    font-size: var(--text-xl);
  }

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

/* ═══════════════════════════════════════════
   OUR SUPPLIERS PAGE
   ═══════════════════════════════════════════ */

/* Suppliers page: editorial directory of local partners. Card per
   supplier with what-we-source eyebrow, name, blurb, address/phone/email
   stack, and external links. Three category colours (green for produce/
   grain/dairy/plant, red for meat/pasta, amber for bakery). */
.suppliers-hero {
  padding: calc(var(--header-height, 72px) + var(--space-12)) 0 var(--space-10);
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(33, 168, 49, 0.08), transparent 70%),
    var(--surface-base);
}
.suppliers-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-4xl);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: var(--space-3) 0 var(--space-4);
}
.suppliers-hero .suppliers-lede {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .suppliers-hero h1 { font-size: var(--text-5xl); }
}
@media (min-width: 1024px) {
  .suppliers-hero h1 { font-size: var(--text-6xl); }
}

.suppliers-section {
  padding-top: var(--space-10);
}
.suppliers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .suppliers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.supplier-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-7);
  background: rgba(255, 255, 255, 0.025);
  border-left: 3px solid var(--brand-green);
  border-radius: 0 8px 8px 0;
}
.supplier-card--red   { border-left-color: var(--brand-red); }
.supplier-card--amber { border-left-color: #ffb83c; }

.supplier-card-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-green);
}
.supplier-card--red   .supplier-card-eyebrow { color: var(--brand-red); }
.supplier-card--amber .supplier-card-eyebrow { color: #ffb83c; }

.supplier-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: var(--space-2) 0 var(--space-3);
  line-height: 1.15;
}

.supplier-card-blurb {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 var(--space-4);
}

.supplier-card-contact {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}
.supplier-card-contact p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 var(--space-2);
}
.supplier-card-contact p:last-child { margin-bottom: 0; }
.supplier-card-phone a,
.supplier-card-email a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}
.supplier-card--red   .supplier-card-phone a:hover,
.supplier-card--red   .supplier-card-email a:hover { color: var(--brand-red); }
.supplier-card--amber .supplier-card-phone a:hover,
.supplier-card--amber .supplier-card-email a:hover { color: #ffb83c; }
.supplier-card .supplier-card-phone a:hover,
.supplier-card .supplier-card-email a:hover { color: var(--brand-green); }

.supplier-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.supplier-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-green);
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}
.supplier-card-link:hover { text-decoration: underline; }
.supplier-card--red   .supplier-card-link { color: var(--brand-red); }
.supplier-card--amber .supplier-card-link { color: #ffb83c; }

/* National partner (Sysco): one wide, neutral-toned card that reads as
   distinct from the 11 local supplier cards above. Centered max-width
   layout, no category accent colour, top hairline border instead of a
   left rail. */
.suppliers-national {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}
.suppliers-national-card {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-7);
  background: rgba(255, 255, 255, 0.025);
  border-top: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 0 8px 8px;
  text-align: center;
}
.suppliers-national-card .section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.suppliers-national-card h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
}
.suppliers-national-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto var(--space-5);
}
.suppliers-national-link {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s var(--ease-smooth), color 0.2s var(--ease-smooth);
}
.suppliers-national-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ================================================================
   SPECIALS PAGE
   Dedicated /specials/ destination. Reuses size-chip primitives
   from the menu/homepage, adds golden Margherita feature treatment,
   3-card row for slice/sunday/limited deals, and a consolidated
   walk-in/pickup price grid.
   ================================================================ */

.specials-hero {
  padding: calc(var(--header-height, 72px) + var(--space-12)) 0 var(--space-10);
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(228, 0, 33, 0.08), transparent 70%),
    var(--surface-base);
}
/* Mobile: bump the hero's top padding so the heading clears the sticky
   nav with proper breathing room. The default mobile-scaled --space-12
   (4rem) was leaving the eyebrow + heading feeling jammed up against
   the top of the viewport. */
@media (max-width: 767px) {
  .specials-hero {
    padding-top: calc(var(--header-height, 72px) + 5.5rem);
  }
}
.specials-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-4xl);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: var(--space-3) 0 var(--space-4);
}
.specials-hero .specials-lede {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .specials-hero h1 { font-size: var(--text-5xl); }
}
@media (min-width: 1024px) {
  .specials-hero h1 { font-size: var(--text-6xl); }
}

/* Inherit .section padding (--section-py) instead of overriding with
   the larger --space-12, which created huge dead zones between
   stacked specials-section feature blocks. */
.specials-section--seasonal {
  background:
    radial-gradient(70% 60% at 70% 50%, rgba(255, 184, 60, 0.10), transparent 65%),
    var(--surface-base);
}

/* Margherita feature: two-column split (text + image-with-glow) */
.special-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .special-feature {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: var(--space-12);
  }
}
.special-feature h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: var(--space-3) 0 var(--space-2);
}
@media (min-width: 1024px) {
  .special-feature h2 { font-size: var(--text-5xl); }
}
.special-feature p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-4);
  max-width: 56ch;
}
.specials-subtitle {
  font-style: italic;
  color: #ffb83c;
  font-size: var(--text-xl);
  margin: calc(var(--space-2) * -1) 0 var(--space-4) !important;
}
.specials-eyebrow--gold { color: #ffb83c !important; }
.specials-h2--gold      { color: #ffd84d; }

.special-feature-prices {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.special-feature-img {
  position: relative;
}
.special-feature-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.special-feature-img--glow .special-feature-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(
    circle at center,
    rgba(255, 216, 77, 0.45) 0%,
    rgba(255, 140, 26, 0.20) 35%,
    transparent 70%
  );
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

/* 3-card row for slice deal, sunday deal, limited-time */
.specials-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .specials-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .specials-cards { grid-template-columns: repeat(3, 1fr); }
}
.special-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-7);
  background: rgba(255, 255, 255, 0.025);
  border-left: 3px solid var(--brand-green);
  border-radius: 0 8px 8px 0;
}
.special-card--red   { border-left-color: var(--brand-red); }
.special-card--green { border-left-color: var(--brand-green); }
.special-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(228, 0, 33, 0.12);
  color: var(--brand-red);
  margin-bottom: var(--space-3);
}
.special-card--green .special-card-badge {
  background: rgba(33, 168, 49, 0.12);
  color: var(--brand-green);
}
.special-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 var(--space-3);
  line-height: 1.15;
}
.special-card-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-4);
}
.special-card-price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  margin: auto 0 var(--space-3);
  font-variant-numeric: tabular-nums;
}

/* Slice deal variant list (two pricing tiers in one card) */
.special-variants {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.special-variants li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.special-variants li:last-child { border-bottom: 0; }
.special-variant-name {
  font-size: var(--text-base);
  color: var(--text-primary);
  font-weight: 600;
}
.special-variant-price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--brand-red);
  font-variant-numeric: tabular-nums;
}

/* ────────────────────────────────────────────────
   Walk-in / Pickup feature: red-themed hero version
   with the floating-pizza image on the left and the
   3-size price strip inline in the text column.
   ──────────────────────────────────────────────── */
.specials-section--pickup {
  background:
    radial-gradient(45% 80% at 25% 50%, rgba(228, 0, 33, 0.10), transparent 65%),
    radial-gradient(40% 70% at 75% 50%, rgba(255, 184, 60, 0.04), transparent 70%);
}
.pickup-deal-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .pickup-deal-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-12);
  }
}
.pickup-deal-feature-image {
  text-align: center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45))
          drop-shadow(0 28px 56px rgba(228, 0, 33, 0.14));
}
.pickup-deal-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
  transform: rotate(-4deg);
  transition: transform 0.6s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.pickup-deal-feature-image img:hover {
  transform: rotate(0deg) scale(1.03);
}
/* Desktop: flip the pizza horizontally so the curved/flat edge sits
   against the text column on the right (instead of the left edge of
   the viewport). Right-align inside the column so the cut edge of the
   pizza is closest to the text with the grid gap providing the space. */
@media (min-width: 900px) {
  .pickup-deal-feature-image {
    text-align: right;
  }
  .pickup-deal-feature-image img {
    transform: scaleX(-1) rotate(4deg);
    margin: 0 0 0 auto;
  }
  .pickup-deal-feature-image img:hover {
    transform: scaleX(-1) rotate(0deg) scale(1.03);
  }
}
.pickup-deal-feature-text .section-label {
  display: inline-block;
  margin-bottom: var(--space-3);
}
.pickup-deal-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 var(--space-5);
}
.pickup-deal-lede {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 0 var(--space-6);
}

/* 3-size price strip: M / L / XL chips with prices, horizontal row
   matched to the visual rhythm of the other deal features. */
.pickup-deal-sizes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  max-width: 460px;
}
.pickup-deal-size {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-2);
  background: rgba(228, 0, 33, 0.06);
  border-left: 3px solid var(--brand-red);
  border-radius: 0 8px 8px 0;
}
.pickup-deal-size-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-red);
}
.pickup-deal-size-price {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.pickup-deal-tag {
  font-family: 'Quicksand', var(--font-body);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: var(--space-5) 0 0;
}

/* Walk-in / Pickup consolidated 3-size price grid */
.special-pickup {
  background: rgba(228, 0, 33, 0.05);
  border-left: 3px solid var(--brand-red);
  border-radius: 0 12px 12px 0;
  padding: var(--space-8) var(--space-7);
}
.special-pickup-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-6);
}
.special-pickup-head h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: var(--space-3) 0 var(--space-3);
}
.special-pickup-head p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.special-pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: 560px;
  margin: 0 auto var(--space-6);
}
.special-pickup-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-2);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}
.special-pickup-size {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-red);
}
.special-pickup-price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.special-pickup-meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.special-pickup-foot {
  text-align: center;
}

/* ────────────────────────────────────────────────
   Sunday Deal feature: green-themed hero version
   (parallels the Slice Deal feature but greener
   and with a framed photographic image instead of
   a transparent cutout).
   ──────────────────────────────────────────────── */
.specials-section--sunday {
  background:
    radial-gradient(45% 80% at 75% 50%, rgba(33, 168, 49, 0.12), transparent 65%),
    radial-gradient(40% 70% at 25% 50%, rgba(33, 168, 49, 0.05), transparent 70%);
}
.sunday-deal-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .sunday-deal-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-12);
  }
}
.sunday-deal-feature-text .section-label {
  display: inline-block;
  margin-bottom: var(--space-3);
}
.sunday-deal-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 var(--space-5);
}
.sunday-deal-lede {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 0 var(--space-6);
}

/* Inline pricebox: green-bordered block inside the text column with
   the price prominent and the deal terms in muted meta below. */
.sunday-deal-pricebox {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-6);
  background: rgba(33, 168, 49, 0.06);
  border-left: 3px solid var(--brand-green);
  border-radius: 0 8px 8px 0;
  margin-bottom: var(--space-6);
}
.sunday-deal-pricebox-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-green);
}
.sunday-deal-pricebox-price {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.sunday-deal-pricebox-meta {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.sunday-deal-tag {
  font-family: 'Quicksand', var(--font-body);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: var(--space-5) 0 0;
}

/* Framed photo for the Sunday image (no transparent cutout, so it
   gets a clean rounded frame + soft green-tinted shadow). */
.sunday-deal-feature-image {
  text-align: center;
}
.sunday-deal-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.25),
    0 18px 36px rgba(0, 0, 0, 0.45),
    0 30px 60px rgba(33, 168, 49, 0.12);
  transform: rotate(1.5deg);
  transition: transform 0.5s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.sunday-deal-feature-image img:hover {
  transform: rotate(0deg) translateY(-4px);
}

/* ────────────────────────────────────────────────
   Slice Deal feature section: pulled out of the
   small-card grid into its own hero-style section
   so the visual sells the deal. Image-as-art
   (transparent PNG of slices + pop) with a warm
   amber/red radial wash behind it.
   ──────────────────────────────────────────────── */
.specials-section--slice {
  background:
    radial-gradient(45% 80% at 25% 50%, rgba(255, 140, 26, 0.10), transparent 65%),
    radial-gradient(40% 70% at 75% 60%, rgba(228, 0, 33, 0.06), transparent 70%);
}
.slice-deal-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .slice-deal-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-12);
  }
}
.slice-deal-feature-image {
  text-align: center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45))
          drop-shadow(0 28px 56px rgba(228, 0, 33, 0.12));
}
.slice-deal-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
  transform: rotate(-3deg);
  transition: transform 0.5s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.slice-deal-feature-image img:hover {
  transform: rotate(0deg) scale(1.02);
}
.slice-deal-feature-text .section-label {
  display: inline-block;
  margin-bottom: var(--space-3);
}
.slice-deal-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 var(--space-5);
}
.slice-deal-lede {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 0 var(--space-6);
}

/* Price-led variant list: large red price, smaller descriptor */
.slice-deal-variants {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.slice-deal-variants li {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.slice-deal-variants li:last-child {
  border-bottom: 0;
}
.slice-deal-variant-price {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-red);
  font-variant-numeric: tabular-nums;
  min-width: 5ch;
  line-height: 1;
}
.slice-deal-variant-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.slice-deal-tag {
  font-family: 'Quicksand', var(--font-body);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: 0;
}

/* Deal-row variant: caps at 2 columns and auto-centers content so the
   row reads cleanly whether it holds 1 card (Slice Deal alone) or 2
   (Slice Deal + a returning Limited Time deal). */
.specials-cards--two {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .specials-cards--two {
    grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
    justify-content: center;
  }
}

/* Menu page → Specials callout (replaces the inline SPECIALS chapter
   now that /specials/ is the canonical destination). */
.menu-chapter-callout { padding: 0; }
.chapter-callout {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-7);
  text-align: center;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(228, 0, 33, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.02);
  border-top: 2px solid rgba(228, 0, 33, 0.35);
  border-radius: 0 0 12px 12px;
}
.chapter-callout-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: var(--space-2);
}
.chapter-callout-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--space-3);
}
@media (min-width: 768px) {
  .chapter-callout-title { font-size: var(--text-4xl); }
}
.chapter-callout-link {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease-smooth);
}
.chapter-callout-link:hover {
  border-bottom-color: var(--brand-red);
}
.chapter-callout-lede {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}

/* ================================================================
   OUR STORY PAGE
   ================================================================ */

/* Story hero */
.story-hero {
  padding: calc(var(--header-height, 72px) + var(--space-12)) var(--section-px) var(--space-10);
  background: var(--surface-base);
  text-align: center;
}

.story-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.story-hero p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .story-hero h1 { font-size: var(--text-5xl); }
}

@media (min-width: 1024px) {
  .story-hero h1 { font-size: var(--text-6xl); }
  .story-hero p { font-size: var(--text-xl); }
}

/* Story hero with video background */
.story-hero-video {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Lede text over the video needs pure white (not the default muted gray)
   so it reads cleanly against moving footage. Subtle shadow keeps contrast
   if a bright frame plays underneath. */
.story-hero-video p {
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.story-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Light vignette + bottom protector so the video stays visible while
   the H1 + lede over it remain legible. Was 50-85% radial + 30-90% linear
   which essentially blacked out the footage; reduced to a subtle edge
   darkening with the heaviest tint only behind the text band. */
.story-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0) 0%, rgba(10,10,10,0.35) 90%),
    linear-gradient(to bottom, rgba(10,10,10,0) 50%, rgba(10,10,10,0.55) 100%);
}

/* ================================================================
   STORY PAGE, SECTION FAMILY (replaces the old timeline/chapter)
   Six narrative sections: who-we-are, perogie-pizza, local-farmers,
   margherita (golden glow), community, georges-sausage.
   Shared primitives: intro band, two-col split, partner card grid,
   community tile row. The Margherita section gets a gold glow on
   top of the split layout.
   ================================================================ */

.story-section {
  padding: var(--section-py) 0;
  scroll-margin-top: calc(var(--header-height, 72px) + 40px);
}
.story-section .section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
}
.story-section h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 var(--space-5);
}
@media (min-width: 1024px) {
  .story-section h2 { font-size: var(--text-4xl); }
}
.story-section p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-4);
}
.story-section-subtitle {
  font-style: italic;
  color: #ffb83c;
  font-size: var(--text-xl);
  margin: calc(var(--space-3) * -1) 0 var(--space-5) !important;
}

/* Centered intro section (Who We Are): single column, comfortably
   constrained reading width. */
.story-section--intro {
  text-align: center;
}
.story-section--intro p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* Inline motto pull, "Let's Eat Together", in the Who We Are paragraph.
   Larger heading font + brand green so the phrase visually pops out of
   the surrounding body copy. */
.story-motto-inline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 1.35em;
  color: var(--brand-green);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Two-column split (image + text). Default is image-left/text-right.
   .story-section-grid--text-left swaps to text-left/image-right. */
.story-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .story-section-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--space-12);
  }
  .story-section-grid--text-left .story-section-img  { order: 2; }
  .story-section-grid--text-left .story-section-text { order: 1; }
}
.story-section-img {
  position: relative;
}
.story-section-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
}
/* Toppings caption shown under each featured pizza image. Pulls the
   canonical comma-separated topping string from data/menu.json so the
   story page stays in sync with the actual menu. */
.story-section-toppings {
  display: block;
  max-width: 480px;
  margin: var(--space-4) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
}
.story-section-toppings-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: var(--space-2);
}
.story-section-toppings--gold {
  border-top-color: rgba(255, 184, 60, 0.30);
}
.story-section-toppings--gold .story-section-toppings-label {
  color: #ffb83c;
}

/* Margherita (gold) treatment */
.story-section--gold {
  background:
    radial-gradient(70% 60% at 70% 50%, rgba(255, 184, 60, 0.12), transparent 65%),
    var(--surface-base);
}
.story-section-eyebrow--gold {
  color: #ffb83c !important;
}
.story-section-h2--gold {
  color: #ffd84d;
}
.story-section-img--glow {
  /* Pizza sits over a warm radial bloom so the seasonal callout has the
     same gold-sunburst feel as the homepage Summer Only badge. */
}
.story-section-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(
    circle at center,
    rgba(255, 216, 77, 0.45) 0%,
    rgba(255, 140, 26, 0.20) 35%,
    transparent 70%
  );
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.story-section-img--glow img {
  position: relative;
  z-index: 1;
}

/* Local Farmers section: centered intro + 3-col partner grid */
.story-section-intro {
  max-width: 720px;
  margin: 0 auto var(--space-10);
  text-align: center;
}
.story-partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 600px) {
  .story-partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .story-partners-grid { grid-template-columns: repeat(3, 1fr); }
}
.story-partner-card {
  padding: var(--space-5) var(--space-6);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--brand-green);
  border-radius: 0 8px 8px 0;
}
.story-partner-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: var(--space-2) 0 var(--space-3);
  color: var(--text-primary);
}
.story-partner-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.story-partner-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-green);
}
.story-partner-card--red {
  border-left-color: var(--brand-red);
}
.story-partner-card--red .story-partner-label {
  color: var(--brand-red);
}

/* ────────────────────────────────────────────────
   Community section "v2": this is the brand's emotional heart,
   so it gets a treatment distinct from the surrounding split
   sections. Warm amber tonal wash, motto promoted to the
   section's display hero, photo gets a tilted Polaroid frame
   with a handwritten-feel caption, tiles read as personal
   notes rather than feature blocks.
   ──────────────────────────────────────────────── */
.story-section--community-v2 {
  position: relative;
  background:
    radial-gradient(60% 70% at 30% 30%, rgba(255, 184, 60, 0.07), transparent 70%),
    radial-gradient(50% 60% at 80% 60%, rgba(228, 0, 33, 0.04), transparent 70%);
}
.story-section--community-v2 .story-section-text--community {
  position: relative;
}
.story-section--community-v2 .section-label {
  display: inline-block;
  margin-bottom: var(--space-3);
}

/* Motto as section hero: large italic display, tight tracking,
   sits where the H2 normally would, sets the emotional tone. */
.community-motto-display {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--brand-green);
  margin: 0 0 var(--space-6) !important;
  text-shadow: 0 2px 24px rgba(33, 168, 49, 0.18);
}
.community-lede {
  font-size: var(--text-lg) !important;
  line-height: 1.6 !important;
  color: var(--text-secondary);
  max-width: 46ch;
  margin: 0 0 var(--space-4) !important;
}
.community-tag {
  font-family: var(--font-body);
  font-size: var(--text-sm) !important;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: 0 !important;
}

/* Polaroid-style photo frame: subtle tilt, white inner border,
   handwritten-feel caption strip below. Sits like a printed photo
   pinned to the wall, not a stock image dropped into a grid. */
.story-section-img--polaroid {
  perspective: 1200px;
}
.polaroid-frame {
  display: inline-block;
  max-width: 480px;
  background: #f5f1e8;
  padding: 14px 14px 10px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18),
    0 14px 32px rgba(0, 0, 0, 0.40),
    0 30px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(-1.5deg);
  transition: transform 0.4s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.polaroid-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}
/* Awards section Polaroid tilts the opposite way so the two photos on
   the page don't read as templated. */
#thunder-bays-favourite-pizza .polaroid-frame {
  transform: rotate(1.2deg);
}
#thunder-bays-favourite-pizza .polaroid-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}
.polaroid-frame img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.polaroid-caption {
  display: block;
  text-align: center;
  font-family: 'Quicksand', var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: #2a2a2a;
  padding: 14px 8px 4px;
  letter-spacing: 0.01em;
}

/* Refined community tiles: numbered serif marker, lighter border
   feel, warmer hover. Reads as a personal note rather than a
   product feature card. */
.story-section--community-v2 .story-community-tile {
  position: relative;
  padding-top: var(--space-8);
  background: rgba(255, 255, 255, 0.025);
  border-top: 2px solid var(--brand-green);
  transition: background 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}
.story-section--community-v2 .story-community-tile:hover {
  background: rgba(33, 168, 49, 0.06);
  transform: translateY(-3px);
}
.story-community-tile-mark {
  position: absolute;
  top: var(--space-3);
  right: var(--space-5);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-green);
  opacity: 0.55;
}

/* Community section: pulled motto + 3-tile row */
.story-motto {
  margin: var(--space-10) auto var(--space-8);
  max-width: 720px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-style: italic;
  font-weight: 700;
  color: var(--brand-green);
  border: none;
  padding: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .story-motto { font-size: var(--text-4xl); }
}
.story-community-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
@media (min-width: 768px) {
  .story-community-tiles { grid-template-columns: repeat(3, 1fr); }
  .story-community-tiles--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.story-community-tile {
  padding: var(--space-6);
  background: rgba(33, 168, 49, 0.05);
  border-top: 3px solid var(--brand-green);
  border-radius: 0 0 8px 8px;
}
.story-community-tile h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 var(--space-3);
}
.story-community-tile p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   COMMUNITY PAGE
   ================================================================ */

/* Community hero */
.community-hero {
  padding: calc(var(--header-height, 72px) + var(--space-12)) var(--section-px) var(--space-10);
  background: linear-gradient(180deg, rgba(228, 0, 33, 0.04) 0%, transparent 100%);
  text-align: center;
}

.community-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.community-hero p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .community-hero h1 { font-size: var(--text-5xl); }
}

@media (min-width: 1024px) {
  .community-hero h1 { font-size: var(--text-6xl); }
  .community-hero p { font-size: var(--text-xl); }
}

/* Community story card */
.community-story-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .community-story-card {
    grid-template-columns: 1fr 1fr;
  }

  .community-story-card-reverse .community-story-img {
    order: 1;
  }
}

.community-story-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.community-story-text {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-story-text h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

@media (min-width: 1024px) {
  .community-story-text h3 { font-size: var(--text-3xl); }
}

.community-story-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.community-story-text p:last-child {
  margin-bottom: 0;
}

/* Community quote decoration */
.community-quote {
  position: relative;
  padding-left: var(--space-8);
}

.community-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(33, 168, 49, 0.12);
  position: absolute;
  top: calc(-1 * var(--space-4));
  left: 0;
  line-height: 1;
  pointer-events: none;
}

/* Impact stats */
.community-impact-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding: var(--space-8) 0;
}

@media (min-width: 640px) {
  .community-impact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.impact-stat {
  padding: var(--space-8) var(--space-6);
  background: var(--surface-floating);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-spring),
              border-color var(--duration-normal) var(--ease-smooth);
}

.impact-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 168, 49, 0.3);
}

.impact-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-tight);
}

@media (min-width: 1024px) {
  .impact-number { font-size: var(--text-5xl); }
}

.impact-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* ================================================================
   MENU PAGE, NEW SECTIONS (Specials, Gift Cards)
   ================================================================ */

/* Special feature card */

/* Gift card display */

/* Popularity badge */

/* ================================================================
   MOBILE ORDER BAR (Menu page only)
   ================================================================ */

.mobile-order-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--surface-border);
  padding: var(--space-3) var(--section-px);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.mobile-order-bar.is-visible {
  transform: translateY(0);
}

.mobile-order-bar .btn {
  width: 100%;
}

@media (max-width: 767px) {
  .menu-page .mobile-order-bar {
    display: block;
  }
}

/* ════════════════════════════════════════════════════════════════════
   MENU PAGE, EDITORIAL REDESIGN (image-free, mobile-first)
   ════════════════════════════════════════════════════════════════════
   Depth strategy: hairlines + whitespace. No shadows, no card boxes.
   Container: narrow (960px). Mobile-first single column → 2-col @720px+.
   ════════════════════════════════════════════════════════════════════ */

/* ── Masthead ─────────────────────────────────────────────────── */
.menu-masthead {
  position: relative;
  overflow: hidden;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height, 72px) + var(--space-11)) var(--section-px) var(--space-10);
  text-align: center;
}

.menu-masthead-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.menu-masthead-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.menu-masthead-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.9) 75%),
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.95) 100%);
}

.menu-masthead .container {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.menu-masthead-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-green);
  margin-bottom: var(--space-5);
  animation: heroRevealUp 0.7s var(--ease-out) 0.05s both;
}

.menu-masthead h1 {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text-primary);
  margin: 0 0 var(--space-5);
  animation: heroRevealUp 0.7s var(--ease-out) 0.15s both;
}

.menu-masthead-lede {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 auto;
  animation: heroRevealUp 0.7s var(--ease-out) 0.35s both;
}

/* "Print this Menu" CTA in the menu page masthead. Sits centered
   below the lede with extra top margin so it doesn't crowd the
   heading copy. */
.menu-masthead-print {
  display: inline-block;
  margin-top: var(--space-5);
  animation: heroRevealUp 0.7s var(--ease-out) 0.5s both;
}

@media (min-width: 768px) {
  .menu-masthead h1 { font-size: var(--text-6xl); }
  .menu-masthead-lede { font-size: var(--text-lg); max-width: 48ch; }
}

/* ── Sticky tab bar ──────────────────────────────────────────── */
.menu-tabs {
  position: sticky;
  top: var(--header-height, 72px);
  z-index: var(--z-elevated, 10);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-tabs .menu-nav-scroll {
  display: flex;
  gap: 0;
  padding: 0 var(--section-px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.menu-tabs .menu-nav-scroll::-webkit-scrollbar { display: none; }

.menu-tab {
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: var(--space-4) var(--space-4);
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--duration-normal) var(--ease-out),
              background-color var(--duration-normal) var(--ease-out);
}

/* Underline indicator (transform-animated for active state) */
.menu-tab::after {
  content: '';
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: 0;
  height: 2px;
  background: var(--brand-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-normal) var(--ease-out);
}

.menu-tab:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.03);
}

.menu-tab:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: -2px;
}

.menu-tab.active {
  color: var(--text-primary);
  font-weight: 600;
  background-color: rgba(33, 168, 49, 0.08);
}

.menu-tab.active::after {
  transform: scaleX(1);
}

@media (min-width: 768px) {
  .menu-tab {
    font-size: var(--text-base);
    padding: var(--space-5) var(--space-5);
  }
  .menu-tabs .menu-nav-scroll {
    justify-content: center;
    gap: var(--space-1);
  }
}

/* ── Page shell + chapter scaffolding ─────────────────────────── */
.menu-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-9) var(--section-px) var(--space-12);
}

.menu-chapter {
  margin-top: 0;
  scroll-margin-top: calc(var(--header-height, 72px) + 72px);
}

/* Sticky tab targets that live INSIDE a chapter (BYO, Classics, Sides) need the
   same offset so they land below the sticky header + tab bar, not underneath. */
.menu-block[id] {
  scroll-margin-top: calc(var(--header-height, 72px) + 72px);
}

.menu-chapter + .menu-chapter,
.menu-chapter + .chapter-rule + .menu-chapter {
  margin-top: var(--space-11);
}

.chapter-rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: var(--space-11) 0;
}

@media (min-width: 768px) {
  .menu-shell { padding: var(--space-11) var(--space-6) var(--space-12); }
  .menu-chapter + .menu-chapter,
  .menu-chapter + .chapter-rule + .menu-chapter { margin-top: var(--space-12); }
  .chapter-rule { margin: var(--space-12) 0; }
}

/* Chapter head - vertical accent bar to the left.
   Chapters with .menu-chapter--red on the section get a red bar + red eyebrow. */
.chapter-head {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-6) 0 0 var(--space-5);
  margin-bottom: var(--space-9);
}

.chapter-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--space-6);
  bottom: var(--space-2);
  width: 3px;
  background: var(--brand-green);
  border-radius: 1px;
}

.menu-chapter--red .chapter-head::before {
  background: var(--brand-red);
}

.menu-chapter--red .chapter-eyebrow {
  color: var(--brand-red);
}

.chapter-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-green);
  margin-bottom: var(--space-3);
}

.chapter-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
}

.chapter-lede {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0;
}

@media (min-width: 768px) {
  .chapter-title { font-size: var(--text-5xl); }
}

/* ── Block (sub-section within chapter) ───────────────────────── */
.menu-block + .menu-block {
  margin-top: var(--space-9);
}

.block-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1) var(--space-4);
  align-items: baseline;
  margin-bottom: var(--space-5);
}

@media (min-width: 480px) {
  .block-head {
    grid-template-columns: 1fr auto;
  }
}

.block-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0;
}

.block-meta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  white-space: nowrap;
}

.block-lede {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 50ch;
  margin: var(--space-1) 0 0;
}

@media (min-width: 768px) {
  .block-title { font-size: var(--text-3xl); }
  .block-lede { font-size: var(--text-base); }
}

/* Block sub-head (THE BASE, TOPPINGS, MEATS, etc.) */
.block-subhead {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: var(--space-6) 0 var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 14ch;
}

/* ── Items list (single column mobile, two column tablet+) ────── */
.menu-items {
  display: flex;
  flex-direction: column;
}

@media (min-width: 720px) {
  .menu-items--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--space-8);
    row-gap: 0;
  }
}

/* ── Pizza entry (no image) ──────────────────────────────────── */
.pizza-entry {
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: var(--space-4);
  row-gap: var(--space-2);
  align-items: baseline;
}

.pizza-entry:last-child {
  border-bottom: none;
}

/* In 2-col grid, the last item in each column has no border too */
@media (min-width: 720px) {
  .menu-items--two-col .pizza-entry:nth-last-child(-n+2) {
    /* tentative; not strictly enforced because last-of-row varies */
  }
}

.entry-name {
  grid-column: 1;
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

.entry-price {
  grid-column: 2;
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  color: var(--text-primary);
  white-space: nowrap;
  text-align: right;
}

.entry-desc {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}

.entry-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-1);
}

/* Fan Favourite mark - text only, no badge */
.fav-mark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-red);
}

.fav-mark::before {
  content: '★';
  font-size: 0.85em;
}

/* Order link - plain text, green, arrow */
.entry-order {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-green);
  text-decoration: none;
  margin-left: auto;
  transition: color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.entry-order::after {
  content: '→';
  display: inline-block;
  transition: transform var(--duration-normal) var(--ease-out);
}

.entry-order:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.entry-order:hover::after {
  transform: translateX(3px);
}

.entry-order:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
  border-radius: 2px;
}

.entry-order:active {
  opacity: 0.8;
}

/* Gourmet variant - multi-price row */
.pizza-entry--multi-price .entry-price {
  display: none;
}

.price-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(56px, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-2);
  max-width: 360px;
  margin-left: auto;
}

.price-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.price-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 1;
}

.price-cell .price-amount {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ── Menu line (dotted leader: name ··· price) ────────────────── */
.menu-line {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-3) 0;
}

.menu-line__name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  flex-shrink: 0;
}

.menu-line__leader {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.18);
  height: 0;
  transform: translateY(-4px);
  min-width: var(--space-4);
}

.menu-line__price {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-line__note {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .menu-line { padding: var(--space-4) 0; }
}

/* ── BYO block ────────────────────────────────────────────────── */
.byo-block .block-head { margin-bottom: var(--space-5); }

.byo-base-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  max-width: 480px;
  margin: 0 0 var(--space-3);
}

.byo-base-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
}

.byo-size {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.byo-amount {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

@media (min-width: 480px) {
  .byo-amount { font-size: var(--text-3xl); }
}

.byo-tier-line {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  align-items: baseline;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--space-2) 0;
}

.byo-tier-line strong {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 90px;
}

.byo-list {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 60ch;
  margin: 0;
}

/* Topping categories collapse to 2x2 grid on tablet+ so the block doesn't
   monopolize desktop vertical scroll. */
.byo-topping-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5) var(--space-8);
  margin-top: var(--space-2);
}

.byo-topping-col .block-subhead {
  margin-top: var(--space-3);
}

@media (min-width: 720px) {
  .byo-topping-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.byo-block .entry-order,
.byo-block .btn-order-quiet {
  display: inline-flex;
  margin-top: var(--space-6);
  margin-left: 0;
}

/* ── Specials block ──────────────────────────────────────────── */
.specials-sub {
  margin-top: var(--space-8);
}

.specials-sub:first-of-type {
  margin-top: 0;
}

.specials-block .pizza-entry--feature .entry-name {
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .specials-block .pizza-entry--feature .entry-name {
    font-size: var(--text-3xl);
  }
}

.specials-foot {
  margin-top: var(--space-5);
}

/* ── Gift cards block ────────────────────────────────────────── */
.gift-amount-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin: var(--space-3) 0 var(--space-6);
  max-width: 520px;
}

.gift-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.1;
}

@media (min-width: 480px) {
  .gift-amount { font-size: var(--text-4xl); }
}

.gift-cards-block p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 0 var(--space-2);
}

/* Two-column gift card layout: image on the left, copy on the right.
   Stacks vertically below 768px so the card photo leads on mobile. */
.gift-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-top: var(--space-4);
}
@media (min-width: 768px) {
  .gift-cards-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-8);
  }
}
.gift-cards-figure {
  margin: 0;
}
.gift-cards-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.gift-cards-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ────────────────────────────────────────────────
   Gift Cards v2: reusable section template part
   (/menu/, /specials/, homepage). Warm green
   tonal wash, tilted-card "handed over" treatment,
   denomination strip as a flexibility cue.
   ──────────────────────────────────────────────── */
.gift-cards-v2 {
  position: relative;
  /* Was var(--space-16) (16rem/256px top+bottom on desktop) which left a
     cavernous empty band above the section. Match the standard section
     rhythm instead. */
  padding: var(--section-py) 0;
  background:
    radial-gradient(60% 80% at 25% 50%, rgba(33, 168, 49, 0.10), transparent 65%),
    radial-gradient(50% 70% at 80% 50%, rgba(255, 184, 60, 0.06), transparent 70%);
  overflow: hidden;
}
.gift-cards-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 900px) {
  .gift-cards-v2-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--space-14);
  }
}

/* Tilted card with "From Eat Local" gift tag floating above */
.gift-cards-v2-image {
  position: relative;
  text-align: center;
  perspective: 1400px;
}
.gift-cards-v2-frame {
  display: inline-block;
  margin: 0;
  max-width: 520px;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45))
    drop-shadow(0 30px 60px rgba(33, 168, 49, 0.12));
}
.gift-cards-v2-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}
.gift-cards-v2-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.gift-cards-v2-tag {
  position: absolute;
  top: 8%;
  right: 6%;
  z-index: 2;
  font-family: 'Quicksand', var(--font-body);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #f5f1e8;
  padding: 8px 16px 8px 22px;
  border-radius: 2px;
  transform: rotate(7deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
.gift-cards-v2-tag::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--surface-base);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/* Text column */
.gift-cards-v2-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-green);
  margin-bottom: var(--space-4);
}
.gift-cards-v2-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: var(--text-primary);
  margin: 0 0 var(--space-5);
}
.gift-cards-v2-headline em {
  font-style: italic;
  font-weight: 800;
  color: var(--text-primary);
  position: relative;
}
.gift-cards-v2-lede {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 48ch;
  margin: 0 0 var(--space-6);
}

/* Denomination chip strip: decorative cue that any amount works */
.gift-cards-v2-denoms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0 0 var(--space-6);
}
.gift-cards-v2-denom {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand-green);
  background: rgba(33, 168, 49, 0.08);
  border: 1px solid rgba(33, 168, 49, 0.25);
  border-radius: var(--radius-full);
  font-variant-numeric: tabular-nums;
}
.gift-cards-v2-denom--any {
  font-family: 'Quicksand', var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: var(--text-sm);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0.01em;
}

.gift-cards-v2-where {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 44ch;
  margin: 0 0 var(--space-5);
}

/* ── Catering / how-to-bake step ─────────────────────────────── */
.catering-block .catering-step,
.frozen-block .catering-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-5);
  align-items: baseline;
  padding: var(--space-4) 0;
  border: 0;
  background: none;
  border-radius: 0;
}

.catering-block .catering-step + .catering-step,
.frozen-block .catering-step + .catering-step {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.catering-block .catering-step-number,
.frozen-block .catering-step-number {
  width: auto;
  height: auto;
  min-width: 2.4ch;
  background: none;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--brand-green);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .catering-block .catering-step-number,
  .frozen-block .catering-step-number {
    font-size: var(--text-5xl);
  }
}

.catering-block .catering-step-number-final,
.frozen-block .catering-step-number-final {
  color: var(--brand-green);
  opacity: 1;
}

.catering-block .catering-step-content,
.frozen-block .catering-step-content {
  display: block;
}

.catering-block .catering-step-content h3,
.frozen-block .catering-step-content h3,
.catering-block .catering-step-content h4,
.frozen-block .catering-step-content h4 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}

.catering-block .catering-step-content p,
.frozen-block .catering-step-content p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}

.catering-block .entry-order,
.frozen-block .entry-order {
  display: inline-flex;
  margin-top: var(--space-5);
  margin-left: 0;
}

/* ── Frozen block ────────────────────────────────────────────── */
.frozen-tier-head {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin: var(--space-7) 0 var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.frozen-tier-head:first-of-type {
  margin-top: var(--space-3);
}

.frozen-tier-head strong {
  color: var(--text-primary);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}

.frozen-tier-head .tier-price {
  margin-left: var(--space-2);
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.frozen-retailers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-3);
  align-items: center;
}

@media (min-width: 768px) {
  .frozen-retailers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.frozen-retailer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
}

.frozen-retailer img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.frozen-retailer-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Quiet outline button ────────────────────────────────────── */
.btn-order-quiet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-3) var(--space-5);
  background: transparent;
  border: 1px solid var(--brand-green);
  border-radius: 0;
  color: var(--brand-green);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration-normal) var(--ease-out),
              color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.btn-order-quiet:hover {
  background: var(--brand-green);
  color: var(--surface-base);
}

.btn-order-quiet:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

.btn-order-quiet:active {
  transform: translateY(1px);
}

/* ==========================================================================
   Editorial menu, motion + polish (Path A: image-free dynamism)
   ========================================================================== */

/* Stagger entrance for pizza entries (uses existing .stagger-in keyframe).
   JS hook: .stagger-grid container in main.js adds .stagger-in to children. */
.menu-items.stagger-grid > .pizza-entry,
.menu-items--two-col.stagger-grid > .pizza-entry {
  opacity: 0;
}
.menu-items.stagger-grid > .pizza-entry.stagger-in,
.menu-items--two-col.stagger-grid > .pizza-entry.stagger-in {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .menu-items.stagger-grid > .pizza-entry,
  .menu-items--two-col.stagger-grid > .pizza-entry {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* Hover treatment - subtle horizontal nudge + price tint */
.pizza-entry {
  transition: transform 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
}
.pizza-entry .entry-price,
.pizza-entry .entry-name {
  transition: color 0.35s var(--ease-out);
}
@media (hover: hover) {
  .pizza-entry:hover {
    transform: translateX(4px);
  }
  .pizza-entry:hover .entry-price {
    color: var(--brand-green);
  }
  .menu-chapter--red .pizza-entry:hover .entry-price {
    color: var(--brand-red);
  }
  .pizza-entry:hover .entry-order {
    transform: translateX(2px);
  }
}

/* Radial glow behind chapter heads - color-tinted by chapter */
.chapter-head {
  position: relative;
  isolation: isolate;
}
.chapter-head::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -8%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse at center,
              rgba(33, 168, 49, 0.10) 0%,
              transparent 65%);
  pointer-events: none;
  z-index: -1;
  filter: blur(24px);
}
.menu-chapter--red .chapter-head::after {
  background: radial-gradient(ellipse at center,
              rgba(228, 0, 33, 0.12) 0%,
              transparent 65%);
}

/* Fan-favourite spotlight - soft accent rail + tint, slightly larger name */
.pizza-entry--popular {
  position: relative;
  padding-left: var(--space-5);
  padding-right: var(--space-4);
  background: linear-gradient(90deg,
              rgba(33, 168, 49, 0.05) 0%,
              transparent 55%);
  border-left: 2px solid rgba(33, 168, 49, 0.55);
  margin-left: calc(var(--space-4) * -1);
  margin-right: calc(var(--space-4) * -1);
}
.pizza-entry--popular .entry-name {
  font-size: var(--text-2xl);
}
.pizza-entry--popular .fav-mark {
  color: var(--brand-green);
}
.menu-chapter--red .pizza-entry--popular {
  background: linear-gradient(90deg,
              rgba(228, 0, 33, 0.05) 0%,
              transparent 55%);
  border-left-color: rgba(228, 0, 33, 0.55);
}
.menu-chapter--red .pizza-entry--popular .fav-mark {
  color: var(--brand-red);
}

/* Seasonal Margherita on the editorial menu page - golden accent that
   matches the homepage summer treatment while respecting the editorial
   no-shadow / hairline-only language of the menu page. */
.pizza-entry--summer {
  position: relative;
  padding-left: var(--space-5);
  padding-right: var(--space-4);
  background: linear-gradient(90deg,
              rgba(255, 184, 60, 0.07) 0%,
              transparent 55%);
  border-left: 2px solid rgba(255, 184, 60, 0.65);
  margin-left: calc(var(--space-4) * -1);
  margin-right: calc(var(--space-4) * -1);
}
.fav-mark--summer {
  color: #ffb83c;
}
.fav-mark--summer::before {
  content: '☀';
  font-size: 1em;
}

/* Refined price chips on multi-price (Gourmet S/M/L/XL) */
.price-cell {
  transition: background-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out),
              transform 0.25s var(--ease-out);
  padding: var(--space-2) var(--space-3);
  border-radius: 4px;
  cursor: default;
}
@media (hover: hover) {
  .pizza-entry--multi-price:hover .price-cell {
    background: rgba(33, 168, 49, 0.06);
  }
  .price-cell:hover {
    background: rgba(33, 168, 49, 0.14) !important;
    transform: translateY(-2px);
  }
  .price-cell:hover .price-label {
    color: var(--brand-green);
  }
  .price-cell:hover .price-amount {
    color: var(--text-primary);
  }
}

/* Chapter-title accent words use existing .text-red / .text-green utilities.
   Force tighter kerning at this size so the accent doesn't break spacing. */
.chapter-title .text-red,
.chapter-title .text-green {
  letter-spacing: inherit;
}

/* ---- In-page Menu CTA strip (Order / Call / Skip) ---- */
.menu-cta-strip {
  padding: var(--space-9) var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  margin: var(--space-9) 0;
}

.menu-cta-strip-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.menu-cta-strip .cta-trio {
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .menu-cta-strip {
    padding: var(--space-11) var(--space-6);
  }
}

/* ==========================================================================
   Catering page additions
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Hero extras ---- */
.catering-hero-lede {
  max-width: 720px;
  margin: var(--space-4) auto var(--space-6);
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.6;
}

.catering-hero-cta {
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Pizza-math table ---- */
.pizza-math {
  max-width: 640px;
  margin: var(--space-8) auto 0;
  padding: var(--space-6) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: var(--surface-elevated);
}

.pizza-math-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.pizza-math-table thead th {
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--space-2) 0 var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pizza-math-table thead th + th { text-align: right; }

.pizza-math-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pizza-math-table tbody tr:last-child { border-bottom: none; }

.pizza-math-table td {
  padding: var(--space-3) 0;
  color: var(--text-primary);
  font-size: var(--text-base);
}

.pizza-math-count {
  text-align: right;
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--brand-green);
}

.pizza-math-note {
  margin-top: var(--space-5);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  font-style: italic;
}

/* ---- Pricing card ---- */
.catering-pricing {
  max-width: 720px;
  margin: var(--space-8) auto 0;
  display: grid;
  gap: var(--space-6);
}

.catering-pricing-card {
  text-align: center;
  padding: var(--space-9) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: var(--surface-elevated);
  position: relative;
  overflow: hidden;
}

.catering-pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(228, 0, 33, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Photo-backed pricing card variant: background image set inline in
   the template. Heavy radial scrim keeps the centered price + copy
   readable while the photo shows through at the corners. */
.catering-pricing-card--bg {
  background-color: var(--surface-elevated);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.catering-pricing-card--bg::before {
  background:
    radial-gradient(
      ellipse at center,
      rgba(10, 10, 10, 0.82) 0%,
      rgba(10, 10, 10, 0.65) 60%,
      rgba(10, 10, 10, 0.50) 100%
    );
}
.catering-pricing-card--bg .catering-pricing-eyebrow,
.catering-pricing-card--bg .catering-pricing-amount,
.catering-pricing-card--bg .catering-pricing-unit,
.catering-pricing-card--bg .catering-pricing-note {
  color: #fff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 16px rgba(0, 0, 0, 0.65);
}
.catering-pricing-card--bg .catering-pricing-note {
  color: rgba(255, 255, 255, 0.92);
}

/* Per-section "Catering Order Form" CTA: small centered button block
   that appears at the bottom of every content section on the catering
   page, anchoring users back to the lead form (#catering-lead-form). */
.catering-section-cta {
  margin-top: var(--space-8);
  text-align: center;
}

.catering-pricing-eyebrow {
  position: relative;
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: var(--space-3);
}

.catering-pricing-amount {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.catering-pricing-unit {
  position: relative;
  margin-top: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.catering-pricing-note {
  position: relative;
  max-width: 480px;
  margin: var(--space-5) auto 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.catering-pricing-extras ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.catering-pricing-extras li {
  padding: var(--space-4) var(--space-5);
  border-left: 2px solid var(--brand-green);
  background: rgba(33, 168, 49, 0.04);
  color: var(--text-secondary);
  line-height: 1.6;
}

.catering-pricing-extras strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ---- Tours & demos callout ---- */
.tours-callout {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--space-9) var(--space-5);
  border: 1px solid rgba(33, 168, 49, 0.25);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(33, 168, 49, 0.06) 0%, transparent 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tours-callout::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(33, 168, 49, 0.12) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.tours-callout-inner {
  position: relative;
  z-index: 1;
}

.tours-callout-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: var(--space-3);
}

.tours-callout h2 {
  margin-bottom: var(--space-4);
}

.tours-callout p {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Photo-backed tours callout: school-tour image as backdrop, with a
   radial dark scrim concentrated behind the centered text so the
   eyebrow + heading + body stay readable while the photo shows through
   at the edges. */
.tours-callout--bg {
  background-color: var(--surface-elevated);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-color: rgba(33, 168, 49, 0.45);
  isolation: isolate;
}
.tours-callout--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.65) 60%,
    rgba(10, 10, 10, 0.45) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.tours-callout--bg .tours-callout-inner { z-index: 2; }
.tours-callout--bg h2,
.tours-callout--bg p,
.tours-callout--bg .tours-callout-eyebrow {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 16px rgba(0, 0, 0, 0.65);
}
.tours-callout--bg h2 { color: #fff; }
.tours-callout--bg p { color: rgba(255, 255, 255, 0.94); }

@media (min-width: 768px) {
  .tours-callout {
    padding: var(--space-11) var(--space-9);
  }
}

/* ---- Delivery / Why blocks ---- */
.catering-delivery,
.catering-why {
  max-width: 720px;
  margin: var(--space-6) auto 0;
}

.catering-delivery ul,
.catering-why ul {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.catering-delivery li,
.catering-why li {
  position: relative;
  padding: var(--space-3) 0 var(--space-3) var(--space-6);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.catering-delivery li:last-child,
.catering-why li:last-child { border-bottom: none; }

.catering-delivery li::before,
.catering-why li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(var(--space-3) + 0.65em);
  width: 12px;
  height: 1px;
  background: var(--brand-green);
}

.catering-why p {
  color: var(--text-primary);
  font-size: var(--text-lg);
  line-height: 1.6;
  font-weight: 500;
}

.catering-why a {
  color: var(--brand-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: var(--space-8) auto 0;
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: var(--surface-elevated);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out);
}

.faq-item[open] {
  border-color: rgba(33, 168, 49, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--text-base);
  line-height: 1.4;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }

.faq-question-text { flex: 1; }

.faq-question-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--brand-green);
  transition: transform 0.25s var(--ease-out);
}

.faq-question-icon svg {
  width: 100%;
  height: 100%;
}

.faq-item[open] .faq-question-icon {
  transform: rotate(180deg);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: -2px;
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: var(--text-lg);
    padding: var(--space-5) var(--space-6);
  }
  .faq-answer {
    padding: 0 var(--space-6) var(--space-6);
  }
}

/* ---- Catering contact grid ---- */
.catering-contact-grid {
  display: grid;
  gap: var(--space-7);
  margin-top: var(--space-8);
}

@media (min-width: 900px) {
  .catering-contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.catering-contact-info {
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: var(--surface-elevated);
}

.contact-detail-note {
  margin-top: var(--space-2) !important;
  color: var(--text-muted) !important;
  font-size: var(--text-sm) !important;
}

/* ---- Lead form section ---- */
.catering-lead-section {
  background: var(--surface-base);
}

.catering-lead-form-wrap {
  margin-top: var(--space-7);
  padding: var(--space-7) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: var(--surface-elevated);
}

@media (min-width: 768px) {
  .catering-lead-form-wrap {
    padding: var(--space-9);
  }
}

.catering-form-fallback {
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

.catering-form-fallback a {
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Forminator overrides to match brand */
.catering-lead-form-wrap .forminator-ui input[type="text"],
.catering-lead-form-wrap .forminator-ui input[type="email"],
.catering-lead-form-wrap .forminator-ui input[type="tel"],
.catering-lead-form-wrap .forminator-ui input[type="number"],
.catering-lead-form-wrap .forminator-ui input[type="date"],
.catering-lead-form-wrap .forminator-ui select,
.catering-lead-form-wrap .forminator-ui textarea {
  background: var(--surface-base);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  border-radius: 2px;
}

.catering-lead-form-wrap .forminator-ui input:focus,
.catering-lead-form-wrap .forminator-ui select:focus,
.catering-lead-form-wrap .forminator-ui textarea:focus {
  border-color: var(--brand-green);
  outline: none;
}

.catering-lead-form-wrap .forminator-ui label {
  color: var(--text-primary);
}

.catering-lead-form-wrap .forminator-button-submit {
  background: var(--brand-red);
  color: #fff;
  border: 0;
  font-weight: 600;
}

.catering-lead-form-wrap .forminator-button-submit:hover {
  background: #c10019;
}

/* ---- Editorial menu - Wings hero (in Sides & More block) ---- */
.wings-block {
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wings-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}

.wings-block-prices {
  display: flex;
  gap: var(--space-5);
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}

.wings-block-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.wings-block-price-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wings-block-price-amount {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--brand-green);
}

.wings-block-row {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.wings-block-row-label {
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  padding-top: 2px;
}

.wings-block-row-list {
  color: var(--text-secondary);
}

/* ---- Editorial menu - BYO Dietary block + premium footnotes ---- */
.byo-footnotes {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  margin: var(--space-3) 0 var(--space-4);
  line-height: 1.5;
}

.byo-dietary {
  margin: var(--space-5) 0;
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.byo-dietary-list {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.byo-dietary-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.4;
}

.byo-dietary-name {
  color: var(--text-secondary);
  font-weight: 500;
}

.byo-dietary-price {
  color: var(--text-primary);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* ---- Sold Out treatment (sitewide) ----
   When an item exists in menu.json but isn't currently on TouchBistro,
   it's marked out_of_stock=true. The .is-sold-out class is added to the
   item's wrapper; this fades + strikes through, plus adds a small label.  */
.is-sold-out {
  position: relative;
  opacity: 0.5;
}

/* Menu-line variant (text rows for sides/drinks/dips/frozen tiers) */
.menu-line.is-sold-out .menu-line__name,
.menu-line.is-sold-out .menu-line__price {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.menu-line.is-sold-out::after {
  content: 'Sold out';
  position: absolute;
  right: 0;
  top: calc(100% - 2px);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(0, 0, 0, 0.4);
  padding: 1px 6px;
  border-radius: 2px;
  opacity: 0.9;
}

/* Pizza-entry variant (Classics + Gourmet on /menu/) */
.pizza-entry.is-sold-out .entry-name,
.pizza-entry.is-sold-out .entry-price,
.pizza-entry.is-sold-out .price-amount {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.pizza-entry.is-sold-out .entry-name::after {
  content: ' · Sold out';
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4em;
}

/* Pizza-card variant (cinematic homepage cards) */
.pizza-card.is-sold-out .pizza-card-name,
.pizza-card.is-sold-out .pizza-card-price {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.pizza-card.is-sold-out::after {
  content: 'Sold out';
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  opacity: 1;
}

/* ==========================================================================
   Frozen Pizzas page (/frozen-pizzas/)
   ========================================================================== */

.frozen-page .frozen-hero {
  position: relative;
  padding: calc(var(--header-height, 72px) + var(--space-12)) var(--section-px) var(--space-12);
  text-align: center;
  background-color: var(--surface-base);
  background-image:
    radial-gradient(
      ellipse at center,
      rgba(10, 10, 10, 0.65) 0%,
      rgba(10, 10, 10, 0.50) 55%,
      rgba(10, 10, 10, 0.35) 100%
    ),
    url('/wp-content/uploads/Images/Frozen%20Pizzas/frozenza.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.frozen-page .frozen-hero > * { position: relative; z-index: 1; }
.frozen-page .frozen-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: var(--space-3) 0;
  color: #fff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 16px rgba(0, 0, 0, 0.65);
}
.frozen-page .frozen-hero-lede {
  max-width: 700px;
  margin: var(--space-4) auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: var(--text-lg);
  line-height: 1.6;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 16px rgba(0, 0, 0, 0.65);
}
.frozen-page .frozen-hero-cta {
  max-width: 700px;
  margin: var(--space-6) auto 0;
}
@media (min-width: 768px) {
  .frozen-page .frozen-hero h1 { font-size: var(--text-5xl); }
}

/* ---- Tier overview cards (3 cards: Classic / Gourmet / Original) ---- */
.frozen-tier-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
@media (min-width: 768px) {
  .frozen-tier-grid { grid-template-columns: repeat(3, 1fr); }
}

.frozen-tier-card {
  position: relative;
  padding: var(--space-7) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: var(--surface-elevated);
  text-align: center;
  border-top: 3px solid var(--tier-color, var(--brand-green));
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
@media (hover: hover) {
  .frozen-tier-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.18); }
}
.frozen-tier-card-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tier-color, var(--brand-green));
  margin-bottom: var(--space-3);
}
.frozen-tier-card-price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
}
.frozen-tier-card-count {
  margin-top: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}
.frozen-tier-card-link {
  display: inline-block;
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-green);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(33, 168, 49, 0.3);
  border-radius: 2px;
  transition: background-color 0.2s var(--ease-out);
}
.frozen-tier-card-link:hover {
  background: rgba(33, 168, 49, 0.1);
}

/* ---- Why-our-frozen 3-card grid ---- */
.frozen-why-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
@media (min-width: 768px) {
  .frozen-why-grid { grid-template-columns: repeat(3, 1fr); }
}
.frozen-why-card {
  padding: var(--space-6);
  border-left: 3px solid var(--brand-green);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 4px 4px 0;
}
.frozen-why-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 var(--space-3);
}
.frozen-why-card p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
}

/* ---- Full menu by tier (tier-grouped lists) ---- */
.frozen-menu-tier {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.frozen-menu-tier:first-of-type {
  margin-top: var(--space-6);
  padding-top: 0;
  border-top: none;
}
.frozen-menu-tier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--tier-color, var(--brand-green));
  margin-bottom: var(--space-4);
}
.frozen-menu-tier-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}
.frozen-menu-tier-price {
  color: var(--tier-color, var(--brand-green));
  font-weight: 700;
  font-size: var(--text-lg);
  font-variant-numeric: tabular-nums;
}
.frozen-menu-items {
  display: grid;
  gap: var(--space-1);
}
@media (min-width: 720px) {
  .frozen-menu-items { grid-template-columns: 1fr 1fr; column-gap: var(--space-6); }
}
.frozen-menu-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: var(--text-base);
  line-height: 1.4;
}
.frozen-menu-item-name {
  flex-shrink: 0;
  color: var(--text-primary);
  font-weight: 500;
}
.frozen-menu-item-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(243, 238, 226, 0.22);
  margin-bottom: 0.35em;
  min-width: 0.5em;
}
.frozen-menu-item-price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
}
/* Reuse the sitewide sold-out treatment */
.frozen-menu-item.is-sold-out {
  opacity: 0.5;
}
.frozen-menu-item.is-sold-out .frozen-menu-item-name,
.frozen-menu-item.is-sold-out .frozen-menu-item-price {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* ---- Eat Local primary retailer (the "buy direct" card) ---- */
.frozen-retailer-primary {
  margin-top: var(--space-7);
  padding: var(--space-7) var(--space-5);
  border: 2px solid var(--brand-red);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(228, 0, 33, 0.12) 0%, rgba(228, 0, 33, 0.02) 100%);
  text-align: center;
}
.frozen-retailer-primary-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.frozen-retailer-primary-name {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: var(--space-2) 0;
}
.frozen-retailer-primary-meta {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: var(--space-3) 0;
}
.frozen-retailer-primary-meta a {
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.frozen-retailer-primary-note {
  color: var(--text-muted);
  font-style: italic;
  margin: var(--space-4) 0 0;
}

/* ---- Retailer grid (8 cards) ---- */
.frozen-retailers-grid {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-7);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .frozen-retailers-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .frozen-retailers-grid { grid-template-columns: repeat(4, 1fr); } }

.frozen-retailer-card {
  padding: var(--space-5);
  background: var(--surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
@media (hover: hover) {
  .frozen-retailer-card:hover {
    transform: translateY(-2px);
    border-color: rgba(33, 168, 49, 0.4);
  }
}
.frozen-retailer-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin-bottom: var(--space-3);
}
.frozen-retailer-card-logo img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
}
.frozen-retailer-card-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(33, 168, 49, 0.15);
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
}
.frozen-retailer-card-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
  line-height: 1.2;
}
.frozen-retailer-card-addr {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0 0 var(--space-3);
  flex: 1;
}
.frozen-retailer-card-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: var(--text-sm);
}
.frozen-retailer-card-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s var(--ease-out);
}
.frozen-retailer-card-link:hover { color: var(--brand-green); }
.frozen-retailer-card-link--map {
  color: var(--brand-green);
  font-weight: 600;
}

.frozen-retailers-note {
  margin-top: var(--space-7);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-style: italic;
}
.frozen-retailers-note a {
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ────────────────────────────────────────────────
   How-to-bake: photo inset to the right, the three
   step cards overlap its left edge and break out to
   the left (desktop). Stacks normally on mobile.
   ──────────────────────────────────────────────── */
.frozen-bake-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  margin-top: var(--space-8);
}
.frozen-bake-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.25),
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 30px 60px rgba(33, 168, 49, 0.10);
}
.frozen-bake-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media (min-width: 900px) {
  /* Stack photo + steps in one grid cell so they overlap. */
  .frozen-bake-layout > * { grid-area: 1 / 1; }
  .frozen-bake-image {
    justify-self: end;
    width: 60%;
  }
  .frozen-bake-steps {
    justify-self: start;
    width: 56%;
    z-index: 2;
    gap: var(--space-5);
  }
  /* Lift the cards so they read as floating over the photo. */
  .frozen-bake-steps .catering-step {
    box-shadow:
      0 2px 6px rgba(0, 0, 0, 0.35),
      0 18px 40px rgba(0, 0, 0, 0.45);
  }
}

/* ────────────────────────────────────────────────────────────
   Mobile-only tightening for the frozen page. The page has
   a lot of stacked sections + cards, and even with the global
   spacing scale-down the page reads as 9k+ pixels tall on a
   390px viewport. Tightens section padding, grid gaps, card
   padding, and inter-tier margins — scoped to .frozen-page so
   no other page is affected.
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .frozen-page .section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }

  /* "Pick Your Style" tier preview cards */
  .frozen-page .frozen-tier-grid {
    gap: var(--space-3);
    margin-top: var(--space-5);
  }
  .frozen-page .frozen-tier-card {
    padding: var(--space-5) var(--space-4);
  }
  .frozen-page .frozen-tier-card-link {
    margin-top: var(--space-3);
  }

  /* "Made Local, Frozen Fresh" three-card row */
  .frozen-page .frozen-why-grid {
    gap: var(--space-3);
    margin-top: var(--space-5);
  }
  .frozen-page .frozen-why-card {
    padding: var(--space-4) var(--space-5);
  }
  .frozen-page .frozen-why-card h3 {
    margin-bottom: var(--space-2);
  }

  /* "All N Pizzas" tier-grouped lists */
  .frozen-page .frozen-menu-tier {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
  }
  .frozen-page .frozen-menu-tier:first-of-type {
    margin-top: var(--space-4);
  }
  .frozen-page .frozen-menu-tier-head {
    padding-bottom: var(--space-2);
    margin-bottom: var(--space-3);
  }

  /* "From Freezer to Table" three-step row (uses .catering-steps from
     the shared catering CSS — scoped here so /catering/ is untouched).
     Internal step padding left at default; only gap + top margin tighten. */
  .frozen-page .catering-steps {
    gap: var(--space-4);
    margin-top: var(--space-5);
  }

  /* "Pick Up Across Thunder Bay" retailer cards */
  .frozen-page .frozen-retailers-grid {
    gap: var(--space-3);
    margin-top: var(--space-5);
  }
  .frozen-page .frozen-retailer-card {
    padding: var(--space-4) var(--space-5);
  }
  .frozen-page .frozen-retailers-note {
    margin-top: var(--space-5);
  }
}

/* ════════════════════════════════════════════════════════════
   ADMIN DASHBOARD (page-admin-dashboard.php)
   Owner-only, password-gated. Utility aesthetic: dense data,
   status dots, tabular numerics, no marketing flourish.
   ════════════════════════════════════════════════════════════ */
.admin-dashboard-page {
  --dash-ok: var(--brand-green);
  --dash-warn: #f5a524;
  --dash-crit: var(--brand-red);
  --dash-line: rgba(255, 255, 255, 0.06);
  --dash-line-strong: rgba(255, 255, 255, 0.12);
  --dash-mono: 'JetBrains Mono', 'SF Mono', 'Menlo', 'Consolas', monospace;
  background: var(--surface-base);
  min-height: 100vh;
  padding: var(--space-8) 0 var(--space-12);
}

/* ─── Login screen ─── */
.dash-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--space-8) var(--space-4);
}
.dash-login-card {
  width: 100%;
  max-width: 420px;
  padding: var(--space-9) var(--space-8);
  background: var(--surface-elevated);
  border: 1px solid var(--dash-line);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 20px 50px rgba(0, 0, 0, 0.45);
}
.dash-login-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dash-warn);
  margin-bottom: var(--space-3);
}
.dash-login-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-3);
  color: var(--text-primary);
}
.dash-login-lede {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin: 0 0 var(--space-6);
}
.dash-login-form { display: flex; flex-direction: column; gap: var(--space-3); }
.dash-login-form input[type="password"] {
  background: var(--surface-base);
  border: 1px solid var(--dash-line-strong);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.dash-login-form input[type="password"]:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(33, 168, 49, 0.18);
}
.dash-login-error {
  color: var(--dash-crit);
  font-size: var(--text-sm);
  margin: var(--space-1) 0 0;
}

/* ─── Dashboard shell ─── */
.dash-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

/* ─── Top bar ─── */
.dash-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--dash-line);
}
.dash-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}
.dash-topbar-title h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text-primary);
}
.dash-topbar-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
}
.dash-clock {
  font-family: var(--dash-mono);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.dash-logout {
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--dash-line-strong);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.dash-logout:hover { color: var(--brand-red); border-color: var(--brand-red); }
.dash-logout:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

/* ─── KPI strip ─── */
.dash-kpis {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 720px) { .dash-kpis { grid-template-columns: repeat(3, 1fr); } }
.dash-kpi {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-elevated);
  border: 1px solid var(--dash-line);
  border-radius: 12px;
  position: relative;
}
.dash-kpi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}
.dash-kpi[data-status="ok"]       .dash-kpi-dot { background: var(--dash-ok); }
.dash-kpi[data-status="warning"]  .dash-kpi-dot { background: var(--dash-warn); }
.dash-kpi[data-status="critical"] .dash-kpi-dot { background: var(--dash-crit); }
.dash-kpi-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: auto;
}
.dash-kpi-value {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

/* ─── Panels ─── */
.dash-panel {
  background: var(--surface-elevated);
  border: 1px solid var(--dash-line);
  border-radius: 14px;
  padding: var(--space-6) var(--space-6) var(--space-5);
}
@media (min-width: 720px) { .dash-panel { padding: var(--space-7) var(--space-7) var(--space-6); } }
.dash-panel-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--dash-line);
}
@media (min-width: 720px) {
  .dash-panel-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
  }
}
.dash-panel-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-3);
}
.dash-panel-num {
  font-family: var(--dash-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--dash-line-strong);
  border-radius: 4px;
}
.dash-panel-sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}
.dash-panel-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.dash-panel-sync {
  font-family: var(--dash-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.dash-refresh {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--dash-line-strong);
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.dash-refresh:hover { color: var(--brand-green); border-color: var(--brand-green); }
.dash-refresh:focus-visible { outline: 2px solid var(--brand-green); outline-offset: 2px; }
.dash-refresh svg { transition: transform 0.4s var(--ease-out); }
.dash-refresh.is-spinning svg { transform: rotate(360deg); }
.dash-panel-stub {
  margin: var(--space-5) 0 0;
  padding-top: var(--space-4);
  border-top: 1px dashed var(--dash-line);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
}
.dash-panel-stub code {
  font-family: var(--dash-mono);
  font-size: 0.7rem;
  background: var(--surface-base);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--text-secondary);
  font-style: normal;
}

/* ─── Sensor cards ─── */
.dash-sensors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 600px) { .dash-sensors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .dash-sensors-grid { grid-template-columns: repeat(4, 1fr); } }

.dash-sensor-card {
  background: var(--surface-base);
  border: 1px solid var(--dash-line);
  border-left: 3px solid var(--dash-ok);
  border-radius: 10px;
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.dash-sensor-card:hover { transform: translateY(-2px); }
.dash-sensor-card[data-status="ok"]       { border-left-color: var(--dash-ok); }
.dash-sensor-card[data-status="warning"]  { border-left-color: var(--dash-warn); }
.dash-sensor-card[data-status="critical"] { border-left-color: var(--dash-crit); }
.dash-sensor-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.dash-sensor-name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-primary);
}
.dash-sensor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dash-sensor-card[data-status="ok"]       .dash-sensor-dot { background: var(--dash-ok); }
.dash-sensor-card[data-status="warning"]  .dash-sensor-dot { background: var(--dash-warn); animation: dashPulse 1.6s ease-in-out infinite; }
.dash-sensor-card[data-status="critical"] .dash-sensor-dot { background: var(--dash-crit); animation: dashPulse 1.2s ease-in-out infinite; }
@keyframes dashPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.dash-sensor-temp {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.dash-sensor-unit {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.1em;
}
.dash-sensor-card > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--dash-mono);
}

/* ─── Stat grid (GA / GSC) ─── */
.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 720px) { .dash-stat-grid { grid-template-columns: repeat(4, 1fr); } }
.dash-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--surface-base);
  border: 1px solid var(--dash-line);
  border-radius: 10px;
}
.dash-stat-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dash-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.dash-stat-value--text {
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: -0.01em;
  word-break: break-word;
}

/* ─── Top queries list ─── */
.dash-queries { margin-top: var(--space-5); }
.dash-queries h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--space-3);
}
.dash-queries-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: dash-q;
}
.dash-queries-list li {
  counter-increment: dash-q;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--dash-line);
}
.dash-queries-list li::before {
  content: counter(dash-q, decimal-leading-zero);
  font-family: var(--dash-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-right: var(--space-3);
  flex-shrink: 0;
}
.dash-query-term { color: var(--text-primary); font-size: var(--text-sm); flex: 1; }
.dash-query-clicks {
  font-family: var(--dash-mono);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
