Coming Soon

We’re putting the finishing touches on our new site. Stay tuned!

“We are not separate from those we love; we carry their memory in the rhythm of our breath.”

Days
Hours
Minutes
Seconds
Subscription Form

document.addEventListener("DOMContentLoaded", function () { const observer = new IntersectionObserver( function (entries) { entries.forEach(function (entry) { if (entry.isIntersecting) { entry.target.classList.add("fade-in", "visible"); observer.unobserve(entry.target); // ✅ Only animate once } }); }, { threshold: 0.1 } ); document.querySelectorAll(".fade-section").forEach(function (section) { observer.observe(section); }); });