.site-header {
  background: var(--css-red);
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.header-inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

.brand-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.main-nav a.active {
  font-weight: 700;
}

.main-nav a:hover {
  opacity: 0.85;
}

.lang-icon {
  font-size: 22px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}