.internal-topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px clamp(16px, 4vw, 38px);
  border-bottom: 1px solid rgba(245, 196, 0, .20);
  background:
    radial-gradient(circle at 18% 0%, rgba(138, 128, 82, .08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0)),
    rgba(5, 6, 6, .96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.internal-menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 214, 141, .16);
  border-radius: 11px;
  background: rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .82);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

.internal-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.internal-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 42px;
}

.internal-brand img {
  width: 52px;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 16px rgba(245, 196, 0, .12));
}

.internal-topbar-spacer {
  width: 42px;
  height: 42px;
}

.internal-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: clamp(14px, 4vw, 38px);
  width: min(292px, calc(100vw - 28px));
  display: none;
  padding: 13px 10px 11px;
  border: 1px solid rgba(245, 196, 0, .25);
  border-left-color: rgba(166, 150, 88, .16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(138, 128, 82, .075), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .032), rgba(255, 255, 255, .010)),
    #080808;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.internal-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(166, 150, 88, .04);
}

.internal-topbar.is-open .internal-menu {
  display: grid;
  gap: 0;
}

.internal-topbar.is-open .internal-menu-btn {
  border-color: rgba(232, 214, 141, .28);
  background: rgba(232, 214, 141, .055);
  box-shadow: 0 0 16px rgba(232, 214, 141, .07);
  color: #fff;
}

.internal-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.internal-menu__header-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.internal-menu__kicker {
  color: #ffffff;
  font-family: "Bebas Neue", system-ui, sans-serif !important;
  font-size: 23px;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: .06em !important;
  word-spacing: .08em !important;
  text-transform: uppercase !important;
}

.internal-menu__subtitle {
  color: #fee13e;
  font-family: Inter, sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .06em;
}

.internal-menu__socials {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.internal-menu__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .025);
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.internal-menu__social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.internal-menu__social:hover,
.internal-menu__social:focus-visible {
  color: #f5c400;
  border-color: rgba(245, 196, 0, .32);
  background: rgba(245, 196, 0, .075);
  transform: translateY(-1px);
  outline: none;
}

.internal-menu__link {
  position: relative;
  display: block;
  width: 100%;
  padding: 13px 13px 13px 24px;
  border-radius: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.internal-menu__link::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: rgba(156, 144, 91, .54);
}

.internal-menu__link:hover,
.internal-menu__link:focus-visible {
  background: rgba(245, 196, 0, .08);
  color: #f5c400;
  box-shadow: inset 0 0 0 1px rgba(245, 196, 0, .08);
  outline: none;
}

.internal-menu__link:hover::before,
.internal-menu__link:focus-visible::before {
  background: rgba(245, 196, 0, .72);
  box-shadow: 0 0 12px rgba(245, 196, 0, .32);
}

.internal-menu__link--about {
  margin-top: 6px;
  padding: 13px 34px 13px 22px;
  border-top: 1px solid rgba(232, 214, 141, .14);
  border-bottom: 0;
  background: transparent;
  color: rgba(232, 214, 141, .86);
  box-shadow: none;
}

.internal-menu__link--about::before {
  left: 8px;
  top: 13px;
  bottom: 13px;
  width: 2px;
  background: rgba(232, 214, 141, .48);
  box-shadow: none;
}

.internal-menu__link--about::after {
  content: "\2192";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(232, 214, 141, .62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.internal-menu__link--about:hover,
.internal-menu__link--about:focus-visible {
  background: rgba(232, 214, 141, .045);
  color: rgba(255, 255, 255, .94);
  box-shadow: none;
  outline: none;
}

.internal-menu__link--about:hover::before,
.internal-menu__link--about:focus-visible::before {
  background: rgba(232, 214, 141, .72);
  box-shadow: none;
}

.internal-menu__link--about:hover::after,
.internal-menu__link--about:focus-visible::after {
  color: rgba(232, 214, 141, .86);
}

@media (max-width: 560px) {
  .internal-topbar {
    min-height: 58px;
    padding: 8px 14px;
  }

  .internal-menu-btn,
  .internal-topbar-spacer {
    width: 39px;
    height: 39px;
  }

  .internal-brand {
    width: 58px;
    height: 38px;
  }

  .internal-brand img {
    width: 47px;
  }

  .internal-menu {
    left: 12px;
    top: calc(100% + 7px);
    width: min(292px, calc(100vw - 24px));
  }
}
