/* ============================================================
   CTA BAND
   ============================================================ */

.cta {
  background: var(--color-teal);
  color: var(--color-beige);
  padding: 9rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6rem;
  align-items: end;
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245, 240, 232, .06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Left ───────────────────────────────────────────────── */
.cta__left {
  position: relative;
  z-index: 1;
}

.cta__label {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(245, 240, 232, .45);
  margin-bottom: 2rem;
}

.cta__label::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: rgba(245, 240, 232, .3);
}

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--color-beige);
  max-width: 18ch;
}

/* ── Right ──────────────────────────────────────────────── */
.cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  padding-bottom: .3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta__email {
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 400;
  color: rgba(245, 240, 232, .38);
}

.cta__email a {
  color: rgba(245, 240, 232, .65);
  border-bottom: 1px solid rgba(245, 240, 232, .2);
  transition: color .2s;
}

.cta__email a:hover {
  color: var(--color-beige);
}
