/**
 * Design tokens.
 *
 * Ported verbatim from the identical :root block duplicated across all
 * nine Version 1.0 pages (releases/v1.0/) — confirmed byte-for-byte
 * identical across home.html, about.html, contact.html, and every
 * practice page before consolidating here. See docs/ARCHITECTURE.md §7.
 */

:root {
	--ink: #1E1A16;
	--ink-soft: #59503F;
	--paper: #FBF7EC;
	--paper-raised: #FFFFFF;
	--oxblood: #6C2222;
	--oxblood-deep: #521818;
	--line: #E7DFC9;
	--slate: #8A8069;
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;

	/*
	 * Container widths. Verified against the live pages: Home is uniquely
	 * wider throughout (nav and content both 980px); every other page uses
	 * a wider chrome/hero width (900px) than its content width (760px).
	 * Home's uniform override belongs in assets/css/pages/ once Phase 4
	 * builds that page — these are the shared defaults every other page
	 * actually uses.
	 */
	--width-chrome: 900px;
	--width-content: 760px;
}
