/**
 * Schema-Therapy landing tokens (default theme).
 *
 * These are the default design tokens for the "therapeutic landing" system.
 * A per-landing theme file under _themes/ can override any of these
 * (see _themes/schema-therapy.css as the reference example).
 *
 * Load order in functions.php (aura_enqueue_st_landing):
 *   1. _tokens.css         — this file, defaults
 *   2. main.css            — components use var(--st-*) references
 *   3. _themes/{slug}.css  — landing-specific overrides (wins cascade)
 */

:root {
    --st-primary: #FF9966;
    --st-primary-dark: #E8804D;
    --st-primary-light: #FFB08A;
    --st-primary-soft: #FFAAA5;
    --st-primary-rgb: 255, 153, 102;
    --st-primary-light-rgb: 255, 176, 138;
    --st-secondary: #FFE5D9;
    --st-secondary-dark: #FFDDD2;
    --st-accent: #FFC7AE;
    --st-cream: #FAF6F1;
    --st-white: #FFFFFF;
    --st-muted: #F5EDE5;
    --st-dark: #2D2D2D;
    --st-dark-section: #3A2E28;
    --st-dark-card: #4A3F38;
    --st-text: #2D2D2D;
    --st-text-md: #5A5A5A;
    --st-text-lt: #7A7A7A;
    --st-border: rgba(var(--st-primary-rgb), 0.15);
    --st-glass: rgba(255, 255, 255, 0.7);
    --st-glass-border: rgba(var(--st-primary-rgb), 0.15);
}
