.header {
    position: fixed;
    width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: var(--header-height);
}
.header.is-colored {
    background: var(--color-black);
}

.header--sticky {
  position: sticky;
  background: var(--color-black);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-md);
}

.header__logo {
  flex-shrink: 0;
  width: 132px;
  height: 74px;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 16px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 42px;
    gap: 4px;
    background: var(--color-accent);
    border-radius: 6px;
    flex-shrink: 0;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: var(--transition);
}

.header__burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(3, 2, 2, 0.98);
  padding: var(--space-xl) var(--gutter-mobile);
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
  height: fit-content;
}

.header__mobile-nav.is-open {
  display: flex;
  align-items: center;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .header {
    background: var(--color-black);
  }

  .header__inner.container {
    max-width: none;
    padding-left: var(--gutter-mobile);
    padding-right: var(--gutter-mobile);
  }

  .header__logo {
      width: 104px;
      height: 58px;
        align-self: stretch;
  }

  .header__logo img {
    height: 100%;
    width: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
  }

  .header__actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .header__actions .btn--lk-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .header__actions .btn--lk-icon {
    width: 22px;
    height: 22px;
  }

  .header__burger span {
    background: var(--color-black);
  }

  .header__burger[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .header__burger[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }

  .header__burger {
    display: none;
  }

  .header__mobile-nav {
    display: none !important;
  }
}
