/* ===== SPUDLY DONUTS — MP System Clone Layout ===== */
/* Reference: mpsystempack.com — light grey body, dark hero, clean industrial grid */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --color-red: #C41E3A;
  --color-red-dark: #9B1730;
  --color-red-light: rgba(196, 30, 58, 0.1);
  --color-cream: #FFF8F0;
  --color-white: #FFFFFF;
  --color-grey-body: #E8E8E8;
  --color-grey-light: #F0F0F0;
  --color-charcoal: #1A1A1A;
  --color-dark: #111111;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-gold: #D4A853;
  --color-border: #D0D0D0;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --radius: 8px;
  --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-grey-body);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAV (MP System style — transparent fixed, minimal) ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2.5rem;
  transition: all var(--transition);
}

.site-nav.scrolled {
  background: rgba(232, 232, 232, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 2.5rem;
}

/* When scrolled onto light sections, nav text goes dark */
.site-nav.scrolled .nav-links a {
  color: rgba(0, 0, 0, 0.55);
}
.site-nav.scrolled .nav-links a:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}
.site-nav.scrolled .nav-pill {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
}
.site-nav.scrolled .nav-toggle span {
  background: var(--color-charcoal);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — octagon-shaped icon with border, rotates on scroll */
.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  width: 90px;
  height: 90px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  background: rgba(196, 30, 58, 0.2);
  padding: 2px;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  object-fit: cover;
  transition: transform 0.1s linear;
}

/* Frosted glass pill containing nav links (MP System exact style) */
.nav-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 0.3rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-order-cta { display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 0.55rem 1.5rem;
  background: var(--color-red);
  border: none;
  border-radius: 100px;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-cta:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

/* Red button stays red when nav is scrolled */
.site-nav.scrolled .nav-cta {
  color: var(--color-white);
  background: var(--color-red);
}
.site-nav.scrolled .nav-cta:hover {
  background: var(--color-red-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

.site-nav.light-mode .nav-toggle span { background: var(--color-charcoal); }

/* ===== HERO (MP System — dark, full-bleed, text bottom-left, wordmark bottom-right) ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  background: var(--color-dark);
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 3.5rem 4rem;
  max-width: 750px;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-desc {
  max-width: 380px;
}

.hero-desc p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Wordmark bottom-right like MP System "MPSystem" */
.hero-wordmark {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 2;
}

.hero-wordmark-logo {
  width: 160px;
  height: auto;
  border-radius: 8px;
}

/* ===== BUTTONS (MP System — minimal, outline or filled) ===== */
.btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
  border-color: rgba(0, 0, 0, 0.5);
}

.btn-arrow::after {
  content: ' \2192';
}

/* ===== SECTION SPACING ===== */
.section {
  padding: 3rem 0;
}

.section-spacer {
  height: 80px;
}

/* ===== STATS / MAP SECTION (MP System "Trusted across borders") ===== */
.stats-section {
  background: var(--color-grey-body);
  padding: 2.5rem 0 1.5rem;
}

.stats-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.stats-heading h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.stat-item {}

.stat-number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-suffix {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--color-red);
  font-weight: 700;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

/* Location pills under stats */
.location-pills {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.location-pill {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.35rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
}

/* ===== SECTION HEADERS (MP System — small label + big heading) ===== */
.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 550px;
  line-height: 1.6;
}

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== PRODUCT CATEGORIES (MP System — label + icon + 3-col grid) ===== */
.category-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-icon {
  width: 32px;
  height: 32px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

.category-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

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

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-grey-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

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

.product-card-body {
  padding: 1rem 1.25rem;
}

.product-card-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.product-card-body p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.product-card-body .price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-red);
  margin-top: 0.5rem;
}

/* ===== FULL-WIDTH SECTION HEADER (MP System "Quality. No compromise.") ===== */
.full-heading-section {
  padding: 2.5rem 0 1rem;
  text-align: center;
}

.full-heading-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.full-heading-section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.full-heading-section .subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

/* ===== OCTAGON BOX FEATURE (MP System "State of the art equipment" style) ===== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2.5rem 0;
}

.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  border-radius: var(--radius);
}

.feature-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.feature-text h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-red);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== WHY CHOOSE (MP System — right-aligned cards with red icons) ===== */
.benefits-section {
  padding: 5rem 0;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--color-red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-red);
  fill: none;
}

.benefit-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.benefit-content h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.benefit-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== IMAGE BREAK (full-width, no padding) ===== */
.image-break {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

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

/* ===== HOW IT WORKS (3-step minimal) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-card {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== FAQ (clean, minimal accordion) ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  list-style: none;
  transition: color var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-red);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--color-red); }

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== CONTACT SECTION (MP System — white bg, 3-column) ===== */
.contact-section {
  background: var(--color-white);
  padding: 2.5rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.contact-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.contact-social {
  margin-bottom: 2rem;
}

.contact-social-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.contact-social a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.contact-locations {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-location {}

.location-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.contact-location strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.4;
}

/* Contact form (MP System style — underline inputs) */
.contact-form-wrap {
  background: var(--color-grey-light);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.mp-form {}

.mp-form-group {
  margin-bottom: 1.25rem;
}

.mp-form-group input,
.mp-form-group textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text);
  transition: border-color var(--transition);
  outline: none;
}

.mp-form-group input::placeholder,
.mp-form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.mp-form-group input:focus,
.mp-form-group textarea:focus {
  border-bottom-color: var(--color-red);
}

.mp-form-group textarea {
  resize: vertical;
  min-height: 60px;
}

.mp-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mp-send-btn:hover { color: var(--color-red); }
.mp-send-btn .arrow { font-size: 1.3rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-dark);
}

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

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 4rem;
}

.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.page-hero-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
}

/* ===== MENU GRID (same as product grid) ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.menu-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.menu-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.menu-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-grey-light);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

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

.menu-card-body { padding: 1rem 1.25rem; }

.menu-card-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.menu-card-body p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.menu-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-red);
}

.menu-tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

/* ===== ABOUT TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-red);
  transform: translateX(-5px);
}

.timeline-year {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: 0.4rem;
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== CATERING CARDS ===== */
.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.catering-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.catering-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}

.catering-card.featured {
  border-color: var(--color-red);
  border-width: 2px;
}

.catering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.catering-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.catering-card .catering-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.catering-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.catering-card ul li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.catering-card ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--color-red);
  border-radius: 50%;
  margin-right: 0.75rem;
  vertical-align: middle;
}

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-red);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== LOCATIONS GRID ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.location-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(20px);
}

.location-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.location-map { width: 100%; height: 220px; border: none; }

.location-info { padding: 1.5rem; }

.location-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.location-info p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.location-info .btn { margin-top: 1rem; }

/* ===== DONUT HOLES FEATURE ===== */
.donut-holes-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.dh-option {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dh-option h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.35rem;
}

.dh-option p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.dh-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-red);
}

@media (max-width: 600px) {
  .donut-holes-options { grid-template-columns: 1fr; }
}

/* ===== 3-COLUMN CTA (Order / Lindon / Lehi — MP System contact style) ===== */
.cta-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.cta-col {}

.cta-col-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-col-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.cta-col-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-col-address {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.cta-col-hours {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ===== FAMILY PHOTO GALLERY ===== */
.family-gallery {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1rem;
  min-height: 400px;
}

.family-photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

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

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.breadcrumb a { text-decoration: underline; }
.breadcrumb a:hover { color: var(--color-red); }

/* ===== FOOTER (MP System — thin dark strip at very bottom) ===== */
.site-footer {
  background: var(--color-charcoal);
  padding: 1rem 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-nav a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-copy {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-credit {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-credit a:hover { color: var(--color-gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-pill { display: none; }
  .nav-right { display: none; }
  .nav-logo { width: 70px; height: 70px; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; }

  .nav-pill:has(.nav-links.active),
  .nav-pill.mobile-open {
    display: block !important;
    position: absolute;
    top: 75px;
    left: 1rem;
    right: 1rem;
    background: rgba(30, 30, 30, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }

  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }

  .nav-links.active a {
    padding: 1rem 1.15rem;
    border-radius: 10px;
    text-transform: none;
    font-size: 1rem;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.active a:last-child:not(.mobile-order-cta) {
    border-bottom: none;
  }

  .nav-links.active a:hover,
  .site-nav.scrolled .nav-links.active a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
  }

  /* Override scrolled dark text inside mobile menu */
  .site-nav.scrolled .nav-links.active a {
    color: #fff !important;
  }

  /* Override scrolled pill background for mobile menu */
  .site-nav.scrolled .nav-pill.mobile-open,
  .site-nav.scrolled .nav-pill:has(.nav-links.active) {
    background: rgba(30, 30, 30, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.1) !important;
  }

  .nav-links.active .mobile-order-cta {
    display: block !important;
    background: var(--color-red);
    color: var(--color-white) !important;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.5rem;
    padding: 1rem;
    border-bottom: none;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .nav-links.active .mobile-order-cta:hover {
    background: var(--color-red-dark);
  }

  .hero-content { padding: 0 2rem 4rem; }
  .hero h1 { font-size: clamp(2.25rem, 7vw, 3rem); }
  .hero-wordmark { display: none; }
  .page-hero-content { padding: 0 2rem 3rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-split { grid-template-columns: 1fr; gap: 2rem; }
  .feature-split.reverse { direction: ltr; }
  .benefits-layout { grid-template-columns: 1fr; gap: 2rem; }
  .catering-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .cta-three-col { grid-template-columns: 1fr; gap: 2rem; }
  .family-gallery { grid-template-columns: 1fr; min-height: auto; }
  .footer-container { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-left { flex-direction: column; gap: 0.5rem; }
  .footer-nav { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 2rem 0; }
  .image-break { height: 220px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
