/* ============================================================
   CLUBER — TYPOGRAPHY TOKENS
   Two voices: a high-contrast transitional SERIF (the "Клубер"
   logo + editorial titles, big & confident) and a warm humanist
   SANS (UI, card titles, body, metadata).
   ============================================================ */
:root {
  /* — Families — */
  --font-display: 'Merriweather', Georgia, 'Times New Roman', serif;   /* logo, page titles, section heads, author names */
  --font-sans:    'Golos Text', 'Segoe UI', system-ui, -apple-system, sans-serif; /* UI, card titles, body, meta */
  --font-body:    var(--font-sans);

  /* — Weights — */
  --fw-regular:   400; /* @kind font */
  --fw-medium:    500; /* @kind font */
  --fw-semibold:  600; /* @kind font */
  --fw-bold:      700; /* @kind font */
  --fw-extra:     800; /* @kind font */
  --fw-black:     900; /* @kind font */

  /* — Type scale (rem, 16px base) — */
  --fs-display-xl: 3.5rem;   /* 56 — hero / about page H1 (serif) */
  --fs-display-lg: 2.5rem;   /* 40 — page titles (serif) */
  --fs-display-md: 1.875rem; /* 30 — section headers "Свежее на Клубере" (serif) */
  --fs-title-lg:   1.5rem;   /* 24 — large card / author name */
  --fs-title:      1.125rem; /* 18 — card title (sans bold) */
  --fs-body-lg:    1.0625rem;/* 17 — article body */
  --fs-body:       1rem;     /* 16 — base body / nav */
  --fs-sm:         0.875rem; /* 14 — excerpt, secondary */
  --fs-meta:       0.8125rem;/* 13 — meta counts */
  --fs-pill:       0.6875rem;/* 11 — category pill (uppercase) */

  /* — Line heights — */
  --lh-tight:   1.12;   /* @kind other */
  --lh-snug:    1.25;   /* @kind other */
  --lh-normal:  1.5;    /* @kind other */
  --lh-relaxed: 1.65;   /* @kind other */

  /* — Letter spacing — */
  --ls-pill:    0.06em;  /* uppercase pills @kind other */
  --ls-tight:   -0.01em; /* large display @kind other */
  --ls-normal:  0; /* @kind other */
}
