    /* Hero Section */
.hero{
    position: relative;
    height: 50svh;
    width: 100%;
}

.hero>div{
    position: absolute;
    bottom: 1em;
    left: 0;
    right: 1em;
    display: flex;
    justify-content: space-between;
}

.hero>div>h1{
    color: var(--white);
    margin: auto 1em;
    filter: drop-shadow(1px 1px 0 var(--black));
}

.hero picture img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Collection Logo */
.hero-logo{
    height: 7em;
    width: 7em;
    aspect-ratio: 1/1;
    object-fit: contain;
}

div.volume{
    display: block;
    box-sizing: border-box;
    position: absolute;
    bottom: 9em;
    left: unset;
    right: 1em;
    width: 7em;
    color: var(--white);
    text-align: center;
    font-weight: 700;
    padding: 0.5em 1em;
}

.header{
    width: min(1100px, 85%);
    text-align: center;
    font-style: italic;
    text-wrap: balance;
}

.header>h2{
    text-transform: none;
}

.header>p{
    font-size: 1.2em;
    font-weight: 300;
}

.bento{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3em;
    border-radius: 1em;
    margin-inline: 5%;
    overflow: hidden;
}

.bento>img{
    height: 100%;
    width: 100%;
    max-height: 600px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.bento>img.big{
    grid-column: span 2;
    aspect-ratio: 3/2;
}

/* Brands Section */
.collections{
    position: relative;
}

.collection-buttons{
    position: absolute;
    top: 50%;
    left: 2.5%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    height: 15%;
    min-height: 32px;
    width: 95%;
    pointer-events: none;
}

.collection-buttons>button{
    aspect-ratio: 1/1;
    background-color: var(--black);
    border-radius: 50%;
    pointer-events: all;
}

.collection-buttons>button:hover{
    background-color: var(--shadow-2);
}

.collection-buttons>button>img{
    height: 100%;
    width: 60%;
}

.collections div.carousel{
    display: flex;
    gap: 1em;
    width: 90%;
    border-radius: 1em;
    margin-inline: auto;
    cursor: grab;
    overflow: hidden;
}

.collections>div.carousel.dragging{
    cursor: grabbing;
    scroll-behavior: auto;
}

.collections>div.carousel.dragging>.cart{
    pointer-events: none;
    cursor: grabbing;
}

div.carousel>.cart{
    flex: 0 0 90%;
    position: relative;
    max-height: 900px;
    aspect-ratio: 2/3;
    overflow: hidden;
    user-select: none;
    -webkit-user-drag: none;
}

div.carousel>.cart>img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: all 300ms;
}

div.carousel>.cart>p{
    position: absolute;
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 1.5em;
    text-align: center;
    color: var(--white);
    text-shadow: 1px 1px 0 var(--black);
    backdrop-filter: blur(0.3em);
    background: 000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.3) 97%, rgba(200, 200, 200, 0.5) 100%);
    padding: 5%;
    margin: 0;
    transition: all 150ms;
}

/* Look Book Pop-Up */
.window{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    z-index: 100;
}

.window iframe{
    width: 100%;
    height: 100lvh;
    background-color: rgba(255, 255, 255, 0.7);
}

.window>.book-close{
    position: absolute;
    top: 10%;
    right: 5%;
    height: 3em;
    aspect-ratio: 1/1;
    transition: 300ms;
}

.window>.book-close:hover{
    transform: rotate(90deg);
    cursor: pointer;
}

/* Bar with img */
.bar{
    min-height: 60svh;
    position: relative;
    color: var(--white);
    margin-bottom: calc(12svh + 5em);
}

.bar img{
    min-height: 60svh;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.bar article{
    position: absolute;
    bottom: -20%;
    left: 10%;
    box-sizing: border-box;
    align-content: center;
    width: 80%;
    border-radius: 1em;
    padding: 3em 2em;
    box-shadow: 0 0.5em 1em var(--shadow-2);
}

.bar article>h2{
    margin-top: 0;
}

.bar article>p{
    display: none;
}

.bar article>a{
    width: auto;
}

/* Invite Section */
section.invite{
    padding-inline: 5%;
}

@media (min-width: 761px){
    /* Hero Section */
    .hero{
        height: 70svh;
    }

    .hero h1{
        left: 1em;
    }

    .bento{
        grid-template-columns: repeat(5, 1fr);
        grid-auto-rows: 1fr;
        gap: 0.5em;
    }

    .bento>img{
        grid-column: span 2;
    }

    .bento>img.big{
        grid-column: span 3;
    }

    .collections .carousel .cart{
        flex: 0 0 calc((100% - 1em) / 2);
    }

    /* Bar with img */
    .bar{
        margin-bottom: 7em;
    }

    .bar article{
        bottom: -3em;
        left: 5%;
        right: 45%;
        min-width: 350px;
    }

    .bar article>p{
        display: block;
    }

    .bar article div{
        display: flex;
    }
}

@media (min-width: 1166px){
    /* Hero Section */
    .hero{
        height: 80svh;
    }

    .hero>div{
        bottom: 2em;
        right: 2em;
    }

    .hero>div>h1{
        margin-left: 2em;
    }

    /* Collection Logo */
    .hero-logo{
        height: 10em;
        width: 10em;
    }

    .hero>div.volume{
        bottom: 13em;
        right: 2em;
        width: 10em;
    }

    .bento{
        max-width: min(90%, 1500px);
        gap: 1em;
        margin-inline: auto;
    }

    /* Image collections */
    .collections .carousel .cart{
        flex: 0 0 calc((100% - 2em) / 3);
    }

    .collections .carousel .cart p{
        opacity: 0;
    }

    .collections .carousel .cart:hover p{
        opacity: 1;
    }

    /* Bar with img */
    .bar{
        display: flex;
        width: 100%;
        margin-block: 5em;
    }

    .bar>picture{
        flex: 1 1 60%;
    }

    .bar article{
        position: static;
        flex: 1 1 40%;
        border-radius: 0;
        padding: 5em 3em;
        box-shadow: none;
    }

    /* Invite Section */
    section.invite{
        max-width: 1250px;
        padding-inline: 1em;
    }
}