.cta-section {
  padding: 12rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--surface);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 97, 26, .08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--frost);
  margin-bottom: 1.5rem;
}

.cta-h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--frost-faint);
  margin-bottom: 3rem;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}