/* ============================================================
   CNP A11Y  -  prepared 18 Jul 2026, NOT deployed.
   Semantic/ARIA accessibility support only. No visual change
   to existing content.

   Provides:
   1. .cnp-skip-link  - a "Skip to content" link that is
      off-screen until it receives keyboard focus, then reveals
      at the top-left. Nothing visible changes for mouse users.
   2. .cnp-sr-only    - generic visually-hidden utility (kept
      for any future screen-reader-only text). Not required by
      the current edits but handy and inert.

   Deploy: drop a11y_cnp-a11y.css in the coachfocus-child theme
   root and enable the a11y_cnp-a11y-enqueue.php mu-plugin (same
   pattern as aud-mobile-polish-enqueue.php). Loads site-wide.
   Reversible: delete the mu-plugin to remove entirely.
   ============================================================ */

.cnp-skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: #1A1714;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 0 0 6px 0;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}
.cnp-skip-link:focus{
  left: 0;
  outline: 2px solid #D85A1F;
  outline-offset: 2px;
}

.cnp-sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
