:root {
    --bg: #F7F4F0;
    --bg-surface: #EFEBE5;
    --text: #1A1917;
    --text-muted: #5C5650;
    --text-faint: #8A8278;
    --accent: #4A6580;
    --accent-light: #6B8FAD;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #1A1917;
        --bg-surface: #242220;
        --text: #F7F4F0;
        --text-muted: #C5BFB8;
        --text-faint: #8A8278;
        --accent: #6B8FAD;
        --accent-light: #8AAFC9;
    }
}

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

html, body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.75;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(44px, 7vw, 96px);
    letter-spacing: -0.03em;
    color: var(--text);
}

p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

a {
    color: var(--accent);
}

a:hover {
    color: var(--accent-light);
}
