.btn--client {
  min-height: 42px;
  padding: 0 18px;
  color: #2f1b00;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold), #f7c34f);
  box-shadow: 0 8px 22px rgba(213, 143, 0, .22);
}

.btn--client:hover {
  background: linear-gradient(135deg, #f7bd36, var(--gold-dark));
  box-shadow: 0 10px 26px rgba(213, 143, 0, .3);
}

@media (max-width: 1000px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .btn {
    width: 100%;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
    margin-top: 5px;
  }

  .language-switcher a {
    flex: 1;
  }
}
