.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 255, 65, 0.22);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.site-header--minimal {
  background: rgba(0, 0, 0, 0.92);
}

body.drawer-open .site-header {
  z-index: 65;
}

.fp-lang-switch {
  display: inline-flex;
  border: 1px solid var(--color-border);
}

.fp-lang-switch button {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: 0;
  transition: color 0.15s ease, background 0.15s ease;
  cursor: pointer;
}

.fp-lang-switch button:hover {
  color: var(--color-accent-bright);
}

.fp-lang-switch button.is-active {
  color: var(--color-bg);
  background: var(--color-accent);
}

.fp-lang-switch button + button {
  border-left: 1px solid var(--color-border);
}

.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 2px solid var(--color-accent-bright);
  outline-offset: 3px;
}

@media (min-width: 1024px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.25rem;
    padding-right: 0;
  }

  .site-header__brand-col {
    justify-self: start;
  }

  .site-header__nav {
    justify-self: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .site-header__actions {
    justify-self: end;
    margin-left: 0;
  }
}
