.header {
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  width: min(100% - 64px, var(--container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo img {
  width: auto;
  height: 84px;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
  margin-left: auto;
}

.header__nav a {
  position: relative;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transform: translateX(-50%);
  transition: var(--transition);
}

.header__nav a:hover {
  color: var(--color-gold);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 54px;
}

.header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.header__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--color-text);
  transition: var(--transition);
}

.header__toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}