/* A gentle entrance, with no permanently hidden content or idle movement. */
@media(prefers-reduced-motion:no-preference) {
 .home-motion-enter { animation: home-entrance .55s ease-out backwards; }
 .pathway-steps li.home-motion-enter > span { animation: home-step .65s ease-out backwards; }
 .type-card-photo img { transition: transform .35s ease; }
 .type-card:hover .type-card-photo img { transform: scale(1.025); }
 @keyframes home-entrance { from { opacity: .35; transform: translateY(16px); } to { opacity: 1; transform: none; } }
 @keyframes home-step { from { box-shadow: 0 0 0 12px rgba(255,212,186,.2); } to { box-shadow: 0 0 0 0 transparent; } }
}
@media(prefers-reduced-motion:reduce) { html { scroll-behavior: auto; } .home-motion-enter, .type-card-photo img { animation: none; transition: none; } }
