/* Highest-precedence hamburger visibility rules */
/* Desktop & tablet (>=769px): hide hamburger, show text links */
@media (min-width: 769px) {
  :where(body) :is(#hamburger, .hamburger) { display: none !important; }
  :where(body) nav .nav-links { display: flex !important; }
}

/* Mobile (<=768px): show hamburger, hide text links */
@media (max-width: 768px) {
  :where(body) :is(#hamburger, .hamburger) { display: inline-flex !important; }
  :where(body) nav .nav-links { display: none !important; }
}