.b-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--color-navy-900);
  color: var(--color-text-on-dark);
}
.b-header__inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px; min-height: 72px; max-width: var(--content-w);
  margin: 0 auto;
}
.b-header__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.b-header__brand:hover { color: inherit; }
.b-header__logo { width: 44px; height: 44px; flex-shrink: 0; }
.b-header__name {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  line-height: 1.25; color: var(--color-text-on-dark);
}
.b-header__nav {
  display: flex; align-items: center; gap: 24px;
  margin-left: auto; flex-wrap: wrap;
}
.b-header__item {
  position: relative; color: var(--color-text-on-dark);
  font-size: 14px; padding: 8px 0;
  transition: color var(--transition); text-decoration: none;
}
.b-header__item:hover { color: var(--color-gold); }
.b-header__item.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--color-orange);
}
.b-header__lang {
  display: flex; align-items: center; gap: 6px;
  color: var(--color-text-on-dark); cursor: pointer; padding: 8px 0;
}
.b-header__lang .icon { width: 16px; height: 16px; stroke: currentColor; }
.b-header__burger { display: none; color: var(--color-text-on-dark); }

@media (max-width: 1023px) {
  .b-header__nav { gap: 14px; }
  .b-header__item { font-size: 13px; }
}
@media (max-width: 768px) {
  .b-header__name { display: none; }
  .b-header__nav { display: none; }
  .b-header__lang { margin-left: auto; }
  .b-header__burger {
    display: flex; flex-direction: column; gap: 4px;
    width: 32px; height: 32px; align-items: center; justify-content: center;
  }
  .b-header__burger span { display: block; width: 22px; height: 2px; background: currentColor; }
  .b-header.is-open .b-header__nav {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-navy-900);
    padding: 16px 24px; gap: 8px;
  }
}
