body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: var(--lh-heading);
  color: var(--color-text-primary);
  font-weight: var(--fw-semi);
}

h1 {
  font-size: var(--fs-h1);
  margin-bottom: 24px;
}

h2 {
  font-size: var(--fs-h2);
  margin-bottom: 24px;
  color: var(--color-text-accent);
}

h3 {
  font-size: var(--fs-h3);
  margin-bottom: 16px;
}

h4 {
  font-size: var(--fs-h4);
  margin-bottom: 16px;
}

p {
  margin-bottom: 24px;
  color: var(--color-text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: var(--fw-semi);
  color: var(--color-text-primary);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Custom selection */
::selection {
  background-color: var(--color-gold-muted);
  color: var(--color-gold-light);
}
