/* =============================================================
   JT Designs — CTA Section
   Full-width call-to-action before the footer.
   ============================================================= */

.cta {
  padding: 160px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* Subtle oxblood radial glow centered */
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(107, 31, 38, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Centered section number divider */
.cta-mark {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 52px;
  gap: 16px;
}

.cta-mark .s-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.cta-mark .s-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--oxblood);
  white-space: nowrap;
}

.cta h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

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

.cta > .container > p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 52px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
