:root {
    --page-bg: linear-gradient(145deg, #f4efe6 0%, #d8e2dc 100%);
    --panel-bg: rgba(255, 255, 255, 0.82);
    --text-main: #1f2933;
    --text-muted: #52606d;
    --accent: #b85c38;
    --accent-hover: #8d462b;
    --border: rgba(31, 41, 51, 0.08);
    --shadow: 0 24px 80px rgba(31, 41, 51, 0.14);
    font-family: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--page-bg);
    color: var(--text-main);
}

.shell {
    width: min(680px, calc(100vw - 32px));
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--panel-bg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 0.95;
}

.body-copy {
    margin: 20px 0 28px;
    max-width: 38rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.cta {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease;
}

.cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .shell {
        padding: 28px;
        border-radius: 20px;
    }
}