/* State-driven poses: no repeated entrance animation or card movement. */
.plot-card .plant-visual .plant-form.aging-plant {
  filter: saturate(calc(1 - var(--plant-fading) * .7)) sepia(calc(var(--plant-fading) * .45));
  opacity: calc(1 - var(--plant-fading) * .28);
  rotate: calc(var(--plant-fading) * 18deg);
  transform-origin: 50% 100%;
}
.plot-card .aging-plant .plant-leaf {
  background: color-mix(in srgb, #63a86d, #baa45e calc(var(--plant-fading) * 85%));
  translate: 0 calc(var(--plant-fading) * 5px);
}
.plot-card .aging-plant .flower-head {
  animation: none !important;
  translate: 0 calc(var(--plant-fading) * 9px);
  rotate: calc(var(--plant-fading) * 25deg);
}
.plot-card .visual-declined .plant-form.aging-plant {
  transform: scale(var(--growth-scale));
}
