/* GILTI — Typography tokens
   Bodoni Moda (Didone display) over Hanken Grotesk (body). Editorial, high-contrast,
   generous negative space. Eyebrows are tracked grotesque caps. */

:root {
  --font-display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-eyebrow: "Hanken Grotesk", system-ui, sans-serif;

  /* ----- Type scale (editorial, fluid where it matters) ----- */
  --fs-eyebrow:  0.72rem;   /* 11.5px tracked caps */
  --fs-caption:  0.8125rem; /* 13px */
  --fs-small:    0.875rem;  /* 14px */
  --fs-body:     1rem;      /* 16px */
  --fs-body-lg:  1.1875rem; /* 19px lead paragraphs */
  --fs-h6:       1.25rem;
  --fs-h5:       1.5rem;
  --fs-h4:       2rem;
  --fs-h3:       2.75rem;
  --fs-h2:       3.75rem;
  --fs-h1:       5rem;
  --fs-display:  clamp(3.5rem, 9vw, 8.5rem); /* @kind font */

  /* ----- Weights ----- */
  --fw-light:    300; /* @kind font */
  --fw-regular:  400; /* @kind font */
  --fw-medium:   500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold:     700; /* @kind font */

  /* ----- Line heights ----- */
  --lh-tight:    1.02; /* @kind font */
  --lh-snug:     1.14; /* @kind font */
  --lh-normal:   1.5; /* @kind font */
  --lh-relaxed:  1.65; /* @kind font */

  /* ----- Letter spacing ----- */
  --ls-display:  -0.02em; /* @kind font */
  --ls-heading:  -0.012em; /* @kind font */
  --ls-body:     0; /* @kind font */
  --ls-eyebrow:  0.22em; /* @kind font */
  --ls-caps:     0.08em; /* @kind font */
}
