/* ============================================================
   Mandroya Senses — Typography tokens
   Fira Sans. Generous line-height (1.6–1.7), slight negative
   tracking on headings. Body in light/regular; headings semibold.
   ============================================================ */
:root {
  --font-sans: 'Fira Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: var(--font-sans);
  --font-heading: var(--font-sans);

  /* —— Weights —————————————————————————————————— */
  --fw-light: 300; /* @kind font */
  --fw-regular: 400; /* @kind font */
  --fw-medium: 500; /* @kind font */
  --fw-semibold: 600; /* @kind font */

  /* —— Type scale (rem, 16px base) ——————————————— */
  --fs-display: 3.5rem;   /* 56px — hero */
  --fs-h1: 2.5rem;        /* 40px */
  --fs-h2: 2rem;          /* 32px */
  --fs-h3: 1.5rem;        /* 24px */
  --fs-h4: 1.25rem;       /* 20px */
  --fs-lg: 1.125rem;      /* 18px — lead paragraph */
  --fs-body: 1rem;        /* 16px */
  --fs-sm: 0.9375rem;     /* 15px */
  --fs-xs: 0.8125rem;     /* 13px — captions, labels */

  /* —— Line heights ————————————————————————————— */
  --lh-tight: 1.2;        /* @kind font */
  --lh-snug: 1.35;        /* @kind font */
  --lh-body: 1.65;        /* @kind font */
  --lh-relaxed: 1.75;     /* @kind font */

  /* —— Letter spacing ——————————————————————————— */
  --ls-heading: -0.02em;  /* @kind font */
  --ls-tight: -0.01em;    /* @kind font */
  --ls-normal: 0;         /* @kind font */
  --ls-label: 0.06em;     /* @kind font */
}
