:root {
    color-scheme: light;
    --background: #f6f2eb;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-border: rgba(109, 80, 51, 0.12);
    --text: #2f261f;
    --muted: #7c6755;
    --accent: #9d6a3b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(188, 146, 103, 0.24), transparent 34%),
        linear-gradient(180deg, #fbf8f3 0%, var(--background) 100%);
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    gap: 2rem;
}

.site-header,
.site-footer,
.site-main {
    width: min(100%, 960px);
}

.site-header {
    display: flex;
    justify-content: center;
}

.site-logo {
    width: min(220px, 70vw);
    height: auto;
    display: block;
    object-fit: contain;
}

.site-main {
    flex: 1;
    display: grid;
    place-items: center;
}

.status-card {
    width: min(100%, 560px);
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    background: var(--surface);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 45px rgba(66, 45, 23, 0.08);
}

.status-eyebrow {
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.8rem;
    color: var(--muted);
}

h1 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 3.6rem);
    line-height: 1.1;
    color: var(--accent);
}

.site-footer {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-footer a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

@media (max-width: 640px) {
    .page-shell {
        padding: 1.5rem 1rem;
    }

    .status-card {
        padding: 2.25rem 1.25rem;
        border-radius: 20px;
    }
}