HMVC
HMVC put really basically is a way to have controllers call other controllers. Quite similar to making a Curl request to call a URL, this method can be used to call a controller locally. Fuel and Kohana support this natively, CodeIgniter supports it with an addon.
One common piece of confusion is that HMVC is just about modules. CI and Fuel both support the ideas of "modular MVC" and HMVC, but they are not the same thing. HMVC is calling controllers, modular MVC is shoving the same files in a slightly cleaner folder structure.
ActiveRecord
CodeIgniter has a query builder called ActiveRecord but most ActiveRecord implementations are closer to ORM.
In software engineering, the active record pattern is a design pattern found in software that stores its data in relational databases.
A query builder helps you to build your SQL quicker and with a PHP syntax, full ActiveRecord and ORM abstract away the SQL work completely.
What is the best route to take?
This is not a question that has an answer as it comes down to personal preference. The three frameworks all share a lot in common but also have a bunch of differences.
To explain, I contribute to both Fuel and CodeIgniter and have used Kohana for a few projects so I know all systems pretty well.
Fuel is coming along really well but it's PHP 5.3 so using it for distributed applications is not a good idea. Sure it's still in Beta but the IRC is always active and answers are usually pretty quick. Our documentation is pretty good but missing a few bits like ActiveRecord and Auth.
CodeIgniter is simple as hell with great documentation. I love the framework because it does nothing to mess with how I code, just let's me get on with it quicker. On the subject of PHP 4 support I see both sides. Sure you can do whatever PHP 5 work you like in your controllers, models, etc but there are a few architectural decisions made by the Core development team that were made with PHP 4 support in mind. Not a massive problem, but syntax such as:
$this->load->model('foo');
$this->foo->get(1);
really could just be:
Model::get();
or similar. Nothing major, but there are things that we could do with improving.
Kohana's documentation has come along very well from a year ago and I am actually slightly jealous. They have a smart team of developers and a very clever community, but there are certain parts that to me don't feel right or don't make a lot of sense.
Really you will only find a framework you like by trying a few options; I'm even using Rails recently. Make a few small applications in each or download some example applications. There is plenty of open source code around on GitHub for all of these frameworks so you can see how they are used in the real world and make your decision.