:root {
  --palette-primary: #25592c;
  --palette-ink: #1c1c1a;
  --palette-surface: #f5f0e8;
  --palette-accent: #e9b949;
  --font-heading: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-body: ui-serif, Georgia, "Times New Roman", serif;
}


/* ── Base reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--palette-ink);
  background-color: var(--palette-surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── SiteNav ───────────────────────────────────────────────────── */
.site-nav {
  background-color: var(--palette-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 56px;
}
.site-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}
.site-nav__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--palette-surface);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav__brand:hover { color: var(--palette-accent); }
.site-nav__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}
.site-nav__link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--palette-surface);
  text-decoration: none;
  padding: 18px 0;            /* tall hit area without changing nav height */
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.site-nav__link:hover { color: var(--palette-accent); }
.site-nav__link--active {
  border-bottom-color: var(--palette-accent);
}
.site-nav__phone {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--palette-accent);
  text-decoration: none;
  padding: 8px 14px;
  border: 1.5px solid var(--palette-accent);
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.site-nav__phone:hover {
  background-color: var(--palette-accent);
  color: var(--palette-primary);
}

/* ── PizzaHeroSplit ────────────────────────────────────────────── */
.hero-split {
  background-color: var(--palette-primary);
  width: 100%;
  overflow: hidden;
}
.hero-split__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;          /* mobile: stack */
  gap: 0;
}
@media (min-width: 900px) {
  .hero-split__inner {
    grid-template-columns: 5fr 7fr;    /* desktop: text 42% / image 58% */
    align-items: stretch;
    min-height: 540px;
    padding-right: 0;                   /* let image bleed right */
  }
}
.hero-split__text {
  padding: 56px 0 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) {
  .hero-split__text { padding: 80px 56px 80px 24px; }
}
.hero-split__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--palette-surface);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0;                    /* NO negative letter-spacing */
}
.hero-split__trust {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.hero-split__trust-item {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--palette-accent);
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 0, 0.35);
}
.hero-split__trust-item:last-child {
  padding-right: 0;
  border-right: none;
}
.hero-split__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--palette-surface);
  max-width: 460px;
  margin-bottom: 28px;
  opacity: 0.92;
}
.hero-split__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-split__cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 4px;
  transition: transform 0.12s ease, background-color 0.12s ease, color 0.12s ease;
}
.hero-split__cta--primary {
  background-color: var(--palette-accent);
  color: var(--palette-primary);
}
.hero-split__cta--primary:hover {
  background-color: var(--palette-surface);
  transform: translateY(-1px);
}
.hero-split__cta--secondary {
  background-color: transparent;
  color: var(--palette-surface);
  border: 2px solid var(--palette-surface);
  padding: 12px 22px;                   /* compensate for border */
}
.hero-split__cta--secondary:hover {
  background-color: var(--palette-surface);
  color: var(--palette-primary);
}

.hero-split__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;                  /* mobile default */
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero-split__image-wrap {
    aspect-ratio: auto;
    min-height: 540px;
    /* Bleed right past the 1280px content max-width to the viewport
       edge — closes the green-band-on-right defect. */
    margin-right: calc(-1 * max(0px, (100vw - 1280px) / 2));
  }
}
.hero-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── MenuCardGrid ──────────────────────────────────────────────── */
.menu-grid {
  background-color: var(--palette-surface);
  padding: 64px 0;
}
.menu-grid__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.menu-grid__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.menu-grid__heading-block { display: flex; flex-direction: column; gap: 8px; }
.menu-grid__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--palette-primary);
  margin: 0;
}
.menu-grid__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--palette-ink);
  margin: 0;
}
.menu-grid__cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--palette-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--palette-accent);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.12s ease;
}
.menu-grid__cta:hover { color: var(--palette-ink); }

/* Responsive grid: 3 / 2 / 1 columns */
.menu-grid__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .menu-grid__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .menu-grid__cards { grid-template-columns: repeat(3, 1fr); }
}

/* The card itself — vertical stack only. NO horizontal flex row. */
.menu-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.menu-card__img-wrap {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}
/* Text-only cards (no source image of correct category): keep the
   card aligned to image-bearing siblings via a top accent strip + a
   little extra body padding, instead of leaving an empty 4:3 box. */
.menu-card--text-only {
  border-top: 4px solid var(--palette-accent);
}
.menu-card--text-only .menu-card__body {
  padding-top: 28px;
  padding-bottom: 28px;
}
.menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--palette-ink);
  margin: 0;
}
.menu-card__price {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--palette-primary);
  margin: 0;
  white-space: normal;          /* never clip price */
}
.menu-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--palette-ink);
  opacity: 0.8;
  margin: 4px 0 0 0;
}

/* ── Gallery ──────────────────────────────────────────────────── */
.gallery {
  background-color: var(--palette-surface);
  padding: 64px 0;
}
.gallery__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery__header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--palette-primary);
  margin: 0;
}
.gallery__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--palette-ink);
  margin: 0;
}

/* Responsive grid: 2 / 3 / 4 columns */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.gallery__cell {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);    /* placeholder while img loads */
  border-radius: 4px;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SiteFooter ───────────────────────────────────────────────── */
.site-footer {
  background-color: var(--palette-primary);
  color: var(--palette-surface);
  padding: 48px 0 32px;
  margin-top: 0;
}
.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.site-footer__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--palette-surface);
  margin: 0;
}
.site-footer__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer__row {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.92;
}
.site-footer__phone-link {
  color: var(--palette-accent);
  text-decoration: none;
  font-weight: 700;
}
.site-footer__phone-link:hover { text-decoration: underline; }
.site-footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  margin: 12px 0 0 0;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* ── Motion library ──────────────────────────────────────── */

.ken-burns {
  animation: kb-slow 18s ease-out infinite alternate;
  transform-origin: center center;
}
@keyframes kb-slow {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .ken-burns { animation: none; transform: none; }
}

.scroll-reveal { transition: opacity 0.5s ease, transform 0.5s ease; }
.scroll-reveal.fade-from-below { opacity: 0; transform: translateY(16px); }
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal, .scroll-reveal.fade-from-below {
    transition: none; opacity: 1; transform: none;
  }
}

.zoom-on-hover { overflow: hidden; }
.zoom-on-hover img {
  transition: transform 0.45s ease;
  will-change: transform;
}
.zoom-on-hover:hover img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .zoom-on-hover img, .zoom-on-hover:hover img {
    transition: none; transform: none;
  }
}
