/* Domus Paradox — Typography tokens
   Display: Cormorant Garamond (elegant serif) for headings & pull quotes.
   UI/Body: Hanken Grotesk for everything functional.
   Eyebrows use tracked uppercase Hanken Grotesk. */

:root {
  --font-serif: "Cormorant Garamond", "Spectral", Georgia, "Times New Roman", serif;
  --font-sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale (px, fluid-friendly). Cormorant runs small per-em, so the
     serif display sizes are set a touch larger than a typical scale. */
  --text-display: 5rem;    /* 80px — hero */
  --text-h1: 3.5rem;       /* 56px */
  --text-h2: 2.625rem;     /* 42px */
  --text-h3: 1.875rem;     /* 30px */
  --text-h4: 1.25rem;      /* 20px */
  --text-lead: 1.375rem;   /* 22px — intro paragraphs */
  --text-body-lg: 1.125rem;/* 18px */
  --text-body: 1rem;       /* 16px */
  --text-sm: 0.875rem;     /* 14px */
  --text-xs: 0.75rem;      /* 12px */
  --text-eyebrow: 0.8125rem;/* 13px */

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

  /* Line heights */
  --leading-tight: 1.08;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-eyebrow: 0.16em;
}
