:root {
    --bg-color: #FAF9F6;
    /* Soft linen white */
    --text-primary: #2C2C2C;
    /* Dark charcoal */
    --text-secondary: #666666;
    /* Muted gray */
    --accent: #800000;
    /* Subtle maroon for luxury */
    --border-color: #E0E0E0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.overlay {
    display: none;
    /* Removed for minimalism */
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.logo-section {
    margin-bottom: 60px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--accent);
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-info {
    margin-top: 20px;
}

.email-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--accent);
}

footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2rem;
    }

    .main-title {
        font-size: 1.5rem;
    }
}