.menu-page-header {
  background: var(--olive);
  padding-bottom: 4rem;
}

.menu-page-header .nav {
  position: static;
}

.menu-page-header .logo {
  text-decoration: none;
}

.menu-hero-content {
  padding-top: 3rem;
  color: var(--cream);
  text-align: center;
}

.menu-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.menu-hero-content p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.menu-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--muted);
  background: rgba(246, 242, 234, 0.96);
  backdrop-filter: blur(6px);
}

.menu-cat-nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-cat-nav::-webkit-scrollbar {
  display: none;
}

.menu-cat-nav a {
  flex-shrink: 0;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 0.95rem 1.1rem;
  border-bottom: 2px solid transparent;
}

.menu-cat-nav a:hover,
.menu-cat-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-body {
  padding: 3.8rem 0 2.2rem;
}

.menu-section {
  scroll-margin-top: 65px;
  margin-bottom: 3rem;
}

.menu-section-label {
  margin-bottom: 1.8rem;
}

.menu-section-label h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 430px), 1fr));
  gap: 1.2rem;
}

.menu-item {
  border: 1px solid var(--muted);
  background: #fff;
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.featured-item {
  border-left: 4px solid var(--gold);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.menu-item-top h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.04rem;
}

.price {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item p {
  margin: 0 0 0.55rem;
  color: #545454;
  line-height: 1.55;
  font-size: 0.92rem;
}

.tag {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--muted);
  background: var(--cream);
}

.tag.chef {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.menu-divider {
  border: none;
  border-top: 1px solid var(--muted);
  margin: 3rem 0;
}

.nav-active {
  color: var(--gold) !important;
}

@media (max-width: 980px) {
  .menu-body {
    padding-top: 2.7rem;
  }
}

@media (max-width: 680px) {
  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-cat-nav a {
    font-size: 0.76rem;
    padding: 0.82rem 0.9rem;
  }

  .menu-item-top {
    flex-wrap: wrap;
  }
}
