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

.menu-page-header {
  color: var(--white);
  background: var(--night);
}

.menu-page-header > .shell {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.menu-page-header .brand {
  font-size: 2.8rem;
}

.menu-page-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-page-header nav a:hover {
  color: var(--copper-light);
}

.menu-page-hero {
  padding-block: 115px 105px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(200, 135, 88, 0.2), transparent 25rem),
    var(--wine);
}

.menu-page-hero h1 {
  margin: 0;
  color: var(--copper-light);
  font-family: var(--font-display), serif;
  font-size: clamp(5.5rem, 11vw, 10rem);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.06em;
}

.menu-page-hero > .shell > p:not(.eyebrow) {
  max-width: 650px;
  margin: 42px 0 34px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.category-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 237, 0.96);
  backdrop-filter: blur(16px);
}

.category-nav .shell {
  padding-block: 16px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-nav a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  flex: 0 0 auto;
  color: #75492d;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-nav a:hover {
  color: var(--white);
  background: var(--wine);
}

.full-menu {
  padding-block: 115px 140px;
}

.full-menu-category {
  scroll-margin-top: 95px;
  padding-block: 75px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: clamp(50px, 8vw, 130px);
}

.full-menu-category:first-child {
  padding-top: 0;
}

.category-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-content: start;
}

.category-heading > span {
  padding-top: 9px;
  color: #9b6947;
  font-family: var(--font-display), serif;
  font-size: 1.15rem;
}

.category-heading h2 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.category-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.7;
}

.category-heading .menu-time {
  color: #955f3d;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dish-list {
  border-top: 1px solid var(--line);
}

.dish-row {
  min-height: 112px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.dish-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
}

.dish-number {
  min-width: 28px;
  padding-top: 7px;
  color: #a26c47;
  font-size: 0.66rem;
  font-weight: 700;
}

.dish-row h3 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
}

.dish-row p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.dish-row > strong {
  min-width: 85px;
  text-align: right;
  color: #744829;
  font-family: var(--font-display), serif;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.dish-row > strong small {
  font-family: var(--font-sans), sans-serif;
  font-size: 0.6rem;
}

.menu-note {
  padding-block: 46px;
  color: var(--white);
  background: var(--copper);
}

.menu-note .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.menu-note p {
  margin: 0;
  font-size: 0.75rem;
}

.menu-note a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .full-menu-category {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .category-heading {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .menu-page-header > .shell {
    min-height: 82px;
  }

  .menu-page-header .brand {
    font-size: 2.25rem;
  }

  .menu-page-header nav a:not(:first-child) {
    display: none;
  }

  .menu-page-hero {
    padding-block: 85px 80px;
  }

  .full-menu {
    padding-block: 75px 95px;
  }

  .full-menu-category {
    padding-block: 58px;
  }

  .category-heading {
    grid-template-columns: 32px 1fr;
  }

  .dish-row {
    gap: 18px;
  }

  .dish-row > strong {
    min-width: 72px;
    font-size: 1.5rem;
  }

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