/* ============================================================
   TYPOGRAPHY — Decan Symbology
   Inscriptional capitals over humanist serifs. The voice is a
   codex: engraved titles, vellum prose, technical marginalia.
   ============================================================ */

:root {
  /* ---- FAMILIES ---- */
  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;            /* plate titles, wordmark, sign names */
  --font-flourish:'Cinzel Decorative', 'Cinzel', serif;             /* ceremonial / rare ornament */
  --font-serif:   'Cormorant Garamond', 'EB Garamond', Georgia, serif; /* ledes, pull-quotes, oracle text */
  --font-body:    'EB Garamond', 'Cormorant Garamond', Georgia, serif; /* running prose */
  --font-mono:    'IBM Plex Mono', 'SF Mono', ui-monospace, monospace; /* degree codes, decan IDs, data */
  --font-glyph:   'Noto Sans Symbols', 'Cinzel', serif;             /* astrological Unicode glyphs */

  /* ---- SIZE SCALE (modular ~1.25) ---- */
  --text-2xs:  0.6875rem;  /* 11px — micro labels, code chips */
  --text-xs:   0.75rem;    /* 12px — captions, marginalia */
  --text-sm:   0.875rem;   /* 14px — secondary UI text */
  --text-base: 1rem;       /* 16px — body default */
  --text-md:   1.1875rem;  /* 19px — lede */
  --text-lg:   1.5rem;     /* 24px — subhead */
  --text-xl:   2rem;       /* 32px — section title */
  --text-2xl:  2.75rem;    /* 44px — page title */
  --text-3xl:  3.75rem;    /* 60px — display */
  --text-4xl:  5rem;       /* 80px — hero plate title */
  --text-5xl:  7rem;       /* 112px — ceremonial */

  /* ---- WEIGHTS ---- */
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;
  --weight-black:   900;

  /* ---- TRACKING (letter-spacing) ---- */
  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.06em;
  --tracking-wider:  0.14em;
  --tracking-widest: 0.30em;   /* inscriptional caps, eyebrow labels */

  /* ---- LEADING (line-height) ---- */
  --leading-none:    1;
  --leading-tight:   1.12;
  --leading-snug:    1.28;
  --leading-normal:  1.5;
  --leading-relaxed: 1.72;

  /* ---- ROLE SHORTHANDS ---- */
  --type-eyebrow: var(--weight-semibold) var(--text-xs)/1.4 var(--font-display);
  --type-h1:      var(--weight-bold) var(--text-2xl)/var(--leading-tight) var(--font-display);
  --type-h2:      var(--weight-semibold) var(--text-xl)/var(--leading-tight) var(--font-display);
  --type-lede:    var(--weight-400) var(--text-md)/var(--leading-relaxed) var(--font-serif);
  --type-body:    var(--weight-regular) var(--text-base)/var(--leading-relaxed) var(--font-body);
  --type-code:    var(--weight-medium) var(--text-sm)/1.4 var(--font-mono);
}
