    :root { color-scheme: light dark; }
    html, body {
        height: 100%;
        margin: 0;
    }
    body {
        font-family: Georgia, "Times New Roman", serif;
        background: #f9f4ee;
    }
    .landing {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 2rem 1rem;
        box-sizing: border-box;
    }
    .landing img {
        display: block;
        width: auto;
        height: auto;
        max-width: min(92vw, 640px);
        max-height: 72vh;
        object-fit: contain;
    }
    .enter-link {
        margin-top: 1.75rem;
        display: inline-flex;
        align-items: center;
        min-height: var(--touch-min);
        box-sizing: border-box;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1rem;
        font-variant: small-caps;
        letter-spacing: 0.3em;
        color: var(--wine);
        text-decoration: none;
        padding: 0.7em 2.4em;
        border: 1px solid var(--gold);
        border-radius: 2px;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .enter-link:hover {
        background: var(--wine);
        border-color: var(--wine);
        color: #f9f4ee;
    }
