/**
 * GoodsOSLanding — "Always" Tokens
 *
 * Fixed surfaces and colors that intentionally bypass theme inversion.
 * Used for brand-statement areas that should look identical in light
 * and dark modes — currently:
 *   - Home page campfire interlude
 *   - Pricing page enterprise slab + dark CTAs
 *
 * These never appear inside `.dark { ... }` overrides — that's the point.
 * Import alongside theme-static.css; depends on no other token files.
 */

:root {
  --always-dark:         #1e1d1b;                    /* statement surface */
  --always-dark-hover:   #2b2a28;                    /* statement surface hover */
  --always-cream:        #f5f0e6;                    /* text + inverse CTA on dark */
  --always-cream-hover:  #ffffff;                    /* inverse CTA hover */
  --always-cream-muted:  rgba(245, 240, 230, 0.6);   /* secondary text on dark */
  --always-cream-subtle: rgba(245, 240, 230, 0.5);   /* decorative marks on dark */
}
