/* Sections */
.section {
  padding: 100px 0;
}

.bg-soft {
  background-color: var(--bg-soft);
}

.bg-dark {
  background-color: var(--deep);
  color: white;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header.dark .section-title,
.section-header.dark .section-desc {
  color: white;
}

.section-header.dark .section-desc {
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-soft);
}

