/* Site-wide link color fix. hello-elementor reset.css sets `a { color: #CC3366 }` (pink); it loads
   after the design system and overrides the teal --text-link on any link without a more specific
   color (58 links on /refractive/ alone). Restore the brand link color. `body a` (0,0,2) beats
   reset's bare `a` (0,0,1) but loses to class/inline colors, so nav/footer/mega/breadcrumb links
   keep their intended colors. Added 2026-08-27 per Pradeep. */
body a { color: var(--text-link, #1A7F8C); }