/* ============================================================
   O GAÚCHO — TYPOGRAPHY TOKENS
   Serif-forward & restrained. Headings are elegant, never huge.
   Body sans-serif for comfortable reading.
   ============================================================ */
:root {
  /* —— Families —— */
  --font-display:  'Cinzel', 'Trajan Pro', Georgia, serif;          /* wordmark / hero headers */
  --font-serif:    'Cormorant Garamond', 'EB Garamond', Georgia, serif; /* editorial headers, quotes */
  --font-serif-body:'EB Garamond', Georgia, 'Times New Roman', serif;   /* serif running text */
  --font-sans:     'Mulish', system-ui, -apple-system, 'Helvetica Neue', sans-serif; /* body / UI */
  --font-mono:     ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* —— 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 */

  /* —— Type scale (modest — restrained, not oversized) ——
     Major-third-ish, capped so nothing screams. */
  --text-2xs:  0.6875rem; /* 11px — overline micro */
  --text-xs:   0.75rem;   /* 12px — captions, labels */
  --text-sm:   0.875rem;  /* 14px — secondary UI */
  --text-base: 1rem;      /* 16px — body */
  --text-md:   1.125rem;  /* 18px — lead body */
  --text-lg:   1.375rem;  /* 22px — small heading */
  --text-xl:   1.75rem;   /* 28px — heading */
  --text-2xl:  2.25rem;   /* 36px — section title */
  --text-3xl:  3rem;      /* 48px — page title */
  --text-4xl:  4rem;      /* 64px — hero (use sparingly) */

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

  /* —— Letter spacing —— */
  --tracking-tightest: -0.02em;
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide:  0.06em;
  --tracking-wider: 0.14em;  /* spaced display caps */
  --tracking-widest:0.28em;  /* CHURRASQUERÍA-style overlines */

  /* —— Semantic roles —— */
  --type-wordmark:    var(--fw-semibold) var(--text-2xl)/1.0 var(--font-display); /* @kind font */
  --type-display:     var(--fw-semibold) var(--text-3xl)/1.05 var(--font-display);
  --type-h1:          var(--fw-semibold) var(--text-2xl)/1.15 var(--font-serif);
  --type-h2:          var(--fw-semibold) var(--text-xl)/1.2 var(--font-serif);
  --type-h3:          var(--fw-semibold) var(--text-lg)/1.3 var(--font-serif);
  --type-lead:        var(--fw-regular) var(--text-md)/1.6 var(--font-serif-body);
  --type-body:        var(--fw-regular) var(--text-base)/1.55 var(--font-sans);
  --type-body-sm:     var(--fw-regular) var(--text-sm)/1.5 var(--font-sans);
  --type-label:       var(--fw-semibold) var(--text-xs)/1.2 var(--font-sans);
  --type-overline:    var(--fw-semibold) var(--text-2xs)/1.2 var(--font-sans);
}
