<?php
$PAGE_TITLE = 'Gallery | Before & After Mesh Installations | FreshMesh';
$PAGE_DESC  = 'Before-and-after photos of window, door, balcony and cat-safe mesh installations across HDB, condo and landed homes in Singapore.';
require __DIR__ . '/includes/header.php';
// Placeholder gallery tiles by home area. Drop real photos into /uploads and swap captions in.
$tiles = [
  ['HDB service yard window mesh','#0f8a6a'],
  ['Kitchen window magnetic mesh','#0b6a52'],
  ['Bedroom insect screen','#13977a'],
  ['Condo balcony door mesh','#0f8a6a'],
  ['Cat-safe window mesh','#0b6a52'],
  ['Magnetic screen door','#13977a'],
  ['Bathroom window mesh','#0f8a6a'],
  ['Retractable door screen','#0b6a52'],
  ['Stainless security mesh','#13977a'],
];
?>
<section class="page-hero">
  <div class="wrap">
    <div class="crumb"><a href="/">Home</a> &nbsp;/&nbsp; Gallery</div>
    <h1>Before &amp; after gallery</h1>
    <p class="lead">A look at our work across HDB, condo and landed homes. Real project photos are being added — ask us to send recent examples for your home type.</p>
    <a class="btn btn-wa btn-lg" href="<?= e(wa_link('Hi FreshMesh, can you send recent before-and-after photos for my home type?')) ?>" target="_blank" rel="noopener">Request photos on WhatsApp</a>
  </div>
</section>
<section class="section">
  <div class="wrap">
    <div class="gal-grid">
      <?php foreach ($tiles as $t): ?>
        <div class="gal" style="background:<?= e($t[1]) ?>">
          <svg width="60" height="60" viewBox="0 0 24 24" fill="none" style="position:absolute;top:50%;left:50%;transform:translate(-50%,-60%);opacity:.35"><rect x="3" y="3" width="18" height="18" rx="2" stroke="#fff" stroke-width="1.4"/><path d="M3 12h18M12 3v18M7.5 3v18M16.5 3v18M3 7.5h18M3 16.5h18" stroke="#fff" stroke-width="1"/></svg>
          <div class="cap"><?= e($t[0]) ?></div>
        </div>
      <?php endforeach; ?>
    </div>
    <p class="callout" style="max-width:760px;margin:30px auto 0">Photo coming soon. Replace these tiles with real before-and-after images by dropping files into the uploads folder.</p>
  </div>
</section>
<?php require __DIR__ . '/includes/footer.php'; ?>
