/* ============================================================
   ANIMATIONS
============================================================ */

/* Scroll cue bob */
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Hero entrance — fade up (text elements) */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero entrance — fade only (image) */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Service card scroll entrance — physical lift off the surface */
@keyframes cardRaise {
  from {
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 2px 8px rgba(11, 18, 21, 0.06);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 8px 24px -4px rgba(11, 18, 21, 0.12), 0 2px 8px rgba(11, 18, 21, 0.06);
  }
}

/* Respect reduced-motion preference — cut all animations to instant */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
  }
}
