This page has two navigation bars (primary and secondary, see above) with no distinguishing labels.
Issue: Screen readers announce both as "navigation" (generic). Users can't tell which nav is for main site structure vs. content categories. Tab through both confusing.
Better: Add aria-label to each nav:
<nav aria-label="Main">...</nav>
<nav aria-label="Content Categories">...</nav>