/* Capital City Flips × Sage Kellerman — non-utility styles only */

/* Scroll-reveal: driven by IntersectionObserver in main.js.
   Kept here because Tailwind can't express the observer-driven state cleanly. */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* FAQ: hide the native disclosure marker (WebKit needs the vendor rule). */
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
