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

body {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    background-color: #fafafa;
    color: #2c2c2c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
}

body > * {
    flex-shrink: 0;
}

.spacer {
    flex-grow: 1;
    width: 100%;
    height: 0;
    pointer-events: none;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    flex: 1 0 auto;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.coming-soon {
    font-size: 1rem;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    color: #bbb;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.125rem;
    }

    .container {
        padding: 1.5rem;
    }
}

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

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