/* ═══════════════════════════════════════════════════════════════
   19 · CTA BAND
   Full-bleed call-to-action section (custom Peru itinerary)
   ═══════════════════════════════════════════════════════════════ */

.cta-band {
  position: relative;
  padding: 140px 0;
  color: #fff;
  overflow: hidden;
  background: var(--navy-800);
}

.cta-band__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center,
      rgba(14, 27, 46, 0.5),
      rgba(14, 27, 46, 0.85)),
    linear-gradient(180deg,
      rgba(14, 27, 46, 0.7),
      rgba(14, 27, 46, 0.95));
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-pad);
}

.cta-band__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 22px;
}
.cta-band__title em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 300;
}

.cta-band__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 38px;
  line-height: 1.65;
}

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