/**
 * Simon Bailey Studios — Design Tokens
 * Visual & Typography Standards v1.0
 * 
 */
 
:root {
  /* ============================================================
     TYPOGRAPHY — LINE HEIGHTS
     ============================================================ */
 
  --leading-tight:    1.1;    /* H1 */
  --leading-snug:     1.15;   /* H2 */
  --leading-heading:  1.2;    /* H3, H4 */
  --leading-label:    1.4;    /* labels, captions, footnotes */
  --leading-lead:     1.6;    /* lead paragraph */
  --leading-body:     1.65;   /* body copy */
  --leading-quote:    1.5;    /* blockquote */
  --leading-pull:     1.3;    /* pull quote */
  --leading-album:    1.25;   /* portfolio album body */
 
 
  /* ============================================================
     TYPOGRAPHY — LETTER SPACING
     Values in em, derived from ‰ tracking values.
     ============================================================ */
 
  --tracking-tight:   -0.01em;  /* -10‰ — H1, H2 */
  --tracking-normal:   0;       /* H3 */
  --tracking-wide:     0.01em;  /* +10‰ — H4 */
  --tracking-wider:    0.08em;  /* +80‰ — H5 */
  --tracking-widest:   0.12em;  /* +120‰ — Label/Eyebrow */
}
 