/* ============================================================
   Dấu Chân Tự Do — Design Tokens (Style C · Gallery Editorial)
   Single source of truth for color + type. Consumed by the theme
   AND by dauchantudo-widgets (widget style-control defaults).
   Ref: design/DESIGN-dauchantudo-styleC.md
   ============================================================ */
:root{
	/* atmosphere / surface */
	--atmo0:#F6F1E8;   /* page canvas (ivory) */
	--atmo1:#FFFCF6;   /* raised surface / alt panel */
	--atmo2:#EFE7D8;   /* sunken / hover fill */
	--sand:#D8CDBC;    /* hairline border / divider */
	--ink0:#06121F;    /* inverse surface, footer, quote overlay */
	--ink1:#071B2E;    /* headings, primary ink, buttons */
	--taupe:#6F685F;   /* body text */
	--stone:#B8AEA1;   /* muted / captions */
	--cream:#F7F0E6;   /* text on dark / photo */

	/* accent — brushed brass gold */
	--gold:#B88A3B;
	--gold-lt:#D6BA7A;
	--gold-dk:#9F7430;

	/* status */
	--ok:#3F7A4F; --warn:#8A5A12; --no:#A23A2E; --info:#00416A;

	/* transparency utilities */
	--overlay-scrim:rgba(3,17,31,.55);
	--hover-fill:rgba(184,138,59,.08);
	--focus-ring:rgba(184,138,59,.5);
	--gradient-scrim:linear-gradient(180deg,rgba(3,17,31,0) 0%,rgba(3,17,31,.65) 100%);

	/* type */
	--serif:"Lora","Playfair Display",Georgia,serif;
	--sans:"Inter",Arial,sans-serif;

	/* elevation */
	--shadow-1:0 4px 16px rgba(7,27,46,.06);
	--shadow-2:0 12px 32px rgba(7,27,46,.10);
	--shadow-4:0 24px 64px rgba(7,27,46,.25);

	/* layout */
	--container:1280px;
	--radius:0px;

	/* motion */
	--t-fast:150ms; --t-base:250ms; --t-slow:500ms; --t-reveal:800ms;
	--ease-out:cubic-bezier(.16,1,.3,1);
}
