/* Color tokens — one scheme, light by default; dark swaps ground and ink. Cream #F3EEE4, dark gray #2B2926. */
:root {
    --bg-primary: #F3EEE4;
    --bg-secondary: #E9E3D7;
    --text-tagline: #2B2926;
    --text-body: #2B2926;
    --border-color: #2B2926;
    --accent: #2B2926;
    --accent-contrast: #F3EEE4;

    /* Home hero after mauriciojuba.com: paper and Klein blue in light, his ink, muted, and accent in dark */
    --hero-bg: #F3EEE4;
    --hero-fg: #2B2926;
    --hero-tone: #2B2926;
    --hero-accent: #002FA7;

    /* Reveal animation */
    --reveal-dy: 16px;
    --reveal-dur: 420ms;
    --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);

    --font-display: 'Instrument Serif', 'Songti SC', 'STSong', 'Noto Serif CJK SC', 'Source Han Serif SC', 'SimSun', Georgia, serif;
    --font-body: 'Geist', -apple-system, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
    --font-hero: 'Rubik', var(--font-body);

    --container-max: 1200px;
    --container-pad: 24px;
}

[data-color-mode="dark"] { --bg-primary:#2B2926; --bg-secondary:#37342F; --text-tagline:#F3EEE4; --text-body:#F3EEE4; --border-color:#F3EEE4; --accent:#F3EEE4; --accent-contrast:#2B2926; --hero-bg:#0E0E0E; --hero-fg:#ECE9E4; --hero-tone:#E4E2DC; --hero-accent:#C3FFFC; }
