/**
 * Bochniak palette — 6 canonical colors only.
 */
:root {
	/* Canonical palette */
	--sc-cream: #fcf7ee;
	--sc-linen: #f5e8d9;
	--sc-tan: #c5a17b;
	--sc-copper: #996a48;
	--sc-brown: #3a2419;
	--sc-ink: #211d1a;

	--sc-cream-rgb: 252, 247, 238;
	--sc-linen-rgb: 245, 232, 217;
	--sc-tan-rgb: 197, 161, 123;
	--sc-copper-rgb: 153, 106, 72;
	--sc-brown-rgb: 58, 36, 25;
	--sc-ink-rgb: 33, 29, 26;

	/* Legacy aliases → palette */
	--sc-linen-50: var(--sc-cream);
	--sc-linen-100: var(--sc-linen);
	--sc-linen-300: var(--sc-tan);
	--sc-plywood-200: var(--sc-linen);
	--sc-plywood-300: var(--sc-tan);
	--sc-wood-300: var(--sc-tan);
	--sc-wood-500: var(--sc-copper);
	--sc-wood-700: var(--sc-copper);
	--sc-wood-900: var(--sc-brown);
	--sc-graphite-900: var(--sc-ink);
	--sc-pencil-700: var(--sc-brown);
	--sc-muted-500: var(--sc-copper);
	--sc-forest-700: var(--sc-brown);
	--sc-forest-800: var(--sc-ink);
	--sc-forest-900: var(--sc-ink);
	--sc-water-300: var(--sc-tan);
	--sc-crust-600: var(--sc-copper);
	--sc-crust-500: var(--sc-copper);
	--sc-danger: var(--sc-copper);
	--sc-ink-900: var(--sc-brown);
	--sc-ink-600: var(--sc-copper);

	/* Pause / vacation — warm terracotta (distinct from status greys) */
	--sc-pause: #c45732;
	--sc-pause-deep: #8f3a1a;
	--sc-pause-rgb: 196, 87, 50;
	--sc-pause-soft: rgba(var(--sc-pause-rgb), 0.14);
	--sc-pause-soft-strong: rgba(var(--sc-pause-rgb), 0.22);

	/* WC notices — semantic tints (still warm/neutral, distinct from body text) */
	--sc-notice-success: #2d5a3d;
	--sc-notice-success-rgb: 45, 90, 61;
	--sc-notice-info: #3d5468;
	--sc-notice-info-rgb: 61, 84, 104;
	--sc-notice-error: var(--sc-pause-deep);
	--sc-notice-error-rgb: var(--sc-pause-rgb);

	--sc-surface: var(--sc-cream);
	--sc-bg: var(--sc-cream);
	--sc-text: var(--sc-ink);
	--sc-text-muted: var(--sc-copper);
	--sc-primary: var(--sc-brown);
	--sc-primary-fg: var(--sc-cream);
	--sc-border: rgba(var(--sc-brown-rgb), 0.14);
	--sc-border-soft: rgba(var(--sc-brown-rgb), 0.08);
	--sc-shadow-soft: 0 1rem 3rem rgba(var(--sc-brown-rgb), 0.12);

	--sc-radius-sm: 10px;
	--sc-radius-md: 16px;
	--sc-radius-lg: 20px;
	--sc-radius-pill: 999px;
	--sc-container: 75rem;
	--sc-gutter: 1.5rem;
	--sc-section-y: 7rem;
	--sc-section-x: 1.5rem;
	--sc-flow-gap-md: 1.5rem;
	--sc-header-h: 4.5rem;
	--sc-header-h-scrolled: 3.5rem;
	--sc-main-offset: calc(var(--sc-header-h) + clamp(1.25rem, 3vw, 2rem));
	--sc-hero-pt: calc(var(--sc-header-h) + 3rem);
	--sc-hero-pt-lg: calc(var(--sc-header-h) + 4.25rem);
	--sc-hero-pb: 5rem;
	--sc-hero-pb-lg: 6rem;
	--sc-hero-content-max: 40rem;
	--sc-font-sans: "Inter", system-ui, sans-serif;
	--sc-font-serif: "Fraunces", Georgia, serif;
}
