@font-face {
    font-family: 'Cormorant Garamond';
    src: url('/fonts/cormorant-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

body {
    background: #ffffff;
    color: #111111;
    font-family: 'Cormorant Garamond', Georgia, serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    text-align: center;
    max-width: 380px;
    width: 100%;
}

.message {
    font-size: 36px;
    font-weight: 300;
    color: #111111;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.label {
    font-size: 11px;
    font-weight: 400;
    color: #c0c0c0;
    letter-spacing: 0.18em;
    font-family: system-ui, -apple-system, sans-serif;
}

.back {
    font-size: 13px;
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: system-ui, -apple-system, sans-serif;
}

.back:hover { color: #555555; }

@media (prefers-color-scheme: dark) {
    body     { background: #0f0f0f; }
    .message { color: #e0e0e0; }
    .label   { color: #444444; }
    .back    { color: #444444; }
    .back:hover { color: #999999; }
}

.canary { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
