/* ============================================================
   01 — DESIGN TOKENS
   Single source of truth for color, type, and shared values.
   Change the palette or fonts for the whole site from here.
   ============================================================ */

:root{
  /* ---- color: surface ---- */
  --bg:        #0a0d10;
  --bg-soft:   #0d1114;
  --glass:     rgba(255,255,255,0.025);
  --line:      rgba(255,255,255,0.09);

  /* ---- color: text ---- */
  --ink:       #ecedf0;
  --ink-dim:   #8d95a3;
  --ink-faint: #565d68;

  /* ---- color: accent ---- */
  --gold:      #d6a756;
  --gold-dim:  rgba(214,167,86,0.35);
  --teal:      #4fd1c5;

  /* ---- type families ---- */
  --serif: 'Fraunces', serif;
  --sans:  'Inter', sans-serif;
  --mono:  'JetBrains Mono', monospace;

  /* ---- shared timings ---- */
  --ease-cinematic: cubic-bezier(.2,.7,.2,1);
}
