54 lines
2.6 KiB
PHP
54 lines
2.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/includes/app.php';
|
|
|
|
$pageTitle = 'Contact Us';
|
|
$pageDescription = 'Contact guidance for strategic discussion, package scoping, and partnership coordination.';
|
|
$activePage = 'contact';
|
|
|
|
$contactCards = [
|
|
['title' => 'Strategic discussion', 'summary' => 'Use the inquiry desk for partnership, package customization, or operational collaboration.'],
|
|
['title' => 'Email-based follow-up', 'summary' => 'The intake form captures a work email so the next step can stay formal and documented.'],
|
|
['title' => 'Location coordination', 'summary' => 'Share the preferred area or property context in the brief so site planning starts earlier.'],
|
|
];
|
|
|
|
require __DIR__ . '/includes/header.php';
|
|
?>
|
|
<section class="page-section pt-4 pt-lg-5">
|
|
<div class="container">
|
|
<div class="hero-shell page-intro">
|
|
<div class="row g-4 align-items-center">
|
|
<div class="col-lg-8">
|
|
<span class="section-kicker">Contact guidance</span>
|
|
<h1 class="page-title">A clear route into strategic discussion.</h1>
|
|
<p class="lead-copy mb-0">Rather than scattering generic contact details, this MVP uses a structured intake path so every conversation starts with context, scale, and the right ecosystem lane.</p>
|
|
</div>
|
|
<div class="col-lg-4 text-lg-end">
|
|
<a class="btn btn-brand" href="partnership.php">Schedule Strategic Discussion</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="contact-grid">
|
|
<?php foreach ($contactCards as $card): ?>
|
|
<article class="contact-panel surface-card service-card">
|
|
<h2 class="card-title"><?= h($card['title']) ?></h2>
|
|
<p class="card-copy mb-0"><?= h($card['summary']) ?></p>
|
|
</article>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<div class="surface-card mt-4">
|
|
<span class="section-kicker">Recommended next action</span>
|
|
<h2 class="section-title">Use the partnership page as the main intake channel.</h2>
|
|
<p class="section-copy mb-4">It already captures the package or partner route, preferred timing, location context, and a short narrative brief—everything needed for a credible first review.</p>
|
|
<div class="d-flex flex-wrap gap-2 inline-actions">
|
|
<a class="btn btn-brand" href="partnership.php">Open inquiry desk</a>
|
|
<a class="btn btn-outline-brand" href="admin.php">Preview saved inquiries</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<?php require __DIR__ . '/includes/footer.php'; ?>
|