/**
 * Expected Health — shared brand tokens.
 *
 * The single source for the brand values the screenings design system
 * (screening.css, --scr-* on .scr-scope) and the book funnel
 * (book-funnel.css, --bk-* on :root) both consume. Those files keep their
 * own prefixed variables — every rule in them reads the --scr- and --bk-
 * prefixed names — but the VALUES resolve here, so a brand change is one
 * edit (code-review
 * finding: the two 1,000+-line stylesheets each carried a verbatim copy
 * of this dozen and had already begun to drift on purpose-built values).
 *
 * Deliberately NOT here: backgrounds and borders. The screenings pages run
 * inside theme chrome on cool slate (#f8fafc/#e2e8f0); the funnel is a
 * standalone warm-paper shell (#faf8f4/#e6e0d6). That split is a design
 * decision, not drift — each file owns its surface tokens locally.
 *
 * Enqueued as a dependency of both 'eh-screening' and 'eh-book'.
 */

:root {
    --eh-ink: #0f172a;
    --eh-text: #334155;
    --eh-muted: #5b6674;
    --eh-green: #047727;
    --eh-green-dark: #035c1e;
    --eh-green-tint: #e8f8ed;
    --eh-amber: #92600a;
    --eh-amber-tint: #fdf3e0;
    --eh-radius: 16px;
    --eh-radius-sm: 10px;
    --eh-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    --eh-shadow-lift: 0 10px 30px rgba(15, 23, 42, 0.1);
}
