:root {
    --pink: #f3d6dc;
    --pink-light: #f8e7ea;
    --black: #11100f;
    --line: rgba(17, 16, 15, 0.75);
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    background: var(--pink);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--pink);
    color: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;

    opacity: 0.05;

    background-image:
        radial-gradient(
            rgba(0, 0, 0, 0.8) 0.45px,
            transparent 0.45px
        );

    background-size: 4px 4px;
}


/* HOME */

.category-home {
    position: fixed;
    top: 25px;
    left: 28px;
    z-index: 100;

    color: var(--black);
    text-decoration: none;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.1em;

    border-bottom: 2px solid var(--black);

    padding-bottom: 3px;
}

.category-home:hover {
    opacity: 0.55;
}


/* EXPERIENCE */

.category-experience {
    width: min(1380px, calc(100% - 56px));
    margin: auto;

    padding-top: 100px;
}


/* HERO */

.category-hero {
    min-height: 80vh;

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

    padding:
        70px
        7vw
        100px;

    border-left: 2px solid var(--black);
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
}

.category-eyebrow {
    margin-bottom: 40px;

    font-size: 10px;
    letter-spacing: 0.17em;
}

.category-hero h1 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(90px, 16vw, 220px);

    line-height: 0.75;

    letter-spacing: -0.08em;
}

.category-intro {
    max-width: 610px;

    margin:
        55px
        0
        35px;

    font-size: 17px;

    line-height: 1.4;
}


/* BUTTON */

.category-submit {
    display: inline-flex;

    width: fit-content;

    padding:
        17px
        22px;

    border: 2px solid var(--black);

    color: var(--black);

    text-decoration: none;

    font-size: 11px;
    letter-spacing: 0.08em;

    background: var(--pink-light);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.category-submit:hover {
    transform: translate(-4px, -4px);

    background: var(--black);

    color: var(--pink);

    box-shadow:
        6px 6px 0 var(--black);
}


/* GENERAL SECTIONS */

.category-about,
.category-types,
.category-coming {
    padding:
        110px
        7vw;

    border-left: 2px solid var(--black);
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
}

.category-number {
    margin-bottom: 65px;

    font-size: 10px;
    letter-spacing: 0.16em;
}


/* ABOUT */

.category-about-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(300px, 1.1fr);

    gap: 100px;
}

.category-about h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(55px, 7vw, 105px);

    line-height: 0.84;

    letter-spacing: -0.06em;
}

.category-copy {
    max-width: 600px;
}

.category-copy p {
    margin:
        0
        0
        25px;

    font-size: 15px;

    line-height: 1.5;
}


/* TYPES */

.category-type-list {
    border-top: 2px solid var(--black);
}

.category-type-list > div {
    display: grid;

    grid-template-columns:
        55px
        220px
        1fr;

    gap: 20px;

    padding:
        25px
        0;

    border-bottom: 1px solid var(--line);

    align-items: start;
}

.category-type-list span {
    font-size: 11px;
}

.category-type-list strong {
    font-size: 13px;

    letter-spacing: 0.05em;
}

.category-type-list p {
    margin: 0;

    max-width: 450px;

    font-size: 13px;

    line-height: 1.45;
}


/* COMING SOON */

.category-coming {
    min-height: 75vh;

    display: flex;
    flex-direction: column;
}

.coming-wrapper {
    flex: 1;

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

    align-items: center;

    text-align: center;

    padding: 60px 20px;
}

.coming-label {
    font-size: 10px;

    letter-spacing: 0.18em;

    margin-bottom: 35px;
}

.coming-wrapper h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(80px, 13vw, 180px);

    line-height: 0.76;

    letter-spacing: -0.07em;
}

.coming-wrapper p {
    max-width: 500px;

    margin:
        40px
        auto
        0;

    font-size: 15px;

    line-height: 1.45;
}

.coming-wrapper .category-submit {
    margin-top: 35px;
}


/* DARK BUTTON */

.category-submit-dark {
    background: var(--black);

    color: var(--pink);
}

.category-submit-dark:hover {
    background: var(--pink);

    color: var(--black);
}


/* FINAL */

.category-final {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding:
        30px
        7vw
        70px;

    border-left: 2px solid var(--black);
    border-right: 2px solid var(--black);
}

.category-final span,
.category-final a {
    font-size: 10px;

    letter-spacing: 0.13em;
}

.category-final a {
    color: var(--black);

    text-decoration: none;

    border-bottom: 1px solid var(--black);
}


/* MOBILE */

@media (max-width: 700px) {

    .category-home {
        left: 18px;
        top: 18px;
    }

    .category-experience {
        width: calc(100% - 16px);

        padding-top: 70px;
    }

    .category-hero,
    .category-about,
    .category-types,
    .category-coming {
        padding:
            70px
            24px;
    }

    .category-hero h1 {
        font-size: 22vw;
    }

    .category-about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .category-about h2 {
        font-size: 58px;
    }

    .category-type-list > div {
        grid-template-columns:
            35px
            1fr;
    }

    .category-type-list p {
        grid-column: 2;
    }

    .coming-wrapper h2 {
        font-size: 22vw;
    }

    .category-final {
        display: block;

        padding:
            30px
            24px
            60px;
    }

    .category-final a {
        display: inline-block;

        margin-top: 30px;
    }
}

