/*
 * PH Delight — Home page micro-interactions
 * Reversible: remove the ph_enqueue_delight_home() call in functions.php to disable.
 */

/* ── Scroll progress bar ─────────────────────────────────────────── */
#ph-delight-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--ph-accent, #28d1a7);
  z-index: 1001;
  pointer-events: none;
  will-change: width;
}

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #ph-delight-progress {
    display: none;
  }
}
