/* Mobile menu visual only; AppHeader retains its existing drawer handler. */
@media (max-width: 991px) {
  header .head > button.menu.mobile-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    margin-right: -2px;
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .12);
    cursor: pointer;
    touch-action: manipulation;
  }
  header .head > button.menu.mobile-only svg {
    width: 24px;
    height: 24px;
  }
  header .head > button.menu.mobile-only:active { opacity: .85; }
}
@media (max-width: 479px) {
  header .head > button.menu.mobile-only { margin-right: 0; }
}
