/*
 * Paint-stability follow-up for the intent-first navigation drawer.
 *
 * Precomposing the off-canvas surface prevents black first-frame tiles on
 * image-heavy island pages. A solid translucent overlay avoids making that
 * layer compete with a full-viewport backdrop-filter during the slide-in.
 */
.nav-drill.hg-nav-drawer {
  will-change: transform;
}

body.nav-is-toggled .menu-bg {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
