/* ═══════════════════════════════════════════════════
   MOTION.CSS — Text animations only
   Images are completely static
═══════════════════════════════════════════════════ */

/* ── WORD REVEAL ── */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.word-inner {
  display: inline-block;
  transform: translateY(110%) skewY(1.5deg);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.5s ease;
}
.word-inner.in {
  transform: translateY(0) skewY(0deg);
  opacity: 1;
}

/* ── FADE UP (eyebrows, labels, body text) ── */
.mot-fade {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  transition:
    opacity   0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mot-fade.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── CARD STAGGER ── */
.mot-card {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
  transition:
    opacity   0.75s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.mot-card.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── IMAGES: never animated, always visible ── */
.mot-img-wrap,
.mot-img-wrap img,
.mot-img-wrap::after,
.hero-right img,
.page-hero-right img,
.card-visual img {
  transform: none !important;
  transition: none !important;
  opacity: 1 !important;
}
.mot-img-wrap::after { display: none !important; }

/* ── PAGE TRANSITION: removed ── */
#rls-transition { display: none !important; }

/* ── Reduce motion: no animation at all ── */
@media (prefers-reduced-motion: reduce) {
  .word-inner, .mot-fade, .mot-card {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
