/* ============================================================
   CONTAINER
============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ============================================================
   SECTION HEADER (reusable)
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

.section-header__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-bottom: 0.4em;
  overflow: visible;
}

.section-header__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}
