.menu-page {
  --menu-green: #234237;
  --menu-green-deep: #0c2119;
  --menu-gold: #e49b0f;
  --menu-ivory: #f5f1e8;
  --menu-earth: #5a3f35;
  --menu-coal: #242322;
  min-height: 100vh;
  overflow: clip;
  color: var(--menu-coal);
  background: var(--menu-ivory);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.menu-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: min(1440px, calc(100% - 5vw));
  margin: auto;
  padding: 1.35rem 0;
  align-items: center;
  border-bottom: 1px solid rgba(245, 241, 232, 0.23);
  color: var(--menu-ivory);
}

.menu-brand img {
  display: block;
  width: clamp(8rem, 11vw, 11rem);
}

.menu-header nav {
  display: flex;
  gap: clamp(1.3rem, 3vw, 3.6rem);
  align-items: center;
}

.menu-header nav a,
.menu-language button {
  border: 0;
  padding: 0.4rem 0;
  color: inherit;
  background: transparent;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-header nav a {
  position: relative;
}

.menu-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--menu-gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.menu-header nav a:hover::after {
  transform: scaleX(1);
}

.menu-language {
  display: flex;
  justify-self: end;
  gap: 0.4rem;
  align-items: center;
}

.menu-language button {
  opacity: 0.48;
}

.menu-language button.active {
  color: var(--menu-gold);
  opacity: 1;
}

.menu-hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  grid-template-columns: 1.05fr 0.95fr;
  color: var(--menu-ivory);
  background:
    radial-gradient(circle at 15% 20%, rgba(54, 93, 75, 0.55), transparent 35%),
    var(--menu-green-deep);
}

.menu-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 4vw 6rem max(5vw, calc((100vw - 1440px) / 2));
}

.menu-hero-copy > span,
.monthly-copy > span,
.catalog-heading > div > span {
  color: var(--menu-gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-hero h1 {
  max-width: 760px;
  margin: 1.4rem 0 1.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.7rem, 8.4vw, 9.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.78;
}

.menu-hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: rgba(245, 241, 232, 0.66);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.8;
}

.menu-hero-copy > a {
  display: flex;
  width: fit-content;
  margin-top: 3rem;
  gap: 1.4rem;
  align-items: center;
  border-bottom: 1px solid var(--menu-gold);
  padding: 0 0 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-hero-copy > a i {
  color: var(--menu-gold);
  font-size: 1rem;
  font-style: normal;
}

.menu-hero-art {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--menu-green-deep), transparent 22%),
    radial-gradient(circle at center, rgba(228, 155, 15, 0.2), transparent 55%);
}

.menu-hero-art::before {
  position: absolute;
  top: 12%;
  right: -9%;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(228, 155, 15, 0.28);
  border-radius: 50%;
  content: "";
}

.menu-hero-art img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 48%;
  width: min(43vw, 690px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -45%);
}

.menu-hero-art span {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2.3rem;
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.menu-hero-orbit {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 48%;
  width: min(49vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 241, 232, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -45%);
  animation: menu-orbit 16s linear infinite;
}

.menu-hero-orbit::after {
  position: absolute;
  top: 4%;
  left: 25%;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--menu-gold);
  box-shadow: 0 0 30px var(--menu-gold);
  content: "";
}

@keyframes menu-orbit {
  to {
    transform: translate(-50%, -45%) rotate(360deg);
  }
}

.monthly-feature {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  background: #e8dfce;
}

.monthly-image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.monthly-image > img,
.monthly-image > .menu-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monthly-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(232, 223, 206, 0.52));
  content: "";
  pointer-events: none;
}

.monthly-mist {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: hidden;
  color: var(--menu-green-deep);
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.monthly-mist.is-revealed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.monthly-mist canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.monthly-mist canvas:active { cursor: grabbing; }

.monthly-mist-prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(25rem, calc(100% - 3rem));
  place-items: center;
  padding: 1.6rem;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.monthly-mist-prompt > span {
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  place-items: center;
  border: 1px solid rgba(12, 33, 25, 0.45);
  border-radius: 50%;
  font-size: 1.4rem;
  animation: mist-swipe 1.8s ease-in-out infinite;
}

.monthly-mist-prompt p {
  max-width: 19rem;
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.monthly-mist-prompt button {
  margin-top: 1rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0.35rem 0;
  color: inherit;
  background: transparent;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
}

@keyframes mist-swipe {
  0%, 100% { transform: translateX(-0.55rem); }
  50% { transform: translateX(0.55rem); }
}

.monthly-seal {
  position: absolute;
  z-index: 5;
  right: 2.5rem;
  bottom: 2.5rem;
  display: grid;
  width: 8rem;
  height: 8rem;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(245, 241, 232, 0.72);
  border-radius: 50%;
  color: var(--menu-ivory);
  background: rgba(12, 33, 25, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  backdrop-filter: blur(12px);
}

.monthly-seal b {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.8;
}

.monthly-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 8rem);
  color: var(--menu-green);
}

.monthly-copy h2 {
  margin: 1rem 0 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.monthly-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(36, 35, 34, 0.65);
  line-height: 1.8;
}

.monthly-copy > strong {
  margin-top: 1.5rem;
  color: var(--menu-earth);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 500;
}

.monthly-rating {
  display: flex;
  margin-top: 0.7rem;
  gap: 1rem;
  align-items: center;
}

.monthly-rating > small,
.product-current-rating > small {
  color: rgba(36, 35, 34, 0.48);
  font-size: 0.66rem;
}

.monthly-copy > button {
  width: fit-content;
  margin-top: 2.5rem;
  border: 1px solid var(--menu-green);
  padding: 1rem 1.4rem;
  color: var(--menu-green);
  background: transparent;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.monthly-copy > button:hover {
  color: var(--menu-ivory);
  background: var(--menu-green);
}

.monthly-note {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  max-width: 440px;
  margin: 0;
  color: rgba(36, 35, 34, 0.48);
  font-size: 0.62rem;
  line-height: 1.5;
  text-align: right;
}

.monthly-note span {
  margin-right: 0.55rem;
  color: var(--menu-gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-catalog {
  padding: clamp(5rem, 9vw, 9rem) max(4vw, calc((100vw - 1380px) / 2));
  background:
    linear-gradient(rgba(35, 66, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 66, 55, 0.035) 1px, transparent 1px),
    var(--menu-ivory);
  background-size: 48px 48px;
}

.catalog-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 3rem;
}

.catalog-heading h2 {
  margin: 0.6rem 0 0;
  color: var(--menu-green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.menu-search {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(36, 35, 34, 0.45);
}

.menu-search input {
  width: 100%;
  border: 0;
  padding: 1rem 2rem 1rem 0;
  outline: 0;
  color: var(--menu-coal);
  background: transparent;
  font-size: 0.8rem;
}

.menu-search input::placeholder {
  color: rgba(36, 35, 34, 0.5);
}

.menu-search i {
  color: var(--menu-gold);
  font-size: 1.6rem;
  font-style: normal;
}

.category-rail {
  display: flex;
  margin: 4rem 0 2.3rem;
  padding-bottom: 0.8rem;
  gap: 0.65rem;
  overflow-x: auto;
  scrollbar-color: rgba(35, 66, 55, 0.28) transparent;
  scrollbar-width: thin;
}

.category-rail button {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(35, 66, 55, 0.2);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: var(--menu-green);
  background: rgba(245, 241, 232, 0.8);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.22s ease;
}

.category-rail button small {
  display: grid;
  min-width: 1.4rem;
  height: 1.4rem;
  place-items: center;
  border-radius: 50%;
  color: var(--menu-green);
  background: rgba(35, 66, 55, 0.1);
  font-size: 0.55rem;
}

.category-rail button:hover,
.category-rail button.active {
  border-color: var(--menu-green);
  color: var(--menu-ivory);
  background: var(--menu-green);
}

.category-rail button.active small {
  color: var(--menu-green);
  background: var(--menu-gold);
}

.subcategory-block {
  display: grid;
  margin: -0.5rem 0 2.3rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.3rem;
}

.subcategory-block > span {
  color: rgba(36, 35, 34, 0.48);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subcategory-rail {
  display: flex;
  min-width: 0;
  gap: 0.25rem 1.2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.subcategory-rail::-webkit-scrollbar { display: none; }

.subcategory-rail button {
  min-width: max-content;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0.45rem 0;
  color: rgba(35, 66, 55, 0.58);
  background: transparent;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.subcategory-rail button:hover,
.subcategory-rail button.active {
  border-color: var(--menu-gold);
  color: var(--menu-green);
}

.catalog-meta {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  gap: 0.8rem;
  color: rgba(36, 35, 34, 0.5);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-meta i {
  width: 2rem;
  height: 1px;
  background: var(--menu-gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.1vw, 2.2rem);
}

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.2;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #d8ceba;
  cursor: pointer;
}

.product-image > img,
.product-image > .menu-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.product-image:hover > img,
.product-image:hover > .menu-image-placeholder {
  transform: scale(1.035);
}

.product-image > i {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(245, 241, 232, 0.7);
  border-radius: 50%;
  color: var(--menu-ivory);
  background: rgba(12, 33, 25, 0.68);
  font-size: 1.3rem;
  font-style: normal;
  backdrop-filter: blur(8px);
}

.product-image > span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-image-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.6rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(228, 155, 15, 0.24), transparent 22%),
    linear-gradient(140deg, #17382c, #0b2119);
}

.menu-image-placeholder img {
  width: clamp(3.2rem, 15%, 5.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.78;
}

.menu-image-placeholder span {
  color: rgba(245, 241, 232, 0.35);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
}

.product-copy {
  padding: 1.3rem 0 2rem;
}

.product-copy > span {
  color: var(--menu-gold);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy > button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.product-copy h3 {
  margin: 0.45rem 0 0.7rem;
  color: var(--menu-green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.product-copy > p {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0;
  overflow: hidden;
  color: rgba(36, 35, 34, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-copy > div {
  display: flex;
  margin-top: 1.2rem;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.product-copy strong {
  color: var(--menu-earth);
  font-size: 0.8rem;
}

.menu-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.09rem;
  color: rgba(90, 63, 53, 0.24);
}

.menu-stars i {
  font-size: 0.72rem;
  font-style: normal;
}

.menu-stars .is-filled {
  color: var(--menu-gold);
}

.menu-stars small {
  margin-left: 0.35rem;
  color: rgba(36, 35, 34, 0.45);
  font-size: 0.58rem;
}

.menu-stars.is-interactive {
  gap: 0.35rem;
}

.menu-stars.is-interactive button {
  border: 0;
  padding: 0.1rem;
  color: rgba(90, 63, 53, 0.24);
  background: transparent;
  font-size: clamp(2rem, 5vw, 3rem);
  cursor: pointer;
  transition: transform 0.16s ease;
}

.menu-stars.is-interactive button:hover {
  transform: translateY(-3px);
}

.menu-stars.is-interactive button.is-filled {
  color: var(--menu-gold);
}

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

.menu-loading i {
  aspect-ratio: 0.9;
  background: linear-gradient(100deg, #e3dbc9 35%, #efe9dc 50%, #e3dbc9 65%);
  background-size: 300% 100%;
  animation: menu-loading 1.4s ease infinite;
}

@keyframes menu-loading {
  to {
    background-position: -100% 0;
  }
}

.no-products {
  display: grid;
  min-height: 430px;
  place-items: center;
  align-content: center;
  gap: 1rem;
  color: var(--menu-green);
  text-align: center;
}

.no-products img {
  width: 4rem;
  border-radius: 50%;
  opacity: 0.65;
}

.no-products h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  font-weight: 400;
}

.no-products button {
  border: 0;
  border-bottom: 1px solid var(--menu-green);
  padding: 0.5rem 0;
  color: inherit;
  background: transparent;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5rem max(4vw, calc((100vw - 1380px) / 2));
  color: var(--menu-ivory);
  background: var(--menu-green-deep);
  align-items: end;
  gap: 0.5rem 3rem;
}

.menu-footer > img {
  width: 170px;
}

.menu-footer > p {
  margin: 1rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.menu-footer > small {
  max-width: 660px;
  color: rgba(245, 241, 232, 0.47);
  font-size: 0.62rem;
  line-height: 1.7;
}

.menu-footer > div {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
  gap: 2rem;
}

.menu-footer > div a {
  border-bottom: 1px solid var(--menu-gold);
  padding-bottom: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3, 10, 7, 0.82);
  backdrop-filter: blur(14px);
}

.product-modal > article {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1050px, 96vw);
  max-height: 92svh;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: auto;
  color: var(--menu-coal);
  background: var(--menu-ivory);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.product-modal-close {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(245, 241, 232, 0.7);
  border-radius: 50%;
  color: var(--menu-ivory);
  background: rgba(12, 33, 25, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(9px);
}

.product-modal-image {
  position: relative;
  min-height: 680px;
}

.product-modal-image > img,
.product-modal-image > .menu-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-image > span {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: rgba(245, 241, 232, 0.65);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.product-modal-copy > span {
  color: var(--menu-gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-modal-copy h2 {
  margin: 0.8rem 0 1.2rem;
  color: var(--menu-green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.product-modal-copy > p {
  margin: 0;
  color: rgba(36, 35, 34, 0.62);
  font-size: 0.8rem;
  line-height: 1.75;
}

.product-modal-copy > strong {
  margin-top: 1.3rem;
  color: var(--menu-earth);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.product-current-rating {
  display: flex;
  margin-top: 0.4rem;
  align-items: center;
  gap: 0.75rem;
}

.rate-product {
  margin-top: 2rem;
  border-top: 1px solid rgba(36, 35, 34, 0.18);
  padding-top: 1.5rem;
}

.rate-product > span {
  color: var(--menu-green);
  font-size: 0.72rem;
  font-weight: 600;
}

.rate-product > p {
  margin: 0.35rem 0 0.7rem;
  color: rgba(36, 35, 34, 0.54);
  font-size: 0.67rem;
}

.rate-product > button {
  display: block;
  width: 100%;
  margin-top: 1rem;
  border: 0;
  padding: 1rem;
  color: var(--menu-ivory);
  background: var(--menu-green);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.rate-product > button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.rating-success,
.rating-error {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  line-height: 1.45;
}

.rating-success {
  color: #326344;
}

.rating-error {
  color: #a23e31;
}

@media (max-width: 980px) {
  .menu-header {
    grid-template-columns: 1fr auto;
  }

  .menu-header nav {
    display: none;
  }

  .menu-hero {
    min-height: 920px;
    grid-template-columns: 1fr;
  }

  .menu-hero-copy {
    min-height: 580px;
    padding: 8rem 6vw 2rem;
  }

  .menu-hero-art {
    min-height: 380px;
  }

  .menu-hero-art img {
    width: min(72vw, 480px);
  }

  .menu-hero-orbit {
    width: min(82vw, 560px);
  }

  .monthly-feature {
    grid-template-columns: 1fr;
  }

  .monthly-image {
    min-height: 560px;
  }

  .monthly-copy {
    padding-bottom: 6rem;
  }

  .product-grid,
  .menu-loading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-modal > article {
    width: min(760px, 96vw);
    grid-template-columns: 1fr;
  }

  .product-modal-image {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .menu-header {
    width: calc(100% - 2rem);
  }

  .menu-brand img {
    width: 8rem;
  }

  .menu-hero {
    min-height: 760px;
  }

  .menu-hero-copy {
    min-height: 475px;
    padding: 6.5rem 1.15rem 2.5rem;
  }

  .menu-hero h1 {
    max-width: 22rem;
    margin: 1rem 0 1.4rem;
    font-size: clamp(3.65rem, 18vw, 5.5rem);
    line-height: 0.84;
  }

  .menu-hero-copy > p {
    font-size: 0.82rem;
  }

  .menu-hero-art {
    min-height: 285px;
  }

  .menu-hero-art img {
    width: min(74vw, 340px);
  }

  .menu-hero-orbit {
    width: min(84vw, 390px);
  }

  .monthly-image {
    min-height: 470px;
  }

  .monthly-seal {
    right: 1rem;
    bottom: 1rem;
    width: 6.5rem;
    height: 6.5rem;
  }

  .monthly-copy {
    padding: 3.6rem 1.15rem 7rem;
  }

  .monthly-copy h2 {
    margin-top: 0.75rem;
    font-size: clamp(3.25rem, 16vw, 5rem);
    line-height: 0.86;
  }

  .monthly-note {
    right: 1.15rem;
    bottom: 1.2rem;
    left: 1.15rem;
  }

  .menu-catalog {
    padding: 5rem 1.15rem;
  }

  .catalog-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .catalog-heading h2 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .category-rail {
    width: calc(100% + 1.15rem);
    margin-top: 2.7rem;
    padding-right: 1.15rem;
  }

  .category-groups button { padding: 0.68rem 0.85rem; }

  .subcategory-block {
    width: calc(100% + 1.15rem);
    margin-top: -0.8rem;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .subcategory-rail { padding-right: 1.15rem; }

  .monthly-mist-prompt {
    width: min(20rem, calc(100% - 2rem));
    padding: 1rem;
  }

  .monthly-mist-prompt p { font-size: 1.8rem; }

  .product-grid,
  .menu-loading {
    grid-template-columns: 1fr;
  }

  .product-image {
    aspect-ratio: 1.18;
  }

  .product-copy h3 {
    font-size: 2.35rem;
  }

  .menu-footer {
    grid-template-columns: 1fr;
    padding: 4rem 1.15rem;
  }

  .menu-footer > div {
    grid-column: 1;
    grid-row: auto;
    margin-top: 2rem;
    justify-self: start;
  }

  .product-modal {
    padding: 0;
    align-items: end;
  }

  .product-modal > article {
    width: 100%;
    max-height: 94svh;
  }

  .product-modal-image {
    min-height: 340px;
  }

  .product-modal-copy {
    padding: 2.5rem 1.3rem 3rem;
  }

  .product-modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-hero-orbit {
    animation: none;
  }

  .monthly-mist-prompt > span { animation: none; }

  .product-image > img,
  .product-image > .menu-image-placeholder {
    transition: none;
  }
}

/* Shared WordPress header and dynamic menu helpers */
.brhuma-menu-page .site-header{color:var(--menu-ivory)}
.brhuma-menu-page .site-header.is-scrolled{background:rgba(12,33,25,.9)}
.brhuma-menu-page .brand{z-index:1}
.monthly-seal i,.monthly-note i{font-style:normal}
.monthly-mist canvas{touch-action:none}
.monthly-mist.is-revealed{pointer-events:none;opacity:0}
.product-card[hidden]{display:none!important}
.no-products:not([hidden]){display:flex}
.product-modal:not([hidden]){display:grid}
.product-modal-image>img{width:100%;height:100%;object-fit:cover}
.product-modal-image>.menu-image-placeholder{width:100%;height:100%}
.menu-stars button.is-filled{color:var(--menu-gold)}
.menu-stars i{font-style:normal}
.product-card button,.monthly-copy button,.no-products button,.rate-product button{font-family:inherit}
.catalog-meta span>i{font-style:normal}
.footer-rating .rating-actions a{color:inherit;text-decoration:none}
.menu-page+.product-modal+.site-footer{margin-top:0}

@media(max-width:800px){
  .brhuma-menu-page .site-header{width:calc(100% - 2rem)}
  .brhuma-menu-page .menu-hero{padding-top:4.8rem}
}
