/* ============================================================
   CTA BAND  ·  Shivoham Retreat
   ============================================================ */

.cta-band {
  margin: 1rem;
  width: calc(100% - 2rem);
  background: #111C17;
  border-radius: 16px;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture — large faint serif character */
.cta-band::before {
  content: 'शिव';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-serif, Georgia, serif);
  font-size: clamp(12rem, 30vw, 22rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

/* ── Eyebrow ─────────────────────────────── */
.cta-band__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255, 0.65);
  margin-bottom: 2.5rem;
}

.cta-band__eyebrow::before,
.cta-band__eyebrow::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ── Headline ────────────────────────────── */
.cta-band__title {
  font-family: var(--f-sans, sans-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.cta-band__title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Sub ─────────────────────────────────── */
.cta-band__sub {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255, 0.68);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

/* ── Actions ─────────────────────────────── */
.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-band__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-image: linear-gradient(to right, #1C3228 50%, #FAF8F2 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: #1C3228;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-position 0.38s ease, color 0.20s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.cta-band__btn-primary:hover {
  background-position: left center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
}

.cta-band__btn-primary svg { transition: transform 0.22s ease; }
.cta-band__btn-primary:hover svg { transform: translateX(3px); }

.cta-band__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-image: linear-gradient(to right, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0) 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: #ffffff;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.28);
  text-decoration: none;
  transition: background-position 0.38s ease, border-color 0.22s ease;
}

.cta-band__btn-ghost:hover {
  background-position: left center;
  border-color: #ffffff;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 480px) {
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__btn-primary,
  .cta-band__btn-ghost  { justify-content: center; width: 100%; }
}
