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

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0d1f3c 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(193, 163, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(193, 163, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #c1a362 0%, #e8d5a3 50%, #c1a362 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4rem;
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c1a362, transparent);
    margin: 0 auto 3rem;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact {
    margin-top: 2rem;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.contact-email {
    color: #c1a362;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #e8d5a3;
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

@media (max-width: 600px) {
    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .coming-soon {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1rem;
    }
}
