.section {
  width: 100%;
  padding-left: var(--space-section-x);
  padding-right: var(--space-section-x);
}

.section--tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section--loose {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 756px;
  margin-bottom: 64px;
}

.section-header__lede {
  color: var(--color-gray-text);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Shared utility classes — used instead of inline styles across sections */
.stack-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.heading-xl {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -1px;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--color-dark), var(--color-gray-muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.heading-lg {
  font-family: var(--font-header);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -1px;
}

.lede-center {
  max-width: 600px;
  text-align: center;
  color: var(--color-gray-text);
}

@media (max-width: 900px) {
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
