/* ============================================================
   TERRA INCOGNITA — TYPOGRAPHY TOKENS
   Display face is set in CAPS (it is an all-caps face).
   Body is Hanken Grotesk. Fluid display scale.
   ============================================================ */
:root {
  --font-display: "Bootzy Terra", "Arial Black", sans-serif;
  --font-text: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Type scale (rem, 16px root) */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-md:   1.125rem;  /* 18 */
  --text-lg:   1.375rem;  /* 22 */
  --text-xl:   1.75rem;   /* 28 */
  --text-2xl:  2.25rem;   /* 36 */
  --text-3xl:  3rem;      /* 48 */
  --text-4xl:  4rem;      /* 64 */
  --text-5xl:  5.5rem;    /* 88 */

  /* Fluid display sizes */
  --display-sm: clamp(2.25rem, 1.6rem + 3.2vw, 3.5rem); /* @kind other */
  --display-md: clamp(3rem, 1.8rem + 6vw, 5.5rem); /* @kind other */
  --display-lg: clamp(3.75rem, 2rem + 9vw, 8rem); /* @kind other */

  /* Weights (Hanken Grotesk) */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Line heights */
  --leading-tight:  1.05;
  --leading-snug:   1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-display: 0.01em;  /* the rounded caps like a touch of air */
  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.08em;   /* eyebrows / labels, uppercase */
  --tracking-wider:  0.16em;
}
