.site-header {
  padding: 1.5rem 1rem 0;
  color: white;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.site-header__brand {
  color: inherit;
  text-decoration: none;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-header__toggle {
  display: none;
  font-size: 1.75rem;
  line-height: 1;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
}

.site-header__menu {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.site-header__link {
  color: inherit;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.88;
  transition: opacity 0.12s ease;
}

.site-header__link:hover,
.site-header__link:focus-visible {
  opacity: 1;
}

.site-header__link.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

@media (max-width: 768px) {
  .site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    min-width: 220px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.86);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    z-index: 30;
  }

  .site-header__menu.is-open {
    display: flex;
  }
}
