.gold-text {
  background: linear-gradient(135deg, #C9A84C 0%, #E2C06A 40%, #A8813A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  color: var(--color-gold-bright);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-sm);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, var(--text-3xl));
  font-weight: 900;
  color: var(--color-wool-ink);        /* Dark ink on white — NOT white text */
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.section-desc {
  color: var(--color-wool-dark);       /* Warm gray — not black, not light */
  font-size: var(--text-lg);
  max-width: 700px;
  line-height: 1.8;
  margin-top: var(--space-md);
}

.body-text {
  color: var(--color-wool-dark);
  font-size: var(--text-base);
  line-height: 1.8;
  max-width: 520px;
}

.gold-rule {
  width: 120px; height: 2px;
  background: linear-gradient(90deg, #C9A84C, #E2C06A, #A8813A);
  margin-top: var(--space-lg);
  border-radius: 2px;
}
