.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-inner {
    height: 74px;
    min-height: 74px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow, 0 28px 80px rgba(0, 70, 32, .12));
    z-index: 80;
  }

  .nav-links .nav-art {
    display: none;
  }

  .nav-links .nav-item {
    display: grid;
    gap: 8px;
    align-items: start;
  }

  .nav-links .submenu {
    position: static;
    display: grid;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0 0 0 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 6px;
  }

  .nav-links .submenu a {
    padding: 4px 0;
    color: var(--muted);
    font-size: .9em;
  }

  .nav-links .submenu a:hover,
  .nav-links .submenu a.active {
    background: transparent;
    color: var(--green);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .brand-text span {
    display: none;
  }

  footer {
    padding: 28px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: .95rem;
    line-height: 1.55;
  }

  .footer-inner > div {
    width: 100%;
  }

  .footer-inner > div:last-child {
    max-width: 23rem;
  }

  .footer-inner > div:last-child span {
    text-align: left !important;
  }
}
