:root {

    --paper: #f8f7f3;
    --ink: #232220;
    --muted: #6f6d67;
    --green: #61785b;
    --line: #ddd8cf;

}

*,
*::before,
*::after {

    box-sizing: border-box;

}

html {

    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

}

body {

    margin: 0;

    min-height: 100vh;

    background: var(--paper);

    color: var(--ink);

    font-family: "Manrope", sans-serif;

    display: flex;
    flex-direction: column;

    max-width: 1500px;

    margin-inline: auto;

    padding:
        clamp(3rem, 6vw, 6rem)
        clamp(2rem, 7vw, 7rem);

}

/* ----------------------------- */
/* Header */
/* ----------------------------- */

header {

    margin-bottom: clamp(4rem, 8vh, 8rem);

}

.eyebrow {

    margin: 0;

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

}

.tagline {

    margin: 1.2rem 0 0;

    max-width: 26rem;

    font-size: 1.2rem;

    line-height: 1.65;

    color: var(--green);

    font-weight: 400;

}

/* ----------------------------- */
/* Hero */
/* ----------------------------- */

main {

    flex: 1;

}

h1 {

    margin: 0;

    width: fit-content;

    font-family: "Instrument Serif", serif;

    font-weight: 400;

    font-size: clamp(5rem, 10vw, 9rem);

    line-height: .94;

    letter-spacing: -.025em;

}

.intro {

    margin-top: 3rem;

    max-width: 32rem;

    font-size: 1.35rem;

    line-height: 1.7;

    color: var(--muted);

}

/* ----------------------------- */
/* Footer */
/* ----------------------------- */

footer {

    margin-top: 7rem;

    padding-top: 2rem;

    border-top: 1px solid var(--line);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 2rem;

}

footer a {

    color: inherit;

    text-decoration: none;

    transition: color .25s ease;

}

footer a:hover {

    color: var(--green);

}

.status {

    display: flex;

    align-items: center;

    gap: .75rem;

    color: var(--muted);

    letter-spacing: .08em;

    text-transform: uppercase;

    font-size: .82rem;

}

.dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--green);

    animation: pulse 4s infinite ease-in-out;

}

.cursor {

    display: inline-block;

    width: 3px;

    height: .82em;

    margin-left: .15em;

    background: var(--green);

    vertical-align: -.08em;

    animation: blink 1.4s infinite;

}

@keyframes blink {

    50% {

        opacity: 0;

    }

}

@keyframes pulse {

    50% {

        transform: scale(1.5);

        opacity: .4;

    }

}

/* ----------------------------- */
/* Mobile */
/* ----------------------------- */

@media (max-width: 700px) {

    body {

        padding: 2rem;

    }

    h1 {

        font-size: clamp(3.5rem, 17vw, 5.5rem);

    }

    .tagline {

        font-size: 1.05rem;

    }

    .intro {

        font-size: 1.1rem;

    }

    footer {

        flex-direction: column;

        align-items: flex-start;

    }

}