/* ============================================
   WICFLOW — Pre-footer CTA Band
   ============================================ */

.cta-band {
  background: #111113;
  color: #f7f7f5;
  padding: 80px 0;
}

.cta-band__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-band__eyebrow {
  font-family: var(--font-body, 'DM Sans', system-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 247, 245, 0.6);
  margin: 0 0 16px;
}

.cta-band__heading {
  font-family: var(--font-display, 'Instrument Serif', Georgia, serif);
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: #f7f7f5;
  margin: 0 0 16px;
  max-width: 22ch;
}

.cta-band__lead {
  font-family: var(--font-body, 'DM Sans', system-ui, sans-serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(247, 247, 245, 0.75);
  margin: 0;
  max-width: 50ch;
}

.cta-band__btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f7f7f5;
  color: #111113;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.cta-band__btn:hover {
  background: #fff;
  transform: translateX(2px);
}

@media (max-width: 820px) {
  .cta-band__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-band__btn { justify-self: start; }
}
