/* === Typography === */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-text);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  line-height: 1.25;
}

h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 640px;
  margin-bottom: 40px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

.small {
  font-size: 0.875rem;
}

.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.06em; }

blockquote {
  border-left: 4px solid var(--teal);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  background: var(--light-bg);
  border-radius: var(--radius);
}

a.text-link {
  color: var(--teal);
  text-decoration: underline;
}

a.text-link:hover {
  color: var(--navy);
}
