.form-error {
  background: rgba(160, 63, 48, .22);
  border-left: 2px solid #d48576;
  color: #fff !important;
  padding: 12px !important;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero > picture,
.hero > picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet picture,
.pet picture img {
  display: block;
  width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .hero > picture img {
    animation: hero-image-settle 1.8s cubic-bezier(.2, .8, .2, 1) both;
  }

  .hero-copy {
    animation: hero-copy-rise 1s .18s cubic-bezier(.2, .8, .2, 1) both;
  }

  .services-grid article,
  .benefit-grid article,
  .stats article {
    transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease;
  }

  .services-grid article:hover,
  .benefit-grid article:hover,
  .stats article:hover {
    transform: translateY(-6px);
    background: rgba(176, 141, 65, .07);
    box-shadow: 0 14px 28px rgba(22, 18, 14, .08);
  }

  .pet img {
    transition: transform .7s cubic-bezier(.2, .8, .2, 1);
  }

  .pet > div:first-child:hover img {
    transform: scale(1.045);
  }

  .pet aside {
    transition: transform .35s ease, background-color .35s ease;
  }

  .pet > div:first-child:hover aside {
    transform: translate(-4px, -4px);
    background-color: #967630;
  }
}

@keyframes hero-image-settle {
  from { transform: scale(1.065); }
  to { transform: scale(1); }
}

@keyframes hero-copy-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
