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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Apple SD Gothic Neo",
        "Noto Sans KR",
        "Segoe UI",
        sans-serif;

    color: #17131c;
    background: #faf9f7;
}


/* Header */

.header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    padding: 30px 42px;

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

    z-index: 10;
}

.logo {
    color: #211a25;
    text-decoration: none;

    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: #71449b;
}

.domain {
    color: #9a969d;

    font-size: 12px;
    letter-spacing: 1px;
}


/* Hero */

.hero {
    min-height: 86vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            #f0e9f7 0%,
            #faf9f7 42%,
            #faf9f7 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    text-align: center;

    padding: 100px 20px 80px;
}

.eyebrow {
    margin-bottom: 16px;

    color: #8c7d96;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
}

h1 {
    color: #241c2a;

    font-size: clamp(90px, 17vw, 190px);
    line-height: .9;
    letter-spacing: -12px;
    font-weight: 900;
}

.description {
    margin-top: 38px;

    color: #716b75;

    font-size: clamp(18px, 2.5vw, 25px);
    line-height: 1.6;
    letter-spacing: -1px;
}

.coming {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 38px;
    padding: 9px 15px;

    color: #77717b;
    background: rgba(255, 255, 255, .65);

    border: 1px solid #e5e0e6;
    border-radius: 999px;

    font-size: 12px;
}

.dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #71449b;

    box-shadow:
        0 0 0 4px rgba(113, 68, 155, .1);
}


/* Decorative grapes */

.grape {
    position: absolute;

    font-size: 70px;

    filter: grayscale(.1);
    opacity: .12;

    user-select: none;
}

.grape-1 {
    top: 22%;
    left: 12%;
    transform: rotate(-18deg);
}

.grape-2 {
    right: 12%;
    bottom: 22%;
    transform: rotate(15deg) scale(.8);
}

.grape-3 {
    left: 24%;
    bottom: 13%;
    transform: rotate(10deg) scale(.45);
}


/* About */

.about {
    min-height: 32vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;

    background: #211a25;
}

.about-text {
    color: #e9e3ec;

    text-align: center;

    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.7;
    letter-spacing: -1.5px;
}


/* Footer */

footer {
    padding: 24px 42px;

    color: #817b84;
    background: #211a25;

    text-align: center;

    font-size: 11px;
    letter-spacing: .5px;
}


/* Mobile */

.mobile-only {
    display: none;
}

@media (max-width: 600px) {

    .header {
        padding: 24px 22px;
    }

    .domain {
        display: none;
    }

    .hero {
        min-height: 82vh;
    }

    .hero-content {
        padding-top: 70px;
    }

    h1 {
        font-size: 88px;
        letter-spacing: -7px;
    }

    .description {
        margin-top: 28px;
        font-size: 18px;
    }

    .mobile-only {
        display: block;
    }

    .grape {
        font-size: 50px;
    }

    .grape-1 {
        left: 4%;
        top: 25%;
    }

    .grape-2 {
        right: 3%;
        bottom: 18%;
    }

    .grape-3 {
        display: none;
    }

    .about {
        min-height: 30vh;
    }

    footer {
        padding: 22px;
    }
}

