body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

a {
  transition: color var(--transition-fast);
}

strong {
  font-weight: 600;
}

/* Section headings */
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-3xl);
  text-transform: uppercase;
  color: var(--color-charcoal);
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.section-title--light {
  color: var(--color-white);
}

.section-title--turf {
  color: var(--color-turf);
}

.section-title--gold {
  color: var(--color-gold);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--color-slate);
  line-height: 1.4;
  margin-bottom: var(--space-8);
}

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