/* Rohdotar.fi brand tokens
   ------------------------
   Single source of truth for brand colors. Loaded after theme.css and site.css
   so values defined here win. Light theme only: the site does not ship a dark
   mode.

   Palette:
   - Primary teal #0f766e: links and primary actions, AA on white (4.91:1).
     Dark #0b4f49 for hover/pressed, deep #0c423d for the hero surface.
   - Warm gold #d8b76c: decorative accent only (eyebrow rules, hairlines).
     Text-safe variant #a07d2c meets AA on white.
   - Rose #9f1239: reserved for warnings and safety topics, never for hover
     states or decoration.
   - Neutrals are green-tinted grays so surfaces and lines sit naturally
     against the teal. */

:root {
    /* Teal scale */
    --brand-primary: #0f766e;
    --brand-primary-dark: #0b4f49;
    --brand-primary-deep: #0c423d;

    /* Gold accent */
    --brand-accent: #d8b76c;
    --brand-accent-dark: #a07d2c;
    --brand-accent-tint: #f8f1e1;

    /* Warning rose */
    --brand-danger: #9f1239;
    --brand-danger-tint: #fdf0f3;

    /* Neutrals */
    --brand-ink: #172126;
    --brand-muted: #56646b;
    --brand-line: #d7e0dc;
    --brand-line-strong: #c3d1ca;

    /* Surfaces, lightest to dimmest */
    --brand-paper: #ffffff;
    --brand-surface: #f5faf7;
    --brand-surface-strong: #e6f3ee;
    --brand-surface-dim: #edf3f0;
}
