:root {
    --color-background: #f4f1eb;
    --color-text: #171714;
    --color-muted: #66665f;

    --font-display: Georgia, "Times New Roman", serif;
    --font-body: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color: var(--color-text);
    background-color: var(--color-background);
    font-family: var(--font-body);
}

body {
    min-height: 100vh;
    margin: 0;
}

p,
h1 {
    margin: 0;
}

.landing-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.content {
    width: min(100%, 45rem);
    text-align: center;
}

.eyebrow {
    margin-bottom: 1.5rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 0.9;
}

.message {
    margin-top: 2rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 3vw, 1.6rem);
    line-height: 1.5;
}

.status {
    margin-top: 1rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .landing-page {
        padding: 1.5rem;
    }

    h1 {
        letter-spacing: 0.05em;
    }
}
