/* Espy Blog — design tokens (sampled from the reference). Auto light/dark. */
:root{
	--bg:#ECEAE7; --surface:#FFFFFF; --surface-2:#F6F5F3;
	--text:#24211F; --muted:#8A8580; --border:#E4E1DD;
	--primary:#DC7454; --primary-deep:#C25A3A; --primary-contrast:#fff;
	--chart-dark:#5E5A57; --chart-light:#C3BFBB; --code-bg:#2B2724; --code-text:#EDE6DF;
	--r-sm:8px; --r-md:14px; --r-lg:20px; --r-pill:999px;
	--e1:0 1px 2px rgba(0,0,0,.04); --e2:0 10px 30px rgba(30,25,22,.10);
	--ease:cubic-bezier(.2,0,0,1); --rail:72px;
	--font-display:"Inter Tight",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
	--font-body:Inter,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
	--font-read:"Iowan Old Style",Georgia,"Times New Roman",serif;
}
@media (prefers-color-scheme:dark){
	:root{
		--bg:#1A1817; --surface:#242120; --surface-2:#2E2A28;
		--text:#F1EEEB; --muted:#9A938D; --border:#332F2C;
		--primary:#E8825F; --primary-deep:#DC7454; --code-bg:#141210;
		--chart-dark:#8C8681; --chart-light:#4A4643;
		--e2:0 10px 30px rgba(0,0,0,.35);
	}
}
