<?php
$standalone = false;
if (!defined('ABEMS_ACCESS')) {
    require_once __DIR__ . '/../../config/config.php';
    $standalone = abems_standalone_begin([
        'config_path' => __DIR__ . '/../../config/config.php',
        'title'       => 'Our Team | A Believers EMS',
        'description' => 'Meet the paramedics, EMTs, dispatchers and clinical leaders behind A Believers EMS in Houston, TX.',
        'header_img'  => 'about/about-team.jpg',
        'heading'     => 'Our <em class="display">Team</em>',
        'intro'       => 'Certified paramedics, EMTs, dispatchers and clinical leaders. Most have served Houston for over a decade.',
        'breadcrumb'  => [
            ['About', 'about.php'],
            ['Team', null]
        ],
    ]);
}
$team = [
    ['name' => 'Rodney Baker', 'role' => 'Founder &amp; Operations Director',     'image' => 'team/team-paramedic-1.jpg'],
    ['name' => 'Rod Baker',    'role' => 'Operations · Dispatch Lead',            'image' => 'team/team-paramedic-2.jpg'],
    ['name' => 'Our Crew',     'role' => 'BLS-Certified EMTs &amp; Drivers',      'image' => 'team/team-paramedic-3.jpg'],
    ['name' => 'Billing Team', 'role' => 'Medicare · Medicaid · Private Insurance','image' => 'team/team-paramedic-4.jpg'],
];
?>
<section class="section">
    <div class="container">
        <div class="section-head js-reveal">
            <span class="eyebrow">Our Team</span>
            <h2>A small Houston crew, a big Houston heart.</h2>
            <p class="lead" style="margin-inline:auto;">
                A Believers EMS is a tight operation by design — about seven of us total, family at the top,
                BLS-certified crew on the road, billing handled in-house. When you call, you reach a person
                who knows your transport. That is the whole point.
            </p>
        </div>

        <div class="team-grid js-stagger">
            <?php foreach ($team as $member): ?>
                <article class="team-card">
                    <div class="team-card-media js-image-reveal">
                        <img src="<?= e(img($member['image'])) ?>" alt="<?= e(strip_tags($member['name'])) ?>" loading="lazy">
                    </div>
                    <h4><?= $member['name'] ?></h4>
                    <span class="role"><?= $member['role'] ?></span>
                </article>
            <?php endforeach; ?>
        </div>
    </div>
</section>
<?php abems_standalone_end($standalone); ?>
