        @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Inter:wght@300;400&display=swap');

        :root {
            /* WARM LUXURY PALETTE */
            --bg-color: #121212;      
            --text-color: #e5e5e0;    
            --accent-color: #c4a484;  
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            position: relative;
        }

        /* Background Texture */
        .bg-texture {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, #252525 0%, #121212 100%);
            z-index: -1;
        }

        h1 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem; /* Large but elegant */
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .status-badge {
            display: inline-block;
            border: 1px solid #333;
            padding: 8px 16px;
            margin-bottom: 2rem;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #888;
            border-radius: 50px;
            background: rgba(255,255,255,0.03);
        }

        p {
            max-width: 400px;
            margin: 0 auto 2.5rem auto;
            color: #aaa;
            line-height: 1.6;
            font-weight: 300;
        }

        .contact-link {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            transition: opacity 0.3s;
            border-bottom: 1px solid transparent;
        }

        .contact-link:hover {
            opacity: 0.8;
            border-bottom: 1px solid var(--accent-color);
        }

        /* Footer area */
        .footer {
            position: absolute;
            bottom: 40px;
            font-size: 0.75rem;
            color: #555;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Animations */
        .fade-up {
            animation: fadeUp 1.2s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            body { padding: 20px; }
        }