:root {
  --red: #7a0000;
  --red-2: #520000;
  --red-3: #a90d0d;
  --gold: #f5c242;
  --gold-2: #ffe08a;
  --black: #080606;
  --ink: #1d1716;
  --muted: #766968;
  --line: rgba(122, 0, 0, 0.14);
  --paper: #fff9ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 5, 5, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.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;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(122, 0, 0, 0.05), rgba(245, 194, 66, 0.08)),
    #fffaf2;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 930;
}

h3 {
  font-size: 1.18rem;
  font-weight: 900;
}

p {
  margin: 1rem 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-white {
  background: var(--white);
  color: var(--red);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 6, 6, 0.88);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 6, 6, 0.96);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(245, 194, 66, 0.8);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.7vw, 1.2rem);
  font-weight: 850;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-action {
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.menu-hero {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 6, 6, 0.91) 0%, rgba(70, 0, 0, 0.72) 44%, rgba(8, 6, 6, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 6, 6, 0.8), rgba(8, 6, 6, 0.06) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: end;
  padding: clamp(2rem, 6vh, 5rem) 0 clamp(1.25rem, 3vh, 3rem);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.8vw, 5.6rem);
}

.hero-copy > p:not(.eyebrow),
.menu-hero-content > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(8, 6, 6, 0.5);
  backdrop-filter: blur(18px);
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-score {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.65rem;
  font-weight: 950;
}

.rating-lockup strong,
.rating-lockup small {
  display: block;
}

.rating-lockup small {
  color: rgba(255, 255, 255, 0.68);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.service-pills span,
.option-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 850;
}

.service-pills span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.promo-band {
  color: var(--black);
  background: var(--gold);
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
}

.promo-inner .eyebrow {
  color: var(--red);
  margin-bottom: 0.25rem;
}

.promo-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3.3rem);
}

.promo-inner p {
  max-width: 720px;
  margin-top: 0.4rem;
  font-weight: 750;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section-copy > p,
.section-heading p,
.split-cta p,
.menu-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.07rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.quick-facts div {
  min-height: 120px;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.quick-facts dt {
  color: var(--red);
  font-weight: 950;
}

.quick-facts dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 0.8rem;
  align-items: end;
}

.image-stack img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  min-height: 320px;
  transform: translateY(2rem);
}

.section-heading {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.food-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(122, 0, 0, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.food-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.food-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.food-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.food-card div div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.1rem;
}

.food-card span {
  color: var(--red);
  font-weight: 950;
}

.food-card a {
  min-width: 74px;
  text-align: center;
  border-radius: var(--radius);
  padding: 0.52rem 0.75rem;
  color: var(--black);
  background: var(--gold);
  font-weight: 950;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--white);
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-weight: 950;
}

.benefit-card p {
  color: var(--muted);
}

.reviews {
  background:
    linear-gradient(135deg, rgba(122, 0, 0, 0.94), rgba(8, 6, 6, 0.98)),
    var(--black);
}

.review-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.review-score {
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.review-score strong,
.review-score span,
.review-score small {
  display: block;
}

.review-score strong {
  color: var(--gold);
  font-size: 2.8rem;
  line-height: 1;
}

.review-score span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-score small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.testimonial-card figcaption {
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.split-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 170px;
  gap: 0.85rem;
}

.gallery-item {
  display: block;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: stretch;
}

.hours-panel,
.map-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(122, 0, 0, 0.1);
}

.hours-panel {
  padding: 1.35rem;
  background: var(--paper);
}

.hours-panel h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.hours-panel h2.open {
  color: #1c7c32;
}

.hours-panel h2.closed {
  color: var(--red);
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(122, 0, 0, 0.08);
}

.hours-list li.is-today {
  background: var(--red);
  color: var(--white);
}

.map-panel {
  display: grid;
  background: var(--black);
}

.map-panel iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
}

.map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  color: var(--white);
}

.map-info h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.map-info div {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact {
  background:
    linear-gradient(135deg, rgba(8, 6, 6, 0.96), rgba(122, 0, 0, 0.9)),
    var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.contact-panel img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(245, 194, 66, 0.75);
}

.contact-panel h3 {
  color: var(--red);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.contact-panel p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand h2 {
  margin-top: 0.7rem;
  font-size: 1.6rem;
  color: var(--white);
}

.site-footer h3 {
  margin-bottom: 0.85rem;
  color: var(--gold);
}

.site-footer a {
  display: block;
  margin-top: 0.55rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: flex;
  gap: 0.55rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

body.show-floating-actions .floating-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 48px;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 12px 34px rgba(8, 6, 6, 0.24);
  font-weight: 950;
}

.floating-actions a:first-child {
  color: var(--white);
  background: var(--red);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(94vw, 1080px);
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  line-height: 1;
}

.menu-hero {
  min-height: 68vh;
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  padding: 9rem 0 4.5rem;
}

.menu-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
}

.menu-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding-top: 3rem;
}

.menu-layout .section-inner {
  width: 100%;
}

.menu-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  max-height: calc(100vh - 124px);
  overflow: auto;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-sidebar a {
  border-radius: var(--radius);
  padding: 0.55rem 0.65rem;
  color: var(--muted);
  font-weight: 850;
}

.menu-sidebar a:hover,
.menu-sidebar a:focus-visible {
  color: var(--white);
  background: var(--red);
}

.menu-content {
  display: grid;
  gap: 1rem;
}

.menu-intro {
  margin-bottom: 0.5rem;
}

.menu-category {
  scroll-margin-top: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.45rem);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(122, 0, 0, 0.06);
}

.menu-category-head {
  margin-bottom: 1rem;
}

.menu-category h2 {
  color: var(--red);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.menu-category-head p,
.menu-item p {
  color: var(--muted);
}

.option-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.option-cloud span {
  color: var(--red);
  background: rgba(245, 194, 66, 0.2);
  border: 1px solid rgba(122, 0, 0, 0.12);
}

.price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.price-table div,
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid rgba(122, 0, 0, 0.1);
}

.price-table span,
.menu-item span,
.menu-item h3 {
  color: var(--ink);
  font-weight: 900;
}

.price-table strong,
.menu-item strong {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1.12rem;
  font-weight: 950;
}

.menu-item + .menu-item,
.menu-subhead + .menu-item {
  margin-top: 0.6rem;
}

.featured-menu-item h2 {
  margin-bottom: 0.45rem;
}

.crispy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.crispy-grid .menu-item {
  margin: 0;
}

.menu-item small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-weight: 750;
}

.menu-subhead {
  margin: 1.1rem 0 0.6rem;
  color: var(--red);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.combo-card {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.7fr);
  align-items: center;
  gap: 1rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(122, 0, 0, 0.98), rgba(8, 6, 6, 0.96)),
    var(--red);
}

.combo-card h2,
.combo-card p,
.combo-card .eyebrow {
  color: var(--white);
}

.combo-card .price-table div {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.combo-card .price-table span {
  color: var(--white);
}

.combo-card .price-table strong {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .food-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
    max-height: none;
  }

  .menu-sidebar a {
    white-space: nowrap;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed;
    inset: 82px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(8, 6, 6, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.8rem 0;
  }

  .nav-action {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.85rem 1rem !important;
  }

  .hero,
  .menu-hero {
    min-height: calc(100svh - 82px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 6, 6, 0.8), rgba(82, 0, 0, 0.82)),
      linear-gradient(0deg, rgba(8, 6, 6, 0.88), rgba(8, 6, 6, 0.1));
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 7.5rem;
  }

  .hero-card {
    margin-bottom: 4.5rem;
  }

  .two-column,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts,
  .benefit-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-top,
  .split-cta,
  .social-inner,
  .promo-inner,
  .map-info,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .social-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-table,
  .crispy-grid,
  .combo-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-inner,
  .nav-shell,
  .menu-layout {
    width: min(calc(100% - 1rem), var(--max));
  }

  .section {
    padding: 3.3rem 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .promo-inner .btn,
  .split-cta .btn,
  .social-actions .btn,
  .contact-panel-actions .btn {
    width: 100%;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }

  .food-card > div {
    min-width: 0;
  }

  .food-card div div {
    align-items: flex-start;
    flex-direction: column;
  }

  .food-card a {
    width: 100%;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    min-height: 260px;
    transform: none;
  }

  .masonry-gallery {
    grid-auto-rows: 138px;
    gap: 0.55rem;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .map-panel iframe {
    min-height: 310px;
  }

  .menu-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-actions {
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .floating-actions a {
    min-width: 66px;
  }
}
