/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; overflow: clip; text-align: center; }
.cta__field {
  position: absolute; left: 50%; top: -30%; width: 100vmin; height: 100vmin;
  transform: translateX(-50%);
  background: var(--grad-rose); opacity: 0.28; filter: blur(90px);
  pointer-events: none;
}
.cta__inner { position: relative; }
.cta__inner h2 { margin: 18px 0 20px; }
/* Rose-INK, not decorative rose: cream on #B76A74 is 3.49:1 and this is the
   page's single conversion button. #91545C gives 5.13:1 in the same family. */
.cta__btn { padding: 17px 38px; font-size: var(--t-body); background: var(--t-rose-ink); }
.cta__btn:hover { background: #7d4750; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--t-cream-2); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 3rem;
  padding-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; color: var(--t-ink); max-width: 260px; }
.footer__arch { color: var(--t-ink); opacity: 0.7; }
.footer__tagline { font-family: var(--font-display); font-style: italic; color: var(--text-3); font-size: var(--t-sm); }

.footer__nav { display: flex; gap: clamp(2rem, 6vw, 5rem); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title { font-size: var(--t-label); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.footer__col a { font-size: var(--t-sm); color: var(--text-2); transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--t-rose); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0; font-size: var(--t-xs); color: var(--text-3);
}

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; gap: 2.5rem; }
  .footer__nav { gap: 2.5rem; }
}
