:root {
  --cream: var(--global-palette7, #faf8f4);
  --paper: var(--global-palette8, #f7f1e8);
  --forest: var(--global-palette1, #2c3819);
  --olive: var(--global-palette2, #4f5a3f);
  --terracotta: var(--global-palette3, #c74c05);
  --ink: var(--global-palette9, #1a202c);
  --muted: var(--global-palette5, #68705d);
  --line: rgba(44, 56, 25, .18);
  --shadow: 0 24px 70px rgba(44, 56, 25, .12);
  --container: 1180px;
  --ease: 220ms ease;
}

.menu-page-main * {
  box-sizing: border-box;
}

.menu-page-main {
  margin: 0;
  color: var(--forest);
  background: var(--cream);
  line-height: 1.65;
}

.menu-page-main a {
  color: inherit;
  text-decoration: none;
}

.menu-page-main button {
  font: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: transparent;
  color: var(--cream);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand small {
  letter-spacing: .32em;
  font-size: 10px;
  font-weight: 500;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-nav a {
  opacity: .86;
  transition: color var(--ease), opacity var(--ease);
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: #fff;
  opacity: 1;
}

.header-cta {
  border: 1px solid rgba(250, 248, 244, .7);
  padding: 12px 18px;
}

.hero {
  position: relative;
  min-height: 620px;
  padding-top: 200px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 24, 14, .86), rgba(22, 24, 14, .48) 54%, rgba(22, 24, 14, .28)),
    var(--hero-image) center/cover;
  color: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--cream));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f1c7ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}





.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(250, 248, 244, .84);
  font-size: 18px;
}

.page-shell {
  position: relative;
  z-index: 2;
  padding: 34px 0 96px;
}

.menu-switcher,
.section-tabs {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* .section-tabs{
  width: fit-content;
} */

.menu-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transform: translateY(-66px);
}

.menu-switcher a {
  min-height: 76px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--cream);
  border: 1px solid rgba(250, 248, 244, .7);
  box-shadow: var(--shadow);
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.menu-switcher a[aria-current="page"],
.menu-switcher a:hover {
  background: var(--olive);
  color: var(--cream);
  transform: translateY(-3px);
}

.section-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 15;
  margin: -34px 0 52px;
  padding: 14px 0;
  background: rgba(250, 248, 244, .92);
  border-block: 1px solid rgba(44, 56, 25, .11);
  backdrop-filter: blur(18px);
}

.section-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-tabs::-webkit-scrollbar {
  display: none;
}

.section-tabs a {
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 1px solid var(--line);
  color: var(--olive);
  background: rgba(255, 255, 255, .34);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.section-tabs a.is-active,
.section-tabs a:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.content {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
  margin-bottom: 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.intro-band h2 {
  color: var(--forest);
  /* font-size: clamp(34px, 5vw, 64px); */
}

.legend {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.legend-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.legend p {
  margin: 0;
  /* color: var(--muted); */
  font-size: 14px;
}

.menu-section {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 54px;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  position: sticky;
  top: 96px;
  align-self: start;
}

.section-heading .count {
  display: block;
  margin-bottom: 16px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* .section-heading h2 {
  font-size: clamp(32px, 4.2vw, 54px);
} */

.section-note {
  margin: 16px 0 0;
  /* color: var(--muted); */
  font-size: 14px;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.menu-itemm {
  padding: 24px;
  min-height: 170px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .42);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.menu-itemm:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 76, 5, .45);
  box-shadow: 0 18px 45px rgba(44, 56, 25, .1);
}

.item-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.item-name {
  font-size: 24px;
  line-height: 1.12;
  color: var(--forest);
}

.item-price {
  color: var(--olive);
  font-weight: 800;
  white-space: nowrap;
}

.item-description {
  margin: 13px 0 0;
  /* color: var(--muted); */
  font-size: 14px;
}

.item-addons {
  margin: 12px 0 0;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.footer-band {
  margin-top: 56px;
  padding: 54px 0;
  background: var(--forest);
  color: var(--cream);
}

.footer-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

/* .footer-inner h2 {
  font-size: clamp(30px, 4vw, 56px);
} */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .hero {
    min-height: 560px;
    padding-top: 200px;
  }

  .menu-switcher {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .menu-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading {
    position: static;
  }

  .items-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner .button {
    margin-top: 24px;
  }
}

@media (max-width: 560px) {

  .header-inner,
  .hero-inner,
  .menu-switcher,
  .section-tabs,
  .content,
  .footer-inner {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: 530px;
  }

  .menu-itemm {
    padding: 20px;
  }

  .item-top {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}