.home-owl {
  display: flex;
  justify-content: center;
  margin-bottom: -1.5rem;
  position: relative;
  z-index: 10;
}

.home-owl__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center bottom;
  animation: owl-curious-tilt 4.8s ease-in-out infinite;
}

.home-owl__button:focus-visible {
  outline: 1px solid #8e7a72;
  outline-offset: 8px;
}

.home-owl__image {
  display: block;
  width: 96px;
  height: auto;
  image-rendering: pixelated;
  transform-origin: center 58%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.home-owl__burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-owl__particle {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 6px;
  height: 10px;
  border-radius: 55% 55% 45% 45%;
  background: #8e7a72;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--particle-rotate, 0deg));
  animation: owl-particle-pop 760ms ease-out forwards;
}

.home-owl__particle:nth-child(3n) {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: #d35400;
}

.home-owl__particle:nth-child(4n) {
  background: #e2d7cc;
}

@keyframes owl-curious-tilt {
  0%,
  100% {
    transform: rotate(0deg);
  }

  22% {
    transform: rotate(-3.2deg);
  }

  48% {
    transform: rotate(2.8deg);
  }

  68% {
    transform: rotate(-1.5deg);
  }
}

@keyframes owl-particle-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6) rotate(var(--particle-rotate, 0deg));
  }

  18% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(
        calc(-50% + var(--particle-x, 0px)),
        calc(-50% + var(--particle-y, -32px))
      )
      scale(0.9)
      rotate(calc(var(--particle-rotate, 0deg) + 80deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-owl__button {
    animation: none;
  }

  .home-owl__image {
    transform: none;
    transition: none;
  }

  .home-owl__particle {
    display: none;
  }
}

.footer__inner--home-icons {
  margin-bottom: 0.4rem;
}

.home-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.home-footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.home-footer-links svg {
  width: 24px;
  height: 24px;
}

.home-footer-links a {
  transition: all 0.3s ease !important;
}

.home-footer-links a:hover {
  transform: translateY(-2px) !important;
  color: #D35400 !important;
}

.home-footer-links a:hover svg {
  stroke: #D35400 !important;
}
