/* ============================================================
   TYPOGRAPHY
   Four families:
   - Cinzel            → engraved caps display (brand lockups, hero eyebrows)
   - Cormorant Garamond→ editorial serif headings + pull quotes
   - Great Vibes       → decorative script accents (Sacred Spaces flourishes)
   - Montserrat        → UI, body copy, spaced tagline caps
   ============================================================ */
:root {
  /* --- Families --- */
  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;         /* engraved caps */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;         /* editorial */
  --font-script:  'Great Vibes', 'Segoe Script', cursive;         /* flourish */
  --font-sans:    'Montserrat', system-ui, -apple-system, sans-serif; /* UI + body */
  --font-body:    var(--font-sans);

  /* --- Type scale (major-third-ish, 1rem = 16px base) --- */
  --text-2xs: 0.6875rem;  /* 11px — spaced caps micro-label */
  --text-xs:  0.75rem;    /* 12px */
  --text-sm:  0.875rem;   /* 14px */
  --text-md:  1rem;       /* 16px — body */
  --text-lg:  1.125rem;   /* 18px */
  --text-xl:  1.375rem;   /* 22px */
  --text-2xl: 1.75rem;    /* 28px */
  --text-3xl: 2.25rem;    /* 36px */
  --text-4xl: 3rem;       /* 48px */
  --text-5xl: 4rem;       /* 64px */
  --text-6xl: 5.5rem;     /* 88px — hero display */

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

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

  /* --- Letter spacing --- */
  --ls-tightest: -0.02em; /* @kind font */
  --ls-normal:   0;       /* @kind font */
  --ls-wide:     0.08em;  /* @kind font */
  --ls-wider:    0.16em;  /* @kind font */
  --ls-widest:   0.28em;  /* @kind font */

  /* --- Semantic type roles --- */
  --type-lockup:   var(--fw-bold) var(--text-3xl)/var(--lh-snug) var(--font-display);
  --type-eyebrow:  var(--fw-semibold) var(--text-2xs)/1.4 var(--font-sans);
  --type-display:  var(--fw-semibold) var(--text-5xl)/var(--lh-tight) var(--font-serif);
  --type-h1:       var(--fw-semibold) var(--text-4xl)/var(--lh-snug) var(--font-serif);
  --type-h2:       var(--fw-semibold) var(--text-3xl)/var(--lh-snug) var(--font-serif);
  --type-h3:       var(--fw-semibold) var(--text-xl)/var(--lh-snug) var(--font-sans);
  --type-body:     var(--fw-regular) var(--text-md)/var(--lh-relaxed) var(--font-sans);
  --type-body-sm:  var(--fw-regular) var(--text-sm)/var(--lh-normal) var(--font-sans);
  --type-label:    var(--fw-semibold) var(--text-sm)/1.2 var(--font-sans);
}
