/* The Common Tone — provisional design tokens
   ----------------------------------------------------------------------------
   Placeholder until the canonical `01_SPECS/brand_tokens.css` exists in the vault.
   The section/form colours below are taken verbatim from VISUAL-STANDARDS.md so this
   project already shares the project's colour vocabulary. Reconcile against the
   canonical token file at import time.

   Usage: reference these variables — never hard-code values.
   Good:  color: var(--ct-chorus);
   Avoid: color: #D9534F;
   ---------------------------------------------------------------------------- */

:root {
  /* --- Typography -------------------------------------------------------- */
  --ct-font-body:    "Gill Sans", "Gill Sans MT", "Seravek", "Helvetica Neue", sans-serif;
  --ct-font-display: "Futura Condensed ExtraBold", "Futura", "Oswald", sans-serif;

  /* --- Form / section colour vocabulary (VISUAL-STANDARDS.md) ------------ */
  --ct-intro:       #4A90D9;
  --ct-verse:       #5CB85C;
  --ct-prechorus:   #8BC34A;
  --ct-chorus:      #D9534F;
  --ct-refrain:     #E91E63;
  --ct-postchorus:  #FF5722;
  --ct-bridge:      #F0AD4E;
  --ct-link:        #B0BEC5;
  --ct-solo:        #9C27B0;
  --ct-breakdown:   #FF7043;
  --ct-outro:       #9B59B6;

  /* --- Neutrals (VISUAL-STANDARDS typography greys) --------------------- */
  --ct-ink:         #222222;
  --ct-muted:       #666666;
  --ct-faint:       #888888;
  --ct-hairline:    #999999;
  --ct-paper:       #FFFFFF;

  /* --- Layout ----------------------------------------------------------- */
  --ct-graphic-width: 960px;   /* fixed figure width, matches print */
  --ct-radius:        5px;     /* matches section-block corner radius */
}
