/* ============================================================
   Site-wide polish — applies to ALL pages.
   Safe / additive only: no colour, layout-structure, or brand
   (button/card/heading shape) changes.
   Companion to ac-homepage-system.css (homepage-only widths/padding)
   and to the theme.json content-width / root-padding changes.
   Fully reversible: delete this file + its wp_enqueue_style()
   ('ac-site-system') in functions.php.
   Applied 2026-07-01.
   ============================================================ */

/* Prevent horizontal scroll without breaking position:sticky
   (clip, unlike hidden, does not create a scroll container). */
body { overflow-x: clip; }

/* Balanced headline wrapping (no size/weight/family change) */
h1,
h2,
h3,
.wp-block-heading {
  text-wrap: balance;
}

/* 44px minimum tap target on the brand button (shape unchanged) */
body .ac-btn {
  min-height: 44px;
}

/* Accessibility: honour reduced-motion requests site-wide */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
