/* ============================================================
   GTR GROUP — Typography tokens
   Brand face "Simpler", self-hosted. Weights: Light 300 · Regular 400 ·
   Bold 700 · Black 900. ("Simpler Pro", "Simpler Pro Extended" and
   "PolySans" are also available — see tokens/fonts.css.)
   Signature move: ALL-CAPS labels tracked at 0.2em.
   ============================================================ */
:root {
  --font-sans: "Simpler", system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font-sans);

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

  /* ---- Type scale (semantic) ---- */
  --text-display-2xl: 7.5rem;  /* 120px — cover hero */
  --text-display-xl:  4.5rem;  /* 72px  — section opener */
  --text-display:     3rem;    /* 48px */
  --text-h1:          2.25rem; /* 36px */
  --text-h2:          1.75rem; /* 28px */
  --text-h3:          1.375rem;/* 22px */
  --text-body-lg:     1.125rem;/* 18px */
  --text-body:        1rem;    /* 16px */
  --text-sm:          0.875rem;/* 14px */
  --text-label:       0.75rem; /* 12px — tracked caps */

  /* ---- Line heights ---- */
  --leading-tight: 1.02;   /* display */
  --leading-snug:  1.15;   /* headings */
  --leading-normal:1.5;    /* body */

  /* ---- Letter spacing ---- */
  --tracking-display: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;
  --tracking-label: 0.2em;  /* the GTR uppercase-label signature */
}
