:root {
  --green-950: #08150f;
  --green-900: #10251c;
  --green-800: #173328;
  --green-700: #214537;
  --black: #0c0f0d;
  --gold: #d5aa55;
  --gold-light: #efd187;
  --beige: #f2eadc;
  --cream: #fbf7ef;
  --white: #fffefb;
  --ink: #171a18;
  --muted: #6c716d;
  --line: rgba(16, 37, 28, 0.14);
  --shadow: 0 24px 70px rgba(10, 22, 16, 0.12);
  --radius: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--white); color: var(--green-900); transform: translateY(-150%); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}
.site-header.scrolled {
  background: rgba(8,21,15,.94);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 10px 35px rgba(0,0,0,.16);
}
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo { width: auto; height: 70px; object-fit: contain; filter: drop-shadow(0 5px 16px rgba(0,0,0,.18)); }
.brand-label { color: var(--white); font: 600 18px/1.15 var(--serif); letter-spacing: .01em; white-space: nowrap; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { position: relative; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; color: var(--white); background: transparent; border: 0; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .015em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; }
.button-small { min-height: 43px; padding: 11px 17px; font-size: 12px; }
.button-large { min-height: 58px; padding: 17px 28px; }
.button-gold { color: var(--green-950); background: var(--gold); border-color: var(--gold); box-shadow: 0 12px 34px rgba(213,170,85,.22); }
.button-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-light { color: var(--green-950); background: var(--white); border-color: var(--white); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.46); background: rgba(8,21,15,.22); backdrop-filter: blur(8px); }
.button-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.button-nav-outline { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(8,21,15,.28); }
.button-nav-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.button-hotmat { border-color: rgba(213,170,85,.68); }
.button-ghost { min-height: 44px; color: var(--white); opacity: .85; }

.hero { position: relative; min-height: 770px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--green-950); }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(5,13,9,.94) 0%, rgba(5,13,9,.75) 42%, rgba(5,13,9,.22) 69%, rgba(5,13,9,.24) 100%), linear-gradient(0deg, rgba(5,13,9,.44), transparent 48%); }
.hero-content { position: relative; z-index: 2; padding-top: 104px; }
.eyebrow, .section-kicker { color: #9a7841; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--gold-light); }
.eyebrow span { width: 38px; height: 1px; background: currentColor; }
.hero h1, .section h2, .lunch-section h2, .contact-section h2, .gallery-section h2 {
  margin: 0;
  font: 500 clamp(44px, 6.1vw, 82px)/.98 var(--serif);
  letter-spacing: -.04em;
}
.hero h1 { max-width: 820px; }
h1 em, h2 em { color: var(--gold); font-weight: 400; }
.hero-content > p { max-width: 610px; margin: 25px 0 30px; color: rgba(255,255,255,.78); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 32px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.72); background: rgba(8,21,15,.32); font-size: 12px; backdrop-filter: blur(8px); }
.hero-status strong { color: var(--white); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #7fd39a; box-shadow: 0 0 0 4px rgba(127,211,154,.13); }
.hero-status.closed .status-dot { background: #e18478; box-shadow: 0 0 0 4px rgba(225,132,120,.13); }

.quick-info { position: relative; z-index: 5; margin-top: -1px; color: var(--white); background: var(--green-900); border-top: 1px solid rgba(255,255,255,.1); }
.info-grid { display: grid; grid-template-columns: 1.1fr 1.25fr .85fr 1.35fr; }
.info-item { min-height: 116px; display: flex; align-items: center; gap: 15px; padding: 22px 22px; border-right: 1px solid rgba(255,255,255,.1); }
.info-item:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.info-item svg { width: 24px; min-width: 24px; color: var(--gold); }
.info-item div { display: flex; flex-direction: column; min-width: 0; }
.info-item span { margin-bottom: 3px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.info-item strong, .info-item a { color: var(--white); font-size: 12px; font-weight: 700; line-height: 1.4; }
.info-item a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.section-kicker { margin-bottom: 14px; }
.section-kicker.light { color: var(--gold-light); }
.about h2, .section-header h2, .gallery-section h2 { color: var(--green-900); font-size: clamp(43px, 5.2vw, 68px); }
.about h2 em, .section-header h2 em, .gallery-section h2 em { color: #9a7841; }
.about-copy { padding-top: 24px; }
.about-copy p { max-width: 650px; margin: 0 0 18px; color: var(--muted); font-size: 16px; }
.about-copy .lead { color: var(--ink); font: 400 clamp(22px, 2.7vw, 31px)/1.45 var(--serif); }
.value-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 35px; padding-top: 28px; border-top: 1px solid var(--line); }
.value-row span { display: flex; align-items: center; gap: 7px; color: var(--green-800); font-size: 12px; font-weight: 800; }
.value-row i { display: grid; place-items: center; width: 20px; height: 20px; color: var(--green-900); background: rgba(213,170,85,.35); border-radius: 50%; font-size: 11px; font-style: normal; }

.menu-section { color: var(--white); background: var(--green-950); background-image: radial-gradient(circle at 20% 15%, rgba(213,170,85,.08), transparent 24%), radial-gradient(circle at 85% 40%, rgba(31,74,56,.35), transparent 28%); }
.section-header.centered { max-width: 730px; margin: 0 auto 38px; text-align: center; }
.menu-section .section-header h2 { color: var(--white); }
.menu-section .section-header h2 em { color: var(--gold); }
.section-header p { margin: 18px auto 0; color: rgba(255,255,255,.58); }
.category-nav { display: flex; gap: 8px; margin: 0 0 32px; padding: 0 0 12px; overflow-x: auto; scrollbar-width: thin; }
.category-nav a { min-width: max-content; padding: 9px 14px; color: rgba(255,255,255,.66); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: 11px; font-weight: 800; }
.category-nav a:hover { color: var(--green-950); background: var(--gold); border-color: var(--gold); }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.menu-card { scroll-margin-top: 105px; padding: 28px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); box-shadow: 0 20px 45px rgba(0,0,0,.12); }
.menu-card.wide { grid-column: 1 / -1; }
.menu-card.featured { background: linear-gradient(135deg, rgba(213,170,85,.13), rgba(255,255,255,.04)); border-color: rgba(213,170,85,.27); }
.menu-card-heading { display: flex; align-items: baseline; gap: 12px; margin-bottom: 15px; }
.menu-card-heading span { color: var(--gold); font: italic 15px/1 var(--serif); }
.menu-card-heading h3 { margin: 0; color: var(--white); font: 500 27px/1.2 var(--serif); }
.category-price { margin-left: auto; color: var(--gold-light); font: 500 17px/1 var(--serif); white-space: nowrap; }
.dish-list { margin: 0; padding: 0; list-style: none; }
.dish-list.dish-columns { columns: 2; column-gap: 34px; }
.dish-list.dish-columns li { break-inside: avoid; }
.dish-list li { position: relative; display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px dashed rgba(255,255,255,.13); }
.dish-list li:first-child { border-top-style: solid; }
.dish-list div { display: flex; flex-direction: column; }
.dish-list strong { color: rgba(255,255,255,.92); font-size: 13px; }
.dish-list small { margin-top: 3px; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.45; }
.dish-list b { min-width: max-content; color: var(--gold-light); font: 500 14px/1.5 var(--serif); }
.menu-card-intro { margin: -2px 0 15px; padding: 13px 15px; color: rgba(255,255,255,.62); background: rgba(255,255,255,.04); border-radius: 10px; font-size: 11px; }
.menu-subheading { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-top: 25px; padding-top: 22px; border-top: 1px solid rgba(213,170,85,.28); }
.menu-subheading h4, .family-prices h4 { margin: 0; color: var(--white); font: 500 21px/1.25 var(--serif); }
.menu-subheading b { color: var(--gold-light); font: 500 16px/1 var(--serif); }
.menu-card.compact { min-height: 0; }
.lunch-card { background: var(--gold); border-color: var(--gold); color: var(--green-950); }
.lunch-card .menu-card-heading span, .lunch-card .menu-card-heading h3, .lunch-card .dish-list strong, .lunch-card .dish-list small, .lunch-card .dish-list b { color: var(--green-950); }
.lunch-card .dish-list li { border-color: rgba(8,21,15,.2); }
.menu-note { margin: 4px 0 0; font-size: 11px; font-weight: 800; }
.family-card { background: linear-gradient(135deg, rgba(213,170,85,.18), rgba(255,255,255,.045)); border-color: rgba(213,170,85,.34); }
.family-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.family-prices > div { padding: 20px; background: rgba(8,21,15,.28); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; }
.family-prices h4 { margin-bottom: 12px; color: var(--gold-light); }
.family-prices dl { margin: 0; }
.family-prices dl div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-top: 1px dashed rgba(255,255,255,.13); }
.family-prices dt, .family-prices dd { margin: 0; font-size: 13px; }
.family-prices dt { color: rgba(255,255,255,.72); }
.family-prices dd { color: var(--white); font-weight: 800; }
.menu-footer { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; color: rgba(255,255,255,.55); font-size: 13px; }
.menu-footer a { color: var(--gold-light); font-weight: 800; }

.lunch-section { padding: 75px 0; color: var(--green-950); background: var(--gold); }
.lunch-wrap { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: center; }
.lunch-section .section-kicker { color: rgba(8,21,15,.58); }
.lunch-section h2 { font-size: clamp(40px, 5.4vw, 66px); }
.lunch-section h2 em { color: var(--green-700); }
.lunch-copy > p { max-width: 570px; margin: 19px 0 24px; }
.lunch-includes { display: flex; flex-wrap: wrap; gap: 12px; }
.lunch-includes span { display: flex; flex-direction: column; padding: 8px 13px; border: 1px solid rgba(8,21,15,.21); border-radius: 10px; font-size: 12px; font-weight: 900; }
.lunch-includes small { font-size: 8px; opacity: .6; }
.lunch-price { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 240px; padding: 28px; text-align: center; background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.7); border-radius: 50%; box-shadow: 0 24px 60px rgba(70,45,7,.15); }
.lunch-price > span { font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.lunch-price strong { font: 500 68px/1 var(--serif); }
.lunch-price strong small { font-size: 23px; }
.text-link { margin-top: 12px; font-size: 11px; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }

.order-section { padding-top: 100px; padding-bottom: 25px; background: var(--cream); }
.order-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 45px 50px; color: var(--white); background: var(--green-800); background-image: linear-gradient(120deg, rgba(255,255,255,.04), transparent 50%); border-radius: 30px; box-shadow: var(--shadow); }
.order-icon { display: grid; place-items: center; width: 72px; height: 72px; color: var(--gold); background: rgba(213,170,85,.1); border: 1px solid rgba(213,170,85,.22); border-radius: 50%; }
.order-icon svg { width: 32px; height: 32px; }
.order-card h2 { font-size: clamp(35px, 4.5vw, 54px); }
.order-card p { margin: 9px 0 0; color: rgba(255,255,255,.65); }
.order-actions { display: grid; gap: 9px; min-width: 210px; }

.gallery-section { background: var(--cream); }
.section-header.split { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.section-header.split p { max-width: 300px; margin: 0 0 6px; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.gallery-item { position: relative; margin: 0; overflow: hidden; border-radius: 20px; background: var(--green-900); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-exterior { grid-column: 1 / -1; aspect-ratio: 8 / 5; height: auto; }
.gallery-exterior img { object-position: center; }
.gallery-exterior:hover img { transform: none; }
.gallery-pizza, .gallery-food { grid-column: span 4; height: 270px; }
.gallery-interior { grid-column: span 6; height: 340px; }
.gallery-item figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 11px 14px; color: var(--white); background: rgba(8,21,15,.72); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; font: italic 16px/1.3 var(--serif); backdrop-filter: blur(9px); }

.contact-section { padding: 110px 0; color: var(--white); background: var(--green-900); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: stretch; }
.contact-content > p { max-width: 520px; color: rgba(255,255,255,.63); }
.contact-section h2 { font-size: clamp(40px, 5vw, 62px); }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 32px 0 18px; }
.contact-list > div { display: flex; align-items: center; gap: 13px; padding: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.contact-list svg { width: 24px; min-width: 24px; color: var(--gold); }
.contact-list span { display: flex; flex-direction: column; }
.contact-list small { color: rgba(255,255,255,.45); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-list strong, .contact-list a { font-size: 12px; }
.hours-card { padding: 21px 23px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; }
.hours-card h3 { margin: 0 0 8px; font: 500 20px/1.3 var(--serif); }
.hours-card dl { margin: 0; }
.hours-card dl div { display: flex; justify-content: space-between; padding: 7px 0; color: rgba(255,255,255,.65); border-top: 1px dashed rgba(255,255,255,.11); font-size: 12px; }
.hours-card dt, .hours-card dd { margin: 0; }
.hours-card dd { color: var(--white); font-weight: 800; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.map-wrap { min-height: 600px; padding: 8px; background: var(--gold); border-radius: 25px; box-shadow: 0 24px 70px rgba(0,0,0,.24); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 584px; border: 0; border-radius: 19px; filter: grayscale(.3) contrast(.95); }

.site-footer { padding: 55px 0 25px; color: rgba(255,255,255,.7); background: var(--green-950); }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand { color: var(--white); }
.footer-logo { height: 105px; }
.footer-contact { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 12px; }
.footer-contact a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 8px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; color: var(--gold-light); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.socials a:hover { color: var(--green-950); background: var(--gold); }
.socials svg { width: 18px; height: 18px; }
.socials svg:first-child, .socials .fill { fill: currentColor; stroke: none; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .05em; }
.mobile-cta { display: none; }

@media (max-width: 1060px) {
  .main-nav { gap: 17px; }
  .main-nav > a:not(.button) { font-size: 12px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: 0; }
  .info-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .order-card { grid-template-columns: auto 1fr; }
  .order-actions { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .site-header { position: fixed; }
  .menu-toggle { display: block; position: relative; z-index: 2; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 25px; padding: 90px 25px; color: var(--white); background: rgba(8,21,15,.98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.button) { font: 500 28px/1.2 var(--serif); }
  .hero { min-height: 800px; align-items: end; }
  .hero-media img { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,13,9,.97) 0%, rgba(5,13,9,.84) 45%, rgba(5,13,9,.26) 82%, rgba(5,13,9,.3) 100%); }
  .hero-content { padding-top: 145px; padding-bottom: 52px; }
  .hero h1 br { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-copy { padding-top: 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card.wide { grid-column: auto; }
  .dish-list.dish-columns { columns: 1; }
  .lunch-wrap { grid-template-columns: 1fr; gap: 35px; }
  .lunch-price { width: 240px; justify-self: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-exterior { grid-column: 1 / -1; height: auto; }
  .gallery-pizza { grid-column: 1 / -1; height: 280px; }
  .gallery-food { grid-column: span 1; height: 230px; }
  .gallery-interior { grid-column: span 1; height: 290px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .map-wrap, .map-wrap iframe { min-height: 440px; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 20px; }
  body { padding-bottom: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .header-inner { height: 74px; }
  .brand-logo { height: 55px; }
  .brand-label { font-size: 15px; }
  .hero { min-height: 790px; }
  .hero-media img { object-position: 63% center; }
  .hero-content { padding-bottom: 38px; }
  .eyebrow { margin-bottom: 15px; font-size: 9px; }
  .hero h1 { font-size: clamp(43px, 13.2vw, 58px); }
  .hero h1 br { display: none; }
  .hero-content > p { margin: 18px 0 23px; font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { width: 100%; padding-inline: 12px; }
  .hero-actions .button-ghost:last-child { grid-column: 1 / -1; }
  .hero-status { margin-top: 23px; }
  .info-grid { display: block; }
  .info-item { min-height: 86px; padding: 17px 8px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .info-item:first-child { border-left: 0; }
  .info-item:nth-child(n+3) { border-top: 0; }
  .about h2, .section-header h2, .gallery-section h2 { font-size: 43px; }
  .about-grid { gap: 29px; }
  .about-copy .lead { font-size: 23px; }
  .value-row { display: grid; }
  .section-header.centered { margin-bottom: 28px; text-align: left; }
  .section-header.centered p { margin-left: 0; }
  .category-nav { margin-right: -14px; }
  .menu-card { padding: 22px 19px; border-radius: 18px; }
  .menu-card-heading h3 { font-size: 24px; }
  .dish-list li { gap: 12px; }
  .family-prices { grid-template-columns: 1fr; gap: 12px; }
  .menu-footer { flex-direction: column; gap: 2px; text-align: center; }
  .lunch-section { padding: 60px 0; }
  .lunch-section h2 { font-size: 41px; }
  .lunch-includes { display: grid; grid-template-columns: repeat(3, 1fr); }
  .lunch-includes span { padding: 7px; }
  .order-section { padding-top: 60px; }
  .order-card { grid-template-columns: 1fr; gap: 20px; padding: 31px 24px; border-radius: 22px; }
  .order-icon { width: 58px; height: 58px; }
  .order-actions { grid-column: auto; justify-self: stretch; min-width: 0; }
  .order-actions .button { width: 100%; }
  .section-header.split { display: block; }
  .section-header.split p { margin-top: 15px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .gallery-exterior { grid-column: 1 / -1; height: auto; }
  .gallery-pizza { grid-column: 1 / -1; height: 230px; }
  .gallery-food { grid-column: span 1; height: 190px; }
  .gallery-interior { grid-column: 1 / -1; height: 250px; }
  .gallery-item { border-radius: 14px; }
  .gallery-item figcaption { right: 8px; bottom: 8px; left: 8px; padding: 8px 10px; font-size: 13px; }
  .contact-section { padding: 70px 0; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-actions { display: grid; grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 380px; }
  .footer-main { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 4px; }
  .mobile-cta { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: .72fr 1fr .82fr; gap: 5px; padding: 8px; padding-bottom: max(8px, env(safe-area-inset-bottom)); background: rgba(8,21,15,.96); border-top: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(12px); }
  .mobile-cta a { display: flex; min-height: 51px; align-items: center; justify-content: center; gap: 6px; color: var(--white); font-size: 11px; font-weight: 900; }
  .mobile-cta a.primary { color: var(--green-950); background: var(--gold); border-radius: 999px; }
  .mobile-cta a.secondary { color: var(--white); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; }
  .mobile-cta svg { width: 17px; height: 17px; }
}

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

@media print {
  .site-header, .hero-actions, .mobile-cta, .order-section, .map-wrap { display: none !important; }
  .hero { min-height: 300px; }
  .menu-section { color: #000; background: #fff; }
  .menu-section .section-header h2, .menu-card-heading h3, .dish-list strong, .dish-list small { color: #000; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card { break-inside: avoid; border-color: #bbb; box-shadow: none; }
}
