/* ======== SECTIONS ======== */
.section {
  padding: var(--space-24) 0;
  position: relative;
  z-index: var(--z-content);
  background: var(--charcoal);
}

.section--dark {
  background: var(--charcoal);
}

.section--darker {
  background: var(--gradient-dark);
}

.section--gradient {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 50%, var(--charcoal) 100%);
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: var(--space-4);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--white-60);
  line-height: 1.7;
}

.section__subtitle--secondary {
  margin-top: var(--space-4);
  font-size: 1rem;
  color: var(--white-40);
}
