119 lines
5.6 KiB
PHP
119 lines
5.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/includes/app.php';
|
|
|
|
$pageTitle = 'About Us';
|
|
$pageDescription = 'Strategic positioning, objectives, and operating logic behind the Genitri Ecco Wellness ecosystem.';
|
|
$activePage = 'about';
|
|
$objectives = objective_list();
|
|
$values = governance_values();
|
|
|
|
$positioningPillars = [
|
|
['title' => 'Institutional trust platform', 'summary' => 'A calm, premium first impression that feels credible to partners, institutions, and high-value guests.'],
|
|
['title' => 'Curated service commerce', 'summary' => 'Packages are presented with editorial clarity and routed into a structured consultation path.'],
|
|
['title' => 'Partnership integration system', 'summary' => 'Multiple partner categories can be invited into one operating ecosystem without clutter.'],
|
|
['title' => 'Publication authority layer', 'summary' => 'Insight and updates reinforce operational maturity, not just marketing claims.'],
|
|
['title' => 'Governance foundation', 'summary' => 'The site prepares future reporting, admin processes, and ecosystem accountability.'],
|
|
];
|
|
|
|
$operatingModel = [
|
|
['title' => 'Discovery', 'summary' => 'Brief collection, stakeholder mapping, and intent clarification.'],
|
|
['title' => 'Curation', 'summary' => 'Program architecture, partner matching, and experience design.'],
|
|
['title' => 'Delivery', 'summary' => 'On-ground hospitality, logistics, facilitation, and documentation.'],
|
|
['title' => 'Governance', 'summary' => 'Reporting discipline, partner oversight, and institutional trust signals.'],
|
|
];
|
|
|
|
require __DIR__ . '/includes/header.php';
|
|
?>
|
|
<section class="page-section pt-4 pt-lg-5">
|
|
<div class="container">
|
|
<div class="hero-shell">
|
|
<div class="row g-4 align-items-center">
|
|
<div class="col-lg-7">
|
|
<span class="section-kicker">About GBP</span>
|
|
<h1 class="page-title">An integrated ecosystem designed for trust, transformation, and operational clarity.</h1>
|
|
<p class="lead-copy mb-0">PT. Genitri Bregas Persada positions Genitri Ecco Wellness as a premium nature-based experience ecosystem—bridging eco wellness, hospitality, retreat design, MICE support, and partnership collaboration.</p>
|
|
</div>
|
|
<div class="col-lg-5">
|
|
<div class="surface-card hero-panel h-100">
|
|
<span class="signal-chip signal-chip--primary mb-3">Tagline</span>
|
|
<h2 class="card-title">Nature-Based Experiential Tourism & Eco Wellness Services</h2>
|
|
<p class="card-copy mb-0">The experience direction is intentionally calm, institutional, and editorial rather than marketplace-like or generic tourism-led.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="page-section">
|
|
<div class="container">
|
|
<div class="section-head">
|
|
<span class="section-kicker">Strategic positioning</span>
|
|
<h2 class="section-title">What makes the ecosystem distinct.</h2>
|
|
<p class="section-copy">The site is designed to show how multiple disciplines can feel integrated without looking crowded.</p>
|
|
</div>
|
|
<div class="feature-grid">
|
|
<?php foreach ($positioningPillars as $pillar): ?>
|
|
<article class="surface-card">
|
|
<h3 class="card-title"><?= h($pillar['title']) ?></h3>
|
|
<p class="card-copy mb-0"><?= h($pillar['summary']) ?></p>
|
|
</article>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="page-section">
|
|
<div class="container">
|
|
<div class="row g-4">
|
|
<div class="col-lg-6">
|
|
<div class="surface-card h-100">
|
|
<span class="section-kicker">Core objectives</span>
|
|
<h2 class="section-title">A website built to do real institutional work.</h2>
|
|
<ul class="objective-list mt-3">
|
|
<?php foreach ($objectives as $objective): ?>
|
|
<li><?= h($objective) ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="surface-card h-100">
|
|
<span class="section-kicker">Operating model</span>
|
|
<h2 class="section-title">A lightweight structure that can scale.</h2>
|
|
<div class="timeline-grid mt-3">
|
|
<?php foreach ($operatingModel as $step): ?>
|
|
<article class="surface-card service-card">
|
|
<span class="signal-chip"><?= h($step['title']) ?></span>
|
|
<p class="card-copy mb-0"><?= h($step['summary']) ?></p>
|
|
</article>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="page-section pt-0">
|
|
<div class="container">
|
|
<div class="dark-block">
|
|
<div class="section-head mb-4">
|
|
<span class="section-kicker text-white">Values</span>
|
|
<h2 class="section-title text-white">A premium tone supported by ethical grounding.</h2>
|
|
</div>
|
|
<div class="dark-grid">
|
|
<?php foreach ($values as $value): ?>
|
|
<article class="surface-card surface-card--dark">
|
|
<h3 class="card-title"><?= h($value['title']) ?></h3>
|
|
<p class="card-copy mb-0"><?= h($value['summary']) ?></p>
|
|
</article>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<?php require __DIR__ . '/includes/footer.php'; ?>
|