/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #e11d48;
    --primary-hover: #be123c;
    --secondary-color: #0f172a;
    --accent-color: #fbbf24;
    --background-color: #fffafb;
    --surface-color: #ffffff;
    --text-color: #1f2937;
    --text-muted: #4b5563;
    --border-color: #fce7f3;
    --font-heading: 'Noto Serif JP', serif;
    --font-body: 'Noto Sans JP', sans-serif;
}