<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Coming Soon</title>

  <style>
    :root {
      --bg: #ffffff;
      --fg: #111111;
      --muted: #6b7280; /* subtle gray */
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
      background: var(--bg);
      color: var(--fg);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                   Roboto, Inter, Helvetica, Arial, sans-serif;
    }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .container {
      text-align: center;
      padding: 2rem;
      max-width: 480px;
      width: 100%;
    }

    .logo {
      width: 140px;
      height: auto;
      margin-bottom: 2rem;
    }

    h1 {
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin-bottom: 0.75rem;
    }

    p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.6;
    }

    footer {
      position: fixed;
      bottom: 1.5rem;
      width: 100%;
      text-align: center;
      font-size: 0.75rem;
      color: var(--muted);
    }
  </style>
</head>
<body>
  <main class="container">
    <img src="logo.png" alt="Company Logo" class="logo" />

    <h1>Coming Soon</h1>
    <p>
      We&apos;re working quietly on something new.<br />
      Check back soon.
    </p>
  </main>

  <footer>
    © 2026 Darlinghill.com 
  </footer>
</body>
</html>

