/* Brand Colors */
:root {
    --espresso: #302B28;
    --cognac: #A0623A;
    --warm-ivory: #F7F3EE;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--warm-ivory);
    color: var(--espresso);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

/* Wordmark */
.wordmark {
    width: 100%;
    max-width: 700px;
    height: auto;
}

/* Tagline */
.tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--espresso);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wordmark {
        max-width: 300px;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .wordmark {
        max-width: 250px;
    }
    
    .tagline {
        font-size: 1rem;
    }
}
