:root {
    --cream: #f6f1e9;
    --ink: #24211d;
    --muted: #6e675f;
    --accent: #8d5a45;
    --line: rgba(36, 33, 29, 0.12);
}

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

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top left,
            rgba(141, 90, 69, 0.08),
            transparent 35rem
        ),
        var(--cream);

    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
}

.coming-soon {
    width: min(760px, calc(100% - 56px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 64px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin-bottom: 2rem;

    color: var(--muted);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 2.75rem;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(4.5rem, 10vw, 8rem);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.04em;
}

.tagline {
    margin-bottom: 3.5rem;

    color: var(--muted);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.divider {
    margin-bottom: 3rem;
    color: var(--accent);
}

.preview {
    max-width: 560px;
    font-size: 1.25rem;
    line-height: 1.7;
}

.preview p + p {
    margin-top: 1.25rem;
}

.construction {
    margin-top: 2.5rem;
    color: var(--muted);
    font-style: italic;
    letter-spacing: 0.03em;
}

footer {
    margin-top: 6rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    color: var(--muted);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
}

footer a {
    color: var(--ink);
    font-family: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

@media (max-width: 700px) {
    .coming-soon {
        width: calc(100% - 36px);
        padding: 4rem 0;
    }

    h1 {
        font-size: clamp(4rem, 18vw, 6rem);
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
