.menu-toggle {
  position: relative;
  z-index: 82;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 28%);
  color: white;
  background: rgb(255 255 255 / 7%);
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] {
  color: white;
  background: #123a59;
  border-color: #123a59;
  box-shadow: 0 4px 16px rgb(5 31 48 / 24%);
}
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-menu[hidden] { display: none; }
.site-menu { position: fixed; z-index: 80; inset: 0; }
.site-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(4 22 34 / 72%);
  backdrop-filter: blur(3px);
  cursor: default;
}
.site-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100%;
  overflow: auto;
  padding: 94px 35px 35px;
  color: #112b3b;
  background: #fffdf8;
  box-shadow: -24px 0 70px rgb(0 0 0 / 24%);
}
.site-menu-heading {
  margin: 0 0 8px;
  color: #b64c35;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.site-menu-title {
  margin: 0 0 24px;
  font: 500 36px/1 Georgia, serif;
  letter-spacing: -.04em;
}
.site-menu-links { display: grid; margin-left: 0; border-top: 1px solid #ddd8ce; }
.site-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  color: #112b3b;
  border-bottom: 1px solid #e7e2d8;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}
.site-menu-links a::after { content: "→"; color: #87928e; font-weight: 500; }
.site-menu-links a:hover { color: #b64c35; }
.site-menu-note {
  margin: 25px 0 0;
  color: #6c7773;
  font-size: 9px;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }

.review-header .menu-toggle { margin-left: 4px; }
.review-header .header-inner > .menu-toggle { margin-left: auto; }

@media (max-width: 1180px) {
  .menu-toggle { display: grid; margin-left: auto; }
}

@media (max-width: 720px) {
  .site-menu-panel { padding: 86px 25px 28px; }
  .site-menu-title { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle > span:not(.sr-only) { transition: none; }
}
