.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.18);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  cursor: pointer;
}
.language-switch .flag {
  width: 20px;
  height: 13px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.3);
}
.language-switch:hover { border-color: #a4d900; }
.language-switch .current-language { color: #a4d900; }
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.24);
  color: #fff;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
@media (max-width: 620px) {
  .nav {
    position: relative;
    height: 142px !important;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 0;
  }
  .brand { order: 1; }
  .mobile-menu-toggle { display: none !important; }
  .nav-links {
    order: 3;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .nav-links a {
    padding: 5px 0;
    border: 0;
    font-size: 11px;
    white-space: nowrap;
  }
  .language-switch {
    order: 2;
    position: static;
    display: inline-flex;
    margin-left: auto;
  }
}
