/* Global design tokens: fonts, colours, spacing, radii and shadows. */

:root {
    --font-serif: 'Noto Serif', Georgia, serif;
    --font-sans: 'Inter', Arial, sans-serif;
    --color-ink: #2a1f14;
    --color-ink-soft: #5f4d3d;
    --color-primary: #7d1e2e;
    --color-primary-dark: #641522;
    --color-paper: #faf6f0;
    --color-paper-strong: #fdfaf6;
    --color-sand: #ede3d5;
    --color-sand-deep: #d6b88f;
    --color-taupe: #9a8069;
    --color-line: #d7bd99;
    --color-white: #fff;
    --color-dark: #2a1f14;
    --container: 1360px;
    --gutter: clamp(1rem, 3vw, 2.5rem);
    --space-6: 3rem;
    --space-7: 4.5rem;
    --space-8: 6.5rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-soft: 0 10px 28px rgba(42, 31, 20, 0.1);
    --shadow-card: 0 7px 18px rgba(42, 31, 20, 0.11);
    --transition: 180ms ease;
}
