:root {
  --red: #a7191d;
  --red-dark: #7d1014;
  --red-soft: #f8e7e5;
  --cream: #fff8ed;
  --paper: #fffdf9;
  --ink: #211915;
  --muted: #6d625c;
  --line: #e8ddd1;
  --gold: #efb82e;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(47, 28, 18, 0.08);
  --shadow-lg: 0 28px 70px rgba(47, 28, 18, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 72px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); }
h3 { font-size: 1.25rem; }
[hidden] { display: none !important; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(72px, 10vw, 128px); }
.section-compact { padding-block: clamp(64px, 8vw, 96px); }
.narrow { max-width: 700px; }
.centered { margin-inline: auto; text-align: center; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: #ffd976; }
.eyebrow-dark { color: var(--red-dark); }
.section-heading > p:last-child,
.split-copy > p,
.menu-promo p,
.contact-copy > p,
.options-layout .section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 253, 249, .94);
  border-bottom: 1px solid rgba(232, 221, 209, .9);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; background: var(--white); }
.brand-copy { display: grid; min-width: 0; line-height: 1.15; }
.brand-copy strong { color: var(--red); font-family: Georgia, Cambria, serif; font-size: 1.25rem; white-space: nowrap; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .72rem; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav > a:not(.button) {
  padding: 10px 12px;
  color: #4c4039;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}
.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible,
.site-nav > a[aria-current="page"] { color: var(--red); background: var(--red-soft); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:focus-visible, .nav-toggle:focus-visible, .search-field input:focus-visible, .search-field button:focus-visible, .category-scroll a:focus-visible {
  outline: 3px solid rgba(239, 184, 46, .65);
  outline-offset: 3px;
}
.button-primary { color: var(--white); background: var(--red); box-shadow: 0 10px 26px rgba(167, 25, 29, .22); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 13px 30px rgba(125, 16, 20, .26); }
.button-secondary { color: var(--red); background: var(--white); border-color: var(--line); }
.button-secondary:hover { border-color: #d6c6b5; background: var(--cream); }
.button-light { color: var(--ink); background: var(--white); box-shadow: var(--shadow-sm); }
.button-light:hover { background: var(--cream); }
.button-large { min-height: 54px; padding-inline: 23px; }
.button-small { min-height: 42px; padding: 9px 15px; font-size: .9rem; }
.button-icon { width: 52px; padding-inline: 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #401012;
}
.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 9, 6, .92) 0%, rgba(49, 11, 8, .8) 48%, rgba(49, 11, 8, .35) 100%),
    linear-gradient(0deg, rgba(20, 7, 5, .36), rgba(20, 7, 5, .1)),
    url('../img/pizza.webp') center / cover no-repeat;
  transform: scale(1.02);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  padding-block: 72px;
}
.hero-copy { max-width: 720px; }
.hero-copy .eyebrow { color: #ffd976; }
.hero h1 { max-width: 700px; margin-bottom: 24px; text-wrap: balance; }
.hero-lead { max-width: 630px; margin-bottom: 30px; color: rgba(255,255,255,.86); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-note { margin: 16px 0 0; color: rgba(255,255,255,.72); font-size: .92rem; }
.opening-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 253, 249, .96);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.opening-card > img { width: min(210px, 70%); height: auto; aspect-ratio: 1.06; object-fit: contain; margin-inline: auto; }
.hours-list { margin: 0; }
.hours-list > div { display: grid; grid-template-columns: 88px 1fr; gap: 18px; padding-block: 14px; border-top: 1px solid var(--line); }
.hours-list > div:last-child { padding-bottom: 0; }
.hours-list dt { font-weight: 800; }
.hours-list dd { margin: 0; color: var(--muted); }

.section-heading { margin-bottom: 36px; }
.section-heading h2 { margin-bottom: 18px; }
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fact-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.fact-card-highlight { background: var(--cream); border-color: #e8d1ad; }
.fact-card h3 { margin: 22px 0 12px; font-size: 1.45rem; }
.fact-card p { margin-bottom: 10px; color: var(--muted); }
.fact-card small { color: var(--muted); }
.icon-badge {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 14px;
}
.icon-badge .icon { width: 24px; height: 24px; }
.icon-badge-small { width: 42px; height: 42px; border-radius: 12px; }

.delivery-section { background: var(--cream); }
.split-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(42px, 8vw, 100px); align-items: center; }
.image-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card-delivery { height: clamp(480px, 55vw, 650px); }
.image-card-delivery img { object-position: center 62%; }
.split-copy h2 { margin-bottom: 22px; }
.split-copy > p { max-width: 650px; margin-bottom: 24px; }
.check-list { display: grid; gap: 13px; margin: 0 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.check-list .icon { color: var(--red); }

.menu-promo { color: var(--white); background: var(--red); }
.menu-promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.menu-promo h2 { margin-bottom: 14px; }
.menu-promo p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.8); }
.menu-promo .button { flex: 0 0 auto; }

.options-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 8vw, 100px); align-items: start; }
.option-list { display: grid; border-top: 1px solid var(--line); }
.option-list > div { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 20px 2px; border-bottom: 1px solid var(--line); }
.option-list span { font-size: 1.06rem; font-weight: 700; }
.option-list strong { color: var(--red); white-space: nowrap; }

.contact-section { background: #f6efe6; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr); gap: clamp(42px, 8vw, 100px); align-items: center; }
.contact-copy h2 { margin-bottom: 30px; }
.contact-details { display: grid; gap: 18px; margin-bottom: 30px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail > div { display: grid; }
.contact-detail > div > span { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-detail a, .contact-detail address, .contact-detail p { margin: 2px 0 0; font-weight: 700; text-decoration: none; }
.contact-detail a:hover { color: var(--red); text-decoration: underline; }
.location-card { position: relative; min-height: 580px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.location-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.location-card figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 13px 16px; color: var(--ink); background: rgba(255,253,249,.94); border-radius: 14px; font-weight: 800; text-align: center; backdrop-filter: blur(8px); }
.legal-note { display: flex; gap: 28px; align-items: flex-start; margin-block: 36px; padding: 20px 22px; color: #5a463c; background: #fff5df; border: 1px solid #eed7a7; border-radius: var(--radius-sm); }
.legal-note strong { flex: 0 0 auto; }
.legal-note p { margin: 0; }

.site-footer { padding: 64px 0 24px; color: rgba(255,255,255,.75); background: #211915; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
.footer-grid h2 { margin-bottom: 14px; color: var(--white); font-family: inherit; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div { display: grid; align-content: start; gap: 8px; }
.footer-grid a { width: fit-content; color: rgba(255,255,255,.9); text-decoration: none; }
.footer-grid a:hover { color: var(--white); text-decoration: underline; }
.footer-brand { color: var(--white) !important; font-family: Georgia, Cambria, serif; font-size: 1.6rem; font-weight: 700; }
.footer-grid p { max-width: 390px; margin: 0; }
.social-links { display: grid; gap: 8px; }
.social-links a { display: inline-flex; align-items: center; gap: 9px; }
.social-links .icon { width: 20px; height: 20px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.mobile-order-bar { display: none; }

/* Menu */
.menu-page { background: #f8f2ea; }
.menu-hero { padding-block: clamp(58px, 8vw, 96px); background: var(--cream); border-bottom: 1px solid var(--line); }
.menu-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.menu-hero h1 { margin-bottom: 18px; color: var(--red); font-size: clamp(3.4rem, 8vw, 6.2rem); }
.menu-hero p:last-child { max-width: 700px; margin-bottom: 0; color: var(--muted); font-size: 1.12rem; }
.menu-order-card { min-width: 275px; display: grid; gap: 6px; padding: 22px 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.menu-order-card > span, .menu-order-card small { color: var(--muted); font-size: .82rem; }
.menu-order-card a { display: flex; align-items: center; gap: 9px; color: var(--red); font-size: 1.25rem; font-weight: 900; text-decoration: none; }
.category-bar { position: sticky; top: var(--header-height); z-index: 900; background: rgba(255,253,249,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.category-scroll { display: flex; gap: 8px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y; }
.category-scroll::-webkit-scrollbar { display: none; }
.category-scroll a { flex: 0 0 auto; min-height: 40px; display: inline-flex; align-items: center; padding: 8px 14px; color: #574942; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .88rem; font-weight: 800; text-decoration: none; }
.category-scroll a:hover, .category-scroll a.is-active { color: var(--white); background: var(--red); border-color: var(--red); }
.menu-content-section { padding-top: clamp(42px, 6vw, 70px); }
.menu-layout { max-width: 1080px; }
.menu-tools { margin-bottom: 18px; padding: clamp(20px, 4vw, 30px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.menu-tools > label { display: block; margin-bottom: 9px; font-weight: 900; }
.search-field { position: relative; }
.search-field > .icon { position: absolute; top: 50%; left: 16px; width: 21px; height: 21px; color: var(--muted); transform: translateY(-50%); pointer-events: none; }
.search-field input { width: 100%; height: 54px; padding: 12px 52px 12px 48px; color: var(--ink); background: #fffefa; border: 1px solid #d8cbc0; border-radius: 14px; }
.search-field input::placeholder { color: #978b84; }
.search-field button { position: absolute; top: 50%; right: 7px; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0; color: var(--muted); background: transparent; border: 0; border-radius: 50%; cursor: pointer; transform: translateY(-50%); }
.search-field button:hover { color: var(--red); background: var(--red-soft); }
.search-status { margin: 10px 2px 0; color: var(--muted); font-size: .88rem; }
.allergen-note, .alcohol-note { margin-bottom: 26px; padding: 18px 20px; color: #5a463c; background: #fff8e7; border: 1px solid #eddbb4; border-radius: var(--radius-sm); }
.allergen-note p, .alcohol-note p { margin: 4px 0 0; }
.menu-sections { display: grid; gap: 30px; }
.menu-section { scroll-margin-top: calc(var(--header-height) + 86px); padding: clamp(24px, 4vw, 38px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.menu-section-heading { margin-bottom: 10px; padding-bottom: 18px; border-bottom: 2px solid var(--ink); }
.menu-section-heading h2 { margin: 0; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 44px; }
.menu-item { min-width: 0; padding-block: 19px; border-bottom: 1px solid var(--line); }
.menu-item-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.menu-item h3 { margin: 0; font-family: inherit; font-size: 1.04rem; letter-spacing: 0; line-height: 1.35; }
.menu-price { flex: 0 0 auto; color: var(--red); font-size: .98rem; white-space: nowrap; }
.menu-item-ingredients { margin: 7px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.menu-item-family { display: flex; justify-content: space-between; gap: 16px; margin: 9px 0 0; color: #5d5048; font-size: .84rem; }
.menu-item-family strong { white-space: nowrap; }
.no-results { padding: 54px 24px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.no-results h2 { margin-bottom: 8px; }
.no-results p { margin: 0; color: var(--muted); }
.alcohol-note { margin: 30px 0 0; }

@media (max-width: 920px) {
  :root { --header-height: 68px; }
  .brand img { width: 43px; height: 43px; }
  .brand-copy small { display: none; }
  .js .nav-toggle { display: inline-flex; }
  .site-nav { gap: 4px; }
  .js .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100svh - var(--header-height));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px 26px;
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .js .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { min-height: 48px; display: flex; align-items: center; padding-inline: 16px; border-radius: 12px; }
  .header-phone { margin-top: 6px; }
  .hero { min-height: auto; }
  .hero-background { background: linear-gradient(0deg, rgba(35, 8, 6, .9), rgba(35, 8, 6, .62)), url('../img/pizza.webp') center / cover no-repeat; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; padding-block: 64px; }
  .opening-card { grid-template-columns: 130px 1fr; align-items: center; }
  .opening-card > img { width: 130px; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-card { min-height: 0; }
  .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .image-card-delivery { height: min(660px, 92vw); }
  .menu-promo-inner { align-items: flex-start; flex-direction: column; }
  .options-layout { grid-template-columns: 1fr; gap: 18px; }
  .location-card { min-height: 620px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .menu-hero-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .menu-order-card { min-width: 0; max-width: 420px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, var(--container)); }
  body { padding-bottom: 76px; }
  .site-header { backdrop-filter: blur(10px); }
  .brand-copy strong { font-size: 1.08rem; }
  .hero-grid { padding-block: 52px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero-lead { font-size: 1.08rem; }
  .hero .button-row { display: grid; grid-template-columns: 1fr; }
  .hero .button { width: 100%; }
  .opening-card { grid-template-columns: 90px 1fr; gap: 16px; padding: 20px; border-radius: 22px; }
  .opening-card > img { width: 90px; }
  .hours-list > div { grid-template-columns: 72px 1fr; gap: 12px; padding-block: 10px; font-size: .91rem; }
  .section { padding-block: 68px; }
  .section-compact { padding-block: 60px; }
  .section-heading { margin-bottom: 28px; }
  .fact-card { padding: 23px; }
  .image-card-delivery { height: 510px; }
  .menu-promo { padding-block: 60px; }
  .option-list > div { align-items: flex-start; }
  .contact-copy .button-row { display: grid; grid-template-columns: 1fr; }
  .location-card { min-height: 520px; }
  .legal-note { flex-direction: column; gap: 5px; margin-block: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .mobile-order-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 8px;
    padding: 8px max(12px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
    background: rgba(255,253,249,.95);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .mobile-order-bar .button { min-height: 52px; }
  .menu-hero { padding-block: 48px; }
  .menu-hero h1 { font-size: 4rem; }
  .menu-content-section { padding-top: 28px; }
  .menu-tools { padding: 18px; }
  .menu-section { padding: 20px 18px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item-heading { align-items: flex-start; }
  .menu-item h3 { padding-right: 4px; }
}

@media (max-width: 390px) {
  .brand-copy strong { font-size: 1rem; }
  .brand img { width: 40px; height: 40px; }
  .nav-toggle { width: 43px; height: 43px; }
  .hero h1 { font-size: 3.2rem; }
  .opening-card { grid-template-columns: 72px 1fr; gap: 12px; padding: 18px; text-align: left; }
  .opening-card > img { width: 72px; }
  .hours-list > div { grid-template-columns: 58px 1fr; gap: 8px; }
  .hours-list dd { margin-top: 0; }
  .menu-item-heading { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
}

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