/* =================================================================
   ANTHONY'S PIZZA & PASTA — ST. CLOUD, FL
   Design system: Warm Italian-American editorial
   ================================================================= */

:root, [data-theme='light'] {
  /* Surfaces — warm cream / parchment */
  --color-bg: #fbf6ec;
  --color-surface: #fef9ef;
  --color-surface-2: #ffffff;
  --color-surface-offset: #f3ecdc;
  --color-surface-offset-2: #ebe2cc;
  --color-surface-dynamic: #e3d8bd;
  --color-divider: #dfd4b8;
  --color-border: #cfc299;

  /* Deep charred crust + tomato */
  --color-charcoal: #1c1411;
  --color-charcoal-2: #2a1f1a;
  --color-text: #221814;
  --color-text-muted: #6b5a4a;
  --color-text-faint: #a39379;
  --color-text-inverse: #fef9ef;

  /* Tomato red — primary accent */
  --color-primary: #b8311f;
  --color-primary-hover: #9b2718;
  --color-primary-active: #7d1d12;
  --color-primary-highlight: #f1d4cd;

  /* Honey gold — secondary accent */
  --color-gold: #c89b2a;
  --color-gold-hover: #a8801c;
  --color-gold-highlight: #f1e4bd;

  /* Basil green — sparingly */
  --color-basil: #4a6638;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 1rem + 7vw, 7.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — warm */
  --shadow-sm: 0 1px 2px oklch(0.25 0.04 50 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.2 0.04 50 / 0.12);
  --shadow-lg: 0 24px 60px oklch(0.15 0.05 50 / 0.22);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1080px;
  --content-wide: 1280px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Boska', 'Playfair Display', 'Georgia', serif;
  --font-body: 'Satoshi', 'Inter', 'Helvetica Neue', sans-serif;
  --font-script: 'Cormorant Garamond', 'Georgia', serif;
}

[data-theme='dark'] {
  --color-bg: #14100c;
  --color-surface: #1a1410;
  --color-surface-2: #1f1814;
  --color-surface-offset: #251c16;
  --color-surface-offset-2: #2c2118;
  --color-surface-dynamic: #34281c;
  --color-divider: #2a2018;
  --color-border: #3a2c20;
  --color-text: #f0e3cb;
  --color-text-muted: #b39d80;
  --color-text-faint: #7a6850;
  --color-text-inverse: #1a1410;
  --color-primary: #e8553e;
  --color-primary-hover: #f06b56;
  --color-primary-active: #d54328;
  --color-primary-highlight: #3a1a14;
  --color-gold: #e6bc4f;
  --color-gold-hover: #f5cf68;
  --color-gold-highlight: #3a2d12;
  --color-basil: #8aab6b;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 24px 60px oklch(0 0 0 / 0.55);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--color-text);
}

p, li, figcaption { text-wrap: pretty; max-width: 68ch; }

::selection { background: var(--color-primary); color: var(--color-text-inverse); }

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

a, button, [role='button'] {
  transition: color var(--transition-interactive),
              background var(--transition-interactive),
              border-color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

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

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-10));
}

section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--space-4);
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-interactive),
              border-color var(--transition-interactive),
              padding var(--transition-interactive);
}
.header--scrolled {
  background: oklch(from var(--color-bg) l c h / 0.95);
  border-bottom-color: var(--color-divider);
  padding-block: var(--space-3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
}
.logo svg { width: 38px; height: 38px; color: var(--color-primary); }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-wordmark .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo-wordmark .sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  font-size: var(--text-sm);
  font-weight: 500;
}
.nav-links a {
  color: var(--color-text-muted);
  position: relative;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-interactive);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: var(--space-3); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 0 var(--color-primary-active), var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--color-primary-active), var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 0 var(--color-primary-active); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  background: var(--color-surface-offset);
  border-color: var(--color-text);
}

.btn-dark {
  background: var(--color-charcoal);
  color: var(--color-text-inverse);
  border-color: var(--color-charcoal);
}
.btn-dark:hover { background: var(--color-charcoal-2); transform: translateY(-2px); }

.btn-arrow svg { width: 16px; height: 16px; transition: transform var(--transition-interactive); }
.btn:hover .btn-arrow svg { transform: translateX(4px); }

/* Theme toggle */
.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: transparent;
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: var(--space-16);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-charcoal);
  color: var(--color-text-inverse);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    oklch(0.15 0.04 40 / 0.92) 0%,
    oklch(0.15 0.04 40 / 0.75) 35%,
    oklch(0.15 0.04 40 / 0.25) 65%,
    transparent 100%);
}
@media (max-width: 720px) {
  .hero-bg::after {
    background: linear-gradient(180deg,
      oklch(0.15 0.04 40 / 0.55) 0%,
      oklch(0.15 0.04 40 / 0.85) 60%,
      oklch(0.10 0.03 40 / 0.95) 100%);
  }
  .hero-bg img { object-position: 70% center; }
}

.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--color-gold);
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-6);
  color: #fef9ef;
}
.hero h1 .accent {
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--color-gold);
  display: inline-block;
  transform: translateY(-0.04em);
}

.hero-tagline {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.4;
  max-width: 520px;
  margin-bottom: var(--space-10);
  color: oklch(0.92 0.02 70);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-meta {
  position: absolute;
  bottom: var(--space-8);
  right: clamp(var(--space-4), 4vw, var(--space-10));
  display: flex;
  gap: var(--space-8);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.92 0.02 70);
  z-index: 1;
}
.hero-meta div { display: flex; align-items: center; gap: var(--space-2); }
.hero-meta strong { color: var(--color-gold); font-weight: 600; }
@media (max-width: 720px) {
  .hero-meta { position: static; flex-direction: column; align-items: flex-start; gap: var(--space-2); margin-top: var(--space-10); padding-inline: clamp(var(--space-4), 4vw, var(--space-10)); }
  .hero-meta div { flex-wrap: nowrap; }
  .hero-meta .sep { display: none; }
}

/* ===== MARQUEE STRIP ===== */
.strip {
  background: var(--color-charcoal);
  color: var(--color-text-inverse);
  padding-block: var(--space-4);
  overflow: hidden;
  border-block: 1px solid oklch(0.25 0.04 50 / 1);
}
.strip-track {
  display: flex;
  gap: var(--space-12);
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-gold);
  letter-spacing: -0.01em;
}
.strip-item::after {
  content: '✦';
  color: var(--color-primary);
  font-style: normal;
  font-size: 0.8em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about { background: var(--color-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}
.about-text h2 .accent {
  font-style: italic;
  font-family: var(--font-script);
  color: var(--color-primary);
}
.about-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.about-text p strong { color: var(--color-text); font-weight: 600; }

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-stamp {
  position: absolute;
  bottom: var(--space-6); left: var(--space-6);
  background: var(--color-charcoal);
  color: var(--color-gold);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.1;
  max-width: 200px;
  box-shadow: var(--shadow-md);
}
.about-stamp small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.92 0.02 70);
  margin-top: var(--space-1);
}

/* ===== SIGNATURE DISHES ===== */
.signature {
  background: var(--color-surface-offset);
  position: relative;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
.section-head h2 {
  font-size: var(--text-2xl);
  max-width: 16ch;
}
.section-head h2 .accent {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--color-primary);
}
.section-head p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 36ch;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.sig-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.sig-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sig-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.sig-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sig-card:hover .sig-card-img img { transform: scale(1.05); }
.sig-card-tag {
  position: absolute;
  top: var(--space-4); left: var(--space-4);
  background: var(--color-charcoal);
  color: var(--color-gold);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sig-card-body { padding: var(--space-5) var(--space-6) var(--space-6); }
.sig-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
}
.sig-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ===== MENU ===== */
.menu { background: var(--color-bg); }
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-divider);
}
.menu-tab {
  padding: 0.625rem 1.125rem;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.menu-tab:hover { color: var(--color-text); }
.menu-tab.active {
  background: var(--color-charcoal);
  color: var(--color-text-inverse);
  border-color: var(--color-charcoal);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 400ms ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.menu-section { margin-bottom: var(--space-16); }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-head {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.menu-section-head h3 {
  font-size: var(--text-xl);
  font-family: var(--font-display);
}
.menu-section-head h3 .accent {
  font-style: italic;
  font-family: var(--font-script);
  color: var(--color-primary);
}
.menu-section-head .note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-8) var(--space-12);
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2) var(--space-4);
  align-items: baseline;
}
.menu-item .name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.menu-item .price {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}
.menu-item .desc {
  grid-column: 1 / -1;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}
.menu-item.featured .name::after {
  content: ' ★';
  color: var(--color-gold);
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
  background: var(--color-surface-offset);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
}
@media (max-width: 640px) {
  .size-grid { grid-template-columns: repeat(5, 1fr); padding: var(--space-3); gap: var(--space-1); }
}
.size-grid .size {
  text-align: center;
  padding: var(--space-2);
}
.size-grid .size-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.size-grid .size-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-primary);
}

.callout-box {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-left: 3px solid var(--color-gold);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-md);
  margin-block: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.callout-box strong { color: var(--color-text); font-weight: 600; }

/* Wings table */
.wings-table {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: var(--space-2);
  background: var(--color-charcoal);
  color: var(--color-text-inverse);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}
@media (max-width: 720px) {
  .wings-table { grid-template-columns: 1fr 1fr; }
}
.wings-table .row-label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  align-self: center;
  color: var(--color-gold);
}
.wings-table .cell {
  text-align: center;
  padding: var(--space-2);
}
.wings-table .cell-qty {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.85 0.02 60);
  margin-bottom: 2px;
}
.wings-table .cell-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
}

/* ===== BOROUGH SPECIALS ===== */
.specials {
  background: var(--color-charcoal);
  color: var(--color-text-inverse);
  position: relative;
}
.specials .eyebrow { color: var(--color-gold); }
.specials .eyebrow::before { background: var(--color-gold); }
.specials h2 {
  color: #fef9ef;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-12);
  max-width: 18ch;
}
.specials h2 .accent {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--color-gold);
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.special-card {
  background: oklch(0.22 0.03 50);
  border: 1px solid oklch(0.30 0.04 50);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  padding-top: var(--space-12); /* room for save pill */
  position: relative;
  overflow: visible;
  transition: transform var(--transition-interactive), border-color var(--transition-interactive);
}
.special-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
}
.special-card .save {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.special-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fef9ef;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
  padding-right: 0;
  max-width: 100%;
  line-height: 1.15;
}
.special-card .price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.special-card ul {
  list-style: none;
  font-size: var(--text-sm);
  color: oklch(0.85 0.02 60);
  line-height: 1.6;
}
.special-card ul li {
  padding-left: var(--space-4);
  position: relative;
}
.special-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}
.specials-terms {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  color: oklch(0.65 0.02 60);
  letter-spacing: 0.06em;
}

/* ===== LOOPMENU PROMO ===== */
.loopmenu {
  background: var(--color-surface-offset);
  position: relative;
}
.loop-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
@media (max-width: 880px) { .loop-grid { grid-template-columns: 1fr; } }
.loop-text .eyebrow { color: var(--color-basil); }
.loop-text .eyebrow::before { background: var(--color-basil); }
.loop-text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}
.loop-text h2 .accent {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--color-basil);
}
.loop-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}
.loop-features {
  list-style: none;
  margin-bottom: var(--space-8);
}
.loop-features li {
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-divider);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
}
.loop-features li:last-child { border-bottom: 1px solid var(--color-divider); }
.loop-features svg { width: 18px; height: 18px; color: var(--color-basil); flex-shrink: 0; margin-top: 2px; }
.loop-features strong { color: var(--color-text); font-weight: 600; }

.loop-visual {
  position: relative;
  background: var(--color-charcoal);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--color-text-inverse);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.loop-visual::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, oklch(0.65 0.16 142 / 0.18) 0%, transparent 65%);
}
.loop-mockup {
  position: relative;
  background: oklch(0.20 0.02 60);
  border: 1px solid oklch(0.28 0.02 60);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.loop-mockup .dots { display: flex; gap: 6px; margin-bottom: var(--space-4); }
.loop-mockup .dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: oklch(0.4 0.02 60);
}
.loop-mockup .dots span:nth-child(1) { background: #ff5f57; }
.loop-mockup .dots span:nth-child(2) { background: #febc2e; }
.loop-mockup .dots span:nth-child(3) { background: #28c840; }
.loop-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px dashed oklch(0.3 0.02 60);
  color: oklch(0.85 0.02 60);
}
.loop-row:last-child { border-bottom: none; }
.loop-row .item { color: #fef9ef; }
.loop-row .badge {
  background: var(--color-basil);
  color: #fef9ef;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
}
.loop-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  color: var(--color-basil);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.loop-cta:hover { color: #fef9ef; }
.loop-cta svg { width: 16px; height: 16px; }

/* ===== VISIT ===== */
.visit { background: var(--color-bg); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: stretch;
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }

.visit-info h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
}
.visit-info h2 .accent {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--color-primary);
}
.visit-block { margin-bottom: var(--space-8); }
.visit-block h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.visit-block p, .visit-block a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.4;
}
.visit-block a:hover { color: var(--color-primary); }
.visit-block .small {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}
.visit-hours {
  display: grid;
  grid-template-columns: auto auto;
  gap: var(--space-2) var(--space-3);
  align-items: baseline;
  justify-content: center;
}
.visit-hours dt {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.visit-hours dd {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}

.map-wrap {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-divider);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.85);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-charcoal);
  color: oklch(0.85 0.02 60);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer .logo { color: #fef9ef; margin-bottom: var(--space-4); }
.footer .logo svg { color: var(--color-primary); }
.footer .logo-wordmark .sub { color: oklch(0.7 0.02 60); }
.footer-blurb {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 32ch;
  color: oklch(0.75 0.02 60);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.footer ul { list-style: none; font-size: var(--text-sm); display: flex; flex-direction: column; gap: var(--space-2); }
.footer a:hover { color: #fef9ef; }
.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid oklch(0.25 0.04 50);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: oklch(0.65 0.02 60);
}
.footer-bottom .loop-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.footer-bottom .loop-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-basil);
  display: inline-block;
}

/* ===== UTIL ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 720px) {
  .nav-actions .btn span.long { display: none; }
}

/* =================================================================
   V2 — HERO SPLIT PANEL · Papa John's-inspired
   ================================================================= */

/* Logo sizing — JPG is square 512×512, mostly transparent surround, we crop visually */
.logo-mark {
  height: 144px;
  width: auto;
  max-height: 144px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply; /* drop white halo against cream header */
  filter: contrast(1.05);
}
[data-theme='dark'] .logo-mark { mix-blend-mode: screen; filter: invert(1) contrast(1.1); }
@media (max-width: 720px) { .logo-mark { height: 96px; width: auto; max-height: 96px; } }

/* Header phone */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.nav-phone:hover { color: var(--color-primary); background: var(--color-surface-offset); }
.nav-phone svg { color: var(--color-primary); flex-shrink: 0; }
@media (max-width: 880px) { .nav-phone span { display: none; } }

/* Pill badge */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.pill-red { background: var(--color-primary); color: #fff; }
.pill-gold { background: var(--color-gold); color: var(--color-charcoal); }
.pill-cream { background: #fef9ef; color: var(--color-primary); border: 1px solid var(--color-primary); }

/* HERO V2 — split panel */
.hero.hero-v2 {
  min-height: auto;
  padding-top: clamp(150px, 17vh, 210px);
  padding-bottom: clamp(var(--space-12), 8vw, var(--space-20));
  display: block;
  align-items: stretch;
  background: var(--color-charcoal);
  color: var(--color-text-inverse);
}
.hero.hero-v2 .hero-grid {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-10));
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
.hero-left { position: relative; z-index: 1; max-width: 620px; }
.hero-right {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero-right .hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.hero-v2 .hero-eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: oklch(0.92 0.02 70);
  letter-spacing: 0.28em;
}
.hero-v2 .hero-eyebrow::before { display: none; }

.hero-v2 h1 {
  font-size: clamp(2.75rem, 1rem + 6.5vw, 6rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-6);
  color: #fef9ef;
}
.hero-v2 h1 .accent {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--color-primary-hover);
  background: linear-gradient(180deg, #e8553e 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transform: none;
}
.hero-v2 h1 .hero-italic {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold);
  display: inline-block;
}

.hero-v2 .hero-tagline {
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.hero-v2 .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

/* Larger buttons */
.btn-xl {
  padding: 1.1rem 1.75rem;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
}

.btn-outline-light {
  background: transparent;
  color: #fef9ef;
  border: 1.5px solid oklch(1 0 0 / 0.35);
}
.btn-outline-light:hover {
  background: oklch(1 0 0 / 0.08);
  border-color: #fef9ef;
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: oklch(0.85 0.02 70);
  padding-top: var(--space-6);
  border-top: 1px solid oklch(1 0 0 / 0.12);
}
.trust-item { display: flex; align-items: center; gap: var(--space-1); white-space: nowrap; }
.trust-item strong {
  color: var(--color-gold);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0;
}
.trust-item .muted { color: oklch(0.65 0.02 70); font-weight: 400; }
.trust-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: oklch(1 0 0 / 0.25);
  flex-shrink: 0;
}

/* Price tag (Papa John's-style) */
.hero-price-tag {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  background: var(--color-gold);
  color: var(--color-charcoal);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px oklch(0 0 0 / 0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
  transform: rotate(-3deg);
}
.price-from {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.35 0.05 50);
}
.price-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: flex-start;
  color: var(--color-charcoal);
}
.price-dollar {
  font-size: 0.45em;
  margin-right: 2px;
  margin-top: 0.32em;
  font-weight: 500;
}
.price-cents {
  font-size: 0.45em;
  margin-top: 0.32em;
  font-weight: 500;
}
.price-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: oklch(0.35 0.05 50);
  margin-top: 2px;
}

/* Hero responsive */
@media (max-width: 880px) {
  .hero.hero-v2 .hero-grid { grid-template-columns: 1fr; }
  .hero-right { aspect-ratio: 4 / 3; max-height: 380px; }
  .hero-price-tag { padding: var(--space-3) var(--space-4); }
}

/* =================================================================
   QUICK ORDER — Category tab bar
   ================================================================= */
.quickorder {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-10), 6vw, var(--space-16));
}
.quickorder-head {
  margin-bottom: var(--space-8);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.quickorder-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  max-width: 24ch;
  line-height: 1.15;
}
.quickorder-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--space-3);
}
@media (max-width: 1080px) { .quickorder-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) {
  .quickorder-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 38vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-3);
    margin-inline: calc(-1 * clamp(var(--space-4), 4vw, var(--space-10)));
    padding-inline: clamp(var(--space-4), 4vw, var(--space-10));
    scrollbar-width: thin;
  }
  .qo-card { scroll-snap-align: start; }
}
.qo-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1);
  transition: transform var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive);
  color: var(--color-text);
}
.qo-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.qo-icon {
  font-size: 1.875rem;
  line-height: 1;
  margin-bottom: var(--space-1);
  filter: drop-shadow(0 2px 6px oklch(0 0 0 / 0.15));
}
.qo-label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.qo-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* =================================================================
   DELIVERY SECTION
   ================================================================= */
.delivery {
  background: var(--color-surface-offset);
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
@media (max-width: 880px) { .delivery-grid { grid-template-columns: 1fr; } }
.delivery-info h2 { font-size: var(--text-2xl); margin-bottom: var(--space-6); }
.delivery-info h2 .accent {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--color-primary);
}
.delivery-info p { color: var(--color-text-muted); margin-bottom: var(--space-6); }

.delivery-fee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3) var(--space-5);
  margin-bottom: var(--space-6);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}
.delivery-fee dt {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  align-self: center;
}
.delivery-fee dd {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
}
.delivery-fee dd strong {
  color: var(--color-primary);
  font-weight: 600;
}

.delivery-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-divider);
}
.delivery-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.delivery-radius-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

/* =================================================================
   BOROUGH SPECIALS V2 — Papa John's-style giant numerals
   Uses HTML structure: <div class="price"><span class="d">$</span>90</div>
   ================================================================= */
.special-card .price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4rem);
  color: var(--color-gold);
  line-height: 0.95;
  margin-bottom: var(--space-4);
  font-weight: 600;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: flex-start;
}
.special-card .price .d {
  font-size: 0.45em;
  margin-right: 3px;
  margin-top: 0.18em;
  font-weight: 500;
}

/* Fan favorite badge on signature cards (red pill replacing gold tag style) */
.sig-card-tag {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.625rem;
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

/* =================================================================
   DARK MODE — Hero stays dark always, but adjust quickorder cards
   ================================================================= */
[data-theme='dark'] .quickorder { background: var(--color-surface); }
[data-theme='dark'] .qo-card { background: var(--color-surface-2); border-color: var(--color-border); }
[data-theme='dark'] .delivery { background: var(--color-surface-offset); }
[data-theme='dark'] .delivery-fee { background: var(--color-surface-2); }

/* =================================================================
   LIGHT OVERHAUL — Italian flag palette (red · white · green)
   All dark/charcoal surfaces replaced with cream/white surfaces.
   Accents shift to tomato red, basil green, and warm gold.
   ================================================================= */

/* ----- HERO: cream page bg with a real, warm NY skyline photograph baked in ----- */
.hero.hero-v2,
.hero {
  background:
    /* cream wash that lets the photo show through the bottom 60% */
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 250, 240, 0.72) 35%,
      rgba(251, 246, 236, 0.55) 70%,
      rgba(251, 246, 236, 0.85) 100%),
    url('../assets/ny-skyline.png') center bottom / cover no-repeat,
    var(--color-bg);
  color: var(--color-text);
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(90deg,
    var(--color-basil) 0 33.33%,
    #ffffff 33.33% 66.66%,
    var(--color-primary) 66.66% 100%
  ) 1;
  position: relative;
  overflow: hidden;
}
/* Soft cream fade at the bottom so the skyline blends INTO the page bg below */
.hero.hero-v2::after,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(251, 246, 236, 0) 0%, var(--color-bg) 100%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 720px) {
  .hero.hero-v2,
  .hero {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 250, 240, 0.82) 40%,
        rgba(251, 246, 236, 0.65) 75%,
        rgba(251, 246, 236, 0.90) 100%),
      url('../assets/ny-skyline.png') center 85% / cover no-repeat,
      var(--color-bg);
  }
}
/* keep all hero content above the skyline */
.hero-grid, .hero-content, .hero-left, .hero-right { position: relative; z-index: 1; }
.hero-left { color: var(--color-text); }
.hero h1, .hero .hero-h1 { color: var(--color-text); }
.hero .hero-eyebrow,
.hero .eyebrow { color: var(--color-primary); }
.hero p, .hero .hero-lede { color: var(--color-text-muted); }
.hero-trust .trust-item { color: var(--color-text-muted); }
.hero-trust .trust-item strong { color: var(--color-text); }
.hero-trust .trust-sep { background: var(--color-border); }
.hero .muted { color: var(--color-text-faint); }
.hero-pill, .pill-badge {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
}
.btn-outline-light {
  border-color: var(--color-text) !important;
  color: var(--color-text) !important;
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--color-text);
  color: var(--color-surface-2) !important;
}

/* Hero photo gets a green ring + red tag */
.hero-right {
  box-shadow: 0 24px 60px -20px oklch(0.25 0.06 30 / 0.18);
  outline: 3px solid #ffffff;
  outline-offset: -3px;
  border: 4px solid var(--color-basil);
}
.hero-price-tag {
  background: var(--color-primary);
  color: #ffffff;
}
.hero-price-tag .price-from,
.hero-price-tag .price-sub { color: oklch(0.96 0.02 30); }

/* ----- MARQUEE STRIP: flip to white with red+green ----- */
.strip {
  background: #ffffff;
  color: var(--color-primary);
  border-block: 1px solid var(--color-border);
}
.strip-item {
  color: var(--color-primary);
}
.strip-item::after {
  color: var(--color-basil);
}

/* ----- MENU TABS active state: red instead of black ----- */
.menu-tab.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* ----- WINGS TABLE: flip to cream card with red accent ----- */
.wings-table {
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.wings-table .row-label { color: var(--color-primary); }
.wings-table .cell-qty { color: var(--color-text-muted); }
.wings-table .cell-price { color: var(--color-text); }

/* ----- BOROUGH SPECIALS: flip to warm cream ----- */
.specials {
  background:
    radial-gradient(ellipse at top, oklch(0.95 0.04 30 / 0.7) 0%, transparent 60%),
    var(--color-surface);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.specials .eyebrow { color: var(--color-primary); }
.specials .eyebrow::before { background: var(--color-primary); }
.specials h2 { color: var(--color-text); }
.specials h2 .accent { color: var(--color-primary); }
.specials p, .specials .specials-lede { color: var(--color-text-muted); }

/* Borough cards on light bg: white card, green top stripe, red save pill */
.specials .borough-card,
.specials .special-card,
.specials .card,
.borough-card,
.special-card {
  background: #ffffff !important;
  color: var(--color-text) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: 0 10px 32px -16px oklch(0.25 0.06 30 / 0.25);
  position: relative;
}
.specials .borough-card::before,
.specials .special-card::before,
.borough-card::before,
.special-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--color-basil) 0 33.33%,
    #ffffff 33.33% 66.66%,
    var(--color-primary) 66.66% 100%
  );
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.specials .borough-card h3,
.specials .special-card h3,
.borough-card h3,
.special-card h3 { color: var(--color-text); }
.specials .borough-card p,
.specials .special-card p,
.borough-card p,
.special-card p,
.specials .borough-card li,
.specials .special-card li,
.borough-card li,
.special-card li { color: var(--color-text-muted); }
.specials .borough-card strong,
.borough-card strong { color: var(--color-text); }

/* ----- LOOPMENU VISUAL BLOCK: keep dark mockup feel but soften ----- */
.loop-visual {
  background: #ffffff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.loop-mockup {
  background: var(--color-surface-offset);
  border-color: var(--color-border);
  color: var(--color-text);
}
.loop-row { color: var(--color-text-muted); border-bottom-color: var(--color-border); }
.loop-row .item { color: var(--color-text); }

/* ----- FOOTER: flip to cream with Italian flag top accent ----- */
.footer {
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg,
    var(--color-basil) 0 33.33%,
    #ffffff 33.33% 66.66%,
    var(--color-primary) 66.66% 100%
  ) 1;
}
.footer .logo { color: var(--color-text); }
.footer .logo svg { color: var(--color-primary); }
.footer .logo-wordmark .sub { color: var(--color-text-muted); }
.footer-blurb { color: var(--color-text-muted); }
.footer h4 { color: var(--color-text); }
.footer a { color: var(--color-text-muted); }
.footer a:hover { color: var(--color-primary); }
.footer-bottom { border-top-color: var(--color-border) !important; color: var(--color-text-faint); }

/* ----- ABOUT STAMP: keep but switch black → red ----- */
.about-stamp {
  background: var(--color-primary);
  color: #ffffff;
}

/* ----- SIGNATURE CARD TAG: red pill (already changed in v2, ensure) ----- */
.sig-card-tag {
  background: var(--color-primary);
  color: #ffffff;
}

/* ----- BTN-DARK: turn into red CTA ----- */
.btn-dark {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.btn-dark:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

/* ----- PILL-GOLD: white text on gold for legibility ----- */
.pill-gold { color: #ffffff; }

/* ----- SECTION DIVIDERS: add subtle Italian flag rule between major sections ----- */
.strip {
  position: relative;
}
.strip::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--color-basil) 0 33.33%,
    #ffffff 33.33% 66.66%,
    var(--color-primary) 66.66% 100%
  );
}

/* ----- DELIVERY SECTION: add green accent ----- */
.delivery {
  background: var(--color-surface);
}
.delivery-info h2 .accent { color: var(--color-basil); }
.delivery-fee { background: #ffffff; border: 1px solid var(--color-border); }
.delivery-radius-badge {
  background: var(--color-basil) !important;
  color: #ffffff !important;
}

/* ----- LOGO HEADER: ensure visible on cream ----- */
.nav-logo, .header .logo img {
  mix-blend-mode: multiply;
}

/* ----- HEADER: clean white with strong, branded separation ----- */
.site-header,
header.site-header,
.header {
  background: rgba(255, 252, 245, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  /* Italian-flag accent bar under nav (basil → white → tomato) */
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg,
    var(--color-basil) 0 33.33%,
    var(--color-gold) 33.33% 66.66%,
    var(--color-primary) 66.66% 100%
  ) 1;
  box-shadow: 0 4px 16px rgba(28, 20, 17, 0.06),
              0 1px 0 rgba(28, 20, 17, 0.04);
}
.header--scrolled {
  background: rgba(255, 252, 245, 0.98) !important;
  box-shadow: 0 6px 22px rgba(28, 20, 17, 0.10),
              0 1px 0 rgba(28, 20, 17, 0.05) !important;
}

/* Dark-mode users on this site: force light theme look — the brand is light. */
[data-theme='dark'] .hero.hero-v2 { background: linear-gradient(180deg, #fffaf0 0%, var(--color-bg) 70%, var(--color-surface-offset) 100%); }
[data-theme='dark'] .specials { background: var(--color-surface); color: var(--color-text); }
[data-theme='dark'] .footer { background: var(--color-surface-offset); color: var(--color-text-muted); }

/* =================================================================
   INSTAGRAM-STYLE MENU GRID
   Big visual cards, short descriptions, price chips.
   ================================================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}
@media (min-width: 720px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-6);
  }
}

.mg-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 20px -10px oklch(0.25 0.06 30 / 0.18);
  transition:
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.mg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px oklch(0.25 0.06 30 / 0.3);
}

/* Featured card — gold border + tag */
.mg-card-featured {
  border: 2px solid var(--color-gold);
}
.mg-card-featured::after {
  content: 'CHEF\'S PICK';
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--color-gold);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  z-index: 2;
  box-shadow: 0 2px 8px oklch(0.25 0.06 60 / 0.3);
}

.mg-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.mg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mg-card:hover .mg-img img { transform: scale(1.06); }

/* Letter fallback for items without a photo */
.mg-img-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), oklch(0.55 0.18 30));
  color: #ffffff;
}
.mg-img-text .mg-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 600;
  opacity: 0.85;
}

.mg-body {
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.mg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}
.mg-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  flex: 1;
  text-wrap: balance;
}
.mg-price {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.mg-tag {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
  max-width: none;
}
.mg-sub {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  font-style: italic;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ===== WINGS HERO IMAGE ===== */
.wings-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-8);
  aspect-ratio: 21 / 9;
  max-height: 360px;
}
.wings-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wings-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(0.18 0.04 30 / 0.85) 0%, oklch(0.18 0.04 30 / 0.4) 60%, transparent 100%);
  color: #ffffff;
  padding: var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 60%;
}
.wings-hero-overlay .eyebrow {
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.wings-hero-overlay .eyebrow::before { background: var(--color-gold); }
.wings-hero-overlay h4 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.wings-hero-overlay p {
  font-size: var(--text-sm);
  opacity: 0.92;
  max-width: 38ch;
}
@media (max-width: 720px) {
  .wings-hero { aspect-ratio: 4 / 5; max-height: none; }
  .wings-hero-overlay { max-width: 100%; padding: var(--space-6); }
  .wings-hero-overlay h4 { font-size: var(--text-xl); }
}

/* ===== DRIZZLES SUB-GRID ===== */
.drizzle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.drizzle {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drizzle strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
  font-weight: 600;
}
.drizzle span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ============================================================
   MADE WITH LOVE — pizza-is-special section
   ============================================================ */
.love {
  background: linear-gradient(180deg, var(--color-surface-offset) 0%, var(--color-bg) 60%, var(--color-surface) 100%);
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  position: relative;
  overflow: hidden;
}
.love::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, oklch(from var(--color-gold) l c h / 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 90%, oklch(from var(--color-primary) l c h / 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.love-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .love-grid { grid-template-columns: 1fr; }
}

/* Image side --------------------------------------------------- */
.love-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px oklch(from var(--color-charcoal) l c h / 0.45),
    0 0 0 1px oklch(from var(--color-charcoal) l c h / 0.06);
  transform: rotate(-1.2deg);
  transition: transform 0.5s cubic-bezier(.22,.6,.36,1);
}
.love-img-wrap:hover { transform: rotate(0deg) scale(1.01); }
.love-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

/* Hand-stamped "fatto con amore" overlay */
.love-stamp {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  background: var(--color-bg);
  border: 1.5px solid var(--color-gold);
  border-radius: 999px;
  padding: clamp(0.9rem, 1.5vw, 1.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transform: rotate(6deg);
  box-shadow: 0 12px 28px -10px oklch(from var(--color-charcoal) l c h / 0.45);
  max-width: 60%;
  text-align: center;
}
.love-stamp-script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
.love-stamp-script.accent-italic {
  font-style: italic;
  color: var(--color-gold-hover);
  margin-top: -2px;
}
.love-stamp-tr {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* Text side ---------------------------------------------------- */
.love-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1rem + 4.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-6);
  color: var(--color-text);
}
.love-text .accent-italic {
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding: 0 0.05em;
}
.love-text .accent-italic::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0.05em;
  height: 0.42em;
  background: oklch(from var(--color-gold) l c h / 0.28);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}
.love-lede {
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 var(--space-5);
  font-weight: 500;
}
.love-body {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-8);
}

/* Three pillars: Time / Hands / Heart */
.love-pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
}
.love-pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  padding-top: 4px;
  min-width: 2.2ch;
}
.love-pillars h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.love-pillars p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* Closing italian phrase */
.love-signoff {
  margin: 0;
  padding: var(--space-6) 0 0;
  border-top: 1px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.signoff-script {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.4rem, 1rem + 1.2vw, 1.85rem);
  color: var(--color-primary);
  line-height: 1.1;
  font-weight: 500;
}
.signoff-tr {
  font-size: 0.85rem;
  color: var(--color-text-faint);
  letter-spacing: 0.05em;
  font-style: normal;
}

/* Dark theme adjustments */
[data-theme='dark'] .love {
  background: linear-gradient(180deg, var(--color-surface-offset) 0%, var(--color-bg) 60%, var(--color-surface) 100%);
}
[data-theme='dark'] .love-stamp {
  background: var(--color-surface);
}
[data-theme='dark'] .love-img-wrap {
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 0 0 1px oklch(from var(--color-gold) l c h / 0.12);
}

/* =================================================================
   MENU NOTICE STRIP — large orders + delivery terms
   ================================================================= */
.menu-notice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-6);
  align-items: stretch;
  margin-bottom: var(--space-8);
  padding: var(--space-5) var(--space-6);
  background:
    linear-gradient(90deg, oklch(from var(--color-primary) l c h / 0.04), oklch(from var(--color-gold) l c h / 0.04));
  border: 1px solid oklch(from var(--color-primary) l c h / 0.22);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}
.menu-notice-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-2) 0;
}
.menu-notice-item + .menu-notice-item {
  border-left: 1px dashed var(--color-border);
  padding-left: var(--space-6);
}
.menu-notice-item svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  margin-top: 2px;
}
.menu-notice-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.menu-notice-item span {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .menu-notice { grid-template-columns: 1fr; gap: 0; padding: var(--space-4) var(--space-5); }
  .menu-notice-item + .menu-notice-item {
    border-left: 0;
    border-top: 1px dashed var(--color-border);
    padding-left: 0;
    padding-top: var(--space-4);
    margin-top: var(--space-4);
  }
}

/* =================================================================
   MENU TAB — HOT (Lunch Specials)
   ================================================================= */
.menu-tab-hot {
  position: relative;
  color: var(--color-primary);
  background: oklch(from var(--color-primary) l c h / 0.08);
  border-color: oklch(from var(--color-primary) l c h / 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-tab-hot:hover {
  color: var(--color-primary-hover);
  background: oklch(from var(--color-primary) l c h / 0.14);
}
.menu-tab-hot.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.menu-tab-hot.active .tab-pill {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.tab-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: var(--color-gold-highlight);
  color: var(--color-gold-hover);
  text-transform: uppercase;
}

/* =================================================================
   LUNCH SPECIALS PANEL
   ================================================================= */
.lunch-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-10);
  padding: var(--space-2) var(--space-4);
}
.lunch-hero-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.35rem 0.85rem;
  background: oklch(from var(--color-primary) l c h / 0.10);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.lunch-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.lunch-hero-title .accent,
.lunch-hero-title .accent-italic {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
}
.lunch-hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.lunch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1100px) { .lunch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .lunch-grid { grid-template-columns: 1fr; } }

.lunch-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-card, #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5) var(--space-5);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.lunch-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: oklch(from var(--color-gold) l c h / 0.5);
}
.lunch-card-featured {
  border-top: 4px solid var(--color-primary);
  background: linear-gradient(180deg, oklch(from var(--color-primary) l c h / 0.04), transparent 40%), var(--color-card, #fff);
}
.lunch-card-featured::before {
  content: 'Popular';
  position: absolute;
  top: -10px;
  left: var(--space-5);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
}
.lunch-card-num {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  opacity: 0.7;
}
.lunch-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: var(--space-2) 0 var(--space-3);
  padding-right: 2.5rem;
}
.lunch-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-4);
  flex: 1;
}
.lunch-desc .plus {
  color: var(--color-gold);
  font-weight: 600;
  padding: 0 0.15em;
}
.lunch-price {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: auto;
}
.lunch-fine {
  margin-top: var(--space-8);
  text-align: center;
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-muted);
}

/* =================================================================
   CREATIONS SHOWCASE — pre-menu hero strip
   ================================================================= */
.creations-showcase {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(900px 500px at 90% 0%, oklch(from var(--color-gold) l c h / 0.06), transparent 65%),
    radial-gradient(800px 500px at 0% 100%, oklch(from var(--color-primary) l c h / 0.06), transparent 65%),
    var(--color-bg);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.creations-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-10);
  align-items: end;
  margin-bottom: var(--space-12);
}
.creations-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: var(--space-3) 0 var(--space-4);
}
.creations-head h2 .accent {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--color-primary);
}
.creations-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.flag-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, #009246 0 33%, #fff 33% 66%, #ce2b37 66% 100%);
  box-shadow: 0 0 0 1px var(--color-border);
}
.creations-lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.55;
}
.creations-pricing {
  background: var(--color-card, #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-sm);
}
.creations-pricing-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.creations-pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.creations-pricing-row span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}
.creations-pricing-row strong {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-primary);
  font-size: 1rem;
}
@media (max-width: 860px) {
  .creations-head { grid-template-columns: 1fr; gap: var(--space-6); align-items: start; }
}

.creations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 980px) { .creations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .creations-grid { grid-template-columns: 1fr; } }

.creation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-card, #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.creation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: oklch(from var(--color-gold) l c h / 0.55);
}
.creation-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg);
}
.creation-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.creation-card:hover .creation-card-img img { transform: scale(1.06); }
.creation-tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--color-charcoal);
  color: var(--color-text-inverse, #fff);
  border-radius: var(--radius-full);
}
.creation-card-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}
.creation-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.015em;
  margin-bottom: var(--space-2);
}
.creation-card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}
.creations-cta {
  margin-top: var(--space-10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px dashed var(--color-border);
}
.creations-cta p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 70ch;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .creations-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .creations-cta .btn { width: 100%; }
}

/* =================================================================
   REVEAL PHONE BUTTON
   ================================================================= */
.reveal-phone {
  position: relative;
  cursor: pointer;
}
.reveal-phone::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  vertical-align: -2px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.72 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.35 1.85.59 2.81.72A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.72 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.35 1.85.59 2.81.72A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
}
.reveal-phone.revealed {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.reveal-phone.revealed::before {
  background-color: #fff;
}

/* =================================================================
   DARK THEME — new component adjustments
   ================================================================= */
[data-theme='dark'] .menu-notice {
  background: linear-gradient(90deg, oklch(from var(--color-primary) l c h / 0.10), oklch(from var(--color-gold) l c h / 0.10));
  border-color: oklch(from var(--color-primary) l c h / 0.32);
}
[data-theme='dark'] .lunch-card,
[data-theme='dark'] .creation-card,
[data-theme='dark'] .creations-pricing {
  background: var(--color-surface, #1a1410);
}
[data-theme='dark'] .creations-showcase {
  background:
    radial-gradient(900px 500px at 90% 0%, oklch(from var(--color-gold) l c h / 0.08), transparent 65%),
    radial-gradient(800px 500px at 0% 100%, oklch(from var(--color-primary) l c h / 0.08), transparent 65%),
    var(--color-bg);
}

/* ============================================================
   SERVICE AREA (Hyper-local SEO section)
   ============================================================ */
.service-area {
  background: var(--color-bg);
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-divider);
}

.service-area-grid {
  display: grid;
  gap: var(--space-6);
  max-width: 920px;
  margin: 0 auto;
}

.service-area-text .eyebrow {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.service-area-text h2 {
  font-family: var(--font-display);
  color: var(--color-charcoal);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
}

.service-area-text p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 var(--space-4);
  max-width: 70ch;
}

.service-area-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-3);
}

.service-area-list li {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-basil);
  padding: var(--space-3) var(--space-4);
  border-radius: 6px;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-area-list li strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 2px;
}

.service-area-fine {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  border-top: 1px dashed var(--color-divider);
  padding-top: var(--space-3);
  margin-top: var(--space-4);
}

/* ============================================================
   FAQ (Frequently Asked Questions — feeds AI Overviews/voice)
   ============================================================ */
.faq {
  background: var(--color-surface);
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-divider);
}

.faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}

.faq-head .eyebrow {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.faq-head h2 {
  font-family: var(--font-display);
  color: var(--color-charcoal);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 var(--space-3);
}

.faq-head p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  max-width: 1080px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 20px rgba(28, 20, 17, 0.06);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(184, 49, 31, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  color: var(--color-charcoal);
  user-select: none;
}

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

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item h3 {
  margin: 0;
  display: inline;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.35;
}

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold-highlight);
  color: var(--color-gold-hover);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #fff;
}

.faq-item > *:not(summary) {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

.faq-item p {
  margin: 0;
}

/* =================================================================
   SUNDAY SAUCE — APPETITE WARM-UP
   Alternating warm bands so each section feels alive. Inspired by
   Papa John's / Little Caesars energy, kept on-brand with the
   Italian flag palette (tomato · cream · basil · gold).
   This block is LAST and intentionally overrides earlier section bgs.
   ================================================================= */

/* Body sets the warm baseline (slight peach) */
body {
  background:
    /* faint diagonal checker hint — extremely subtle */
    repeating-linear-gradient(135deg,
      rgba(184, 49, 31, 0.012) 0 22px,
      transparent 22px 44px),
    linear-gradient(180deg, #fdf6e8 0%, #fbeed7 100%);
  background-attachment: fixed;
}

/* ---------- QUICK ORDER (red strip just under hero) ---------- */
.quickorder {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 248, 230, 0.25) 0%, transparent 55%),
    linear-gradient(95deg, #b8311f 0%, #c93822 50%, #a82716 100%) !important;
  color: #fff8e1 !important;
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
  position: relative;
}
.quickorder .eyebrow,
.quickorder .quickorder-eyebrow { color: #ffd97a !important; }
.quickorder .quickorder-title,
.quickorder h2 { color: #fff8e1 !important; }
.quickorder .quickorder-title .accent { color: #ffd97a !important; }
/* Category tiles: cream cards with dark text so labels & prices are readable */
.quickorder .qo-card {
  background: #fff8e1 !important;
  border: 1px solid rgba(255, 217, 122, 0.6) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.quickorder .qo-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
.quickorder .qo-icon { filter: none !important; }
.quickorder .qo-label { color: var(--color-charcoal) !important; font-weight: 700; }
.quickorder .qo-sub { color: var(--color-primary) !important; font-weight: 600; }

/* ---------- ABOUT / OUR STORY (warm cream, slightly toasted) ---------- */
.about {
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(200, 155, 42, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 45% at 10% 80%, rgba(74, 102, 56, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #fef4dc 0%, #fbeac8 100%) !important;
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(184, 49, 31, 0.04) 0 1px, transparent 1.5px) 0 0 / 56px 56px;
  pointer-events: none;
  opacity: 0.7;
}
.about > * { position: relative; z-index: 1; }

/* ---------- SIGNATURES (warm tomato wash) ---------- */
.signature {
  background:
    radial-gradient(ellipse at top left, rgba(184, 49, 31, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(200, 155, 42, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #fff1d8 0%, #fde2bc 100%) !important;
  position: relative;
}

/* ---------- CREATIONS SHOWCASE (rich golden glow) ---------- */
.creations-showcase {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 220, 130, 0.40) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(184, 49, 31, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #fde9c0 0%, #f6d9a0 100%) !important;
  position: relative;
}

/* ---------- MENU (clean ivory — keeps cards readable) ---------- */
.menu {
  background:
    radial-gradient(ellipse at top, rgba(74, 102, 56, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #fff8ea 0%, #fdedcb 100%) !important;
  position: relative;
}
.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(200, 155, 42, 0.05) 0 2px, transparent 3px) 0 0 / 84px 84px,
    radial-gradient(circle at 70% 60%, rgba(184, 49, 31, 0.04) 0 2px, transparent 3px) 0 0 / 96px 96px;
  pointer-events: none;
}
.menu > * { position: relative; z-index: 1; }

/* ---------- BOROUGH SPECIALS (tomato red band — the big appetite hit) ---------- */
.specials {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 200, 80, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0, 0, 0, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #b8311f 0%, #9b2718 100%) !important;
  color: #fef4dc !important;
  border-top: 4px solid var(--color-gold) !important;
  border-bottom: 4px solid var(--color-gold) !important;
  position: relative;
}
.specials .eyebrow,
.specials h2,
.specials h2 .accent,
.specials p,
.specials li,
.specials small { color: #fef4dc !important; }
.specials .eyebrow { color: #ffd97a !important; }
.specials .eyebrow::before { background: #ffd97a !important; }
.specials h2 .accent { color: #ffd97a !important; font-style: italic; }
/* Borough cards: lift on red background */
.specials .borough-card,
.specials .special-card {
  background: #fff8e1 !important;
  border: 1px solid rgba(255, 217, 122, 0.5) !important;
  color: var(--color-text) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.specials .borough-card h3,
.specials .borough-card p,
.specials .borough-card li,
.specials .borough-card strong,
.specials .special-card h3,
.specials .special-card p,
.specials .special-card li,
.specials .special-card strong { color: var(--color-text) !important; }
.specials .borough-card .save-pill,
.specials .special-card .save-pill {
  background: var(--color-primary) !important;
  color: #fff !important;
}

/* ---------- LOVE / MADE WITH LOVE (basil green wash) ---------- */
.love {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 240, 200, 0.30) 0%, transparent 60%),
    linear-gradient(180deg, #5b7944 0%, #4a6638 100%) !important;
  color: #fef4dc !important;
  border-top: 4px solid var(--color-gold);
  border-bottom: 4px solid var(--color-gold);
}
.love *,
.love h2,
.love p,
.love .eyebrow { color: #fef4dc !important; }
.love .eyebrow { color: #ffd97a !important; }
.love h2 .accent { color: #ffd97a !important; font-style: italic; }

/* ---------- DELIVERY (warm sandstone) ---------- */
.delivery {
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(184, 49, 31, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #f6d9a0 0%, #f0c87a 100%) !important;
  position: relative;
}

/* ---------- SERVICE AREA (cool basil-tinted cream for contrast) ---------- */
.service-area {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(74, 102, 56, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #f3eed3 0%, #e8e1bf 100%) !important;
  position: relative;
}
.service-area-list li {
  background: #fff8e1 !important;
  border-left: 4px solid var(--color-basil) !important;
}

/* ---------- FAQ (warm peachy cream) ---------- */
.faq {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(200, 155, 42, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #fff1d8 0%, #fde2bc 100%) !important;
  position: relative;
}
.faq-item { background: #fff8e1 !important; }

/* ---------- VISIT (rich cream with gold glow) ---------- */
.visit {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 155, 42, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #fde9c0 0%, #f6d9a0 100%) !important;
  position: relative;
}

/* ---------- FOOTER (deep tomato — closes the warm story) ---------- */
.footer {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 217, 122, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #9b2718 0%, #7d1d12 100%) !important;
  color: #fef4dc !important;
  border-top: 4px solid var(--color-gold);
}
.footer *,
.footer a,
.footer p,
.footer li,
.footer h3,
.footer h4 { color: #fef4dc !important; }
.footer a:hover { color: #ffd97a !important; }
.footer .footer-bottom,
.footer small { color: rgba(254, 244, 220, 0.7) !important; }

/* ---------- Subtle "wavy edge" between sections for energy ---------- */
.about + .signature,
.signature + .creations-showcase,
.creations-showcase + .menu,
.menu + .specials,
.specials + .love,
.love + .delivery,
.delivery + .service-area,
.service-area + .faq,
.faq + .visit {
  position: relative;
}

/* Mobile: simplify gradients for perf */
@media (max-width: 720px) {
  body { background: linear-gradient(180deg, #fdf6e8 0%, #fbeed7 100%); }
}

/* =================================================================
   ROUND 2 — Hero color, Mangia badge contrast, footer black logo
   ================================================================= */

/* ---------- HERO: add warm color back over the cream/skyline ---------- */
.hero.hero-v2,
.hero {
  background:
    /* Italian-flag soft glows in the corners */
    radial-gradient(ellipse 50% 40% at 8% 18%, rgba(184, 49, 31, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 92% 78%, rgba(74, 102, 56, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(200, 155, 42, 0.18) 0%, transparent 65%),
    /* lighter cream wash so the photo still shows but more warmth above it */
    linear-gradient(180deg,
      rgba(255, 248, 230, 0.88) 0%,
      rgba(255, 240, 210, 0.55) 35%,
      rgba(253, 230, 188, 0.40) 70%,
      rgba(253, 230, 188, 0.78) 100%),
    url('../assets/ny-skyline.png') center bottom / cover no-repeat,
    var(--color-bg) !important;
}

@media (max-width: 720px) {
  .hero.hero-v2,
  .hero {
    background:
      radial-gradient(ellipse 70% 30% at 50% 20%, rgba(184, 49, 31, 0.14) 0%, transparent 65%),
      radial-gradient(ellipse 60% 30% at 50% 100%, rgba(200, 155, 42, 0.20) 0%, transparent 65%),
      linear-gradient(180deg,
        rgba(255, 248, 230, 0.93) 0%,
        rgba(255, 240, 210, 0.68) 45%,
        rgba(253, 230, 188, 0.55) 80%,
        rgba(253, 230, 188, 0.85) 100%),
      url('../assets/ny-skyline.png') center 85% / cover no-repeat,
      var(--color-bg) !important;
  }
}

/* ---------- MANGIA badge: fix invisible cream-on-cream text ---------- */
.love .love-stamp,
.love-img-wrap .love-stamp,
.love-stamp {
  background: #fef4dc !important;
  border: 2px solid var(--color-gold) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.30) !important;
}
.love .love-stamp-script,
.love-stamp-script {
  color: var(--color-primary) !important;
}
.love .love-stamp-script.accent-italic,
.love-stamp-script.accent-italic {
  color: var(--color-gold-hover) !important;
}
.love .love-stamp-tr,
.love-stamp-tr {
  color: var(--color-charcoal) !important;
}

/* ---------- FOOTER LOGO: black Little Anthony's plaque on tomato ---------- */
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--space-4);
  text-decoration: none;
  line-height: 0;
}
.footer-logo-img {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
  /* Cream tile behind the black logo so the white text inside the JPEG pops on red */
  background: #fef4dc;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px solid var(--color-gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.30),
              inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.footer-logo-link:hover .footer-logo-img {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36),
              inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

/* =================================================================
   ROUND 3 — Bold hero, trimmed menus, new Pasta hero section
   ================================================================= */

/* ---------- HERO: bold tomato red (matches Borough Specials energy) ---------- */
.hero.hero-v2,
.hero {
  background:
    /* gold radial highlight bottom-center */
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 217, 122, 0.18) 0%, transparent 65%),
    /* deeper red corner glow */
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(255, 100, 75, 0.18) 0%, transparent 60%),
    /* main deep tomato gradient */
    linear-gradient(180deg, #c63a26 0%, #a32717 70%, #8a1f12 100%) !important;
  color: #fef4dc !important;
}
/* Darker silhouette skyline — buildings punch through the red as crisp silhouettes */
.hero.hero-v2::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/ny-skyline-dark.png') center bottom / cover no-repeat;
  /* Fade in from top (invisible) to bottom (full silhouette) */
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 22%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,1) 75%, rgba(0,0,0,1) 100%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 22%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,1) 75%, rgba(0,0,0,1) 100%);
  opacity: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
/* Soft warm veil over the skyline so headline text stays readable */
.hero.hero-v2::after,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 25% 35%, rgba(198, 58, 38, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, rgba(198, 58, 38, 0.15) 0%, rgba(163, 39, 23, 0.05) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: normal;
}
.hero.hero-v2 .container,
.hero.hero-v2 .hero-grid,
.hero .container,
.hero .hero-grid { position: relative; z-index: 1; }

/* Hero text should pop on red */
.hero h1,
.hero .hero-italic,
.hero .accent,
.hero-tagline,
.hero-eyebrow,
.hero .trust-item,
.hero .hero-trust,
.hero .hero-trust .muted {
  color: #fef4dc !important;
}
.hero .accent,
.hero h1 .accent {
  color: #ffd97a !important;
}
.hero .hero-italic { color: #ffd97a !important; }
.hero-tagline { color: rgba(254, 244, 220, 0.92) !important; }
.hero .hero-trust .muted { color: rgba(254, 244, 220, 0.7) !important; }
.hero .trust-sep { background: rgba(254, 244, 220, 0.3) !important; }

/* Outline button: cream on red */
.hero .btn-outline-light {
  border-color: rgba(254, 244, 220, 0.6) !important;
  color: #fef4dc !important;
  background: transparent !important;
}
.hero .btn-outline-light:hover {
  background: rgba(254, 244, 220, 0.12) !important;
  border-color: #fef4dc !important;
}

/* Primary CTA on red — use gold so it pops */
.hero .btn-primary {
  background: var(--color-gold) !important;
  color: #1c1411 !important;
  border-color: var(--color-gold) !important;
}
.hero .btn-primary:hover {
  background: #d9a82e !important;
  color: #1c1411 !important;
}

/* Pill: red badge becomes cream on dark red bg */
.hero .pill-red {
  background: rgba(254, 244, 220, 0.95) !important;
  color: var(--color-primary) !important;
}

/* Price tag on hero — gold pill */
.hero .hero-price-tag {
  background: linear-gradient(180deg, #fef4dc 0%, #f8e6c3 100%) !important;
  color: #1c1411 !important;
  border: 2px solid var(--color-gold) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35) !important;
}
.hero .hero-price-tag .price-from,
.hero .hero-price-tag .price-sub { color: #5a3a16 !important; }
.hero .hero-price-tag .price-number,
.hero .hero-price-tag .price-dollar,
.hero .hero-price-tag .price-cents { color: var(--color-primary) !important; }

/* Photo edge: warm gold glow against red */
.hero .hero-photo {
  box-shadow:
    0 0 0 6px rgba(254, 244, 220, 0.95),
    0 0 0 8px var(--color-gold),
    0 22px 50px rgba(0, 0, 0, 0.4) !important;
}

@media (max-width: 720px) {
  .hero.hero-v2,
  .hero {
    background:
      radial-gradient(ellipse 80% 40% at 50% 100%, rgba(255, 217, 122, 0.20) 0%, transparent 65%),
      linear-gradient(180deg, #c63a26 0%, #a32717 70%, #8a1f12 100%) !important;
  }
}

/* ---------- "More on the full menu" link inside menu panels ---------- */
.menu-more-link {
  text-align: center;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px dashed rgba(184, 49, 31, 0.25);
}
.menu-more-link a {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 2px solid rgba(200, 155, 42, 0.4);
  padding-bottom: 2px;
  transition: border-color 200ms ease, color 200ms ease;
}
.menu-more-link a:hover {
  color: #8a1f12;
  border-bottom-color: var(--color-gold);
}

/* ---------- PASTA HERO SECTION ---------- */
.pasta-hero {
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    radial-gradient(ellipse 50% 40% at 12% 18%, rgba(200, 155, 42, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 88% 80%, rgba(74, 102, 56, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #fcf2dd 0%, #f7e6c2 100%);
  position: relative;
}
.pasta-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 28%, rgba(184, 49, 31, 0.05) 0 1.5px, transparent 2px),
    radial-gradient(circle at 78% 62%, rgba(74, 102, 56, 0.05) 0 1.5px, transparent 2px),
    radial-gradient(circle at 42% 88%, rgba(200, 155, 42, 0.05) 0 1.5px, transparent 2px);
  background-size: 120px 120px;
  pointer-events: none;
  z-index: 0;
}
.pasta-hero > .container { position: relative; z-index: 1; }

.pasta-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-7);
}
.pasta-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--color-charcoal);
  margin: var(--space-2) 0 0;
}
.pasta-head h2 .accent {
  font-style: italic;
  color: var(--color-primary);
}
.pasta-head > p {
  color: rgba(28, 20, 17, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 460px;
  justify-self: end;
}

.pasta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}
.pasta-card {
  background: #fef9ec;
  border: 1px solid rgba(200, 155, 42, 0.28);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  box-shadow: 0 4px 14px rgba(120, 70, 30, 0.08);
}
.pasta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(120, 70, 30, 0.18);
  border-color: var(--color-gold);
}
.pasta-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3e1bc;
}
.pasta-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms ease;
}
.pasta-card:hover .pasta-card-img img { transform: scale(1.04); }
.pasta-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: #fef4dc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}
.pasta-card-body {
  padding: var(--space-4) var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pasta-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}
.pasta-card-row h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-charcoal);
  margin: 0;
  line-height: 1.2;
}
.pasta-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.pasta-card-body p {
  font-size: 0.94rem;
  color: rgba(28, 20, 17, 0.72);
  line-height: 1.5;
  margin: 0;
}

.pasta-cta {
  margin-top: var(--space-6);
  text-align: center;
  padding-top: var(--space-5);
  border-top: 1px dashed rgba(184, 49, 31, 0.25);
}
.pasta-cta p {
  color: rgba(28, 20, 17, 0.7);
  font-size: 0.95rem;
  margin-bottom: var(--space-3);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .pasta-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .pasta-head > p {
    justify-self: start;
    max-width: 100%;
  }
}

/* Round 3 hero — force gold fill on accent over red bg (override transparent text trick) */
.hero.hero-v2 h1 .accent,
.hero-v2 h1 .accent {
  -webkit-text-fill-color: #ffd97a !important;
  color: #ffd97a !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.hero.hero-v2 h1 .hero-italic,
.hero-v2 h1 .hero-italic {
  color: #ffd97a !important;
  -webkit-text-fill-color: #ffd97a !important;
}

/* =================================================================
   ROUND 4 — Basil green header bar (matches the Love section)
   ================================================================= */
.site-header,
header.site-header,
.header {
  background: linear-gradient(180deg, #5a7a44 0%, #4a6638 100%) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 2px solid transparent !important;
  border-image: linear-gradient(90deg,
    #2f4523 0 33.33%,
    var(--color-gold) 33.33% 66.66%,
    var(--color-primary) 66.66% 100%
  ) 1 !important;
  box-shadow: 0 6px 22px rgba(28, 20, 17, 0.18) !important;
}
.header--scrolled {
  background: linear-gradient(180deg, #4a6638 0%, #3d5530 100%) !important;
  box-shadow: 0 8px 26px rgba(28, 20, 17, 0.25) !important;
}

/* Nav text on green: cream */
.header .nav-links a,
.header .nav-phone,
.header .nav-phone span,
.header .theme-toggle,
.header .logo,
.header .logo-mark {
  color: #fef4dc !important;
}
.header .nav-links a {
  transition: color 200ms ease, background 200ms ease;
  border-radius: 6px;
}
.header .nav-links a:hover {
  color: #ffd97a !important;
  background: rgba(254, 244, 220, 0.08);
}
.header .nav-phone svg { stroke: var(--color-gold) !important; }
.header .theme-toggle:hover { color: #ffd97a !important; }

/* Order Online button on green header: tomato-red CTA pops nicely */
.header .nav-cta.btn-primary {
  background: var(--color-primary) !important;
  color: #fef4dc !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 6px 18px rgba(184, 49, 31, 0.4) !important;
}
.header .nav-cta.btn-primary:hover {
  background: #d44430 !important;
  border-color: #d44430 !important;
}

/* Logo plaque on green header — transparent PNG, no tile/border */
.header .logo-mark,
.site-header .logo-mark,
header.site-header .logo-mark {
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35)) !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 72px !important;
  max-height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
}
@media (max-width: 720px) {
  .header .logo-mark,
  .site-header .logo-mark,
  header.site-header .logo-mark {
    height: 54px !important;
    max-height: 54px !important;
  }
}

/* Footer logo — transparent PNG, no tile (the dark plate already has its own border) */
.footer-logo-img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)) !important;
  mix-blend-mode: normal !important;
}

/* Hero bottom trust row — keep readable against the visible skyline */
.hero .hero-trust,
.hero.hero-v2 .hero-trust {
  position: relative;
  padding: 14px 18px !important;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(28, 20, 17, 0.45) 0%, rgba(28, 20, 17, 0.65) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(254, 244, 220, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.hero .hero-trust .trust-item,
.hero.hero-v2 .hero-trust .trust-item {
  color: #fef4dc !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.hero .hero-trust .trust-item strong,
.hero.hero-v2 .hero-trust .trust-item strong { color: #ffd97a !important; }
.hero .hero-trust .muted,
.hero.hero-v2 .hero-trust .muted { color: rgba(254, 244, 220, 0.8) !important; }
.hero .hero-trust .trust-sep,
.hero.hero-v2 .hero-trust .trust-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255, 217, 122, 0.6);
}

/* Visit section — no more map; let the info panel breathe full width and center */
.visit-grid {
  grid-template-columns: 1fr !important;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.visit-info {
  text-align: center;
}
.visit-info .visit-blocks,
.visit-info > div { /* fallback */
}

/* ============== CONSPICUOUS "Order Delivery" CTA ============== */
.btn-delivery-cta {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 18px 34px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #d6432d 0%, #b8311f 60%, #9c2716 100%) !important;
  color: #fef4dc !important;
  border: 2px solid #ffd97a !important;
  box-shadow:
    0 0 0 4px rgba(255, 217, 122, 0.18),
    0 14px 32px rgba(184, 49, 31, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  animation: deliveryPulse 2.4s ease-in-out infinite;
}
.btn-delivery-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: deliveryShine 3.6s ease-in-out infinite;
  pointer-events: none;
}
.btn-delivery-cta:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
  box-shadow:
    0 0 0 5px rgba(255, 217, 122, 0.28),
    0 18px 38px rgba(184, 49, 31, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}
.btn-delivery-cta:active { transform: translateY(0) scale(0.99); }
.btn-delivery-cta .btn-arrow svg { stroke-width: 3 !important; }

@keyframes deliveryPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(255, 217, 122, 0.18),
      0 14px 32px rgba(184, 49, 31, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(255, 217, 122, 0.10),
      0 18px 40px rgba(184, 49, 31, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}
@keyframes deliveryShine {
  0%, 60%, 100% { transform: translateX(-100%); }
  80%          { transform: translateX(100%); }
}

@media (max-width: 720px) {
  .btn-delivery-cta {
    width: 100%;
    justify-content: center;
    padding: 18px 28px !important;
    font-size: 1.05rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-delivery-cta { animation: none; }
  .btn-delivery-cta::before { animation: none; opacity: 0; }
}

/* =================================================================
   MENU ADDITIONS — Slice grid (3-up) + Weekend Family Specials
   ================================================================= */

/* 3-column variant of size-grid for Pizza by the Slice */
.size-grid.size-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .size-grid.size-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Weekend Family Specials wrapper — gentle separation from lunch grid above */
.weekend-family-section {
  margin-top: var(--space-12, 4rem);
  padding-top: var(--space-10, 3rem);
  border-top: 1px dashed oklch(from var(--color-gold) l c h / 0.45);
}
.weekend-family-section .menu-section-head h3 {
  /* keep heading consistent — accent already in span */
}
.weekend-family-section .lunch-card-featured::before {
  content: 'Weekend';
  background: var(--color-basil, #4a6638);
}

/* =================================================================
   QUICK-ORDER TILES — Full-bleed photo on Pizza, text-only on others
   ================================================================= */

/* Hide any leftover emoji icons */
.qo-card .qo-icon { display: none !important; }

/* Every tile is vertically centered so text-only tiles align with the photo tile */
.qo-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 168px;
  position: relative;
  overflow: hidden;
}

.qo-card:not(.qo-card-photo) .qo-label { margin-top: 0.25rem; }

/* PHOTO TILE — full-bleed pepperoni shot with dark gradient overlay for legibility */
.qo-card-photo {
  background:
    radial-gradient(circle at 50% 55%, #c63a26 0%, #8a1f12 70%, #5a1208 100%);
  border-color: var(--color-gold, #c89b2a) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.qo-card-photo .qo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  /* Source photo has whitespace around the pie — scale + shift to fill card edge-to-edge */
  transform: scale(1.55) translateY(-2%);
  transform-origin: center 55%;
  z-index: 0;
  transition: transform 0.5s ease;
}
.qo-card-photo:hover .qo-bg { transform: scale(1.68) translateY(-2%); }
.qo-card-photo .qo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.10) 75%, rgba(0,0,0,0.0) 100%);
  pointer-events: none;
}
.qo-card-photo .qo-label,
.qo-card-photo .qo-sub {
  position: relative;
  z-index: 2;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.5);
}
.qo-card-photo .qo-label {
  font-weight: 800;
  letter-spacing: 0.01em;
}
.qo-card-photo .qo-sub {
  color: #ffd97a !important;
  font-weight: 700;
}
/* hover transform handled above */

/* Override the dark-mode/red-band rules from earlier so the photo card stays photo-first */
.quickorder .qo-card.qo-card-photo .qo-label { color: #fff !important; }
.quickorder .qo-card.qo-card-photo .qo-sub { color: #ffd97a !important; }

@media (max-width: 640px) {
  .qo-card { min-height: 140px; }
}

/* =================================================================
   HERO BANNER — Expressive top status (moved from below CTAs)
   ================================================================= */

.hero-banner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.38) 100%);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  max-width: 100%;
  animation: hbFadeIn 0.7s ease 0.1s both;
}

@keyframes hbFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Italian-flag chip on the left */
.hb-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.hb-chip-flag .flag-g,
.hb-chip-flag .flag-w,
.hb-chip-flag .flag-r {
  display: inline-block;
  width: 8px;
  height: 18px;
}
.hb-chip-flag .flag-g { background: #008c45; border-radius: 4px 0 0 4px; }
.hb-chip-flag .flag-w { background: #f4f5f0; }
.hb-chip-flag .flag-r { background: #cd212a; border-radius: 0 4px 4px 0; }

.hb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  white-space: nowrap;
}
.hb-item strong {
  color: var(--color-gold, #ffd97a);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hb-item-lead strong { color: #fff; }

.hb-muted {
  color: rgba(255,255,255,0.72);
  font-size: 0.86em;
  font-style: italic;
  margin-left: 0.15rem;
}

.hb-sep {
  width: 1px;
  height: 1.2em;
  background: rgba(255,255,255,0.28);
  flex-shrink: 0;
}

/* Live "open" pulse dot */
.hb-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.85);
  animation: hbPulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes hbPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.85); }
  70%  { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner { animation: none; }
  .hb-dot { animation: none; }
}

/* Stack gracefully on small screens */
@media (max-width: 720px) {
  .hero-banner {
    border-radius: 18px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    gap: 0.5rem 0.85rem;
  }
  .hb-sep { display: none; }
  .hb-item-modes { width: 100%; }
}

/* =================================================================
   CONNECT — Stay connected / Leave us a review (above footer)
   ================================================================= */

.connect {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, #fff8e8 0%, #fbeed3 50%, #f6e2b9 100%);
  border-top: 6px solid var(--color-basil, #4a6638);
  border-bottom: 6px solid var(--color-primary, #b8311f);
  overflow: hidden;
}
.connect-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,155,42,0.10) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(184,49,31,0.07) 0%, transparent 55%);
  z-index: 0;
}
.connect-inner { position: relative; z-index: 1; text-align: center; }

.connect-head { max-width: 760px; margin: 0 auto 2.5rem; }
.eyebrow-light {
  display: inline-block;
  color: var(--color-primary, #b8311f);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.connect-title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.1rem;
  color: #2a1a0d;
}
.connect-title .accent-italic {
  font-style: italic;
  color: var(--color-primary, #b8311f);
  font-weight: 400;
}
.connect-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a3520;
  margin: 0;
}
.connect-sub strong {
  color: var(--color-primary, #b8311f);
  background: linear-gradient(180deg, transparent 65%, rgba(200,155,42,0.35) 65%);
  padding: 0 0.15em;
}

/* Review CTA row */
.review-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto 2.5rem;
}
.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.6rem 1.3rem 1.4rem;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  text-decoration: none;
  color: #2a1a0d;
  text-align: center;
  box-shadow: 0 6px 18px rgba(184,49,31,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(184,49,31,0.18);
  border-color: var(--color-gold, #c89b2a);
}
.review-card-google:hover { border-color: #4285f4; }
.review-card-yelp:hover { border-color: #d32323; }

.review-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fbf6ec;
  border-radius: 14px;
  flex-shrink: 0;
}
.review-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.review-text strong {
  font-size: 1.08rem;
  font-weight: 700;
  color: #2a1a0d;
  line-height: 1.2;
}
.review-sub {
  font-size: 0.88rem;
  color: #6b5a3f;
  line-height: 1.35;
}
.review-arrow {
  font-size: 1.25rem;
  color: var(--color-primary, #b8311f);
  font-weight: 700;
  transition: transform 0.2s ease;
  margin-top: 0.15rem;
}
.review-card:hover .review-arrow { transform: translateX(4px); }

/* Free-slice hero CTA — the single perk callout */
.slice-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  max-width: 720px;
  margin: 0 auto 2.25rem;
  padding: 1.35rem 1.75rem;
  background: linear-gradient(135deg, #b8311f 0%, #8f2418 100%);
  border-radius: 18px;
  box-shadow:
    0 14px 32px rgba(184,49,31,0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.slice-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(200,155,42,0.32) 0%, transparent 55%),
    radial-gradient(circle at 88% 75%, rgba(255,255,255,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.slice-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.28);
  font-size: 1.85rem;
  line-height: 1;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}
.slice-cta-text {
  position: relative;
  z-index: 1;
  text-align: center;
}
.slice-cta-headline {
  margin: 0 0 0.2rem;
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.slice-cta-accent {
  color: var(--color-gold, #f0c656);
  font-style: italic;
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);
}
.slice-cta-sub {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

/* Social row */
.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.social-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b5a3f;
  margin-right: 0.4rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  text-decoration: none;
  color: #2a1a0d;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}
.social-ig { color: #c2185b; }
.social-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-color: transparent;
}
.social-fb { color: #1877f2; }
.social-fb:hover { background: #1877f2; color: #fff; border-color: transparent; }
.social-loop { color: var(--color-basil, #4a6638); }
.social-loop:hover { background: var(--color-basil, #4a6638); color: #fff; border-color: transparent; }
.social-loop .social-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.72;
  letter-spacing: 0.04em;
  margin-top: -2px;
}

.connect-fineprint {
  font-size: 0.85rem;
  color: #6b5a3f;
  font-style: italic;
  margin: 0;
}
.connect-thanks {
  color: var(--color-primary, #b8311f);
  font-weight: 600;
  font-style: normal;
}

/* Mobile */
@media (max-width: 720px) {
  .review-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .review-card { padding: 1.3rem 1rem 1.15rem; gap: 0.7rem; }
  .review-icon { width: 48px; height: 48px; }
  .review-icon svg { width: 30px; height: 30px; }
  .social-row { gap: 0.5rem; }
  .social-label { width: 100%; text-align: center; margin: 0 0 0.25rem; }
  .social-btn { padding: 0.55rem 0.9rem; font-size: 0.9rem; }
  .slice-cta {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.1rem;
    margin-bottom: 1.75rem;
  }
  .slice-cta-badge { width: 48px; height: 48px; font-size: 1.55rem; }
}

/* 2-column variant of size-grid for Pizza by the Slice (cheese + specialty only) */
.size-grid.size-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .size-grid.size-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
