:root {
  --brand-red: #b00010;
  --brand-red-action: #96000e;
  --brand-red-dark: #650009;
  --brand-red-soft: #fbe9eb;
  --paper: #fffdf9;
  --cream: #f7f1e9;
  --ink: #221a17;
  --muted: #6f625d;
  --line: rgba(34, 26, 23, 0.15);
  --white: #fff;
  --shadow: 0 1.5rem 4rem rgba(48, 23, 19, 0.13);
  --shadow-soft: 0 0.8rem 2rem rgba(48, 23, 19, 0.08);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --max-width: 76rem;
  --ember: var(--brand-red);
  --ember-dark: var(--brand-red-dark);
  --gold: var(--brand-red);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 4px;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.35rem, 7vw, 4.85rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.55rem);
}

h3 {
  line-height: 1.2;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 52rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 5.85rem;
  align-items: center;
  justify-content: center;
  padding-block: 0.75rem;
}

.brand {
  display: block;
  width: min(17.5rem, calc(100% - 5rem));
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
}

.js .menu-toggle {
  position: absolute;
  z-index: 55;
  right: 0;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: white;
  border: 0;
  border-radius: 50%;
  background: var(--brand-red-action);
  box-shadow: 0 0.5rem 1.3rem rgba(34, 26, 23, 0.2);
  cursor: pointer;
  place-items: center;
}

.menu-toggle:hover {
  background: var(--brand-red-dark);
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-icon::before { top: -0.4rem; }
.menu-toggle-icon::after { top: 0.4rem; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after { top: 0; transform: rotate(-45deg); }

.js .site-nav {
  position: absolute;
  z-index: 50;
  top: calc(100% + 0.5rem);
  right: 0;
  display: none;
  width: min(21rem, calc(100vw - 2rem));
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.js .site-nav.is-open {
  display: block;
}

.nav-list {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.78rem 0.9rem;
  border-radius: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 780;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--brand-red-action);
  background: var(--brand-red-soft);
}

.nav-call a {
  margin-top: 0.35rem;
  color: white;
  background: var(--brand-red-action);
  text-align: center;
}

.nav-call a:hover {
  color: white;
  background: var(--brand-red-dark);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brand-red-action);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.24rem);
}

.button-row,
.section-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.button-row {
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--brand-red-action);
}

.button-primary:hover {
  background: var(--brand-red-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(34, 26, 23, 0.25);
  background: var(--paper);
}

.button-secondary:hover {
  color: var(--brand-red-action);
  border-color: var(--brand-red);
}

.button-light {
  color: var(--brand-red-dark);
  background: white;
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 1.2rem;
  color: var(--brand-red-action);
  font-size: 0.93rem;
  font-weight: 800;
  text-underline-offset: 0.24rem;
}

.section {
  padding-block: clamp(4.25rem, 8vw, 7.25rem);
}

.section-heading {
  margin-bottom: clamp(1.8rem, 5vw, 3rem);
}

.section-heading > p,
.centered-heading > p {
  max-width: 43rem;
  color: var(--muted);
}

.centered-heading {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p {
  margin-inline: auto;
}

.section-actions {
  margin-top: 2.25rem;
}

.section-actions-centered {
  justify-content: center;
}

/* Home */
.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.home-hero::before {
  position: absolute;
  top: -8rem;
  left: -9rem;
  width: 19rem;
  height: 19rem;
  border: 1px solid rgba(176, 0, 16, 0.12);
  border-radius: 50%;
  content: "";
}

.home-hero-grid {
  display: grid;
  gap: 2.5rem;
  padding: 0 0 clamp(3.5rem, 8vw, 6.5rem);
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.75rem, 7vw, 4.5rem);
}

.home-hero-copy h1 {
  max-width: 13ch;
}

.home-hero-copy .lead {
  max-width: 40rem;
}

.hero-facts {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 0.1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.hero-facts strong {
  font-size: 0.88rem;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-media-collage {
  position: relative;
  order: -1;
  width: calc(100% + 2rem);
  min-height: clamp(31rem, 68svh, 42rem);
  margin-inline: -1rem;
  isolation: isolate;
}

.hero-media-collage figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #2d1812;
}

.hero-fire-video {
  position: absolute;
  inset: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-fire-video::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(23, 10, 7, 0.78));
  content: "";
}

.hero-fire-video video,
.hero-fire-video canvas,
.hero-grill-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fire-video video {
  object-position: 50% 50%;
}

.hero-fire-video canvas {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
}

.hero-fire-video.has-scroll-sequence canvas { opacity: 1; }
.hero-fire-video.has-scroll-sequence video { opacity: 0; }

.hero-fire-video figcaption {
  position: absolute;
  z-index: 2;
  right: 7rem;
  bottom: 1.35rem;
  left: 1.25rem;
  color: white;
  font-size: 0.9rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-fire-video figcaption strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 6vw, 2rem);
  line-height: 1.05;
}

.hero-grill-image {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: -1.5rem;
  width: min(35vw, 9.5rem);
  aspect-ratio: 2 / 3;
  border: 4px solid var(--paper);
  border-radius: 1rem 1rem 4rem 1rem;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.weekend-highlight {
  background: var(--paper);
}

.weekend-empty {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  color: white;
  border-radius: var(--radius-lg);
  background: var(--brand-red-dark);
  box-shadow: var(--shadow);
}

.weekend-empty .eyebrow {
  color: #ffc9ce;
}

.weekend-empty h3 {
  max-width: 31ch;
  margin-bottom: 0.6rem;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.weekend-empty p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.weekend-empty .button {
  align-self: center;
  justify-self: start;
}

.weekend-grid,
.favorites-grid {
  display: grid;
  gap: 1.15rem;
}

.weekend-card,
.favorite-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.weekend-card img,
.favorite-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.weekend-card > div,
.favorite-copy {
  padding: 1.25rem;
}

.weekend-card h3,
.favorite-card h3 {
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.weekend-card p,
.favorite-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.weekend-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--brand-red-action);
}

.favorites-section {
  background: var(--cream);
}

.favorite-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.favorite-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.favorite-image {
  overflow: hidden;
  background: #e8ded3;
}

.favorite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.favorite-card:hover img {
  transform: scale(1.025);
}

.fire-story {
  color: #fff8f3;
  background: #201714;
}

.editorial-grid,
.family-grid,
.location-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.editorial-media,
.family-media,
.location-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.editorial-media {
  position: relative;
  min-height: 29rem;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 29rem;
  object-fit: cover;
}

.editorial-media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--brand-red);
  background: rgba(25, 14, 11, 0.82);
  font-family: Georgia, serif;
}

.editorial-copy .eyebrow {
  color: #ff9ca5;
}

.editorial-copy .lead {
  color: rgba(255, 248, 243, 0.77);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--brand-red);
  content: "";
}

.order-section {
  background: var(--paper);
}

.order-steps {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.order-steps li {
  padding: 1.5rem;
  border-top: 3px solid var(--brand-red);
  background: var(--cream);
}

.order-steps span {
  display: block;
  margin-bottom: 2rem;
  color: var(--brand-red-action);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.order-steps h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.order-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.order-steps a {
  color: var(--brand-red-action);
  font-weight: 800;
}

.family-section {
  background: var(--brand-red-soft);
}

.family-copy p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
}

.family-media {
  position: relative;
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow);
}

.family-media img,
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.65rem 0.8rem;
  color: white;
  border-left: 3px solid var(--brand-red);
  background: rgba(25, 14, 11, 0.82);
  font-size: 0.9rem;
  font-weight: 750;
}

.review-band {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  background: var(--brand-red-dark);
}

.review-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.review-stars {
  color: #ffc4ca;
  font-size: clamp(1.35rem, 5vw, 2rem);
  letter-spacing: 0.12em;
}

.review-band .eyebrow {
  color: #ffc4ca;
}

.review-band h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.review-band h2 + p {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.review-band .button {
  justify-self: start;
}

.address-link {
  font-weight: 750;
  text-decoration-color: rgba(176, 0, 16, 0.5);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.address-link:hover { color: var(--brand-red-action); }

.location-section {
  scroll-margin-top: 1rem;
}

.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.location-detail {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.location-detail > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-red-action);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-detail p,
.location-detail address {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.location-detail a {
  color: var(--brand-red-action);
  font-size: 1.1rem;
  font-weight: 850;
}

.location-info .button-row {
  grid-column: 1 / -1;
}

.location-photo {
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-soft);
}

.location-photo figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.85rem;
}

.legal-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  color: white;
  background: var(--ink);
}

.legal-container { max-width: 52rem; }
.legal-hero h1 { margin-bottom: 0.75rem; }
.legal-hero .lead { margin-bottom: 0; color: rgba(255, 255, 255, 0.8); }
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { line-height: 1.75; }
.legal-content a { color: var(--brand-red-action); font-weight: 750; }
.legal-updated {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.parking-note {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.parking-note span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  color: white;
  border-radius: 0.45rem;
  background: var(--brand-red-action);
  font-weight: 900;
  place-items: center;
}

.map-frame {
  height: 22rem;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Menu page */
.menu-page {
  background: var(--paper);
}

.menu-page-hero {
  position: relative;
  overflow: hidden;
  color: #fff9f5;
  background: #211512;
}

.menu-page-hero::after {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.menu-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding-block: clamp(3rem, 8vw, 6.5rem);
}

.menu-hero-copy {
  align-self: center;
}

.menu-hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  color: white;
}

.menu-hero-copy .lead {
  max-width: 34rem;
  color: rgba(255, 249, 245, 0.76);
}

.menu-page-hero .eyebrow {
  color: #ff9ca5;
}

.menu-call-button {
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin-top: 1.6rem;
  text-align: left;
}

.menu-call-button small {
  font-size: 0.78rem;
  opacity: 0.82;
}

.menu-hero-media {
  position: relative;
  min-height: 23rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8rem 8rem 1.25rem 1.25rem;
  box-shadow: 0 2rem 5rem rgba(19, 7, 3, 0.36);
}

.menu-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
}

.menu-hero-media::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(25, 11, 6, 0.76));
  content: "";
}

.menu-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.35rem;
  bottom: 1.2rem;
  left: 1.35rem;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
}

.menu-catalog {
  min-height: 55vh;
  background: var(--paper);
}

.development-notice {
  padding: 0.9rem 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(176, 0, 16, 0.25);
  border-left: 0.35rem solid var(--brand-red);
  background: var(--brand-red-soft);
  font-size: 0.92rem;
}

.menu-type-header {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.menu-type-header h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.menu-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: end;
  padding: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ede5dc;
}

.menu-tab,
.menu-filter {
  min-height: 2.75rem;
  padding: 0.62rem 1rem;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.menu-tab {
  padding-inline: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.2;
}

.menu-tab:hover,
.menu-filter:hover {
  color: var(--brand-red-action);
}

.menu-tab.is-active {
  color: white;
  background: var(--ink);
  box-shadow: 0 0.3rem 0.9rem rgba(34, 26, 23, 0.16);
}

.js .menu-panel:not(.is-active) {
  display: none;
}

.menu-panel {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.menu-panel-heading {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.menu-panel-heading h2 {
  margin-bottom: 0.65rem;
}

.menu-panel-heading > div > p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.menu-validity {
  width: fit-content;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.88rem;
}

.menu-filters {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 0.1rem 0.85rem;
  margin-inline: -0.1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-filters::-webkit-scrollbar { display: none; }

.menu-filter {
  min-height: 2.65rem;
  border: 1px solid var(--line);
  background: white;
  font-size: 0.9rem;
  white-space: nowrap;
}

.menu-filter.is-active {
  color: white;
  border-color: var(--brand-red-action);
  background: var(--brand-red-action);
}

.menu-result-count {
  margin: 0.6rem 0 1.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.menu-photo-grid {
  display: grid;
  gap: 1.25rem;
}

.menu-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.menu-product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9dfd2;
}

.menu-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.menu-product-card:hover .menu-product-image img { transform: scale(1.025); }

.featured-label {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.38rem 0.65rem;
  color: white;
  border-radius: 999px;
  background: var(--brand-red-action);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-product-body { padding: 1.25rem; }

.menu-product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.menu-product-title-row h3,
.menu-product-row h3 {
  margin-bottom: 0.4rem;
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.product-category {
  margin-bottom: 0.25rem;
  color: var(--brand-red-action);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-price {
  color: var(--brand-red-dark);
  font-size: 1.08rem;
  font-weight: 900;
  white-space: nowrap;
}

.product-description,
.product-allergens,
.product-meta p {
  color: var(--muted);
  font-size: 0.93rem;
}

.product-description { margin-bottom: 0.85rem; }

.product-meta {
  display: flex;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.product-meta p,
.product-allergens { margin-bottom: 0; }

.availability-label {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  color: var(--brand-red-dark);
  border-radius: 0.35rem;
  background: var(--brand-red-soft);
  font-size: 0.75rem;
  font-weight: 850;
}

.menu-product-card.is-unavailable,
.menu-product-row.is-unavailable { background: #f7f3ed; }
.menu-product-card.is-unavailable .menu-product-image img { filter: grayscale(0.65); opacity: 0.72; }

.menu-text-list {
  margin-top: 1.5rem;
  border-top: 2px solid var(--ink);
}

.menu-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.menu-product-row .product-description { max-width: 52rem; }
.menu-product-row .availability-label { margin-top: 0.65rem; }

.menu-empty-state,
.filter-empty-state {
  max-width: 50rem;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.menu-empty-state {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.menu-empty-state h3 {
  max-width: 34ch;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.menu-empty-state > p:not(.eyebrow),
.filter-empty-state { color: var(--muted); }
.menu-empty-state .button { margin-top: 1rem; }

.menu-empty-mark {
  width: 4.5rem;
  height: 0.65rem;
  margin-bottom: 1.3rem;
  border-radius: 999px;
  background: var(--brand-red);
}

.filter-empty-state { font-weight: 750; }

.page-hero {
  min-height: 65vh;
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--cream);
}

/* Footer and persistent mobile actions */
.mobile-action-bar {
  position: fixed;
  z-index: 60;
  right: 0.7rem;
  bottom: max(0.7rem, env(safe-area-inset-bottom));
  left: 0.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0.8rem 2.2rem rgba(34, 26, 23, 0.34);
}

.mobile-action-bar a {
  display: flex;
  min-height: 3.55rem;
  padding: 0.7rem 1rem;
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-action-call {
  gap: 0.4rem;
  background: var(--brand-red-action);
}

.has-mobile-actions .site-footer {
  padding-bottom: calc(2.5rem + 4.8rem + env(safe-area-inset-bottom));
}

.site-footer {
  padding-block: clamp(3.5rem, 7vw, 5rem) 2.5rem;
  color: rgba(255, 255, 255, 0.78);
  background: #1e1513;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
}

.footer-logo {
  display: block;
  width: min(19rem, 100%);
  padding: 0.55rem 0.8rem;
  border-radius: 0.55rem;
  background: white;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 25rem;
  margin: 1.25rem 0 0;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  color: white;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address,
.footer-links {
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: white;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: 2.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 40rem) {
  .hero-facts,
  .order-steps,
  .review-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts li {
    padding: 0.85rem 1rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-facts li:first-child { padding-left: 0; }
  .hero-facts li:last-child { border-right: 0; }

  .favorites-grid,
  .weekend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weekend-empty {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .review-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
}

@media (min-width: 48rem) {
  .hero-media-collage {
    width: min(100%, 34rem);
    min-height: 42rem;
    margin-inline: auto;
  }

  .hero-fire-video {
    border-radius: 8rem 1.5rem 1.5rem;
  }

  .hero-grill-image {
    right: -2rem;
    bottom: 2rem;
    width: 12rem;
  }

  .section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
    gap: 2rem;
    align-items: end;
  }

  .section-heading-split > p {
    margin-bottom: 0.5rem;
  }

  .editorial-grid,
  .family-grid,
  .location-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .family-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .menu-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
    min-height: 38rem;
    align-items: center;
  }

  .menu-hero-media,
  .menu-hero-media img { min-height: 31rem; }

  .menu-type-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .menu-tabs { min-width: 27rem; }
  .menu-tab { padding-inline: 1rem; font-size: 0.9rem; }
  .menu-panel-heading { flex-direction: row; align-items: flex-end; }
  .menu-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-grid {
    grid-template-columns: minmax(15rem, 1.5fr) repeat(3, minmax(8rem, 1fr));
  }
}

@media (min-width: 64rem) {
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
  }

  .header-inner {
    min-height: 5.25rem;
    justify-content: space-between;
  }

  .brand {
    width: 16rem;
    flex: 0 0 auto;
  }

  .js .menu-toggle { display: none; }

  .js .site-nav,
  .site-nav {
    position: static;
    display: block;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-list {
    gap: 0.1rem;
    flex-direction: row;
    align-items: center;
  }

  .nav-list a {
    padding: 0.7rem 0.72rem;
  }

  .nav-call a {
    margin: 0 0 0 0.45rem;
    padding-inline: 1rem;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(27rem, 0.95fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    min-height: calc(100vh - 5.25rem);
    align-items: center;
    padding-block: clamp(3rem, 6vw, 6rem);
  }

  .home-hero-copy { padding-top: 0; }

  .hero-media-collage {
    order: 0;
    width: auto;
    min-height: 42rem;
    margin-inline: 0;
  }

  .hero-fire-video {
    right: 10%;
    border-radius: 8rem 1.5rem 1.5rem;
  }

  .hero-grill-image {
    right: 0;
    bottom: 2.5rem;
    width: 38%;
  }

  .favorites-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mobile-action-bar { display: none; }
  .has-mobile-actions .site-footer { padding-bottom: 2.5rem; }
}

@media (max-width: 25rem) {
  .container { width: min(calc(100% - 1.25rem), var(--max-width)); }
  .brand { width: min(15rem, calc(100% - 4.5rem)); }
  h1 { font-size: clamp(2.15rem, 12vw, 2.75rem); }
  .button-row .button { width: 100%; }
  .hero-media-collage {
    width: calc(100% + 1.25rem);
    min-height: clamp(31rem, 68svh, 36rem);
    margin-inline: -0.625rem;
  }
  .location-info { grid-template-columns: 1fr; }
  .location-info .button-row { grid-column: auto; }
  .menu-product-title-row,
  .menu-product-row { grid-template-columns: 1fr; }
}

.published-menu-page {
  background: var(--cream);
}

.published-menu-hero {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 75% 25%, rgba(176, 0, 16, 0.3), transparent 34%),
    #21100c;
}

.published-menu-hero-grid {
  display: grid;
  min-height: 27rem;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 23rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.published-menu-hero h1 {
  max-width: 11ch;
  margin-bottom: 0.8rem;
  color: white;
}

.published-menu-hero .lead {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.86);
}

.published-menu-hero .eyebrow { color: #ffd4d8; }

.published-menu-hero-media {
  width: min(100%, 20rem);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8rem 8rem 1.25rem 1.25rem;
}

.published-menu-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-category-navigation {
  position: sticky;
  z-index: 35;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 0.45rem 1.5rem rgba(48, 23, 19, 0.06);
  backdrop-filter: blur(12px);
}

.menu-category-scroll {
  display: flex;
  gap: 0.5rem;
  padding-block: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-category-scroll::-webkit-scrollbar { display: none; }

.menu-category-scroll a {
  flex: 0 0 auto;
  padding: 0.58rem 0.85rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.menu-category-scroll a:hover,
.menu-category-scroll a:focus-visible {
  color: white;
  border-color: var(--brand-red);
  background: var(--brand-red);
}

.published-menu-catalog {
  padding-block: clamp(2rem, 5vw, 4.5rem);
}

.menu-source-notice {
  max-width: 55rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  color: var(--brand-red-dark);
  border-left: 4px solid var(--brand-red);
  background: var(--brand-red-soft);
  font-weight: 750;
}

.published-menu-category {
  padding-block: clamp(2.75rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 5rem;
}

.published-menu-category:last-child { border-bottom: 0; }

.menu-anchor-alias {
  position: relative;
  top: -5rem;
  display: block;
  width: 0;
  height: 0;
}

.published-menu-category-heading {
  display: flex;
  max-width: 52rem;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.published-menu-category-heading > span {
  padding-top: 0.35rem;
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.published-menu-category-heading h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.published-menu-category-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-category-advice {
  max-width: 56rem;
  padding: 1rem 1.15rem;
  margin: 0 0 1.5rem;
  border: 1px solid rgba(176, 0, 16, 0.2);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.menu-category-advice strong { color: var(--brand-red-dark); }
.menu-category-advice p { margin: 0.25rem 0 0; color: var(--muted); }

.published-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.published-menu-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.published-menu-item.has-product-image {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
}

.published-menu-item-image {
  min-height: 100%;
  overflow: hidden;
  background: #dfd3c6;
}

.published-menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.published-menu-item-body {
  min-width: 0;
  padding: 1.15rem;
}

.published-menu-item h3 {
  margin-bottom: 0.85rem;
  font-size: 1.06rem;
}

.published-menu-prices {
  padding: 0;
  margin: 0;
  list-style: none;
}

.published-menu-prices li {
  display: flex;
  min-width: 0;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}

.published-menu-prices li + li { margin-top: 0.55rem; }
.published-menu-prices span { color: var(--muted); font-size: 0.88rem; }
.published-menu-prices strong { flex: 0 0 auto; color: var(--brand-red-dark); font-size: 1.03rem; }

.published-menu-availability {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.published-menu-cta {
  color: white;
  background: var(--brand-red-dark);
}

.published-menu-cta-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.published-menu-cta h2 {
  max-width: 16ch;
  margin-bottom: 0.5rem;
  color: white;
}

.published-menu-cta p { max-width: 45rem; margin-bottom: 0; color: rgba(255, 255, 255, 0.82); }
.published-menu-cta .eyebrow { color: #ffd4d8; }

@media (max-width: 47.99rem) {
  .published-menu-hero-grid {
    min-height: 20rem;
    grid-template-columns: minmax(0, 1fr) 7.5rem;
    gap: 1rem;
    padding-block: 2.5rem;
  }

  .published-menu-hero h1 { font-size: clamp(2.35rem, 12vw, 3.15rem); }
  .published-menu-hero .lead { font-size: 0.96rem; }
  .published-menu-hero-media { width: 7.5rem; border-radius: 4rem 4rem 0.8rem 0.8rem; }
  .published-menu-hero .menu-call-button { width: 100%; }
  .published-menu-grid { grid-template-columns: 1fr; }
  .published-menu-item.has-product-image { grid-template-columns: 6.5rem minmax(0, 1fr); }
  .published-menu-item-body { padding: 1rem; }
  .published-menu-cta-inner { display: block; }
  .published-menu-cta .button { width: 100%; margin-top: 1.5rem; }

  .home-hero {
    min-height: calc(100svh - 5.85rem);
    height: auto;
    overflow: hidden;
    color: white;
    background: #160b08;
  }

  .home-hero::before {
    display: none;
  }

  .home-hero .home-hero-grid {
    position: relative;
    top: auto;
    display: block;
    width: 100%;
    max-width: none;
    height: calc(100svh - 5.85rem);
    min-height: 34rem;
    padding: 0;
    margin: 0;
    overflow: clip;
  }

  .home-hero-copy {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 4rem 1rem 6.25rem;
    color: white;
  }

  .home-hero-copy h1 {
    max-width: 13ch;
    margin-bottom: 0.85rem;
    color: white;
    font-size: clamp(2.15rem, 10.5vw, 2.65rem);
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.55);
  }

  .home-hero-copy .eyebrow {
    margin-bottom: 0.55rem;
    color: #ffd4d8;
  }

  .home-hero-copy .lead {
    max-width: 35rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.87);
    font-size: 0.98rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }

  .home-hero-copy .button-row {
    display: none;
  }

  .home-hero-copy .button {
    width: 100%;
  }

  .home-hero-copy .button-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(25, 12, 9, 0.48);
    backdrop-filter: blur(8px);
  }

  .home-hero-copy .text-link {
    display: none;
  }

  .home-hero-copy .hero-facts {
    display: none;
  }

  .hero-media-collage {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .hero-fire-video {
    inset: 0;
    border-radius: 0;
  }

  .hero-fire-video video {
    object-position: 50% 48%;
  }

  .hero-fire-video::after {
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(20, 8, 5, 0.12) 0%, rgba(20, 8, 5, 0.2) 28%, rgba(20, 8, 5, 0.9) 83%, #160b08 100%),
      linear-gradient(to right, rgba(20, 8, 5, 0.16), transparent 65%);
  }

  .hero-fire-video figcaption,
  .hero-grill-image {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
