/* TMA Commercial Print — static reliability overrides for the Webflow export.
   The original Webflow site reveals content via IX2 (scroll/load) animations that
   start at opacity:0 + transform. In a static export those triggers are not
   guaranteed to fire, which can leave whole sections invisible. We neutralise the
   hidden initial states so all content is always visible regardless of JS. */

.content { opacity: 1 !important; }
[data-w-id] { opacity: 1 !important; transform: none !important; }
[style*="opacity:0"] { opacity: 1 !important; }

/* Hero: hide the black "on-load" overlay that JS would normally remove, and
   reveal the hero background image + headline that start hidden. */
.on-load-bg { display: none !important; }
.hero-image-scale { opacity: 1 !important; }
.hidden-hero, .hidden-hero * { opacity: 1 !important; transform: none !important; }

/* Keep the page from ever being stuck invisible if the Webflow loader stalls. */
html.w-mod-js .content { opacity: 1 !important; }
