/* ==========================================================================
   PRE-LAUNCH SALES LOCK
   Greys out and disables every purchase / order CTA until sales go live.

   TO RE-ENABLE ORDERING IN THE FUTURE:
   Remove the two references to this feature from index.html, about.html,
   and story.html:
       <link rel="stylesheet" href="css/presale.css" />
       <script src="js/presale.js" defer></script>
   The `data-presale-locked` attributes left on the buttons are inert on
   their own, so the buttons return to full, normal function immediately.
   (Optionally strip the attributes later for tidiness — not required.)
   ========================================================================== */

[data-presale-locked] {
  opacity: 0.5;
  filter: grayscale(0.7);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  /* neutralise any animated hover lift while locked */
  transform: none !important;
}
