/* ============================================================
   Creative Projects — Typography tokens
   Type families, fluid scale, weights, tracking, line-heights.
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: 'Archivo Expanded', 'Archivo', system-ui, sans-serif;
  --font-text:    'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* ---- Weights ---- */
  --fw-regular: 400;  /* @kind other */
  --fw-medium:  500;  /* @kind other */
  --fw-semibold:600;  /* @kind other */
  --fw-bold:    700;  /* @kind other */
  --fw-display: 800;  /* @kind other */

  /* ---- Type scale (fluid where it matters) ---- */
  --fs-display: clamp(3rem, 1.8rem + 5.4vw, 6.5rem);   /* @kind other */ /* 48->104 hero */
  --fs-h1:      clamp(2.4rem, 1.7rem + 3vw, 4rem);     /* @kind other */ /* 38->64 */
  --fs-h2:      clamp(1.9rem, 1.5rem + 1.7vw, 2.75rem);/* @kind other */ /* 30->44 */
  --fs-h3:      clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);/* @kind other */ /* 22->30 */
  --fs-h4:      1.25rem;   /* @kind other */ /* 20 */
  --fs-lead:    1.3125rem; /* @kind other */ /* 21 intro */
  --fs-body:    1.0625rem; /* @kind other */ /* 17 */
  --fs-sm:      0.9375rem; /* @kind other */ /* 15 */
  --fs-xs:      0.8125rem; /* @kind other */ /* 13 */
  --fs-label:   0.75rem;   /* @kind other */ /* 12 eyebrow / mono labels */

  /* ---- Line heights ---- */
  --lh-tight:   1.04;   /* @kind other */
  --lh-snug:    1.18;   /* @kind other */
  --lh-normal:  1.5;    /* @kind other */
  --lh-relaxed: 1.65;   /* @kind other */

  /* ---- Tracking ---- */
  --tracking-tight:  -0.02em;  /* @kind other */
  --tracking-normal: 0;        /* @kind other */
  --tracking-wide:   0.04em;   /* @kind other */
  --tracking-label:  0.18em;   /* @kind other */ /* uppercase eyebrows / mono labels */
}
