/* ==========================================================================
   custom.css — targeted overrides layered ON TOP of the Webflow export.

   Keep all hand-written CSS here (never inside the Webflow-generated files
   normalize.css / components.css / fortior-finance.css) so the export stays
   clean and any future re-export is easy to drop in.
   Loaded last in every page, after the Webflow stylesheets.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Mobile navigation fix
   --------------------------------------------------------------------------
   In the original Webflow export a stray IX2 interaction applies a large
   translateY(...) to the OPEN mobile menu (.nav-menu), sliding it above the
   top of the screen so the links are unreachable. This bug is present in the
   original published site too.

   We neutralize ONLY that transform at the mobile/tablet breakpoint. The menu
   then rests at its natural position (directly below the fixed 88px header,
   as Webflow intended). Position, fade-in timing, colours, and all desktop
   behaviour are left exactly as the export produced them.
   -------------------------------------------------------------------------- */
@media screen and (max-width: 991px) {
  .w-nav .nav-menu.w-nav-menu {
    transform: none !important;
  }
}
