/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

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

/* Section title pattern */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.15;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle--white { color: rgba(255,255,255,0.8); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* Body text */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 { margin-top: 2em; margin-bottom: 0.6em; }

.entry-content ul,
.entry-content ol {
  list-style: revert;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

.entry-content li { margin-bottom: 0.4em; }

.entry-content strong { color: var(--black); font-weight: 600; }

.entry-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--primary-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray);
}

/* Lead paragraph */
.lead {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.75;
}

/* Divider */
.divider {
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 20px auto 0;
}

.divider--left { margin-left: 0; }
