<?php
define('ABEMS_ACCESS', true);
require_once __DIR__ . '/config/config.php';

$page_title       = 'About A Believers EMS | Black-Owned Houston Ambulance Since 2006';
$page_description = 'A Believers EMS LLC was founded in 2006 by Rodney Baker. Black-owned, family-run non-emergency medical transport in northwest Houston. Texas DSHS Licensed #' . CRED_TX_LICENSE . ', NPI #' . CRED_NPI . '. Meet the Baker family and our story.';
$page_keywords    = 'A Believers EMS Houston, Rodney Baker EMS, Black-owned ambulance Houston, family-run medical transport Houston, Houston ambulance company history, Texas DSHS Licensed ambulance, non-emergency transport Bammel Houston';
$page_og_image    = SITE_URL . '/assets/img/about/about-team.jpg';
$page_breadcrumb  = [['Home', 'index.php'], ['About', null]];

layout('head', compact('page_title', 'page_description', 'page_keywords', 'page_og_image', 'page_breadcrumb'));
layout('header');
?>
<main id="main">
    <header class="page-header">
        <div class="page-header-bg">
            <img src="<?= e(img('about/about-history.jpg')) ?>" alt="A Believers EMS Houston since 2006" data-parallax="6" data-parallax-trigger>
        </div>
        <div class="container">
            <nav class="breadcrumb" aria-label="Breadcrumb">
                <a href="<?= e(SITE_URL) ?>/">Home</a>
                <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 18l6-6-6-6"/></svg>
                <span>About</span>
            </nav>
            <h1 class="js-reveal">A Houston family, <em class="display">moving</em> Houston families.</h1>
            <p class="js-reveal-fade">
                Founded in <?= e(CRED_FOUNDED_YEAR) ?> by Rodney Baker and still family-run today. Black-owned,
                Houston-grown, and known across the metro for showing up on time, treating patients like our own,
                and answering the phone ourselves.
            </p>
        </div>
    </header>

    <?php page_section('about/mission.php'); ?>
    <?php page_section('about/history.php'); ?>
    <?php page_section('about/team.php'); ?>
    <?php page_section('about/certifications.php'); ?>
    <?php module('sections/final-cta.php'); ?>
</main>
<?php
layout('footer');
layout('scripts');
