/* ============================================================
   CTA-BANNER.CSS — Full-width image banner with booking CTA
   ============================================================ */

.cta-banner {
  position: relative;
  padding-block: var(--space-24);
  overflow: hidden;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-strong);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.cta-banner__pre {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: var(--weight-bold);
  color: var(--color-text-light);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.cta-banner__title em {
  color: var(--color-accent);
  font-style: italic;
}

.cta-banner__sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.70);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.cta-banner__note {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .cta-banner__bg {
    background-attachment: scroll;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
