/* ──────────────────────────────────────────────────────────────────
   tokens.css — Camber design tokens (single source of truth)

   Loaded first (via <link> in each page's <head>) so a page's own inline
   <style> :root can still override any token it needs to. These are the
   values that are currently IDENTICAL across pages, centralized here so a
   brand/color change is one edit instead of N.

   Page-specific themes override only what differs, in their own :root:
     • build.html  — studio white stage (--bg:#FFFFFF, --border:#E1E1E1, …)
     • index.html  — dark landing page (--bg:#0B0B0D, --border:#26282D, …)
   The content pages (about, build-detail, my-garage) use these defaults
   as-is.
   ────────────────────────────────────────────────────────────────── */
:root {
  /* Brand — identical on every page */
  --amber: #FFD966;

  /* Light content surfaces — shared by about / build-detail / my-garage.
     build.html and index.html override the ones that differ. */
  --bg:     #F4F4F3;
  --ink:    #171A20;
  --ink-2:  #5C5E62;
  --ink-3:  #9CA0A6;
  --border: #E2E3E5;
}
