/* Animation & Micro-Interactions — Pristine Lights & Decor */

/* Content is 100% visible by default for robust SEO, instant readability & crisp rendering */
.hero-editorial-meta,
.hero-editorial-title,
.hero-editorial-desc,
.hero-editorial-actions,
.hero-editorial-footnote,
.hero-photo-stage {
  opacity: 1;
  transform: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Progressive reveal only when explicitly active */
.js-reveal-active [data-reveal]:not(.is-revealed) {
  opacity: 0;
  transform: translateY(20px);
}

.js-reveal-active [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hover transitions for photography */
.image-zoom-frame {
  overflow: hidden;
}

.image-zoom-frame img {
  transition: transform var(--transition-slow);
}

.image-zoom-frame:hover img {
  transform: scale(1.04);
}

/* Accessibility: Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
