:root {
    --bg-cream: #F9F6F1;
    --text-dark: #222222;
    --text-muted: #5C5753;
    --brand-gold: #B58B4C;
    --brand-gold-hover: #9E7942;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Alex Brush', cursive;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header & Logo */
.site-header {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.8;
}

.logo-alfa {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.logo-beauty {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--text-dark);
    transform: translateX(10px);
}

/* Main Content */
.maintenance-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
}

.content-wrapper {
    max-width: 650px;
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--brand-gold);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 1rem 2.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo-alfa {
        font-size: 1.2rem;
    }
    .logo-beauty {
        font-size: 1.5rem;
    }
    .eyebrow {
        font-size: 0.75rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}
