/**
 * CTA — Contact
 * Large dominant full-width section with big typography + single button
 */

.ce-cta-contact {
  width: 100%;
  text-align: center;
}

.ce-cta-contact__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ce-cta-contact__kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.6;
}

.ce-cta-contact__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
}

.ce-cta-contact__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
  opacity: 0.78;
}

.ce-cta-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 20px 42px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: #111;
  color: #fff;
  border-radius: 999px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.ce-cta-contact__btn:hover {
  background: var(--cep-accent, #d4a574);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.ce-cta-contact__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.ce-cta-contact__btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .ce-cta-contact__btn {
    padding: 16px 32px;
    font-size: 13px;
  }
}
