/* Bumps the sitewide section rhythm from --space-9 (96px) to --space-10
   (128px) — more breathing room between every section on the page. Uses an
   existing token rather than redefining --space-9 itself (see
   built-different.css's note on why: nothing sitewide should change by
   surprise). Must load after contact.CW3nh7dV.css (where .section's base
   padding-block lives) to win the cascade — same selector, same specificity,
   so source order decides.

   Each section that follows another already zeros its own padding-top (see
   built-different.css / where-it-applies.css / talk-to-us.css) so the gap
   between any two sections is just the earlier one's padding-bottom. Bumping
   the shared base here therefore widens every section-to-section gap on the
   page by the same amount, in one place. */
.section {
  padding-block: var(--space-10);
}
