/* Perly Consulting — Typography tokens
   Display: Archivo (blunt, flat, oversized). Italic tagline/quotes: Newsreader.
   Body: Hanken Grotesk. Ledger numerals/labels: Space Mono. */

:root {
  /* ---- Families ---- */
  --font-display: 'Archivo', 'Arial Narrow', sans-serif;
  --font-italic: 'Newsreader', Georgia, serif;      /* the résumé-trick tagline */
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace; /* dollars, eyebrows, labels */

  /* ---- Fluid display scale (blunt hero headlines) ---- */
  --text-mega: clamp(3.25rem, 9vw, 7.5rem);   /* the tree headline lockup */
  --text-display: clamp(2.5rem, 5.5vw, 4.5rem);
  --text-h1: clamp(2rem, 3.6vw, 3rem);
  --text-h2: clamp(1.5rem, 2.4vw, 2.125rem);
  --text-h3: 1.375rem;

  /* ---- Body scale ---- */
  --text-lead: 1.3125rem;    /* subheads / lead paragraphs */
  --text-body-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-eyebrow: 0.75rem;   /* mono eyebrow labels */

  /* ---- Weights ---- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;       /* blunt hero weight */

  /* ---- Line heights ---- */
  --leading-tight: 0.94;     /* oversized headline lockups */
  --leading-snug: 1.12;
  --leading-body: 1.55;

  /* ---- Tracking ---- */
  --tracking-mega: -0.03em;  /* tighten the big blunt headlines */
  --tracking-tight: -0.015em;
  --tracking-normal: 0;
  --tracking-eyebrow: 0.16em; /* mono eyebrow, uppercased */
}
