/* House Kit — technical a11y/PWA hardening (the house "Apple-readiness baseline", a11y-only).
   NO visual skin: colors inherit Neltel's own tokens (var(--accent)). Vendored from ~/Developer/house. */

/* iOS zooms the viewport on focus of any input under 16px. 16px is also the a11y-legible minimum.
   Low specificity so a deliberate Neltel style can still override per-field. */
input, select, textarea, button { font-size: 16px; }

/* Visible keyboard focus (WCAG 2.4.7) — shown only for keyboard nav, never on mouse/touch,
   so it adds accessibility at zero aesthetic cost to the normal pointer experience. */
:focus-visible { outline: 2px solid var(--accent, #C63D15); outline-offset: 2px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }
