/* 
   Core Brand Colours:
   Deep Black: RGB(0,0,0)
   Rare Orange: RGB(255,106,23)
   Fieldstone: RGB(239,234,225)
*/

:root {
    --deep-black: rgb(0, 0, 0);
    --rare-orange: rgb(255, 106, 23);
    --fieldstone: rgb(239, 234, 225);
    
    --font-display: 'Playfair Display', serif; /* Fallback for Aime */
    --font-text: 'Outfit', sans-serif;
}

body {
    background-color: var(--fieldstone);
    color: var(--deep-black);
    font-family: var(--font-text);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

header {
    margin-bottom: 5rem;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--deep-black);
    margin: 0;
    text-transform: uppercase;
}

.headline {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--rare-orange);
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.02em;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--deep-black);
    margin: 0 auto 2.5rem auto;
}

.status {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--deep-black);
}

.message {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
    color: var(--deep-black);
}

footer {
    padding: 2rem;
    background-color: var(--fieldstone);
}

footer p {
    font-size: 0.8rem;
    color: var(--deep-black); /* Matching the title color as requested */
    margin: 0;
    font-family: var(--font-text);
}