#global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #000;
  z-index: 1000;
}

.header-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.header-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
}

.header-logo img {
  max-height: 100%;
  max-width: 100vw;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header-menu {
  position: absolute;
  top: 50%;
  right: 235px;
  transform: translateY(-50%);
  display: flex;
  gap: 24px;
  z-index: 2;
}

.header-menu a {
  color: #aaa;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
  white-space: nowrap;
}

.header-menu a:hover {
  color: #fff;
}

.header-menu a.active {
  color: #9e6767;
}

@media (max-width: 1250px) {
  .header-menu {
    display: none;
  }
}

.lang-switch {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
  font-size: 12px;
  user-select: none;
}

.lang-switch span {
  display: inline-block;
  padding: 4px 12px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 4px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.lang-switch span.active {
  background: #9e6767;
  border-color: #9e6767;
  cursor: default;
}

.lang-switch span:not(.active):hover {
  background: rgba(255,255,255,0.12);
}

.lang-switch span.active:hover {
  background: #9e6767;
}

@media (max-width: 400px) {
  .lang-switch {
    display: none;
  }
}
