* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: #f5f3ee;
    color: #171717;
}

.coming-soon {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 24px;
}

.content {
    width: 100%;
    max-width: 760px;
    text-align: center;
}

.logo {
    font-size: clamp(30px, 6vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
}

.logo span {
    font-weight: 400;
}

.line {
    width: 48px;
    height: 2px;
    background: #171717;

    margin: 28px auto 32px;
}

.label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 24px;
}

h1 {
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 700;

    margin-bottom: 30px;
}

.description {
    max-width: 540px;
    margin: 0 auto;

    font-size: 17px;
    line-height: 1.7;

    color: #666;
}

.footer {
    margin-top: 80px;

    display: flex;
    justify-content: space-between;

    font-size: 12px;
    color: #999;

    border-top: 1px solid #ddd8cf;
    padding-top: 18px;
}


/* Mobile */

@media (max-width: 600px) {

    .coming-soon {
        padding: 30px 20px;
    }

    .logo {
        letter-spacing: -1.5px;
    }

    h1 {
        letter-spacing: -2px;
    }

    .description {
        font-size: 15px;
    }

    .footer {
        flex-direction: column;
        gap: 8px;
        align-items: center;

        margin-top: 60px;
    }
}