/* ============================================================
   Finca Soluna — Typography tokens
   Display: Marisa (UPPERCASE, set bold or light)
   Text:    Avenir (headings heavy, body light)
   Scale rhythm follows the brand 100 / 50 / 25 contrast model.
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: "Marisa", "Marisa Light", system-ui, sans-serif;
  --font-text:    "Avenir", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* ---- Weights ---- */
  --fw-light:   300; /* @kind font */
  --fw-regular: 400; /* @kind font */
  --fw-medium:  500; /* @kind font */
  --fw-bold:    700; /* @kind font */
  --fw-black:   800; /* @kind font */

  /* ---- Display scale (Marisa) ---- */
  --type-display-xl:  clamp(3rem, 7vw, 6rem);     /* hero headline   */
  --type-display-l:   clamp(2.4rem, 5vw, 4rem);   /* section title   */
  --type-display-m:   clamp(1.8rem, 3.4vw, 2.6rem);/* card / subhead */
  --type-display-s:   1.4rem;                     /* eyebrow display */

  /* ---- Text scale (Avenir) ---- */
  --type-body-l:   1.25rem;   /* lead paragraph  */
  --type-body-m:   1rem;      /* default body    */
  --type-body-s:   0.875rem;  /* small / caption */
  --type-body-xs:  0.75rem;   /* labels / meta   */

  /* ---- Line heights ---- */
  --leading-tight:  1.05;   /* display headlines */
  --leading-snug:   1.25;   /* subheads          */
  --leading-normal: 1.6;    /* body copy         */

  /* ---- Letter spacing ---- */
  --tracking-display: 0.04em;  /* Marisa caps breathe a little */
  --tracking-eyebrow: 0.22em;  /* spaced uppercase labels      */
  --tracking-body:    0;

  /* ---- Measure (max line length ~50 chars per brand) ---- */
  --measure-body: 32ch;
  --measure-wide: 50ch;
}
