<?php


http_response_code(200);
?><!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Site Available Soon</title>
  <style>
    body{margin:0;font-family:Arial,sans-serif;background:#f6f7fb;color:#1f2937;display:flex;min-height:100vh;align-items:center;justify-content:center}
    .card{max-width:560px;background:#fff;padding:32px 28px;border-radius:18px;box-shadow:0 18px 50px rgba(15,23,42,.08);text-align:center}
    h1{margin:0 0 12px;font-size:28px} p{margin:0;font-size:16px;line-height:1.6}
  </style>
</head>
<body>
  <div class="card">
    <h1>Site Available Soon</h1>
    <p>This page is being restored. Please check back shortly.</p>
  </div>
</body>
</html>
