/* ============================================================
   Fluffy Friends — Typography tokens
   Display: Fredoka (rounded, friendly). Body: Nunito (warm sans).
   Eyebrows / badges: Nunito, uppercase, tracked — echoes the
   "GROOMING WITH LOVE AND CARE" ring lockup.
   ============================================================ */
:root {
  /* Families */
  --font-display: 'Fredoka', 'Trebuchet MS', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Weights */
  --fw-regular: 400; /* @kind font */
  --fw-medium:  500; /* @kind font */
  --fw-semibold:600; /* @kind font */
  --fw-bold:    700; /* @kind font */
  --fw-extra:   800; /* @kind font */

  /* Display scale (Fredoka) */
  --text-display-xl: 4.5rem;   /* 72px hero                */
  --text-display-lg: 3.25rem;  /* 52px page titles         */
  --text-display-md: 2.5rem;   /* 40px section heads       */
  --text-display-sm: 1.875rem; /* 30px card titles         */

  /* Body & UI scale (Nunito) */
  --text-h4:    1.5rem;    /* 24px */
  --text-lg:    1.1875rem; /* 19px lead paragraph */
  --text-base:  1rem;      /* 16px body */
  --text-sm:    0.875rem;  /* 14px supporting */
  --text-xs:    0.75rem;   /* 12px caption */
  --text-eyebrow: 0.8125rem; /* 13px tracked label */

  /* Line heights */
  --lh-tight:   1.05; /* @kind font */
  --lh-snug:    1.2;  /* @kind font */
  --lh-normal:  1.5;  /* @kind font */
  --lh-relaxed: 1.65; /* @kind font */

  /* Letter spacing */
  --ls-display: -0.01em; /* @kind font */
  --ls-normal:  0;       /* @kind font */
  --ls-eyebrow: 0.18em;  /* @kind font */
  --ls-wide:    0.06em;  /* @kind font */
}
