/* ── Static-rebuild additions (kept out of main.css to preserve it verbatim) ──
   The ONLY rule needed on top of the original stylesheets: the booking
   wizard's honeypot field (replaces the WP nonce inputs — see spec §0b.2). */

/* Honeypot (#inputWebsite, name="website") — must be invisible to humans;
   bots that fill it get a silent 204 from the platform. Standard
   visually-removed clip, !important so no theme rule can ever reveal it. */
.hp-field {
  position: absolute !important;
  inset-inline-start: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
