h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-fg);
  line-height: 1.1;
}

h1 {
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--text-h3);
  font-weight: 600;
}

p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-body);
  line-height: 1.75;
}

.text-small {
  font-size: var(--text-small);
  line-height: 1.7;
}

.text-muted {
  color: var(--color-muted);
}

.accent {
  color: var(--color-blue);
}

a {
  color: var(--color-aqua);
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.75;
}
