/* ============================================================
   Cucu's Nest — Typography tokens
   ============================================================ */

:root {
  /* Families */
  --font-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    ui-monospace, 'SFMono-Regular', 'Menlo', monospace;

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

  /* Type scale (rem, 16px base) */
  --text-xs:   0.75rem;    /* 12 — micro labels */
  --text-sm:   0.875rem;   /* 14 — captions, UI fine */
  --text-base: 1rem;       /* 16 — body */
  --text-md:   1.125rem;   /* 18 — lead body */
  --text-lg:   1.375rem;   /* 22 — small headings */
  --text-xl:   1.75rem;    /* 28 — card titles */
  --text-2xl:  2.25rem;    /* 36 — section headings */
  --text-3xl:  3rem;       /* 48 — page headings */
  --text-4xl:  4rem;       /* 64 — display */
  --text-5xl:  5.5rem;     /* 88 — hero */

  /* Line heights */
  --leading-tight:   1.08;  /* display */
  --leading-snug:    1.22;  /* headings */
  --leading-normal:  1.5;   /* body */
  --leading-relaxed: 1.7;   /* long-form narrative */

  /* Letter spacing */
  --tracking-tight:  -0.02em;  /* large display serif */
  --tracking-normal: 0em;
  --tracking-wide:   0.08em;   /* small-caps UI labels */
  --tracking-wider:  0.18em;   /* eyebrow / kicker labels */

  /* Semantic roles */
  --display-font:    var(--font-display);
  --heading-font:    var(--font-display);
  --body-font:       var(--font-body);
  --label-font:      var(--font-body);

  /* Eyebrow / kicker label preset (use together) */
  --eyebrow-size:    var(--text-sm);
  --eyebrow-weight:  var(--weight-semibold);
  --eyebrow-tracking: var(--tracking-wider);
}
