*, *::before, *::after {
  box-sizing: border-box;
}

/* REVERTED TWICE (see git history): first overflow-x:hidden on html/body,
   then the same thing one level down on a wrapping .page-wrap div — both
   broke `position: sticky` for .keyhole-bonus__pin / .what-if__pin
   (confirmed live on both mobile and desktop: the pin stopped holding,
   scrolling straight past to expose the section's own background instead
   of staying pinned). Any ancestor with a non-visible `overflow` value
   turns it into a "scroll container" per spec, and that's what sticky's
   containing-block resolution keys off — doesn't matter whether that
   ancestor is html/body or an ordinary div, or whether it ever actually
   scrolls independently.
   clip-path does NOT create a scroll container — it's a paint-time clip,
   completely outside the Overflow module's scroll-container concept —
   so it clips the same stray horizontal bleed (torn edges, striped
   backgrounds, the footer's hands, hero doves…) without going anywhere
   near what sticky's ancestor search cares about. */
body {
  margin: 0;
  clip-path: inset(0);
  background: var(--color-cream-pale);
}

img {
  max-width: 100%;
  display: block;
}

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