/**
 * Theme stylesheet entry point. Import order defines cascade-layer
 * declaration order (design-foundations §11): tokens, base, components,
 * utilities. Enqueued by WordPress; also used directly by the dev harness
 * so what's verified locally is exactly what ships.
 *
 * Real bug, found live 2026-08-11: wp_enqueue_style versions THIS file's
 * URL (main.css?ver=X) on every theme version bump, but these @import
 * URLs are static and unversioned — WordPress's cache-busting on main.css
 * does nothing for the 5 files actually @import'd into it. Each one is
 * served with a 7-day Cache-Control (Hostinger's static-asset default),
 * so a deployed fix to any of them was invisible to a returning visitor's
 * browser for up to a week, independent of THEME_VERSION. The query
 * string below is the cache-buster these @imports were missing — bump it
 * (matching NINETYNINEDIGEST_THEME_VERSION is the simplest convention)
 * whenever any of these 5 files changes.
 */
@import url("tokens.css?v=3.10.4");
@import url("base.css?v=3.10.4");
@import url("layout.css?v=3.10.4");
@import url("components.css?v=3.10.4");
@import url("utilities.css?v=3.10.4");
