.global-menu {
  --gm-bg: #0f172a;
  --gm-text: #e2e8f0;
  --gm-hover: #524d67;
  --gm-accent: #38bdf8;
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--gm-bg);
  color: var(--gm-text);
}

.global-menu-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.global-menu-brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--gm-text);
}

.global-menu-toggle {
  display: none;
  border: 1px solid #334155;
  background: #111827;
  color: var(--gm-text);
  border-radius: 0.5rem;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
	font-size: 18px;
}

.global-menu-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.global-menu-link {
  display: block;
  text-decoration: none;
  color: var(--gm-text);
  padding: 0.6rem 0.8rem;
  border-radius: 0.45rem;
}

.global-menu-link:hover,
.global-menu-link:focus-visible {
  background: var(--gm-hover);
  outline: none;
}

.global-menu-link[aria-current='page'] {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--gm-accent);
}

@media (width <= 767px) {
  .global-menu {
    background: transparent;
  }

  .global-menu-inner {
    flex-wrap: wrap;
  }

  .global-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1000;
    box-shadow: 0 8px 24px rgb(15 23 42 / 28%);
  }

  .global-menu-list {
    position: fixed;
    top: 3.6rem;
    right: 0.75rem;
    width: min(18rem, calc(100vw - 1.5rem));
    display: grid;
    gap: 0.1rem;
    padding: 0.55rem;
    background: var(--gm-bg);
    border: 1px solid #334155;
    border-radius: 0.7rem;
    box-shadow: 0 14px 30px rgb(15 23 42 / 35%);
    z-index: 999;
  }

  .global-menu-link {
    padding: 0.65rem 0.7rem;
  }

  .global-menu-list[hidden] {
    display: none;
  }
}
