/*
 * tokens.css — Design system token declarations.
 *
 * Canonical source: docs/design-system.md §11 (Token export reference).
 * Locked extraction origin: reference/prototype.html lines 12–24.
 *
 * Any change to these values is a brand-level decision, not a styling
 * tweak. Surface a proposed change in claude.ai before editing.
 *
 * Loaded site-wide via build.js; no surface consumes these tokens yet
 * (per docs/roadmap.md Step 2.1 — token extraction only).
 */

:root {
    /* Background ramp */
    --bg:        #0A0A0A;
    --bg-2:      #0E0D0C;
    --bg-3:      #131211;

    /* Foreground ramp */
    --fg:        #EDEAE5;
    --fg-2:      #B8B2A8;
    --fg-3:      #76716A;

    /* Lines */
    --line:      rgba(255, 255, 255, 0.08);
    --line-2:    rgba(255, 255, 255, 0.05);

    /* Accent — warm copper */
    --accent:        #B5896F;
    --accent-2:      #C9A085;
    --accent-soft:   rgba(181, 137, 111, 0.12);
}
