/* =================================================================
   SCIARRINO'S PIZZA — STYLESHEET
   Aesthetic: vintage East Coast boardwalk pizzeria, warm cream
   palette with forest green + tomato red + mustard gold accents.
   ================================================================= */

/* ----------------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  /* Brand palette */
  --green:        #0F5132;
  --green-dark:   #083820;
  --green-deep:   #062817;
  --red:          #C8312D;
  --red-dark:     #A02520;
  --cream:        #F5EBD6;
  --cream-light:  #FBF6E9;
  --cream-paper:  #EFE3C8;
  --gold:         #D4A23B;
  --gold-dark:    #A87A1F;
  --charcoal:     #1A1A1A;
  --charcoal-soft:#3D3D3D;
  --charcoal-mute:#6B6B6B;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Bevan', 'Georgia', serif;
  --font-body:    'Lora', 'Georgia', serif;
  --font-script:  'Caveat', cursive;

  /* Spacing scale (8pt-ish) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-wide: 1400px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-card: 0 4px 14px rgba(8, 56, 32, 0.10), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 14px 32px rgba(8, 56, 32, 0.16), 0 2px 6px rgba(0,0,0,0.08);
  --shadow-press: 0 2px 0 rgba(0,0,0,0.15);

  /* Motion */
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --speed: 240ms;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  /* Subtle paper grain — SVG noise overlay */
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07 0 0 0 0 0.05 0 0 0 0 0.03 0 0 0 0.045 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--speed) var(--ease); }
a:hover { color: var(--red); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; color: var(--charcoal); letter-spacing: -0.005em; }

::selection { background: var(--green); color: var(--cream-light); }

/* Skip link for accessibility (added via JS) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ----------------------------------------------------------------
   3. MARQUEE TOP STRIP
   ---------------------------------------------------------------- */
.marquee {
  background: var(--green-deep);
  color: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--gold);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 38s linear infinite;
  will-change: transform;
}

.marquee__group { padding-right: 2rem; white-space: nowrap; }

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ----------------------------------------------------------------
   4. NAV
   ---------------------------------------------------------------- */
.nav {
  background: var(--cream-light);
  border-bottom: 1px solid rgba(8, 56, 32, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__logo { flex-shrink: 0; line-height: 0; }
.nav__logo img { height: 56px; width: auto; transition: transform var(--speed) var(--ease); }
.nav__logo:hover img { transform: rotate(-3deg) scale(1.04); }

.nav__links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.25rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width var(--speed) var(--ease);
}
.nav__links a:hover { color: var(--red); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--red);
  color: var(--cream-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-press);
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--red-dark);
  color: var(--cream-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}
.nav__cta:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(0,0,0,0.15); }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----------------------------------------------------------------
   5. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) 1.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 40, 23, 0.55) 0%, rgba(6, 40, 23, 0.78) 100%),
    radial-gradient(ellipse at center, rgba(6, 40, 23, 0.0) 0%, rgba(6, 40, 23, 0.35) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  color: var(--cream-light);
}

.hero__eyebrow {
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  color: var(--cream-light);
  letter-spacing: -0.01em;
  margin: var(--space-2) 0 var(--space-3);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero__title-accent { color: var(--gold); display: inline-block; }

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto var(--space-4);
  color: rgba(251, 246, 233, 0.92);
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: var(--space-3);
}

/* ----------------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: var(--shadow-press);
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease), color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 5px 0 rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(0,0,0,0.15); }

.btn--primary       { background: var(--red);   color: var(--cream-light); }
.btn--primary:hover { background: var(--red-dark); color: var(--cream-light); }

.btn--secondary       { background: var(--cream-light); color: var(--green-dark); }
.btn--secondary:hover { background: var(--white); color: var(--green-dark); }

.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--green-dark);
  color: var(--cream-light);
  box-shadow: var(--shadow-press);
}

.btn--deal {
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.7rem 1.4rem;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.15;
  border: 2px solid var(--gold-dark);
}
.btn--deal:hover { background: #E5B14E; color: var(--charcoal); }
.btn__deal-label {
  font-family: var(--font-script);
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--red-dark);
}
.btn__deal-text { font-weight: 700; font-size: 0.95rem; }

/* ----------------------------------------------------------------
   7. SECTION SHARED STYLES
   ---------------------------------------------------------------- */
.section {
  padding: var(--space-7) 1.5rem;
  position: relative;
}
.section__header {
  max-width: var(--max-w);
  margin: 0 auto var(--space-5);
  text-align: center;
}
.section__eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--green-dark);
  margin-bottom: var(--space-2);
}
.section__lede {
  max-width: 540px;
  margin: 0 auto;
  color: var(--charcoal-soft);
  font-size: 1.08rem;
}

/* ----------------------------------------------------------------
   8. MENU SECTION
   ---------------------------------------------------------------- */
.menu { background: var(--cream-light); border-top: 1px solid rgba(8,56,32,0.08); border-bottom: 1px solid rgba(8,56,32,0.08); }

.menu__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(8,56,32,0.06);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.menu-card__image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-paper); }
.menu-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.menu-card:hover .menu-card__image img { transform: scale(1.06); }

.menu-card__body { padding: 1.25rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

.menu-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}

.menu-card__desc { color: var(--charcoal-soft); font-size: 0.97rem; line-height: 1.5; }
.menu-card__desc strong { color: var(--red); font-weight: 700; }

.menu__footer { text-align: center; margin-top: var(--space-5); }

/* ----------------------------------------------------------------
   9. STORY SECTION
   ---------------------------------------------------------------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.story__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  transform: rotate(-1.2deg);
  transition: transform var(--speed) var(--ease);
}
.story__image:hover { transform: rotate(-0.4deg); }
.story__image img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }

.story__tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  line-height: 1;
}

.story__content .section__title { text-align: left; }
.story__content p {
  margin-bottom: 1.1rem;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}
.story__sign {
  font-family: var(--font-script);
  font-size: 1.8rem !important;
  color: var(--green-dark) !important;
  margin-top: 1.5rem;
  line-height: 1 !important;
}

/* ----------------------------------------------------------------
   10. REVIEWS
   ---------------------------------------------------------------- */
.reviews {
  background:
    linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(8,56,32,0.08);
  border-bottom: 1px solid rgba(8,56,32,0.08);
}

.reviews__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review {
  background: var(--white);
  padding: 1.75rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--red);
  position: relative;
}

.review__stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.review p { color: var(--charcoal); font-style: italic; line-height: 1.6; margin-bottom: 0.9rem; font-size: 1rem; }
.review cite { font-style: normal; color: var(--charcoal-mute); font-weight: 600; font-size: 0.92rem; }

.reviews__note {
  max-width: var(--max-w);
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--charcoal-mute);
  font-style: italic;
}

/* ----------------------------------------------------------------
   11. HOURS + MAP
   ---------------------------------------------------------------- */
.hours {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: stretch;
}

.hours__info { padding-right: 1rem; }
.hours__info .section__title { text-align: left; }

.hours__row { margin-bottom: 1.75rem; }
.hours__row h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.hours__row p { color: var(--charcoal); font-size: 1.05rem; line-height: 1.6; }
.hours__row a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 4px; }
.hours__row a:hover { color: var(--red); }

.hours__closed {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.93rem;
  color: var(--charcoal-mute);
  font-style: italic;
}

.hours__ctas { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }

.hours__map {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(8,56,32,0.1);
}

/* ----------------------------------------------------------------
   12. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--green-deep);
  color: var(--cream-light);
  padding: var(--space-6) 1.5rem var(--space-3);
  border-top: 4px solid var(--gold);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(245, 235, 214, 0.18);
}

.footer__brand p {
  margin-top: 1rem;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.2;
}
.footer__logo { height: 72px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }

.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer__col p { font-size: 0.97rem; line-height: 1.75; }
.footer__col a { color: var(--cream-light); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease); }
.footer__col a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.footer__bottom {
  max-width: var(--max-w);
  margin: var(--space-3) auto 0;
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(245, 235, 214, 0.7);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom a { color: rgba(245, 235, 214, 0.85); }
.footer__bottom a:hover { color: var(--gold); }

/* ----------------------------------------------------------------
   13. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 540px; }
  .story { grid-template-columns: 1fr; gap: 2.5rem; }
  .story__image { transform: rotate(0); max-width: 480px; margin: 0 auto; }
  .hours { grid-template-columns: 1fr; gap: 2.5rem; }
  .hours__map { min-height: 320px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__inner { padding: 0.7rem 1rem; gap: 0.75rem; }
  .nav__logo img { height: 48px; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream-light);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem 1rem;
    gap: 0;
    border-bottom: 1px solid rgba(8,56,32,0.12);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.85rem 0; border-bottom: 1px solid rgba(8,56,32,0.08); text-align: center; }
  .nav__links a:last-child { border-bottom: 0; }

  .nav__cta { font-size: 0.78rem; padding: 0.6rem 0.9rem; letter-spacing: 0.06em; }
  .nav__burger { display: flex; }

  .section { padding: var(--space-6) 1.25rem; }
  .hero { padding: var(--space-5) 1.25rem; min-height: 70vh; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__subtitle { font-size: 1rem; }

  .menu__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 1.5rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 420px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hours__ctas { flex-direction: column; align-items: stretch; }
  .hours__ctas .btn { width: 100%; }
}

/* ----------------------------------------------------------------
   14. UTILITIES / ENTRY ANIMATION
   ---------------------------------------------------------------- */
.hero__eyebrow, .hero__title, .hero__subtitle, .hero__ctas {
  animation: fade-up 800ms var(--ease) both;
}
.hero__title    { animation-delay: 100ms; }
.hero__subtitle { animation-delay: 220ms; }
.hero__ctas     { animation-delay: 340ms; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* =================================================================
   INNER PAGE STYLES (Menu, Specials, Catering, About, Contact, Privacy)
   ================================================================= */

/* ----------------------------------------------------------------
   PAGE HERO — smaller than homepage hero
   ---------------------------------------------------------------- */
.page-hero {
  background: var(--green-deep);
  color: var(--cream-light);
  text-align: center;
  padding: var(--space-6) 1.5rem var(--space-5);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}
.page-hero--with-image {
  padding: 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero--with-image .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(1.05);
}
.page-hero--with-image .page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 40, 23, 0.65) 0%, rgba(6, 40, 23, 0.82) 100%);
  z-index: 1;
}
.page-hero--with-image .page-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-6) 1.5rem var(--space-5);
}

.page-hero__eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--cream-light);
  line-height: 1.05;
  margin-bottom: var(--space-2);
}
.page-hero__lede {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(251, 246, 233, 0.92);
  line-height: 1.55;
}

/* ----------------------------------------------------------------
   MENU CATEGORIES (menu.html)
   ---------------------------------------------------------------- */
.category-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(8,56,32,0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.category-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-paper); }
.category-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.category-card:hover .category-card__image img { transform: scale(1.05); }
.category-card__body { padding: 1.1rem 1.4rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.category-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.category-card__desc { color: var(--charcoal-soft); font-size: 0.93rem; line-height: 1.5; flex: 1; }
.category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  align-self: flex-start;
  padding-bottom: 2px;
}

.menu-callout {
  max-width: var(--max-w);
  margin: var(--space-5) auto 0;
  text-align: center;
  padding: var(--space-4) var(--space-3);
  background: var(--cream-light);
  border: 2px dashed var(--green);
  border-radius: var(--radius-lg);
}
.menu-callout h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.menu-callout p {
  color: var(--charcoal-soft);
  margin-bottom: 1.2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------------
   SPECIALS CARDS (specials.html)
   ---------------------------------------------------------------- */
.specials-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.special-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border-top: 5px solid var(--red);
  position: relative;
  display: flex;
  flex-direction: column;
}
.special-card.is-today {
  border-top-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold), var(--shadow-card-hover);
}
.special-card.is-today::before {
  content: 'Today';
  position: absolute;
  top: -14px;
  left: 1.75rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.2rem 1rem;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}
.special-card__day {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.special-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.special-card__desc { color: var(--charcoal-soft); margin-bottom: 1.2rem; line-height: 1.55; flex: 1; }
.special-card__code {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  background: var(--cream);
  color: var(--green-dark);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: 1px dashed var(--green);
}
.special-card__code small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal-mute); margin-bottom: 0.2rem; }
.special-card__none {
  display: inline-block;
  font-family: var(--font-script);
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

/* ----------------------------------------------------------------
   CATERING (catering.html)
   ---------------------------------------------------------------- */
.catering-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
}
.catering-intro p + p { margin-top: 1rem; }

.catering-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.catering-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(8,56,32,0.06);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.catering-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.catering-card__image { aspect-ratio: 1 / 1; overflow: hidden; }
.catering-card__image img { width: 100%; height: 100%; object-fit: cover; }
.catering-card__body { padding: 1.1rem 1.3rem 1.4rem; }
.catering-card__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.3rem; }
.catering-card__desc { color: var(--charcoal-soft); font-size: 0.94rem; line-height: 1.5; }

.catering-feature {
  max-width: var(--max-w);
  margin: var(--space-6) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.catering-feature__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}
.catering-feature__image img { width: 100%; height: auto; display: block; }
.catering-feature__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.catering-feature__content p { margin-bottom: 1rem; color: var(--charcoal-soft); line-height: 1.7; }
.catering-feature__content .btn { margin-top: 0.5rem; }

/* ----------------------------------------------------------------
   ABOUT (about.html)
   ---------------------------------------------------------------- */
.about-prose {
  max-width: 720px;
  margin: 0 auto;
}
.about-prose p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.about-prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.35rem 0.75rem 0 0;
  color: var(--red);
}
.about-prose h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--green-dark);
  margin: 2rem 0 0.8rem;
}
.about-prose .pull-quote {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--red);
  text-align: center;
  margin: 2rem 0;
  line-height: 1.2;
  padding: 1.5rem 1rem;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.about-feature-image {
  max-width: 580px;
  margin: var(--space-4) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}
.about-feature-image img { width: 100%; display: block; }

.about-facts {
  max-width: var(--max-w);
  margin: var(--space-5) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.about-fact { padding: 1.5rem 1rem; }
.about-fact__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-fact__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-dark);
}

/* ----------------------------------------------------------------
   CONTACT (contact.html)
   ---------------------------------------------------------------- */
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--green);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.contact-card p { color: var(--charcoal); line-height: 1.65; margin-bottom: 0.6rem; font-size: 1.02rem; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a { color: var(--green-dark); font-weight: 600; }
.contact-card a:hover { color: var(--red); }

.contact-map-full {
  max-width: var(--max-w);
  margin: var(--space-5) auto 0;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(8,56,32,0.1);
}
.contact-map-full iframe { width: 100%; height: 100%; border: 0; }

/* ----------------------------------------------------------------
   LEGAL / PRIVACY (privacy.html)
   ---------------------------------------------------------------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: 2.2rem 0 0.8rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal ul { color: var(--charcoal); line-height: 1.7; margin-bottom: 1rem; font-size: 1rem; }
.legal ul { padding-left: 1.5rem; }
.legal ul li { margin-bottom: 0.5rem; }
.legal .legal__meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(8, 56, 32, 0.18);
  font-size: 0.9rem;
  color: var(--charcoal-mute);
  font-style: italic;
}

/* ----------------------------------------------------------------
   RESPONSIVE OVERRIDES FOR INNER PAGES
   ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .catering-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid { grid-template-columns: 1fr; max-width: 540px; }
  .catering-feature { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; max-width: 540px; }
  .about-facts { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
  .category-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .catering-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* =================================================================
   FOLLOW US (homepage social CTA section)
   ================================================================= */
.follow {
  background:
    linear-gradient(135deg, rgba(8, 56, 32, 0.92) 0%, rgba(6, 40, 23, 0.95) 100%),
    var(--green-deep);
  color: var(--cream-light);
  padding: var(--space-6) 1.5rem;
  text-align: center;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.follow::before,
.follow::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 59, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.follow::before { top: -80px; left: -80px; }
.follow::after  { bottom: -80px; right: -80px; }

.follow__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.follow__eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.follow__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--cream-light);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.follow__lede {
  font-size: 1.1rem;
  color: rgba(245, 235, 214, 0.88);
  margin-bottom: var(--space-3);
  line-height: 1.55;
}

.follow__buttons {
  display: inline-flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  background: var(--cream-light);
  color: var(--green-deep);
  box-shadow: var(--shadow-press);
  transition: transform var(--speed) var(--ease),
              background var(--speed) var(--ease),
              color var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
  border: 0;
}

.follow-btn:hover {
  transform: translateY(-2px);
  color: var(--cream-light);
  box-shadow: 0 5px 0 rgba(0,0,0,0.22);
}
.follow-btn:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(0,0,0,0.18); }

.follow-btn--facebook:hover  { background: #1877F2; }
.follow-btn--instagram:hover { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }

.follow-btn__icon { width: 22px; height: 22px; flex-shrink: 0; fill: currentColor; }

@media (max-width: 420px) {
  .follow-btn { width: 100%; justify-content: center; }
  .follow__buttons { display: flex; }
}

/* =================================================================
   NAV — Dual CTA buttons (Text Pickup + Order Online)
   ================================================================= */
.nav__ctas {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav__cta--text {
  background: var(--green);
  color: var(--cream-light);
}
.nav__cta--text:hover {
  background: var(--green-dark);
  color: var(--cream-light);
}

/* On smaller screens, hide the secondary Text Pickup nav button
   (the hero already has it prominently) */
@media (max-width: 860px) {
  .nav__cta--text { display: none; }
}

/* =================================================================
   HERO — "Questions?" support text under main CTAs
   ================================================================= */
.hero__support {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(251, 246, 233, 0.88);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  animation: fade-up 800ms var(--ease) both;
  animation-delay: 460ms;
}

.hero__support-btn {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease);
}
.hero__support-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

@media (max-width: 540px) {
  .hero__support {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .hero__support-btn {
    display: inline-block;
    margin-top: 0.4rem;
    margin-left: 0;
  }
}

/* =================================================================
   MOBILE NAV OVERRIDES — both CTAs visible on phones
   ================================================================= */

/* Cancel the desktop-only rule that hid Text Pickup below 860px */
@media (max-width: 860px) {
  .nav__cta--text { display: inline-flex; }
}

/* Phone-sized layout: tighter logo, buttons, gaps so both fit */
@media (max-width: 720px) {
  .nav__inner { padding: 0.55rem 0.75rem; gap: 0.5rem; }
  .nav__logo img { height: 42px; }
  .nav__ctas { gap: 0.35rem; }
  .nav__cta {
    font-size: 0.7rem;
    padding: 0.55rem 0.7rem;
    letter-spacing: 0.04em;
  }
  .nav__burger { width: 36px; height: 36px; padding: 6px; }
}

/* Ultra-narrow phones (iPhone SE 1st gen, ~320px viewport) */
@media (max-width: 380px) {
  .nav__inner { padding: 0.5rem 0.5rem; gap: 0.35rem; }
  .nav__logo img { height: 36px; }
  .nav__ctas { gap: 0.3rem; }
  .nav__cta {
    font-size: 0.65rem;
    padding: 0.5rem 0.6rem;
    letter-spacing: 0.02em;
  }
}

/* =================================================================
   HERO SUPPORT TEXT — brighter for readability over busy background
   ================================================================= */
.hero__support {
  color: var(--cream-light);
  opacity: 1;
  font-weight: 600;
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.85),
    0 0 3px rgba(0, 0, 0, 0.6);
}

.hero__support-btn {
  color: var(--gold);
  font-weight: 700;
  text-shadow: none;
  background: rgba(8, 56, 32, 0.55);
  border-color: var(--gold);
  backdrop-filter: blur(2px);
}
.hero__support-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}
