<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>morning-glow.biz</title>
    <style>
        :root {
            --sunrise-gradient: linear-gradient(180deg, #ff9a9e 0%, #fad0c4 100%);
            --text-color: #2d3436;
            --bg-color: #fdfaf6;
            --accent: #e17055;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            background: var(--sunrise-gradient);
            padding: 2rem;
            text-align: center;
            color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        h1 {
            font-size: 2.5rem;
            text-transform: lowercase;
            letter-spacing: -1px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 1rem;
            text-align: center;
        }

        .hero-box {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            max-width: 600px;
        }

        footer {
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #636e72;
            border-top: 1px solid #eee;
        }

        @media (min-width: 768px) {
            h1 { font-size: 4rem; }
        }
    </style>
</head>
<body>

<header>
    <h1>morning-glow.biz</h1>
</header>

<main>
    <div class="hero-box">
        <h2>Welcome</h2>
        <p>This space is currently undergoing a restorative glow-up. Please check back soon as we reconstruct our digital sunrise.</p>
    </div>
</main>

<footer>
    &copy; 2023 morning-glow.biz. All rights reserved.
</footer>

</body>
</html>