:root {
    --bg: #f3f0eb;
    --text: #111111;
    --line: #928e89;
}

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

html,
body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Jost", Arial, sans-serif;
}

.container {
    min-height: 100%;

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

    max-width: 650px;

    padding-left: clamp(40px, 8vw, 120px);
    padding-right: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.logo {
    width: 180px;
    display: block;
}

h1 {
    margin-top: 30px;

    font-size: 1.3rem;
    font-weight: 400;

    letter-spacing: .55rem;
    line-height: 1.6;
}

.subtitle {
    margin-top: 12px;

    font-size: .65rem;
    letter-spacing: .10rem;
}

.separator {
    width: 55px;
    height: 1.5px;

    background: var(--line);

    margin: 40px 0;
}

.intro p {
    font-size: 1.15rem;
    line-height: 2.4;
    font-weight: 400;
}

.contact h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: .35rem;

    margin-bottom: 20px;
}

.contact a {
    display: inline-block;

    color: inherit;
    text-decoration: none;

    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .1rem;

    margin-bottom: 35px;

    transition: opacity .2s ease;
}

.contact a:hover {
    opacity: .65;
}

.coming-soon {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: .02rem;
}

@media (max-width: 768px) {

    .container {
        padding: 50px 30px;
    }

    .logo {
        width: 130px;
        height: 130px;

        font-size: 1.5rem;
    }

    h1 {
        font-size: .9rem;
        letter-spacing: .3rem;
    }

    .intro p {
        font-size: 1rem;
        line-height: 2.1;
    }

    .contact h2,
    .coming-soon {
        font-size: 1.5rem;
    }

    .contact a {
        font-size: 1rem;
    }
}