/* ── Headings ─────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

.display-italic {
  font-style: italic;
  font-weight: 400;
}

/* ── Body text ───────────────────────────────────────────────────────── */

p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 68ch;
}

.text-large {
  font-size: var(--text-lg);
  line-height: 1.65;
}

.text-large p + p,
.text-large p + .desc-list,
.text-large .desc-list + p {
  margin-top: var(--space-4);
}

.desc-list {
  padding-left: var(--space-8);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 68ch;
}

.desc-list__item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-1);
}

.desc-list__num {
  flex-shrink: 0;
  min-width: 1.5em;
}

.text-small {
  font-size: var(--text-sm);
}

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

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

/* ── Labels and eyebrows ─────────────────────────────────────────────── */

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

/* ── Links ───────────────────────────────────────────────────────────── */

.link {
  color: var(--color-accent);
  transition: color var(--transition-fast);
}
.link:hover {
  color: var(--color-accent-hover);
}

/* ── Build notes list ────────────────────────────────────────────────── */

.build-notes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.build-notes li {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding-left: var(--space-6);
  position: relative;
  line-height: 1.35;
}

.build-notes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-family: var(--font-display);
}
