/* Studio EMKÈ — Typography tokens */
:root {
  /* Families */
  --font-serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-sans:  "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:  "Spline Sans Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Roles */
  --font-display: var(--font-serif); /* large editorial headings */
  --font-heading: var(--font-serif); /* section headings */
  --font-body:    var(--font-sans);  /* UI + paragraphs */
  --font-label:   var(--font-sans);  /* tracked-out labels */
  --font-code:    var(--font-mono);

  /* Type scale (1.250 major-third, 16px base) */
  --text-2xs: 0.6875rem; /* 11px */
  --text-xs:  0.75rem;   /* 12px */
  --text-sm:  0.875rem;  /* 14px */
  --text-md:  1rem;      /* 16px */
  --text-lg:  1.25rem;   /* 20px */
  --text-xl:  1.5625rem; /* 25px */
  --text-2xl: 1.9531rem; /* 31px */
  --text-3xl: 2.4414rem; /* 39px */
  --text-4xl: 3.0518rem; /* 49px */
  --text-5xl: 3.8147rem; /* 61px */
  --text-6xl: 4.7684rem; /* 76px */

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

  /* Line heights */
  --leading-tight:  1.08;
  --leading-snug:   1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-label:  0.16em; /* uppercase eyebrow labels */
}
