@media (max-width: 800px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    cursor: pointer;
  }

  .menu-toggle .menu-bars {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 17px;
    height: auto;
    flex: 0 0 17px;
    background: transparent;
  }

  .menu-bars span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--ink);
  }

  .menu-toggle b {
    margin-left: 0;
  }
}
