.contact .form-note.contact-status {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding: 20px 22px;
  border-radius: 14px;
  font: 700 clamp(15px, 1.5vw, 19px) / 1.5 "Manrope", sans-serif;
  letter-spacing: -.01em;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
  animation: contact-status-in .55s cubic-bezier(.2, .8, .2, 1) both;
}
.contact .form-note.contact-status--success {
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), var(--blue));
  border: 1px solid color-mix(in srgb, var(--lime) 70%, var(--ink));
}
.contact .form-note.contact-status--error {
  color: #fff;
  background: linear-gradient(135deg, #b42318, #7a1410);
  border: 1px solid #ef665b;
}
@keyframes contact-status-in {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .contact .form-note.contact-status { animation: none; }
}
