<!DOCTYPE html>
<html lang="pl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>OdNowa Mebli - Wkrótce</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: "Inter", -apple-system, sans-serif;
            background: linear-gradient(135deg, #FAF6F0 0%, #EDE6DB 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2C2118;
        }
        .container {
            text-align: center;
            padding: 2rem;
            max-width: 600px;
        }
        h1 {
            font-size: 3rem;
            color: #E07A5F;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        p {
            font-size: 1.25rem;
            color: #5a4a3d;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        .badge {
            display: inline-block;
            background: #3A5F4A;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>🪑 OdNowa Mebli</h1>
        <p>Nasza strona jest w trakcie budowy.<br>Wkrótce otworzymy sklep z meblami i usługi renowacji!</p>
        <span class="badge">Coming Soon</span>
    </div>
</body>
</html>