/* Two typefaces only: Archivo Black (display) + Archivo (everything else). */
:root{
  --font-display:"Archivo Black","Archivo",system-ui,sans-serif;
  --font-body:"Archivo",system-ui,-apple-system,sans-serif;

  /* Display scale — condensed leading, tight tracking, usually UPPERCASE */
  --text-hero:clamp(3rem,7.2vw,6.5rem);      /* 48 → 104 */
  --text-h1:clamp(2.5rem,4.6vw,4rem);        /* 40 → 64  */
  --text-h2:clamp(1.875rem,2.8vw,2.75rem);   /* 30 → 44  */
  --text-h3:1.5rem;                          /* 24 */
  --text-h4:1.1875rem;                       /* 19 */

  /* Body scale */
  --text-lead:1.25rem;   /* 20 */
  --text-base:1.0625rem; /* 17 — default body */
  --text-sm:0.9375rem;   /* 15 */
  --text-xs:0.8125rem;   /* 13 */

  /* Eyebrow / section label — the brand's signature small type */
  --text-label:0.75rem;  /* 12 */
  --tracking-label:.18em;
  --tracking-display:-.02em;
  --tracking-hero:-.03em;
  --tracking-tight:-.01em;

  --leading-hero:0.92;
  --leading-display:1.02;
  --leading-heading:1.14;
  --leading-body:1.6;
  --leading-long:1.75;   /* transcripts / long-form */

  --weight-body:400; --weight-medium:500; --weight-semibold:600; --weight-bold:700;
  --measure-body:64ch; --measure-long:70ch; --measure-narrow:46ch;
}
