/* ===========================================================================
   Rodrigo Martins — Typography tokens
   Display/headlines  : Archivo (heavy, editorial-legal grotesque)
   Body/UI            : Hanken Grotesk (humanist, legible)
   Brand/eyebrow caps : Cinzel (Trajan-style Roman — matches the logo)
   =========================================================================== */

:root {
  /* Families */
  --font-display: 'Archivo', 'Hanken Grotesk', system-ui, sans-serif;
  --font-sans:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-serif:   'Cinzel', 'Times New Roman', serif;

  /* Type scale (1rem = 16px) — modern, large display steps */
  --text-2xs:    0.6875rem;  /* 11 — legal fine print            */
  --text-xs:     0.75rem;    /* 12 — labels                      */
  --text-sm:     0.875rem;   /* 14 — captions, meta              */
  --text-base:   1rem;       /* 16 — body                        */
  --text-md:     1.125rem;   /* 18 — lead body                   */
  --text-lg:     1.375rem;   /* 22 — large lead                  */
  --text-xl:     1.75rem;    /* 28 — card titles / H4            */
  --text-2xl:    2.25rem;    /* 36 — H3                          */
  --text-3xl:    3rem;       /* 48 — H2                          */
  --text-4xl:    4rem;       /* 64 — H1                          */
  --text-5xl:    5.25rem;    /* 84 — hero display                */

  /* Fluid display sizes for heroes / section headers */
  --display-hero:    clamp(2.75rem, 1.2rem + 6.4vw, 5.75rem);   /* @kind other */
  --display-section: clamp(2rem, 1.1rem + 3.4vw, 3.25rem);      /* @kind other */

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

  /* Line-heights */
  --leading-none:    1;
  --leading-tight:   1.06;   /* big display                      */
  --leading-snug:    1.18;   /* headings                         */
  --leading-normal:  1.5;    /* body                             */
  --leading-relaxed: 1.68;   /* long-form                        */

  /* Letter-spacing */
  --tracking-tighter: -0.03em; /* large Archivo display          */
  --tracking-tight:   -0.015em;
  --tracking-normal:  0em;
  --tracking-wide:    0.04em;
  --tracking-eyebrow: 0.18em;   /* Cinzel / uppercase eyebrows   */
  --tracking-caps:    0.26em;   /* widest — micro labels         */
}
