/* ============================================================
   Manya Khanna — Typography tokens
   Display: Mories (fashion serif) — luxurious, editorial.
   Serif:   Bellefair — delicate, calm subheads & quotes.
   Sans:    DM Sans — humanist body & UI.
   Script:  Calligrapher — signature accent (sparingly).
   ============================================================ */

:root {
  /* ---- Families ------------------------------------------ */
  --font-display: "Spectral", "Cormorant Garamond", Georgia, serif;
  --font-serif:   "Spectral", "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Mulish", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script:  "Caveat", "Bellefair", cursive;

  /* ---- Fluid display sizes (clamp) ----------------------- */
  --text-display-2xl: clamp(3.5rem, 1.8rem + 7vw, 6.5rem); /* @kind other */ /* hero */
  --text-display-xl:  clamp(2.75rem, 1.6rem + 4.6vw, 4.5rem);  /* @kind other */
  --text-display-lg:  clamp(2.25rem, 1.5rem + 3vw, 3.25rem);   /* @kind other */
  --text-display-md:  clamp(1.85rem, 1.3rem + 2.2vw, 2.5rem);  /* @kind other */

  /* ---- Fixed type scale ---------------------------------- */
  --text-h1: 2.5rem;     /* 40 */
  --text-h2: 2rem;       /* 32 */
  --text-h3: 1.5rem;     /* 24 */
  --text-h4: 1.25rem;    /* 20 */
  --text-lg: 1.125rem;   /* 18 */
  --text-base: 1rem;     /* 16 */
  --text-sm: 0.875rem;   /* 14 */
  --text-xs: 0.75rem;    /* 12 */
  --text-2xs: 0.6875rem; /* 11 — eyebrow only */

  /* ---- Weights ------------------------------------------- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;

  /* ---- Line heights -------------------------------------- */
  --leading-tight: 1.08;   /* display */
  --leading-snug: 1.25;    /* headings */
  --leading-normal: 1.5;   /* body */
  --leading-relaxed: 1.7;  /* long-form reading */

  /* ---- Letter spacing ------------------------------------ */
  --tracking-display: -0.005em;  /* Spectral sits comfortably near 0 */
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-eyebrow: 0.22em;   /* the EMPATHY • TRUST • GROWTH lockup */
  --tracking-caps: 0.14em;
}
