/* ==================================================
   TYPOGRAPHY
   ================================================== */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

/* Fluid scale (mobile → desktop) */
h1 { font-size: clamp(2rem, 6vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
h3 { font-size: clamp(1.4rem, 4vw, 1.9rem); }
h4 { font-size: clamp(1.2rem, 3.5vw, 1.6rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* Paragraphs */
p {
  margin: 0 0 var(--space-lg);
}
.readable p {
  max-width: 70ch;
}