/* ============================================================
   RV PAGES — TYPOGRAPHY TOKENS
   Three roles: Fraunces serif (display), Geist sans (UI + body),
   Geist Mono (eyebrows, labels, data).
   ============================================================ */
:root{
  /* ---- Families ---- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  /* Neo-grotesque for the editorial/photo marketing language (real italics). */
  --font-grotesk: "Helvetica Neue", Helvetica, "Geist", Arial, "Liberation Sans", sans-serif;

  /* ---- Type scale ---- */
  --text-eyebrow: 0.75rem;
  --text-xs:      0.8125rem;
  --text-sm:      0.875rem;
  --text-base:    1rem;
  --text-lg:      1.125rem;
  --text-xl:      1.375rem;
  --text-2xl:     1.75rem;

  /* ---- Fluid display sizes ---- */
  --display-sm:   clamp(1.75rem, 1rem + 3.2vw, 2.5rem);   /* @kind other */
  --display-md:   clamp(2.5rem, 1.2rem + 5.5vw, 3.75rem);  /* @kind other */
  --display-lg:   clamp(3rem, 1rem + 8.5vw, 5.5rem);       /* @kind other */

  /* ---- Weights ---- */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;

  /* ---- Line heights ---- */
  --leading-tight:  1.05;
  --leading-snug:   1.2;
  --leading-normal: 1.55;

  /* ---- Letter spacing ---- */
  --tracking-display: -0.02em;
  --tracking-tight:   -0.01em;
  --tracking-eyebrow: 0.16em;   /* mono eyebrows, uppercase */
  --tracking-label:   0.14em;
}
