/* =====================================================================
   Owner edits that are presentation only, homepage. Loaded last.
   Kept beside tools/recipes/sunnyaid-zz-owner-edits.cjs (which does the DOM removals) so every
   deliberate owner change is in one of two obvious places.
   ===================================================================== */

/* 9 Sep 2026 — take the pause control off the hero photograph.
   Owner: "remove the pause button from here", with a screenshot of the disc sitting over the footage.
   It is off the picture, but it is still reachable by keyboard rather than deleted, because the hero
   video autoplays and loops: WCAG 2.2.2 (Pause, Stop, Hide) wants a mechanism to stop moving content
   that runs for more than five seconds, and this site's whole pitch is being checkable. Tabbing to it
   brings it back at full size; nothing else reveals it. Reduced-motion users never needed it, since
   premium-ux.js already stops the video for them.
   To delete it outright instead, remove the button in tools/recipes/zz-uxpro.cjs (section 6). */
html.sunnyaid #main .hero-video-toggle {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}
html.sunnyaid #main .hero-video-toggle:focus-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
