.page-hero .ambient {
  animation-duration: 14s;
}

.soft-reveal {
  animation: softReveal 0.7s ease both;
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
