/* M&J's Pizza Base — Premium landing styles */
:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --bg-card: rgba(28, 22, 18, 0.72);
  --bg-glass: rgba(255, 248, 240, 0.06);
  --text: #faf6f1;
  --text-muted: #c9b8a6;
  --text-soft: #9a8774;
  --accent: #e85d04;
  --accent-2: #f48c06;
  --accent-soft: rgba(232, 93, 4, 0.16);
  --gold: #e9c46a;
  --border: rgba(255, 236, 210, 0.12);
  --success: #80b918;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 1.25rem;
  --radius-sm: 0.85rem;
  --nav-h: 4.5rem;
  --claim-h: 2.5rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--claim-h) + var(--nav-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
.btn {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: calc(var(--claim-h) + 0.5rem);
}

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

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section--alt {
  background:
    radial-gradient(ellipse at top right, rgba(232, 93, 4, 0.08), transparent 45%),
    var(--bg-elevated);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 0.85rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section__lead {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0;
  font-size: 1.05rem;
}

.section__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 42rem;
}

/* Claim bar */
.claim-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--claim-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1rem;
  background: linear-gradient(90deg, #1a120c, #2a160c 40%, #1a120c);
  border-bottom: 1px solid rgba(233, 196, 106, 0.25);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.claim-bar__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a120c;
  font-weight: 800;
  font-size: 0.8rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.claim-bar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(233, 196, 106, 0.35);
}

/* Nav */
.site-header {
  position: fixed;
  top: var(--claim-h);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  backdrop-filter: blur(16px);
  background: rgba(12, 10, 9, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 10, 9, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.logo__mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo__sub {
  font-size: 0.7rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover,
.nav__links a[aria-current="true"] {
  color: var(--text);
  background: var(--bg-glass);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--bg-glass);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle__bars {
  width: 1.1rem;
  height: 0.85rem;
  position: relative;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle__bars span:nth-child(3) { bottom: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--claim-h) + var(--nav-h));
  left: 0;
  right: 0;
  z-index: 45;
  padding: 1rem;
  background: rgba(12, 10, 9, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(232, 93, 4, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 16px 36px rgba(232, 93, 4, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--light {
  background: #fff;
  color: #1a120c;
}

.btn--sm {
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 56rem);
  padding-top: calc(var(--claim-h) + var(--nav-h) + 2rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.55) 0%, rgba(12, 10, 9, 0.35) 35%, rgba(12, 10, 9, 0.92) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(232, 93, 4, 0.25), transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  padding-bottom: 1rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 700;
}

.badge--rating {
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.hero__intro {
  max-width: 36rem;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  margin: 0 0 1.75rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.75rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero__meta strong {
  color: var(--text);
  font-weight: 700;
}

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

.hero__scroll {
  position: absolute;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  writing-mode: vertical-rl;
}

/* Cards / grids */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 4, 0.35);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.icon-pill {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* About */
.about-layout {
  display: grid;
  gap: 2rem;
}

.about-panel {
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #1a1410;
  min-height: 18rem;
  position: relative;
}

.about-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy p {
  color: var(--text-muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1.1;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Menu */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu-tab {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.menu-tab[aria-selected="true"],
.menu-tab:hover {
  background: var(--accent-soft);
  color: var(--text);
  border-color: rgba(232, 93, 4, 0.45);
}

.menu-panel[hidden] {
  display: none;
}

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

.dish-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.05), rgba(255, 248, 240, 0.02));
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.dish-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 196, 106, 0.35);
  box-shadow: var(--shadow);
}

.dish-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.dish-card__desc {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.dish-card__price {
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.dish-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
  grid-column: 1 / -1;
}

.tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
}

.tag--featured {
  background: var(--accent-soft);
  color: var(--accent-2);
}

.menu-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(233, 196, 106, 0.08);
  border: 1px solid rgba(233, 196, 106, 0.2);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Featured */
.featured-grid {
  display: grid;
  gap: 1.25rem;
}

.featured-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #17120e;
  min-height: 22rem;
  box-shadow: var(--shadow);
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.featured-card:hover img {
  transform: scale(1.06);
}

.featured-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(8, 6, 5, 0.92));
}

.featured-card__body h3 {
  margin: 0.35rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.featured-card__body p {
  margin: 0;
  color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  background: #1a1410;
}

.gallery-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Reviews */
.rating-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.16), rgba(233, 196, 106, 0.08));
  border: 1px solid rgba(233, 196, 106, 0.22);
}

.rating-banner__score {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.review-card__stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-card blockquote {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.review-card footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent-2);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
}

/* Amenities */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.92rem;
}

.amenity span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 1.25rem;
}

.contact-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list a {
  color: var(--accent-2);
  font-weight: 700;
}

.contact-list li {
  color: var(--text-muted);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 18rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  filter: grayscale(0.15) contrast(1.05);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.hours-table th {
  font-weight: 700;
  color: var(--text);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.5rem);
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid rgba(232, 93, 4, 0.35);
  background:
    radial-gradient(circle at top right, rgba(244, 140, 6, 0.28), transparent 40%),
    linear-gradient(135deg, #2a160c, #120e0b 55%, #1c110b);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.85rem;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  color: var(--text-muted);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 6.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.15rem;
}

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

.site-footer a:hover {
  color: var(--accent-2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Mobile sticky CTA */
.mobile-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem;
  border-radius: 1.1rem;
  background: rgba(12, 10, 9, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.mobile-cta .btn {
  min-height: 2.75rem;
  width: 100%;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.19s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.26s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.33s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenity-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
  .mobile-cta { display: none; }
  .site-footer { padding-bottom: 3rem; }
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav-toggle { display: none; }
  .about-layout { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 0.95fr 1.05fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

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

.menu-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-search input {
  width: 100%;
  min-height: 3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.75rem 1.2rem;
  font: inherit;
}

.menu-search input::placeholder {
  color: var(--text-soft);
}

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

.menu-cats__scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.menu-cat-btn {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.menu-cat-btn[aria-selected="true"],
.menu-cat-btn:hover {
  background: var(--accent-soft);
  color: var(--text);
  border-color: rgba(232, 93, 4, 0.45);
}

.menu-count {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.menu-root {
  display: grid;
  gap: 1.75rem;
}

.menu-category-block h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

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

.food-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.05), rgba(255, 248, 240, 0.02));
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.food-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 196, 106, 0.35);
  box-shadow: var(--shadow);
}

.food-card--sold {
  opacity: 0.72;
}

.food-card__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #1a1410;
}

.food-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.food-card:hover .food-card__media img {
  transform: scale(1.05);
}

.food-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.food-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.food-card__price {
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.food-card__desc {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.food-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.food-card details {
  margin-top: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.food-card summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent-2);
  list-style: none;
}

.food-card summary::-webkit-details-marker {
  display: none;
}

.modifier-group {
  margin-top: 0.75rem;
}

.modifier-group h4 {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.modifier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.modifier-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(255, 236, 210, 0.08);
}

.modifier-list li span:last-child {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.menu-empty {
  margin: 1rem 0 0;
  color: var(--text-soft);
}

@media (min-width: 700px) {
  .menu-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .food-card.has-image {
    grid-template-columns: 140px 1fr;
    align-items: start;
  }
  .food-card__media {
    aspect-ratio: 1;
  }
}

@media (min-width: 980px) {
  .menu-toolbar {
    grid-template-columns: 1fr minmax(16rem, 22rem);
    align-items: center;
  }
  .menu-app {
    grid-template-columns: 15rem 1fr;
    align-items: start;
  }
  .menu-cats__scroll {
    flex-direction: column;
    overflow: visible;
  }
  .menu-cat-btn {
    width: 100%;
    text-align: left;
    border-radius: var(--radius-sm);
  }
  .menu-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__media img {
    animation: none;
    transform: none;
  }
}
