h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-ink);
}

h1 { font-size: var(--fs-3xl); font-weight: var(--fw-extrabold); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); }
h6 { font-size: var(--fs-base); font-weight: var(--fw-semibold); }

p {
  line-height: var(--lh-normal);
  color: var(--color-ink-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.section-heading h2 {
  font-size: var(--fs-xl);
}

.text-muted { color: var(--color-text-muted); }
.text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }

@media (min-width: 768px) {
  h1 { font-size: clamp(2.75rem, 4vw, 3.25rem); }
}

.entry-content h2, .entry-content h3 {
  scroll-margin-top: 100px;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.entry-content p { margin-bottom: var(--space-4); }
.entry-content ul, .entry-content ol { margin-bottom: var(--space-4); padding-left: 1.25rem; list-style: revert; }
.entry-content img { border-radius: var(--radius-md); margin-block: var(--space-4); }
