/* ==========================================================================
   In Strada Woodfired Pizzeria — Design System & Styles
   Light theme with signature Italian Red (#B4210B) & crisp White
   Email-First Direct Booking Architecture
   ========================================================================== */

:root {
  /* --- Colors --- */
  --white: #FFFFFF;
  --warm: #FBF9F6;
  --warm-card: #F5F1EB;
  --warm-hover: #ECE6DC;
  
  --ink: #111111;
  --ink-soft: #4A4541;
  --ink-mute: #7D7670;
  
  --dark-bg: #0C0A09;
  --dark-surface: #171412;
  --dark-card: #201B18;
  --dark-border: #2D2723;
  --dark-text: #F5F1EB;
  --dark-mute: #A39D96;

  --red: #B4210B;
  --red-deep: #8E1706;
  --red-light: #D9381E;
  --red-tint: #FDF2F0;
  --red-tint-2: #FAECE8;
  --red-rgb: 180, 33, 11;

  --line: #E8E3DC;
  --line-soft: #F0ECE6;

  --focus: #0B63C5;
  --gold: #F59E0B;

  /* --- Typography --- */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Anton", "Haettenschweiler", "Arial Narrow Bold", sans-serif;

  /* --- Layout & Spacing --- */
  --max: 76rem;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(4rem, 7vw, 6.5rem);

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 18px;
  --r-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 45px -15px rgba(0, 0, 0, 0.14), 0 8px 20px -4px rgba(0, 0, 0, 0.06);
  --shadow-red: 0 10px 25px -8px rgba(var(--red-rgb), 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hdr-h: 4.75rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  background-color: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ---------- Layout Helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section {
  padding-block: var(--sec-y);
  position: relative;
}

.section--warm {
  background-color: var(--warm);
}

.section--dark {
  background-color: var(--dark-bg);
  color: var(--dark-text);
}

/* Screen reader only */
.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;
}

.skip:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #FFFFFF;
}

.h-xl {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
}

.h-lg {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
}

.h-md {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.lede {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

.section--dark .lede {
  color: var(--dark-mute);
}

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 4vw, 3.75rem);
}

.section-head h2 {
  margin-bottom: 0.75rem;
}

.label-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.label-kicker::before,
.label-kicker::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.5px;
  background: var(--red);
}

/* ---------- Buttons & CTAs ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.95rem 1.65rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--red);
  color: #FFFFFF;
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  background-color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(var(--red-rgb), 0.7);
}

.btn--outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn--outline-red:hover {
  background: var(--red);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn--outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn--white {
  background: #FFFFFF;
  color: var(--red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  background: #F8F6F4;
  color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 0.9375rem;
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
}

/* ==========================================================================
   Header / Navigation (Email-First)
   ========================================================================== */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(12, 10, 9, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--ease);
}

.hdr--top {
  background: rgba(12, 10, 9, 0.82);
}

.hdr--stuck {
  background: rgba(12, 10, 9, 0.98);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--hdr-h);
  transition: height 0.3s var(--ease);
}

.hdr--stuck .hdr-in {
  height: 4.15rem;
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
}

.brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(var(--red-rgb), 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
}

.brand-sub {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.25rem;
  line-height: 1;
}

/* Nav Links */
.nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav a:hover {
  color: #FFFFFF;
}

.nav a:hover::after,
.nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a[aria-current="true"] {
  color: #FFFFFF;
}

/* Header Action Right */
.hdr-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: none;
}

.hdr-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.hdr-email svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--red);
}

.hdr-email:hover {
  color: #FFFFFF;
}

.hdr-cta .btn {
  padding: 0.75rem 1.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* Mobile Hamburger Button */
.burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #FFFFFF;
  position: relative;
  transition: all 0.3s var(--ease);
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger span::before { top: -0.4rem; }
.burger span::after { top: 0.4rem; }

body.nav-open .burger span { background: transparent !important; }
body.nav-open .burger span::before { transform: translateY(0.4rem) rotate(45deg); }
body.nav-open .burger span::after { transform: translateY(-0.4rem) rotate(-45deg); }

/* Mobile Menu Drawer */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dark-bg);
  padding: calc(var(--hdr-h) + 1.5rem) var(--gut) 2.5rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: all 0.35s var(--ease);
  overflow-y: auto;
}

body.nav-open .mnav {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mnav a.mnav-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: #FFFFFF;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--dark-border);
}

.mnav-foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mnav-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
}

.mnav-email svg {
  stroke: var(--red);
}

/* ==========================================================================
   Hero Section (Live Pizza Show with Background Video)
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(40rem, 90vh, 56rem);
  display: flex;
  align-items: center;
  padding-top: calc(var(--hdr-h) + 1.5rem);
  padding-bottom: 4.5rem;
  background: var(--dark-bg);
  color: #FFFFFF;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-color: #0A0807;
}

.hero-bg .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  opacity: 1;
  display: block;
}

.hero-bg canvas.hero-fire {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    95deg,
    rgba(10, 8, 7, 0.96) 0%,
    rgba(10, 8, 7, 0.90) 40%,
    rgba(10, 8, 7, 0.65) 65%,
    rgba(10, 8, 7, 0.35) 85%,
    rgba(10, 8, 7, 0.45) 100%
  );
}

.hero-in {
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 44rem;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #D9381E;
}

.hero-lede {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 38rem;
}

.hero-min-tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #FBBF24;
}

/* 4 Feature Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 2.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-badge svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  flex: none;
}

/* Hero Action Buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Trust Line */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stars {
  color: #F59E0B;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.hero-rating {
  font-weight: 700;
  color: #FFFFFF;
}

/* ==========================================================================
   "WHAT'S THE OCCASION?" Section
   ========================================================================== */
.occasions {
  background-color: var(--warm);
  border-bottom: 1px solid var(--line);
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.occ-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.occ-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #D8D2CA;
}

.occ-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--warm-card);
}

.occ-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.occ-card:hover .occ-media img {
  transform: scale(1.06);
}

/* Floating Circular Badge Icon */
.occ-icon-badge {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  z-index: 2;
  border: 1.5px solid var(--line-soft);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.occ-icon-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--red);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.occ-card:hover .occ-icon-badge {
  transform: translateX(-50%) scale(1.08);
  background: var(--red);
}

.occ-card:hover .occ-icon-badge svg {
  stroke: #FFFFFF;
}

.occ-body {
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.occ-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.occ-desc {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   "CHOOSE YOUR EXPERIENCE" Packages Section (Mockup Design & Compact Height)
   ========================================================================== */
.packages-sec {
  background-color: #FAF7F2;
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.packages-head-center {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(1.35rem, 2.2vw, 1.85rem);
  position: relative;
  z-index: 1;
}

.pkg-top-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.pkg-top-kicker .kicker-emoji {
  font-size: 0.85rem;
}

.pkg-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #1B1816;
  line-height: 1.12;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.pkg-main-sub {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: #6E665E;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 36rem;
}

/* 2-Package Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 76rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.pkg-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  padding: 1.35rem 1.45rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(180, 33, 11, 0.08);
}

.pkg-ribbon-badge {
  position: absolute;
  top: -0.6rem;
  left: 1.45rem;
  background: var(--red);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(180, 33, 11, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.pkg-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #EFECE6;
}

.pkg-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pkg-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #181514;
  margin-bottom: 0.2rem;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.pkg-price-num {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.03em;
}

.pkg-price-unit {
  font-size: 0.76rem;
  font-weight: 700;
  color: #766E65;
}

.pkg-card-desc {
  font-size: 0.78rem;
  color: #6E665E;
  line-height: 1.38;
  margin-bottom: 0.35rem;
  max-width: 26ch;
}

.pkg-guest-min {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8B7E74;
}

.pkg-guest-icon {
  width: 0.95rem;
  height: 0.95rem;
  stroke: #8B7E74;
}

.pkg-card-media {
  width: 145px;
  height: 105px;
  border-radius: 12px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pkg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.pkg-checklist-2col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.95rem;
}

.pkg-check-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pkg-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: #2D2926;
  line-height: 1.35;
}

.pkg-check-circle {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--red);
  color: #FFFFFF;
  font-size: 0.55rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 0.1rem;
}

.pkg-cta-btn {
  width: 100%;
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
  justify-content: center;
}

/* ==========================================================================
   Antipasto Table Spread Add-on Showcase Card (Exact Mockup Proportions)
   ========================================================================== */
.antipasto-showcase-card {
  max-width: 76rem;
  margin-inline: auto;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 310px 1.4fr 1.05fr;
  align-items: stretch;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.antipasto-showcase-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.antipasto-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #181514;
}

.antipasto-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  display: block;
}

.video-live-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.antipasto-card-content {
  padding: 1.35rem 1.65rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.antipasto-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #FDF4F2;
  color: var(--red);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(180, 33, 11, 0.18);
}

.antipasto-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #181514;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.antipasto-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.antipasto-price-num {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.antipasto-price-unit {
  font-size: 0.76rem;
  font-weight: 700;
  color: #766E65;
}

.antipasto-min-tag {
  font-size: 0.72rem;
  color: #8B7E74;
  font-weight: 500;
}

.antipasto-desc {
  font-size: 0.78rem;
  color: #6E665E;
  line-height: 1.42;
  margin-bottom: 0.85rem;
  max-width: 44ch;
}

.btn--outline-red-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #FFFFFF;
  color: var(--red);
  border: 1.5px solid var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.48rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--outline-red-pill:hover {
  background: var(--red);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 33, 11, 0.25);
}

.antipasto-card-features {
  padding: 1.35rem 1.65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  border-left: 1px solid #EFECE6;
}

.antipasto-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2A2421;
}

.feat-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FDF4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.feat-icon-wrap svg {
  width: 14px;
  height: 14px;
  stroke: var(--red);
}

/* Dietary Footnote Pill Bar */
.dietary-pill-bar {
  max-width: 46rem;
  margin: 1.25rem auto 0;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 0.45rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 1;
}

.dietary-icon-circle {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.dietary-icon-circle svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: var(--red);
}

.dietary-text {
  font-size: 0.78rem;
  color: #6E665E;
  margin: 0;
  line-height: 1.4;
}

.font-italic {
  font-style: italic;
}

@media (max-width: 960px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 36rem;
  }
  .antipasto-showcase-card {
    grid-template-columns: 1fr;
  }
  .antipasto-card-media {
    min-height: 220px;
    position: relative;
  }
  .antipasto-card-content {
    padding: 1.25rem 1.5rem;
  }
  .antipasto-card-features {
    border-left: none;
    border-top: 1px solid #EFECE6;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    padding: 1rem 1.5rem;
  }
  .dietary-pill-bar {
    border-radius: 16px;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 600px) {
  /* -- Packages Section -- */
  .packages-sec {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }
  .packages-head-center {
    margin-bottom: 1.25rem;
  }
  .pkg-top-kicker {
    font-size: 0.62rem;
  }
  .pkg-main-title {
    font-size: 1.65rem;
  }
  .pkg-main-sub {
    font-size: 0.82rem;
  }
  .pkg-card {
    padding: 1.15rem;
    border-radius: 16px;
  }
  .pkg-card-top-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .pkg-card-media {
    width: 100%;
    height: 140px;
    border-radius: 10px;
  }
  .pkg-card-title {
    font-size: 1.2rem;
  }
  .pkg-price-num {
    font-size: 1.85rem;
  }
  .pkg-checklist-2col {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  /* -- Antipasto Card -- */
  .antipasto-showcase-card {
    border-radius: 16px;
  }
  .antipasto-card-media {
    min-height: 200px;
  }
  .antipasto-card-content {
    padding: 1.15rem 1.25rem;
  }
  .antipasto-title {
    font-size: 1.2rem;
  }
  .antipasto-price-num {
    font-size: 1.35rem;
  }
  .antipasto-desc {
    font-size: 0.75rem;
    max-width: 100%;
  }
  .btn--outline-red-pill {
    font-size: 0.68rem;
    padding: 0.45rem 1.1rem;
  }
  .antipasto-card-features {
    flex-direction: column;
    padding: 0.85rem 1.25rem;
    gap: 0.55rem;
  }
  .antipasto-feat-item {
    font-size: 0.78rem;
  }
  .feat-icon-wrap {
    width: 26px;
    height: 26px;
  }
  .feat-icon-wrap svg {
    width: 12px;
    height: 12px;
  }

  /* -- Dietary Pill Bar -- */
  .dietary-pill-bar {
    border-radius: 14px;
    padding: 0.45rem 1rem;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .dietary-text {
    font-size: 0.72rem;
  }

  /* -- Events & Reviews -- */
  .events-reviews-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   "OUR PIZZA MENU" 10-Pizza Showcase Section (Light Theme Mockup)
   ========================================================================== */
.menu-showcase-sec {
  background-color: #FAF7F2;
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Background botanical flourishes */
.menu-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: clamp(8rem, 12vw, 12rem);
  height: clamp(8rem, 12vw, 12rem);
}

.menu-decor--tl {
  top: 0;
  left: 0;
  transform: translate(-10%, -10%);
}

.menu-decor--br {
  bottom: 0;
  right: 0;
  transform: translate(10%, 10%);
}

.menu-dots {
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: radial-gradient(#D6CCC2 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  pointer-events: none;
  opacity: 0.5;
}

.menu-dots--tr {
  top: 2rem;
  right: 2rem;
}

.menu-dots--bl {
  bottom: 2rem;
  left: 2rem;
}

.menu-head-center {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(1.35rem, 2.2vw, 1.85rem);
  position: relative;
  z-index: 1;
}

.menu-top-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.kicker-dash {
  font-weight: 400;
  color: var(--red);
}

.menu-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #1B1816;
  line-height: 1.12;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.text-accent-red {
  color: var(--red);
}

.menu-main-sub {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: #6E665E;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 36rem;
}

/* 10-Pizza Cards Grid (5 columns on desktop) */
.menu-showcase-sec .wrap {
  max-width: 82rem;
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.95rem 0.85rem;
  margin-bottom: 1.85rem;
  position: relative;
  z-index: 1;
}

.menu-pizza-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.15rem 0.85rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  position: relative;
}

.menu-pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(180, 33, 11, 0.08);
  border-color: rgba(180, 33, 11, 0.18);
}

.card-pizza-media {
  position: relative;
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-pizza-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
  transition: transform 0.45s ease;
}

.menu-pizza-card:hover .card-pizza-media img {
  transform: scale(1.05) rotate(2deg);
}

/* Red Number Badge */
.card-num-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--red);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(180, 33, 11, 0.35);
  z-index: 2;
  letter-spacing: -0.02em;
  border: 1.5px solid #FFFFFF;
}

.card-pizza-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #181514;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.card-pizza-desc {
  font-size: 0.76rem;
  color: #766E65;
  line-height: 1.38;
  margin: 0;
  max-width: 18ch;
}

.menu-btn-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Pill Button */
.btn--red-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--red);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(180, 33, 11, 0.28);
}

.btn--red-pill:hover {
  background: #961908;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(180, 33, 11, 0.38);
}

.btn--red-pill.btn--sm {
  padding: 0.65rem 1.45rem;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn-icon-dietary {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
}

.btn-icon-arr {
  width: 1rem;
  height: 1rem;
  flex: none;
}

@media (max-width: 1100px) {
  .menu-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .menu-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .card-pizza-media {
    max-width: 130px;
  }
  .menu-pizza-card {
    padding: 1.15rem 0.75rem 1.35rem;
  }
}

/* ==========================================================================
   "REAL EVENTS. REAL EXPERIENCES." & "LOVED BY OUR CLIENTS" (Mockup 2)
   ========================================================================== */
.events-reviews-sec {
  background-color: #FAF7F2;
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.events-reviews-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: stretch;
}

/* Left Column: Real Events */
.col-real-events {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.events-head-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.events-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.events-main-h {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 700;
  color: #1B1816;
  line-height: 1.12;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.events-sub-text {
  font-size: 0.875rem;
  color: #6E665E;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  max-width: 30rem;
}

.events-mosaic-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.mosaic-top-card {
  position: relative;
  width: 100%;
  flex: 1.25;
  min-height: 155px;
  max-height: 190px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.mosaic-top-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mosaic-top-card:hover img {
  transform: scale(1.04);
}

.mosaic-float-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0.35rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.badge-heart-icon {
  width: 1rem;
  height: 1rem;
  color: var(--red);
  display: flex;
  align-items: center;
}

.badge-heart-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--red);
}

.badge-text-bold {
  font-weight: 800;
  font-size: 0.85rem;
  color: #1B1816;
}

.badge-text-sub {
  font-size: 0.72rem;
  color: #766E65;
  font-weight: 500;
}

.mosaic-sub-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  flex: 1;
}

.sub-tile-item {
  position: relative;
  height: 100%;
  min-height: 80px;
  max-height: 100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.sub-tile-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sub-tile-item:hover img {
  transform: scale(1.06);
}

/* Right Column: Loved By Our Clients */
.col-client-reviews {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.clients-head-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.clients-icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.clients-icon-circle svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--red);
}

.clients-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.clients-title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: #1B1816;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

.reviews-card-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.review-white-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-white-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.review-quote-watermark {
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #EFECE6;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.rev-card-in {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.rev-card-avatar {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 2px solid #FFFFFF;
}

.rev-gold-stars {
  color: #F59E0B;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  margin-bottom: 0.2rem;
}

.rev-quote-msg {
  font-style: italic;
  font-size: 0.825rem;
  color: #2D2926;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.rev-author-name {
  font-weight: 700;
  color: #1B1816;
  font-size: 0.85rem;
  margin-bottom: 0.05rem;
}

.rev-occasion-tag {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Google Social Proof Box */
.google-rating-box {
  background: #F6F1EA;
  border: 1px solid #EAE2D8;
  border-radius: 12px;
  padding: 0.65rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: none;
}

.google-badge-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--red);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.google-score-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1B1816;
  letter-spacing: -0.02em;
}

.google-v-divider {
  width: 1px;
  height: 1.6rem;
  background: #D9D1C7;
}

.google-stars-gold {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.1rem;
}

.google-events-sub {
  color: #766E65;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .events-reviews-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}



/* ==========================================================================
   Bottom CTA Banner (Solid Red)
   ========================================================================== */
.cta-banner {
  background-color: var(--red);
  color: #FFFFFF;
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}

.cta-banner-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cta-flame-icon {
  width: 3.25rem;
  height: 3.25rem;
  flex: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.cta-sub {
  font-size: clamp(0.9375rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ftr {
  background-color: var(--dark-bg);
  color: var(--dark-mute);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
  border-top: 1px solid var(--dark-border);
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-border);
}

.ftr-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.ftr-brand-wrap p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 32ch;
  margin: 0;
}

.ftr-socials {
  display: flex;
  gap: 0.65rem;
}

.ftr-socials a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  background: var(--dark-surface);
  color: var(--dark-text);
  display: grid;
  place-items: center;
  transition: all 0.2s var(--ease);
}

.ftr-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.ftr-socials svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.ftr-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.ftr-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ftr-links a {
  font-size: 0.875rem;
  color: var(--dark-mute);
  transition: color 0.2s;
}

.ftr-links a:hover {
  color: #FFFFFF;
}

.ftr-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.875rem;
}

.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--dark-mute);
}

.ftr-contact-item svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  flex: none;
  margin-top: 0.2rem;
}

.ftr-contact-item a {
  color: var(--dark-text);
  transition: color 0.2s;
}

.ftr-contact-item a:hover {
  color: var(--red);
}

.ftr-hours {
  font-size: 0.875rem;
  line-height: 1.6;
}

.ftr-hours b {
  color: var(--dark-text);
  display: block;
  margin-bottom: 0.25rem;
}

.ftr-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: var(--dark-mute);
}

/* ==========================================================================
   Interactive Quote Calculator Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 7, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.modal-overlay.is-in .modal-backdrop {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 44rem;
  max-height: calc(100vh - 2.5rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(1.5rem) scale(0.98);
  transition: all 0.35s var(--ease);
}

.modal-overlay.is-in .modal-dialog {
  opacity: 1;
  transform: none;
}

.modal-header {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--warm);
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.modal-header p {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  margin: 0;
}

.modal-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #FFFFFF;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #FFFFFF;
}

.modal-close svg {
  width: 1rem;
  height: 1rem;
}

.modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  flex: 1;
}

/* Quote Calculator Elements */
.calc-step-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.75rem;
}

.pkg-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.pkg-radio-card {
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 1rem;
  cursor: pointer;
  background: var(--warm);
  transition: all 0.2s var(--ease);
  position: relative;
}

.pkg-radio-card:hover {
  border-color: #D8D2CA;
}

.pkg-radio-card.is-selected {
  border-color: var(--red);
  background: var(--red-tint);
}

.pkg-radio-card input {
  position: absolute;
  opacity: 0;
}

.pkg-radio-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.25rem;
}

.pkg-radio-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
}

/* Addon Check Card in Modal */
.addon-check-card {
  background: var(--warm);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s var(--ease);
}

.addon-check-card:has(input:checked) {
  border-color: var(--red);
  background: var(--red-tint);
}

.addon-check-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
}

.addon-check-label input[type="checkbox"] {
  width: 1.35rem;
  height: 1.35rem;
  accent-color: var(--red);
  cursor: pointer;
  flex: none;
}

.addon-check-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.addon-check-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}

.addon-check-sub {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.addon-check-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  flex: none;
}

.addon-check-price small {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--ink-mute);
}

/* Guest Counter Slider */
.guest-calc-wrap {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.guest-calc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.guest-count-disp {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}

.guest-range {
  width: 100%;
  accent-color: var(--red);
  cursor: pointer;
}

/* Summary Live Box */
.calc-summary-box {
  background: #171412;
  color: #FFFFFF;
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.calc-sum-label {
  font-size: 0.8125rem;
  color: var(--dark-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calc-sum-price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Form Fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-fld-wide {
  grid-column: 1 / -1;
}

.form-fld {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-fld label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-fld input,
.form-fld select,
.form-fld textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--warm);
  font-size: 0.9375rem;
  transition: all 0.2s;
}

.form-fld input:focus,
.form-fld select:focus,
.form-fld textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.12);
}

.modal-footer {
  padding: 1.25rem 1.75rem;
  background: var(--warm);
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal-footer .btn {
  width: 100%;
}

/* Allergen Modal */
.allergen-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.allergen-card {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--warm);
}

.allergen-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.allergen-card p {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.allergen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.allergen-tag {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: var(--red-tint);
  color: var(--red);
  border: 1px solid rgba(var(--red-rgb), 0.2);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* 1200px */
@media (max-width: 1200px) {
  .pizza-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem 1rem;
  }
  .ftr-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .pizza-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .dual-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .addon-banner {
    grid-template-columns: 1fr;
  }
  .addon-media {
    min-height: 14rem;
  }
  .ftr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* 860px (Mobile Header & Drawer) */
@media (max-width: 860px) {
  .nav, .hdr-email, .hdr-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 34rem;
  }
  .pizza-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-badges {
    gap: 1rem 1.5rem;
  }
  .cta-banner-in {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 600px (Mobile Phones) */
@media (max-width: 600px) {
  .occasions-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin-inline: auto;
  }
  .pizza-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
  .pizza-shot {
    width: 7.5rem;
    height: 7.5rem;
  }
  .pkg-card-top {
    flex-direction: column;
  }
  .pkg-thumb {
    width: 100%;
    height: 9rem;
  }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 5.5rem;
  }
  .gal-item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .pkg-radio-group {
    grid-template-columns: 1fr;
  }
  .ftr-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .cta-btns {
    width: 100%;
    flex-direction: column;
  }
  .cta-btns .btn {
    width: 100%;
  }
  .ftr-bot {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.75rem;
  }
  .hero {
    min-height: clamp(32rem, 80vh, 42rem);
    padding-bottom: 2.5rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .hero-kicker {
    font-size: 0.65rem;
  }
  .hero-content .lede {
    font-size: 0.9rem;
  }
  .hero-badges {
    gap: 0.75rem 1rem;
  }
}

/* 420px (Samsung S20 Ultra & Similar) */
@media (max-width: 420px) {
  :root {
    --gut: 1rem;
  }
  .hero h1 {
    font-size: 1.85rem;
  }
  .pkg-card {
    padding: 1rem;
  }
  .pkg-card-title {
    font-size: 1.1rem;
  }
  .pkg-price-num {
    font-size: 1.65rem;
  }
  .pkg-check-item {
    font-size: 0.7rem;
  }
  .pkg-cta-btn {
    font-size: 0.72rem;
    padding: 0.6rem 1rem;
  }
  .antipasto-card-media {
    min-height: 180px;
  }
  .antipasto-title {
    font-size: 1.1rem;
  }
  .antipasto-price-num {
    font-size: 1.25rem;
  }
  .antipasto-desc {
    font-size: 0.72rem;
  }
  .btn--outline-red-pill {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
    width: 100%;
    justify-content: center;
  }
  .dietary-pill-bar {
    flex-direction: column;
    text-align: center;
    border-radius: 12px;
    padding: 0.65rem 1rem;
  }
  .dietary-text {
    font-size: 0.68rem;
  }
  .menu-main-title {
    font-size: 1.65rem;
  }
  .card-pizza-media {
    max-width: 110px;
  }
  .menu-pizza-card {
    padding: 0.85rem 0.5rem 1rem;
  }
  .pizza-name {
    font-size: 0.82rem;
  }
  .pizza-desc {
    font-size: 0.65rem;
  }
  .ftr-bot {
    font-size: 0.68rem;
  }

  /* -- Modal / Form Mobile -- */
  .modal-overlay {
    padding: 0;
    align-items: stretch;
  }
  .modal-dialog {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    height: 100%;
  }
  .modal-header {
    padding: 1.15rem 1.25rem 1rem;
    gap: 0.75rem;
  }
  .modal-header h3 {
    font-size: 1.1rem;
  }
  .modal-header p {
    font-size: 0.72rem;
  }
  .modal-close {
    width: 2rem;
    height: 2rem;
  }
  .modal-close svg {
    width: 0.85rem;
    height: 0.85rem;
  }
  .modal-body {
    padding: 1.15rem;
  }

  /* Steps */
  .calc-step-title {
    font-size: 0.68rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.1em;
  }

  /* Package Radio Cards */
  .pkg-radio-group {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }
  .pkg-radio-card {
    padding: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .pkg-radio-name {
    font-size: 0.82rem;
    margin-bottom: 0;
  }
  .pkg-radio-price {
    font-size: 1rem;
  }

  /* Addon Card */
  .addon-check-card {
    padding: 0.85rem;
    margin-bottom: 1rem;
  }
  .addon-check-label {
    gap: 0.65rem;
  }
  .addon-check-label input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
  }
  .addon-check-title {
    font-size: 0.8rem;
  }
  .addon-check-sub {
    font-size: 0.68rem;
  }
  .addon-check-price {
    font-size: 1rem;
  }

  /* Guest Slider */
  .guest-calc-wrap {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .guest-calc-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 0.6rem;
  }
  .guest-count-disp {
    font-size: 1.25rem;
  }
  .guest-min-notice {
    font-size: 0.68rem;
  }

  /* Summary Box */
  .calc-summary-box {
    padding: 1rem 1.15rem;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .calc-sum-label {
    font-size: 0.72rem;
  }
  .calc-sum-price {
    font-size: 1.5rem;
  }

  /* Form Fields */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .form-fld label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
  .form-fld input,
  .form-fld select,
  .form-fld textarea {
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
    border-radius: 8px;
  }

  /* Modal Footer */
  .modal-footer {
    padding: 1rem 1.15rem;
  }
  .modal-footer .btn {
    padding: 0.85rem 1.25rem;
    font-size: 0.82rem;
  }

  /* Allergen Modal */
  .allergen-list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .allergen-card {
    padding: 0.75rem;
  }
  .allergen-card h4 {
    font-size: 0.85rem;
  }
  .allergen-card p {
    font-size: 0.7rem;
  }
}

/* =============================================================================
   Quote confirmation panel
   Replaces the form once the enquiry has reached In Strada. The guest needs a
   definite "it arrived", not a status line under a form they may resubmit.
   ========================================================================== */
.quote-done{
  padding:2.5rem 1.75rem 2rem;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.85rem;
}
.quote-done__mark{
  width:64px;height:64px;
  display:grid;place-items:center;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  margin-bottom:.25rem;
}
.quote-done__mark svg{width:32px;height:32px}
.quote-done__title{
  font-family:var(--font-display,"Playfair Display",Georgia,serif);
  font-size:clamp(1.5rem,4vw,1.9rem);
  line-height:1.1;
  margin:0;
}
.quote-done__lede{
  margin:0;
  color:var(--ink-mute);
  max-width:44ch;
}
.quote-done__summary{
  margin:.5rem 0 0;
  width:100%;
  max-width:26rem;
  text-align:left;
  border:1px solid rgba(var(--red-rgb),.18);
  border-radius:10px;
  background:rgba(var(--red-rgb),.04);
  padding:1rem 1.15rem;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:.45rem 1rem;
  font-size:.9rem;
}
.quote-done__summary dt{color:var(--ink-mute)}
.quote-done__summary dd{margin:0;font-weight:600;text-align:right}
.quote-done__summary .is-total{
  border-top:1px solid rgba(var(--red-rgb),.18);
  padding-top:.55rem;margin-top:.2rem;
}
.quote-done__summary .is-total dd{color:var(--red)}
.quote-done__next{
  margin:.35rem 0 .5rem;
  font-size:.875rem;
  color:var(--ink-mute);
  max-width:42ch;
}
@media (max-width:480px){
  .quote-done{padding:2rem 1.1rem 1.5rem}
  .quote-done__summary{font-size:.85rem;padding:.85rem .95rem}
}
