.woh-global-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(8, 13, 22, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.woh-global-nav__inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.woh-global-nav__brand {
  color: #f7f3e8;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.woh-global-nav__links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.woh-global-nav__link {
  color: rgba(243, 238, 226, 0.86);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.woh-global-nav__link--walk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.02rem;
}

.woh-global-nav__link-title {
  line-height: 1.1;
}

.woh-global-nav__link-helper {
  display: none;
  margin-top: 0.12rem;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.05;
  text-transform: none;
  color: rgba(243, 238, 226, 0.92);
  white-space: nowrap;
}

.woh-global-nav__link--walk.has-helper {
  padding-top: 0.34rem;
  padding-bottom: 0.34rem;
}

.woh-global-nav__link--walk.has-helper .woh-global-nav__link-helper {
  display: block;
}

.woh-global-nav__link:hover,
.woh-global-nav__link:focus-visible {
  color: #fff6de;
  border-color: rgba(255, 222, 170, 0.66);
  background: rgba(255, 222, 170, 0.14);
}

.woh-global-nav__link.is-active {
  color: #111;
  border-color: rgba(255, 207, 140, 0.9);
  background: linear-gradient(145deg, #ffdcab, #f6b253);
}

@media (max-width: 760px) {
  .woh-global-nav__inner {
    width: min(1120px, 94vw);
    min-height: 56px;
    padding: 0.35rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .woh-global-nav__brand {
    font-size: 0.66rem;
  }

  .woh-global-nav__links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .woh-global-nav__link {
    font-size: 0.68rem;
    padding: 0.38rem 0.6rem;
  }

  .woh-global-nav__link--walk.has-helper {
    align-items: flex-start;
  }

  .woh-global-nav__link-helper {
    margin-top: 0.1rem;
    font-size: 0.53rem;
  }
}
