.elementor-kit-6{--e-global-color-primary:#080808;--e-global-color-secondary:#57A0D7;--e-global-color-text:#101010;--e-global-color-accent:#EDE8DE;--e-global-color-8c82a27:#1C1C1A;--e-global-color-3f90953:#F0ECE5;--e-global-color-0bf5ecb:#FFFFFF;--e-global-typography-primary-font-family:"Cormorant Garamond";--e-global-typography-primary-font-weight:300;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-weight:300;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:400;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */:root {
  --accent:   #57a0d7;
  --blk:      #080808;
  --blk-2:    #101010;
  --cream:    #ede8de;
  --ink:      #1c1c1a;
}
 
/* Scroll reveal */
.rmf-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.rmf-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Scroll reveal JS — paste into Elementor Custom Code (type: JS, location: footer) */
document.addEventListener('DOMContentLoaded', function () {
  const obs = new IntersectionObserver(entries => {
    entries.forEach(e => {
      if (e.isIntersecting) {
        e.target.classList.add('visible');
        obs.unobserve(e.target);
      }
    });
  }, { threshold: 0.08 });
  document.querySelectorAll('.rmf-reveal').forEach(el => obs.observe(el));
});/* End custom CSS */