:root {
  --wine-950: #310712;
  --wine-900: #48101f;
  --wine-800: #5b1226;
  --wine-700: #6f162b;
  --wine-600: #89213a;
  --cream-50: #fffaf0;
  --cream-100: #f8eedb;
  --cream-200: #ead9bc;
  --olive-700: #4d5336;
  --olive-500: #777b51;
  --charcoal: #241b1a;
  --ink-soft: #5e514e;
  --line: rgba(78, 28, 38, 0.16);
  --shadow: 0 24px 70px rgba(50, 8, 20, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1200px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--charcoal);
  background: var(--cream-50);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

::selection { color: var(--cream-50); background: var(--wine-700); }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 118px 0; }
.section-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--wine-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem, 6.2vw, 6.5rem); }
h2 { margin-bottom: 26px; font-size: clamp(2.5rem, 4.5vw, 4.8rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
p { color: var(--ink-soft); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.menu-expand-button:focus-visible,
.review-controls button:focus-visible,
.menu-toggle:focus-visible,
.mobile-action-bar a:focus-visible {
  outline: 3px solid #eab468;
  outline-offset: 4px;
}
.button--cream { color: var(--wine-900); background: var(--cream-100); }
.button--cream:hover { background: white; }
.button--ghost { color: white; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.button--ghost:hover { border-color: white; background: rgba(255,255,255,.14); }
.button--wine { color: white; background: var(--wine-700); }
.button--wine:hover { background: var(--wine-900); }

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--wine-700);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  line-height: 1;
}
.brand-script {
  margin-bottom: -4px;
  font-family: "Allura", cursive;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.brand-name {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -.045em;
}
.brand-subline {
  margin-top: 7px;
  font-size: .49rem;
  font-weight: 600;
  letter-spacing: .17em;
}
.brand-subline i { font-style: normal; padding-inline: 2px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  transition: background-color .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled {
  color: var(--wine-900);
  background: rgba(255, 250, 240, .93);
  box-shadow: 0 12px 40px rgba(45, 13, 22, .08);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.primary-nav a {
  position: relative;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 11px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--wine-950);
}
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: center 55%; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(38, 4, 14, .86) 0%, rgba(48, 6, 18, .56) 44%, rgba(28, 3, 10, .19) 74%, rgba(20, 2, 7, .08) 100%),
    linear-gradient(0deg, rgba(29, 3, 11, .6), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}
.hero .eyebrow { color: #f1d4a9; }
.hero h1 { max-width: 980px; margin-bottom: 28px; }
.hero h1 em { color: #f3d7aa; font-weight: 400; }
.hero-copy { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.82); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 42px;
  font-size: .78rem;
}
.hero-proof .stars { color: #f3c56f; letter-spacing: .08em; }
.hero-proof span:last-child { color: rgba(255,255,255,.7); }
.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 30px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,.78);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-scroll svg { width: 24px; margin-top: 8px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.5; }

.story { background: var(--cream-50); }
.story-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 90px;
  align-items: center;
}
.story-copy .lead { color: var(--charcoal); font-family: "Bodoni Moda", Georgia, serif; font-size: 1.35rem; line-height: 1.45; }
.story-copy > p:not(.section-kicker) { max-width: 590px; }
.story-notes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.story-notes span {
  padding: 9px 13px;
  color: var(--wine-700);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.story-figure {
  position: relative;
  margin: 0;
  padding: 0 0 46px 46px;
}
.story-figure::before {
  position: absolute;
  inset: 50px 45px 0 0;
  z-index: 0;
  background: var(--wine-700);
  border-radius: var(--radius-lg);
  content: "";
}
.story-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.story-figure figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  max-width: 330px;
  flex-direction: column;
  padding: 22px 25px;
  color: white;
  background: var(--wine-900);
  border-radius: 16px 0 16px 16px;
}
.story-figure figcaption span { margin-bottom: 5px; color: #e8c99e; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.story-figure figcaption strong { font-family: "Bodoni Moda", Georgia, serif; font-size: 1.3rem; font-weight: 500; }

.menu-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(115, 25, 47, .09), transparent 34%),
    var(--cream-100);
}
.section-heading--center { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-heading--center p:last-child { max-width: 620px; margin-inline: auto; }
.menu-grid { display: grid; gap: 16px; }
.menu-grid--featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.menu-item {
  display: flex;
  min-width: 0;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 28px;
  background: rgba(255, 250, 240, .7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.menu-item:hover { z-index: 1; transform: translateY(-4px); background: var(--cream-50); box-shadow: 0 18px 40px rgba(66, 15, 31, .08); }
.menu-item > div { min-width: 0; }
.menu-item h3,
.menu-item h4 { margin: 0 0 8px; font-size: 1.34rem; }
.menu-item p { margin: 0; font-size: .82rem; line-height: 1.55; }
.menu-item > strong { flex: 0 0 auto; color: var(--wine-700); font-family: "Bodoni Moda", Georgia, serif; font-size: 1.18rem; font-weight: 600; white-space: nowrap; }
.menu-item-heading { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.menu-badge,
.menu-item--signature h4 span {
  display: inline-flex;
  padding: 5px 8px;
  color: white;
  background: var(--wine-700);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-expand-wrap { display: flex; justify-content: center; margin-top: 36px; }
.menu-expand-button {
  display: inline-flex;
  min-height: 52px;
  gap: 11px;
  align-items: center;
  padding: 13px 22px;
  color: white;
  background: var(--wine-700);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background-color .25s ease, transform .25s ease;
}
.menu-expand-button:hover { background: var(--wine-900); transform: translateY(-2px); }
.menu-expand-button svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .35s ease; }
.menu-expand-button[aria-expanded="true"] svg { transform: rotate(180deg); }
.full-menu { overflow: hidden; transition: height .55s cubic-bezier(.2,.7,.2,1), opacity .35s ease; }
.full-menu:not(.is-open) { height: 0; opacity: 0; }
.full-menu.is-open { opacity: 1; }
.full-menu-inner { padding-top: 70px; }
.menu-category-heading { display: flex; gap: 30px; align-items: end; justify-content: space-between; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.menu-category-heading h3 { margin: 0; }
.menu-category-heading .section-kicker { margin-bottom: 7px; }
.menu-category-heading > span { color: var(--wine-700); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.menu-category-heading--dessert { margin-top: 58px; }
.menu-grid--all { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.menu-item--signature { background: rgba(111, 22, 43, .05); }
.menu-item--dessert { background: rgba(77, 83, 54, .07); }
.menu-note { margin: 30px 0 0; color: #766864; font-size: .72rem; text-align: center; }


/* Expanded menu hierarchy and section breathing room */
.menu-category-block + .menu-category-block {
  margin-top: 92px;
}
.menu-category-intro {
  max-width: 720px;
  margin: -4px 0 24px;
  color: #766864;
  font-size: .78rem;
}
.menu-category-block--ingredients {
  padding: 42px;
  background: rgba(255, 250, 240, .68);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.menu-supplier-grid,
.menu-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.menu-supplier,
.menu-extra {
  display: flex;
  min-width: 0;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 17px 19px;
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(111, 22, 43, .12);
  border-radius: 14px;
}
.menu-supplier span,
.menu-extra span {
  color: #766864;
  font-size: .72rem;
  font-weight: 600;
}
.menu-supplier strong,
.menu-extra strong {
  color: var(--wine-700);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: .98rem;
  font-weight: 600;
  text-align: right;
}
.menu-subnotes {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(111, 22, 43, .045);
  border-radius: 14px;
}
.menu-subnotes p {
  margin: 0;
  color: #766864;
  font-size: .72rem;
}
.menu-category-block--ingredients + .menu-note {
  margin-top: 36px;
}

.craft-section { overflow: hidden; background: var(--wine-900); color: white; }
.craft-section p { color: rgba(255,255,255,.72); }
.craft-section .section-kicker { color: #eccb9d; }
.craft-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.craft-media { position: relative; margin: 0; }
.craft-media::after {
  position: absolute;
  inset: auto -26px -26px auto;
  width: 42%;
  height: 42%;
  border: 1px solid rgba(241, 210, 166, .35);
  border-radius: 0 0 24px 0;
  content: "";
}
.craft-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.craft-copy blockquote {
  margin: 34px 0;
  padding: 4px 0 4px 24px;
  color: var(--cream-100);
  border-left: 2px solid #e5bd84;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.55;
}
.craft-section .text-link { color: #eccb9d; }
.oven-strip {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  margin-top: 100px;
  padding: 44px 44px 44px 58px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
}
.oven-strip-copy { max-width: 650px; }
.oven-strip-copy h3 { margin-bottom: 16px; }
.oven-strip img { width: 100%; height: 380px; object-fit: cover; object-position: center 64%; border-radius: 18px; }

.atmosphere-section { background: var(--cream-50); }
.atmosphere-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.atmosphere-copy .button { margin-top: 14px; }
.atmosphere-media { margin: 0; }
.atmosphere-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.pizza-detail {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 65px;
  align-items: center;
  margin-top: 100px;
  padding: 55px;
  background: var(--cream-100);
  border-radius: var(--radius-lg);
}
.pizza-detail img { width: 100%; height: 460px; object-fit: cover; border-radius: 20px; }
.pizza-detail-copy { max-width: 600px; }
.pizza-detail-copy .brand-script { display: block; margin: 0 0 10px; color: var(--wine-700); font-size: 2.2rem; }
.pizza-detail-copy h3 { margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 4rem); }

.reviews-section { overflow: hidden; background: #e9dbc3; }
.reviews-header { display: flex; gap: 40px; align-items: end; justify-content: space-between; margin-bottom: 48px; }
.reviews-header > div:first-child { max-width: 800px; }
.reviews-header h2 { margin-bottom: 0; }
.review-controls { display: flex; gap: 10px; }
.review-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: var(--wine-700);
  background: transparent;
  border: 1px solid rgba(111, 22, 43, .28);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}
.review-controls button:hover { color: white; background: var(--wine-700); }
.review-controls svg { width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.reviews-viewport {
  width: min(100vw - 24px, calc(var(--container) + ((100vw - var(--container)) / 2)));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.reviews-viewport::-webkit-scrollbar { display: none; }
.reviews-track { display: flex; gap: 18px; width: max-content; padding-right: 24px; }
.review-card {
  display: flex;
  width: min(410px, calc(100vw - 62px));
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: var(--cream-50);
  border: 1px solid rgba(111, 22, 43, .11);
  border-radius: 22px;
  scroll-snap-align: start;
}
.review-stars { color: #b17124; font-size: .82rem; letter-spacing: .1em; }
.review-card blockquote { margin: 28px 0; font-family: "Bodoni Moda", Georgia, serif; font-size: 1.32rem; line-height: 1.52; }
.review-card footer { display: flex; flex-direction: column; }
.review-card footer strong { color: var(--wine-700); font-size: .83rem; }
.review-card footer span { margin-top: 2px; color: #7d6d68; font-size: .68rem; }
.reviews-caption { margin: 26px 0 0; font-size: .72rem; font-weight: 600; letter-spacing: .06em; }

.visit-section { padding: 118px 0; color: white; background: var(--wine-800); }
.visit-section p { color: rgba(255,255,255,.72); }
.visit-section .section-kicker { color: #efc993; }
.visit-content { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: stretch; }
.visit-info { padding: 30px 0; }
.visit-list { display: grid; gap: 22px; margin: 36px 0; }
.visit-list div { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.visit-list span { color: #efc993; font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.visit-list p { margin: 0; }
.visit-list a { color: white; text-decoration: none; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.visit-map { min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.visit-map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: saturate(.82) contrast(.94); }

.site-footer { padding: 52px 0 120px; color: var(--wine-900); background: var(--cream-100); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.brand-lockup--footer { justify-self: start; }
.footer-grid > p { margin: 0; font-size: .73rem; }
.footer-copy { justify-self: end; }

.mobile-action-bar { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  :root { --header-h: 82px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 94px 0; }
  .primary-nav { gap: 20px; }
  .story-grid,
  .craft-grid,
  .atmosphere-grid,
  .visit-content { gap: 48px; }
  .story-grid { grid-template-columns: .9fr 1.1fr; }
  .oven-strip { grid-template-columns: 1fr 300px; }
  .pizza-detail { grid-template-columns: 320px 1fr; padding: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > p:nth-child(2) { justify-self: end; }
  .footer-copy { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 820px) {
  body { padding-bottom: 68px; }
  .site-header { background: rgba(48, 7, 18, .2); backdrop-filter: blur(6px); }
  .site-header.is-scrolled { background: rgba(255, 250, 240, .96); }
  .brand-lockup--header .brand-script { font-size: .92rem; }
  .brand-lockup--header .brand-name { font-size: 1.7rem; }
  .brand-lockup--header .brand-subline { font-size: .43rem; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 17px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 30px 90px;
    color: var(--cream-50);
    background: var(--wine-900);
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav a { font-family: "Bodoni Moda", Georgia, serif; font-size: 2.4rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .primary-nav .nav-cta { margin-top: 10px; padding: 13px 20px; font-family: "Montserrat", sans-serif; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .hero-content { padding-top: 100px; }
  .hero-image { object-position: 57% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(37, 3, 13, .84), rgba(37, 3, 13, .38)), linear-gradient(0deg, rgba(29, 3, 11, .55), transparent 56%); }
  .story-grid,
  .craft-grid,
  .atmosphere-grid,
  .visit-content { grid-template-columns: 1fr; }
  .story-copy { max-width: 680px; }
  .story-figure { max-width: 680px; margin-left: auto; }
  .story-figure img,
  .craft-media img { aspect-ratio: 16 / 9; object-position: center; }
  .craft-media { order: 2; }
  .craft-copy { order: 1; }
  .oven-strip { grid-template-columns: 1fr; }
  .oven-strip img { height: 460px; }
  .atmosphere-copy { max-width: 680px; }
  .pizza-detail { grid-template-columns: 300px 1fr; gap: 38px; }
  .menu-grid--featured,
  .menu-grid--all { grid-template-columns: 1fr; }
  .visit-map { min-height: 440px; }
  .visit-map iframe { min-height: 440px; }
  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 68px;
    padding-bottom: env(safe-area-inset-bottom);
    color: white;
    background: var(--wine-900);
    box-shadow: 0 -12px 35px rgba(48, 6, 18, .2);
  }
  .mobile-action-bar a { display: flex; gap: 9px; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
  .mobile-action-bar a + a { border-left: 1px solid rgba(255,255,255,.16); }
  .mobile-action-bar svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
  .site-footer { padding-bottom: 58px; }
}

@media (max-width: 640px) {
  :root { --header-h: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-kicker,
  .eyebrow { margin-bottom: 14px; font-size: .66rem; }
  h1 { font-size: clamp(2.75rem, 13.7vw, 4.5rem); }
  h2 { font-size: clamp(2.3rem, 11vw, 3.7rem); }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 106px; padding-bottom: 86px; }
  .hero-image { object-position: 58% center; }
  .hero h1 { margin-bottom: 22px; }
  .hero-copy { font-size: .92rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 28px; }
  .hero-scroll { display: none; }
  .story-grid { gap: 52px; }
  .story-copy .lead { font-size: 1.18rem; }
  .story-figure { padding: 0 0 28px 14px; }
  .story-figure::before { inset: 28px 18px 0 0; }
  .story-figure figcaption { max-width: 270px; padding: 17px 19px; }
  .story-figure figcaption strong { font-size: 1.06rem; }
  .menu-item { gap: 14px; padding: 21px 19px; }
  .menu-item h3,
  .menu-item h4 { font-size: 1.15rem; }
  .menu-item p { font-size: .76rem; }
  .menu-item > strong { font-size: 1rem; }
  .full-menu-inner { padding-top: 52px; padding-bottom: 18px; }
  .menu-category-block + .menu-category-block { margin-top: 76px; }
  .menu-category-heading { gap: 14px; align-items: start; }
  .menu-category-heading > span { max-width: 42%; text-align: right; }
  .menu-category-block--ingredients { padding: 28px 20px; }
  .menu-supplier-grid,
  .menu-extra-grid { grid-template-columns: 1fr; }
  .menu-supplier,
  .menu-extra { padding: 16px 17px; }
  .menu-category-intro { margin-bottom: 22px; }
  .menu-category-block--ingredients + .menu-note { margin-top: 30px; }
  .craft-grid { gap: 45px; }
  .craft-copy blockquote { font-size: 1.12rem; }
  .oven-strip { margin-top: 70px; padding: 28px 22px; }
  .oven-strip img { height: 360px; }
  .atmosphere-grid { gap: 45px; }
  .pizza-detail { grid-template-columns: 1fr; gap: 32px; margin-top: 70px; padding: 24px; }
  .pizza-detail img { height: min(100vw, 430px); }
  .reviews-header { align-items: flex-start; }
  .reviews-header h2 { font-size: 2.65rem; }
  .review-controls { display: none; }
  .review-card { min-height: 300px; padding: 26px; }
  .review-card blockquote { font-size: 1.15rem; }
  .visit-section { padding: 82px 0; }
  .visit-list div { grid-template-columns: 1fr; gap: 4px; }
  .visit-actions { flex-direction: column; align-items: stretch; }
  .visit-actions .button { width: 100%; }
  .visit-map,
  .visit-map iframe { min-height: 370px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .brand-lockup--footer,
  .footer-grid > p:nth-child(2),
  .footer-copy { justify-self: center; }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .brand-lockup--header .brand-subline { letter-spacing: .12em; }
  .hero { min-height: 720px; }
  .hero h1 { font-size: 2.7rem; }
  .menu-item { flex-direction: column; }
  .menu-item > strong { margin-top: 2px; }
  .review-card { width: calc(100vw - 44px); }
}

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

/* Mobile landscape image hard-fix: 2026-07-16 */
@media (max-width: 640px) {
  .story-figure img {
    width: 100% !important;
    height: calc((100vw - 42px) * 0.5625) !important;
    max-height: 260px;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .craft-media img {
    width: 100% !important;
    height: calc((100vw - 28px) * 0.5625) !important;
    max-height: 270px;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

/* Mobile navigation full-screen fix: 2026-07-16
   iOS Safari treats a fixed element inside a backdrop-filtered ancestor as
   constrained by that ancestor. The header is expanded to the viewport and
   its filter is disabled only while the menu is open. */
@media (max-width: 820px) {
  .primary-nav {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100dvh;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-top: max(calc(var(--header-h) + 34px), calc(env(safe-area-inset-top) + 108px));
    padding-right: max(30px, env(safe-area-inset-right));
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
    padding-left: max(30px, env(safe-area-inset-left));
    -webkit-overflow-scrolling: touch;
  }

  body.nav-open .site-header {
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    color: var(--cream-50);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.nav-open .header-inner {
    min-height: var(--header-h);
  }

  body.nav-open .mobile-action-bar {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-action-bar {
    transition: opacity .2s ease, visibility .2s ease;
  }
}
