/**
 * MTHR Theme Design Tokens
 * Western / country / southwestern / rustic palette
 * Warm earthy, clean, modern
 */

:root {
    /* Warm earthy palette */
    --mthr-cream: #f8f5ef;
    --mthr-sand: #e8e0d4;
    --mthr-wheat: #d4c4a8;
    --mthr-tan: #b8a078;
    --mthr-sienna: #8b4513;
    --mthr-saddle: #654321;
    --mthr-wood: #4a3328;
    --mthr-charcoal: #2c1810;
    --mthr-text: #3d3026;
    --mthr-text-muted: #6b5b4d;

    /* Semantic */
    --mthr-bg: var(--mthr-cream);
    --mthr-bg-card: #ffffff;
    --mthr-bg-header: var(--mthr-charcoal);
    --mthr-bg-footer: var(--mthr-charcoal);

    --mthr-accent: var(--mthr-sienna);
    --mthr-accent-hover: var(--mthr-saddle);
    --mthr-nav-link: #e8d5b7;
    --mthr-nav-link-hover: #f5e8d4;

    --mthr-border: #ddd5c9;
    --mthr-border-accent: var(--mthr-sienna);
    --mthr-shadow: rgba(44, 24, 16, 0.08);
    --mthr-shadow-hover: rgba(44, 24, 16, 0.12);

    /* Typography - system serif, no external deps */
    --mthr-font-body: Georgia, "Times New Roman", "Nimbus Roman No9 L", "Liberation Serif", serif;
    --mthr-font-display: Georgia, "Times New Roman", serif;

    /* Spacing */
    --mthr-space-xs: 0.25rem;
    --mthr-space-sm: 0.5rem;
    --mthr-space-md: 1rem;
    --mthr-space-lg: 1.5rem;
    --mthr-space-xl: 2rem;
    --mthr-space-2xl: 3rem;

    /* Radii */
    --mthr-radius-sm: 4px;
    --mthr-radius-md: 8px;
    --mthr-radius-lg: 12px;

    /* Transitions */
    --mthr-transition: 0.2s ease;
}
