/*
 * Site-wide type scale multiplier.
 * Bumps the root font-size by percentage, which cascades into every rem-based
 * Tailwind utility and --text-site-* token defined in tailwind-theme.css
 * (those tokens are authored relative to the browser's 100% default).
 * Kept as its own stylesheet, loaded after fonts.css and before
 * output.css, so the scale can be tuned in one place without touching
 * the token definitions themselves.
 */
html {
  font-size: 100%;
}

/*
 * Mobile-only bump, added 2026-09-19 -- direct feedback that the whole
 * site read small on a phone (desktop was fine, not touched here). Bumped
 * from 112% to 125% same day, second round of direct feedback ("for my
 * old eyes"). 639px matches Tailwind's default `sm` breakpoint (640px)
 * already used elsewhere on this site -- below it is "mobile" here.
 */
@media (max-width: 639px) {
  html {
    font-size: 125%;
  }
}
