.container {
  width: min(var(--container-max), calc(100% - (48px * 2)));
  margin-inline: auto;
}

.section {
  padding: var(--space-10) 0;
}

.section-alt {
  background: var(--bg-obsidian);
}

.section-header {
  margin-bottom: var(--space-8);
  max-width: 700px;
}

.section-header .eyebrow {
  margin-bottom: var(--space-4);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-header h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

@media (max-width: 1000px) {
  .section {
    padding: var(--space-9) 0;
  }

  .cta-section {
    padding: 100px 32px;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - (24px * 2));
  }

  .cta-section {
    padding: 80px 24px;
  }
}

.cta-section {
  padding: 140px 48px;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-navy) 50%, var(--bg-void) 100%);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(212 175 55 / 5%) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-section .cta-group {
  justify-content: center;
}
