:root {
  --green: #073f24;
  --green-mid: #0d5834;
  --red: #8b2024;
  --red-dark: #68171b;
  --cream: #f6f0e4;
  --paper: #fffcf6;
  --ink: #17221b;
  --muted: #5f665f;
  --line: #dcd6ca;
  --white: #fff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link:focus { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 12px 16px; color: white; background: var(--red); }

.announcement { display: grid; place-items: center; min-height: 34px; padding: 6px 20px; color: #efe9dd; background: var(--green); font-size: 12px; letter-spacing: .04em; }
.announcement p { margin: 0; }
.announcement span { margin: 0 8px; opacity: .5; }
.announcement a { font-weight: 700; }

.site-header { position: sticky; z-index: 50; top: 0; display: flex; align-items: center; gap: 30px; min-height: 82px; padding: 10px max(24px, calc((100vw - var(--max)) / 2)); background: rgba(255,252,246,.95); border-bottom: 1px solid rgba(23,34,27,.1); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; color: var(--green); font-family: var(--serif); font-size: 23px; font-style: italic; font-weight: 700; text-decoration: none; white-space: nowrap; }
.brand img { width: 56px; height: 56px; border-radius: 12px; background: var(--green); object-fit: contain; padding: 2px; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; font-size: 14px; font-weight: 600; text-decoration: none; }
.site-nav a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--green); transition: .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 14px 22px; border: 1px solid transparent; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-red { color: white; background: var(--red); }
.button-red:hover { background: var(--red-dark); }
.button-light { color: white; border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.button-light:hover { color: var(--green); background: white; }
.button-green { color: white; background: var(--green); }
.button-green:hover { background: var(--green-mid); }
.button-cream { color: var(--green); background: var(--cream); }
.button-cream:hover { background: white; }

.hero { position: relative; min-height: calc(100vh - 116px); display: grid; align-items: center; overflow: hidden; background: #0b2317; }
.hero-image, .hero-shade { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-image { object-position: center 55%; filter: saturate(.85); animation: hero-in 1.4s ease both; }
.hero-shade { background: linear-gradient(90deg, rgba(4,30,17,.94) 0%, rgba(4,30,17,.72) 46%, rgba(4,30,17,.18) 80%), linear-gradient(0deg, rgba(0,0,0,.36), transparent 55%); }
.hero-content { position: relative; z-index: 1; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 100px 0 130px; color: white; }
.kicker { margin: 0 0 18px; color: #e7ded0; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.kicker::before { display: inline-block; width: 32px; height: 1px; margin: 0 12px 4px 0; background: currentColor; content: ""; }
.kicker.green { color: var(--green-mid); }
.kicker.cream { color: #e8deca; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(58px, 7.4vw, 106px); line-height: .94; letter-spacing: -.045em; }
h1 em { color: #e8d4b5; font-weight: 600; }
.hero-copy { max-width: 620px; margin-bottom: 34px; color: rgba(255,255,255,.83); font-size: clamp(16px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.address-card { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 0; display: flex; align-items: center; gap: 18px; min-width: 340px; padding: 22px 24px; color: white; background: var(--red); text-decoration: none; }
.address-card .address-icon { font-size: 24px; }
.address-card small, .address-card strong { display: block; }
.address-card small { margin-bottom: 4px; color: rgba(255,255,255,.68); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.address-card strong { font-family: var(--serif); font-size: 19px; }
.address-card > :last-child { margin-left: auto; }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(48px, 10vw, 140px); }
h2 { margin-bottom: 0; font-size: clamp(40px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -.035em; }
.intro-detail p { margin-bottom: 24px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.text-link { display: inline-flex; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--green); font-weight: 700; text-decoration: none; }

.favorites { padding-top: 20px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-heading > p { max-width: 410px; margin: 0 0 8px; color: var(--muted); line-height: 1.65; }
.dish-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 300px 300px; gap: 20px; }
.dish-card { position: relative; overflow: hidden; background: var(--green); }
.dish-card-tall { grid-row: 1 / 3; }
.dish-card img { height: 100%; object-fit: cover; transition: transform .55s ease; }
.dish-card:hover img { transform: scale(1.035); }
.dish-card::after { position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.82)); content: ""; }
.dish-label { position: absolute; z-index: 1; right: 28px; bottom: 24px; left: 28px; color: white; }
.dish-label span { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.dish-label h3 { margin: 6px 0 0; font-size: clamp(26px, 3vw, 40px); }
.centered { display: flex; justify-content: center; padding-top: 38px; }

.family-section { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 640px; background: var(--green); }
.family-photo { min-height: 500px; overflow: hidden; }
.family-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.family-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(60px, 8vw, 120px); color: white; }
.family-copy h2 { margin-bottom: 24px; }
.family-copy > p:not(.kicker) { margin-bottom: 32px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.75; }

.gallery { padding-bottom: 20px; }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-auto-rows: 260px; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { min-width: 0; margin: 0; overflow: hidden; background: var(--cream); }
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item:nth-child(1) img { object-position: center 60%; }
.gallery-item:nth-child(5) img { object-position: center 65%; }

.visit-heading { margin-bottom: 50px; }
.visit-grid { display: grid; grid-template-columns: 1.35fr .75fr .9fr; align-items: stretch; border: 1px solid var(--line); background: white; }
.visit-photo img { display: block; width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.visit-details { padding: 44px 36px; border-right: 1px solid var(--line); }
.detail-block { display: flex; gap: 18px; padding-bottom: 34px; }
.detail-block + .detail-block { padding-top: 34px; border-top: 1px solid var(--line); }
.detail-block:last-child { padding-bottom: 0; }
.detail-icon { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; color: white; background: var(--red); font-size: 20px; }
.detail-block h3, .hours h3 { margin-bottom: 12px; font-size: 25px; }
.detail-block p { color: var(--muted); line-height: 1.7; }
.detail-block p a { text-decoration: none; }
.hours { padding: 44px 36px; }
.hours dl { margin: 18px 0 0; }
.hours dl div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; font-weight: 600; text-align: right; }

.order-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 70px max(24px, calc((100vw - var(--max)) / 2)); color: white; background: var(--red); }
.order-band h2 { max-width: 730px; font-size: clamp(38px, 5vw, 64px); }
.order-band .button { flex: 0 0 auto; }

footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px 30px; padding: 55px max(24px, calc((100vw - var(--max)) / 2)); color: rgba(255,255,255,.68); background: #052c19; font-size: 13px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: white; font-family: var(--serif); font-size: 24px; font-style: italic; font-weight: 700; text-decoration: none; }
.footer-brand img { width: 54px; height: 54px; border-radius: 12px; background: var(--green); object-fit: contain; padding: 2px; }
footer p { margin: 0; }
.copyright { grid-column: 2; }
.mobile-order { display: none; }

/* Menu page */
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-hero { overflow: hidden; color: white; background: var(--green); }
.menu-hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; width: min(1440px, 100%); min-height: 560px; margin: 0 auto; }
.menu-hero-inner > div { display: flex; flex-direction: column; justify-content: center; padding: 90px max(36px, calc((100vw - var(--max)) / 2)); padding-right: clamp(44px, 7vw, 100px); }
.menu-hero h1 { margin: 0 0 24px; font-size: clamp(72px, 9vw, 128px); }
.menu-hero p:not(.kicker) { max-width: 590px; margin: 0; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.7; }
.menu-hero img { height: 100%; min-height: 560px; object-fit: cover; }
.menu-jump { position: sticky; z-index: 40; top: 82px; padding: 0 24px; border-block: 1px solid var(--line); background: rgba(255,252,246,.96); backdrop-filter: blur(12px); }
.menu-jump > div { display: flex; gap: 8px; width: min(var(--max), 100%); margin: 0 auto; padding: 12px 0; overflow-x: auto; scrollbar-width: none; }
.menu-jump > div::-webkit-scrollbar { display: none; }
.menu-jump a { flex: 0 0 auto; padding: 9px 14px; color: var(--green); border: 1px solid var(--line); background: white; font-size: 12px; font-weight: 700; text-decoration: none; }
.menu-jump a:hover { color: white; border-color: var(--red); background: var(--red); }
.menu-content { padding-top: 90px; }
.menu-title-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.menu-title-row h2 { max-width: 760px; }
.menu-section-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: start; }
.menu-category { scroll-margin-top: 170px; padding: 34px; border: 1px solid var(--line); background: white; }
.menu-category-wide { grid-column: 1 / -1; }
.menu-category h3 { padding-bottom: 18px; margin-bottom: 18px; color: var(--green); border-bottom: 2px solid var(--green); font-size: clamp(30px, 3.2vw, 44px); }
.menu-category h4 { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 28px 0 10px; color: var(--red); font-family: var(--serif); font-size: 22px; }
.menu-category h4 small { color: var(--muted); font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.category-note { margin-bottom: 18px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.menu-list { padding: 0; margin: 0; list-style: none; }
.menu-list-columns { columns: 2; column-gap: 44px; }
.menu-list li { display: flex; break-inside: avoid; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px dotted #c8c1b6; }
.menu-list li > span { min-width: 0; font-weight: 700; }
.menu-list li > span small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 400; line-height: 1.4; }
.menu-list li > strong { margin-left: auto; color: var(--red); font-size: 13px; white-space: nowrap; }
.menu-list.compact li { padding-block: 8px; }
.menu-note { display: flex; justify-content: space-between; gap: 20px; padding: 18px; margin-top: 24px; color: white; background: var(--green); }
.menu-note span { font-size: 13px; }
.pizza-builder { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 24px 0 32px; }
.pizza-builder > div { display: grid; gap: 7px; padding: 18px; background: var(--cream); }
.pizza-builder span { font-weight: 700; }
.pizza-builder strong { color: var(--red); font-size: 13px; }
.pizza-builder small { color: var(--muted); line-height: 1.45; }
.menu-disclaimer { max-width: 900px; margin: 42px auto 0; color: var(--muted); font-size: 11px; line-height: 1.6; text-align: center; }
.catering-band { scroll-margin-top: 150px; padding: 96px max(24px, calc((100vw - var(--max)) / 2)); color: white; background: var(--red); }
.catering-band-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(44px, 8vw, 110px); align-items: center; }
.catering-copy h2 { margin-bottom: 24px; }
.catering-copy > p:not(.kicker) { max-width: 560px; margin-bottom: 30px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.7; }
.catering-prices { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid rgba(255,255,255,.28); }
.catering-prices article { padding: 34px; }
.catering-prices article + article { border-left: 1px solid rgba(255,255,255,.28); }
.catering-prices article > span { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.catering-prices article > strong { display: block; margin: 14px 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 54px); }
.catering-prices article > strong small { font-family: var(--sans); font-size: 13px; }
.catering-prices article p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.6; }
.tray-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tray-grid article { display: flex; flex-direction: column; min-height: 260px; padding: 30px; border-top: 4px solid var(--red); background: var(--cream); }
.tray-grid h3 { margin-bottom: 16px; color: var(--green); font-size: 29px; }
.tray-grid p { color: var(--muted); line-height: 1.65; }
.tray-grid strong { margin-top: auto; color: var(--red); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes hero-in { from { opacity: .5; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 900px) {
  .site-header { min-height: 70px; }
  .brand img { width: 48px; height: 48px; }
  .header-order { display: none; }
  .menu-toggle { display: block; order: 2; }
  .site-nav { position: fixed; inset: 70px 0 auto; display: grid; gap: 0; padding: 20px 24px 32px; color: white; background: var(--green); box-shadow: 0 20px 30px rgba(0,0,0,.16); transform: translateY(-130%); transition: transform .3s ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.14); font-family: var(--serif); font-size: 24px; }
  .hero { min-height: 600px; }
  .hero-content { padding-bottom: 160px; }
  .address-card { right: 24px; left: 24px; min-width: 0; }
  .intro { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .family-section { grid-template-columns: 1fr; }
  .family-photo { min-height: 430px; }
  .family-copy { padding: 70px 30px; }
  .gallery-grid { grid-auto-rows: 230px; grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-photo { grid-column: 1 / 3; }
  .visit-photo img { min-height: 340px; max-height: 460px; }
  .order-band { align-items: flex-start; flex-direction: column; }
  .menu-hero-inner { grid-template-columns: 1fr; }
  .menu-hero-inner > div { padding: 80px 40px; }
  .menu-hero img { min-height: 380px; max-height: 520px; }
  .menu-jump { top: 70px; }
  .catering-band-inner { grid-template-columns: 1fr; }
  .tray-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .announcement { padding: 5px 12px; text-align: center; }
  .site-header { padding: 8px 18px; }
  .brand { font-size: 19px; }
  .hero { min-height: 820px; align-items: start; background: var(--green); }
  .hero-image { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 827 / 509; object-fit: contain; object-position: center top; filter: none; }
  .hero-shade { background: linear-gradient(180deg, transparent 0, transparent 25%, rgba(7,63,36,.18) 34%, var(--green) 45%); }
  .hero-content { width: calc(100% - 36px); margin-top: -2px; padding: 34px 0 190px; }
  h1 { font-size: clamp(52px, 16vw, 74px); }
  .hero-actions .button { width: 100%; }
  .address-card { right: 18px; bottom: 70px; left: 18px; padding: 19px; }
  .section { width: calc(100% - 36px); padding: 78px 0; }
  .favorites { padding-top: 0; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .dish-grid { display: flex; flex-direction: column; }
  .dish-card, .dish-card-tall { min-height: 360px; }
  .family-photo { min-height: 360px; }
  .gallery { padding-bottom: 0; }
  .gallery-grid { grid-auto-rows: 250px; gap: 10px; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-photo { grid-column: auto; }
  .visit-photo img { min-height: 280px; }
  .visit-details { border-right: 0; border-bottom: 1px solid var(--line); }
  .order-band { padding-top: 58px; padding-bottom: 58px; }
  footer { grid-template-columns: 1fr; padding-bottom: 100px; }
  .copyright { grid-column: auto; }
  .mobile-order { position: fixed; z-index: 60; right: 12px; bottom: 12px; left: 12px; display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; color: white; background: var(--red); box-shadow: 0 10px 30px rgba(0,0,0,.28); font-weight: 700; text-decoration: none; }
  .menu-hero-inner > div { padding: 68px 18px; }
  .menu-hero h1 { font-size: 64px; }
  .menu-hero img { min-height: 280px; }
  
  
  
  
  .menu-jump { padding-inline: 18px; }
  .menu-title-row { align-items: stretch; flex-direction: column; }
  .menu-title-row .button { width: 100%; }
  .menu-section-grid { grid-template-columns: 1fr; }
  .menu-category, .menu-category-wide { grid-column: auto; padding: 24px 20px; }
  .menu-list-columns { columns: 1; }
  .pizza-builder { grid-template-columns: 1fr; }
  .catering-band { padding: 70px 18px; }
  .catering-prices { grid-template-columns: 1fr; }
  .catering-prices article + article { border-top: 1px solid rgba(255,255,255,.28); border-left: 0; }
  .tray-grid article { min-height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
