.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.25s ease;
  text-transform: uppercase;
}

.lang-btn.active {
  color: rgba(255, 255, 255, 0.88);
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.65);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  user-select: none;
}

/* Reserve the widest language variant so nav buttons don't shift on NO/EN switch */
.nav-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.nav-button::before {
  content: attr(data-alt);
  height: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}
