/* ============================================
   PEACE WOOD FIRED PIZZA - Conversion-Optimized CSS
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --red: #d62828;
  --red-dark: #a31d1d;
  --red-light: #ff4d4d;
  --gold: #f4a226;
  --gold-dark: #d48b1a;
  --cream: #fff8f0;
  --charcoal: #1a1a1a;
  --gray-dark: #333;
  --gray-mid: #666;
  --gray-light: #999;
  --gray-bg: #f5f5f5;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: .25s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}
button { cursor: pointer; }
html { -webkit-tap-highlight-color: rgba(214,40,40,.2); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }

/* --- Layout --- */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section { padding: 80px 0; }
.section-compact { padding: 48px 0; }
.section-sm { padding: 36px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* --- Buttons (Conversion-Optimized) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(214,40,40,.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(214,40,40,.45);
}
.btn-secondary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 15px rgba(244,162,38,.3);
}
.btn-secondary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(244,162,38,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-lg { padding: 18px 42px; font-size: 1.15rem; }
.btn-sm { padding: 10px 22px; font-size: .9rem; }

/* Pulse animation for primary CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(214,40,40,.35); }
  50% { box-shadow: 0 4px 30px rgba(214,40,40,.6); }
}
.btn-pulse { animation: pulse-glow 2s ease-in-out infinite; }
.btn-pulse:hover { animation: none; }

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all .3s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  transition: padding .3s ease;
}
.header.scrolled .nav-inner { padding: 8px 0; }

.logo img {
  height: 60px;
  width: auto;
  transition: height .3s ease;
}
.header.scrolled .logo img { height: 45px; }

/* Compact header - smaller logo above fold */
.header-compact .logo img { height: 42px; }
.header-compact .nav-inner { padding: 10px 0; }
.header-compact.scrolled .logo img { height: 36px; }
.header-compact.scrolled .nav-inner { padding: 6px 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--white);
  padding: 8px 16px;
  font-size: .92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  box-shadow: 0 2px 10px rgba(214,40,40,.3);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); }

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.65) 100%);
}

/* Hero with background slider */
.hero-slider { min-height: 85vh; }
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.6) 100%);
  z-index: 2;
}
.hero-slider .hero-content { z-index: 3; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero .subtitle {
  color: rgba(255,255,255,.9);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Badge above hero heading */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 28px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: .8px;
}

/* --- PAGE HERO (shorter, for subpages) --- */
.page-hero {
  position: relative;
  padding: 140px 0 70px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.7) 100%);
  z-index: -1;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 8px;
}
.page-hero p {
  color: rgba(255,255,255,.9);
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  margin: 0;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; }

/* --- FEATURES / SERVICE CARDS --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.card-icon svg { color: var(--red); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--gray-mid); font-size: .95rem; }

/* --- IMAGE + TEXT SECTIONS --- */
.content-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-label {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* --- MENU SECTION --- */
.menu-banner {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  border: 2px dashed var(--gold);
}
.menu-banner h3 { margin-bottom: 8px; }
.menu-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-heading);
}
.menu-note {
  color: var(--gray-mid);
  font-size: .95rem;
  margin: 12px 0 24px;
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s ease;
}
.gallery-item:hover::after { background: rgba(0,0,0,.15); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  background: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.15); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  background: rgba(255,255,255,.1);
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- REVIEWS / SOCIAL PROOF --- */
.reviews-section { background: var(--cream); padding: 64px 0 80px; }
.review-header { text-align: center; margin-bottom: 44px; }
.review-header .section-label { margin-bottom: 12px; display: block; }
.review-header h2 { margin-bottom: 16px; }
.review-stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 4px; margin-bottom: 12px; }
.review-summary { color: var(--gray-mid); font-size: .95rem; margin-bottom: 0; }
.review-cta-wrap { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.review-social-links { margin: 0; font-size: .9rem; }
.review-social-links a { color: var(--red); font-weight: 600; }
.review-social-links a:hover { text-decoration: underline; }
.review-social-links span { margin: 0 10px; color: var(--gray-light); }
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-size: 3.5rem;
  font-family: var(--font-heading);
  color: var(--red);
  opacity: .15;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.review-text {
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 18px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  padding-right: 8px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.review-meta strong { display: block; font-size: .95rem; }
.review-meta span { color: var(--gray-light); font-size: .82rem; }
.review-avatar-img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author .review-avatar { flex-shrink: 0; }

/* --- CONTACT / FORMS --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--gray-dark);
}
.form-group label .required { color: var(--red); }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 16px; /* prevents zoom on focus (iOS) */
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214,40,40,.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.contact-detail a { color: var(--white); }
.contact-detail a:hover { color: var(--gold); }

/* Social links */
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* --- EVENT TYPES GRID --- */
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-card-img {
  height: 200px;
  overflow: hidden;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.05); }
.event-card-body { padding: 24px; }
.event-card-body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.event-card-body p { color: var(--gray-mid); font-size: .9rem; margin-bottom: 0; }

/* --- PROCESS / STEPS --- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.step-num {
  counter-increment: step;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-heading);
}
.step-content h4 { margin-bottom: 6px; }
.step-content p { color: var(--gray-mid); margin-bottom: 0; }

/* --- STICKY CTA BAR (Mobile) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  z-index: 900;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sticky-cta .btn-call {
  padding: 12px 16px;
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  flex-shrink: 0;
}
.sticky-cta .btn-call:hover { background: var(--red); color: var(--white); }
.sticky-cta .btn:last-child { flex: 1; max-width: 200px; min-width: 140px; }
.sticky-cta .btn { min-height: 48px; } /* touch target */

/* --- FOOTER --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 30px;
}
.footer-brand p { margin-top: 12px; font-size: .9rem; line-height: 1.6; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .9rem; }
.footer-links-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.footer-find-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: color var(--transition), transform var(--transition);
}
.footer-social-icon:hover { opacity: 1; transform: translateY(-1px); }
.footer-social-icon svg,
.footer-social-icon img { display: block; }
.footer-social-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer-social-icon:hover img { opacity: 1; }
.social-link img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--transition);
}
.social-link:hover img { opacity: 1; }
.footer-location-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font-size: .9rem;
  padding: 0;
  margin-top: 12px;
  text-decoration: underline;
  font-family: inherit;
  transition: color var(--transition);
}
.footer-location-btn:hover { color: var(--white); }
.footer-location-list {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: max-height .3s ease;
  margin-top: 0;
}
.footer-location-list.expanded {
  max-height: 420px;
  margin-top: 12px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- URGENCY BANNER --- */
.urgency-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 600;
}
.urgency-banner a { color: var(--white); text-decoration: underline; }

/* --- FORM SUCCESS STATE --- */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success svg { color: #22c55e; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--gray-mid); }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-compact { padding: 36px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; min-width: 44px; min-height: 44px; padding: 12px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .hero { min-height: 85vh; }
  .hero-slide:nth-child(1) { background-image: url('https://img1.wsimg.com/isteam/ip/46daa837-4685-418b-a98e-c0ca6cf56989/team%20photo.jpg/:/rs=w:768,m') !important; }
  .hero-slide:nth-child(2) { background-image: url('https://img1.wsimg.com/isteam/ip/46daa837-4685-418b-a98e-c0ca6cf56989/Peace%20pizza%20truck%20photo.JPG/:/rs=w:768,m') !important; }
  .hero-slide:nth-child(3) { background-image: url('https://img1.wsimg.com/isteam/ip/46daa837-4685-418b-a98e-c0ca6cf56989/pizza8.JPG/:/rs=w:768,m') !important; }
  .hero-slide:nth-child(4) { background-image: url('https://img1.wsimg.com/isteam/ip/46daa837-4685-418b-a98e-c0ca6cf56989/marg.jpg/:/rs=w:768,m') !important; }
  .trust-items { gap: 20px; }
  .review-card { padding: 24px; }
  .menu-banner { padding: 28px 20px; }
  .contact-info-card { padding: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .page-hero { padding: 100px 0 50px; }
}

@media (max-width: 480px) {
  .container { width: 94%; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; min-height: 48px; padding: 16px 24px; }
  .trust-items { flex-direction: column; gap: 12px; }
  .trust-item { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .footer-links-cols { grid-template-columns: 1fr; }
  .footer-location-btn, .footer a, .footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
  .page-hero { padding: 80px 0 40px; }
}

/* --- Subpage specific --- */
.story-letter {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  font-style: italic;
  line-height: 1.9;
  border-left: 4px solid var(--red);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) {
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
}
.ingredient-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ingredient-item span { font-size: 2.5rem; display: block; margin-bottom: 12px; }

/* Dough page */
.dough-process { background: var(--cream); }
.dough-fact {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.dough-fact span,
.dough-fact .dough-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.dough-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 2rem; color: var(--gray); }
.content-grid { display: grid; gap: 2rem; }
@media (min-width: 769px) {
  .content-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* Private events timeline */
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 4px;
  position: relative;
}
.timeline-dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 44px;
  background: #e0e0e0;
  transform: translateX(-50%);
}
.timeline-item:last-child .timeline-dot::after { display: none; }

/* --- TIMELINE SLIDER (Our Journey) --- */
.timeline-slider {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}
.timeline-track {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
}
.timeline-node {
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  padding: 24px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--red);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}
.timeline-text { font-size: .9rem; color: var(--gray-mid); line-height: 1.6; }

/* --- REVIEWS SLIDER / CAROUSEL (auto-scroll) --- */
.reviews-slider {
  overflow: hidden;
  position: relative;
  margin: 0 -16px;
  padding: 8px 0 24px;
}
.reviews-carousel {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 24px;
  padding: 12px 16px;
  width: max-content;
  will-change: transform;
  animation: reviewsScroll 70s linear infinite;
  animation-delay: 0s;
}
.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}
.reviews-section .review-card {
  flex: 0 0 340px;
  min-width: 320px;
}
@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- VIDEO PLACEHOLDER --- */
.video-placeholder {
  max-width: 560px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  padding: 40px;
  transition: color var(--transition);
}
.video-link:hover { color: var(--gold); }
.video-link svg { opacity: .9; }

/* --- MENU PDF --- */
.menu-inline-viewer {
  max-width: 720px;
  margin: 0 auto;
}
.menu-inline-viewer iframe {
  width: 100%;
  min-height: 400px;
}
@media (max-width: 768px) {
  .menu-inline-viewer iframe { height: 420px; }
}
.menu-page-section { padding: 36px 0 48px; }
.menu-pdf-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.menu-pdf-iframe {
  display: block;
  width: 100%;
  height: min(85vh, 880px);
  border: 0;
  border-radius: var(--radius-md);
}
.menu-pdf-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .menu-pdf-iframe { height: 70vh; min-height: 450px; }
  .menu-pdf-actions { margin-top: 16px; }
}

/* --- MENU LIST --- */
.menu-list-section { padding: 36px 0 24px; }
.menu-list {
  max-width: 720px;
  margin: 0 auto;
}
.menu-category {
  margin-bottom: 36px;
}
.menu-category:last-of-type { margin-bottom: 0; }
.menu-category-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cream);
}
.menu-category-intro {
  font-size: 0.95rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.menu-item-block {
  margin-bottom: 20px;
}
.menu-item-block:last-child { margin-bottom: 0; }
.menu-item-name {
  display: block;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin: 0;
  line-height: 1.5;
  padding-left: 12px;
}
.menu-items-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.menu-items-grid .menu-item-block {
  flex: 0 0 calc(33.333% - 16px);
  margin-bottom: 0;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
@media (max-width: 768px) {
  .menu-items-grid .menu-item-block { flex: 0 0 calc(50% - 12px); }
}
.menu-items-grid .menu-item-name { margin-bottom: 0; }
.menu-notes {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}
.menu-notes p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.menu-notes p:last-child { margin-bottom: 0; }
@media (max-width: 500px) {
  .menu-items-grid .menu-item-block { flex: 0 0 100%; }
}

/* --- MENU SAMPLE (legacy) --- */
.menu-sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: .95rem;
}
.menu-item strong { color: var(--charcoal); }
.menu-item span { color: var(--red); font-weight: 700; }

/* --- MODAL --- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  cursor: pointer;
}
.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.8rem;
  background: none;
  color: var(--gray-mid);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.modal-close:hover { color: var(--charcoal); }
.modal-content h2 { margin-bottom: 8px; }

/* --- PAGE CTA (Event Request) --- */
.page-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}
.page-cta-title {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 8px;
}
.page-cta-text {
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.page-cta-meta {
  margin-top: 20px;
  font-size: .95rem;
}
.page-cta-meta a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
}
.page-cta-meta a:hover { color: var(--white); }

/* Page CTA form - inline booking form for conversion */
.page-cta-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.page-cta-form-wrap .page-cta-title { text-align: center; margin-bottom: 8px; }
.page-cta-form-wrap .page-cta-text { text-align: center; margin-bottom: 24px; }
.page-cta-form .form-group { margin-bottom: 16px; }
.page-cta-form .form-group label { color: rgba(255,255,255,.95); }
.page-cta-form .form-control {
  background: var(--white);
  border-color: rgba(255,255,255,.4);
}
.page-cta-form .form-control::placeholder { color: var(--gray-light); }
.page-cta-form .form-control:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}
.page-cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.page-cta-form .form-group-full { grid-column: 1 / -1; }
.page-cta-form .form-group-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}
.page-cta-form .page-cta-meta { text-align: center; margin-top: 16px; margin-bottom: 0; }
.page-cta-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.page-cta-success.show { display: block; }
.page-cta-success h3 { color: var(--white); margin-bottom: 8px; }
.page-cta-success p { color: rgba(255,255,255,.9); margin: 0; }
@media (max-width: 600px) {
  .page-cta-form-grid { grid-template-columns: 1fr; }
}

