/* -----------------------------------------
   ORIGAMI UNFOLD — Multi-Fold Reveal
   ----------------------------------------- */

.origami-paragraph {
     display: block;
     transform-origin: top center;
     transform: rotateX(-65deg) scaleY(0.2);
     opacity: 0;
     transition:
       transform 1.1s cubic-bezier(.17,.67,.4,1.35),
       opacity 0.7s ease,
       color 0.3s ease; /* added color transition */
   }

/* Triggered after vinyl peel completes */
.origami-paragraph.popup-animate {
  transform: rotateX(0deg) scaleY(1);
  opacity: 1;
}
