/**
 * Design tokens (frontend + scroll/layout helpers).
 * Palette aligns with theme.json presets; use both for block editor parity.
 */
:root {
    --color-base: #f3f2ef;
    --color-white: #ffffff;
    --color-foreground: #7e7a75;
    --color-foreground-muted: #75787a;
    --color-border: #e1e1e1;
    --color-line: #06c755;

    --font-figtree: "Figtree", sans-serif;
    --font-zen-mincho: "Zen Old Mincho", serif;
    --font-koburina: "FP-KoburinaGoStdN-W3", sans-serif;

    /* Section curve animation: 0 = curved, 1 = flat (drive via JS) */
    --section-curve-progress: 0;

    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
}
