a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, main, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block
}

[hidden] {
    display: none
}

body {
    line-height: 1
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:after, blockquote:before, q:after, q:before {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.panel {
    height: 100vh;
    padding: 15px;
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 999;
    overflow: hidden;
    display: none
}

@media (min-width: 1500px) {
    .panel {
        width: 300px;
        right: 300px
    }
}

@media (max-width: 1500px) {
    .panel {
        width: 220px;
        right: 220px
    }
}

@media (max-width: 1024px) {
    .panel {
        right: 70px;
        border-left: 1px solid #000
    }
}

.panel .scroll-container {
    height: 100vh;
    padding-bottom: 6rem;
    overflow-y: auto
}

.panel.is-active {
    display: block
}

.panel.static {
    display: block !important;
    z-index: 99
}

.panel__header {
    margin-bottom: 7rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .9rem
}

.events__item {
    margin-bottom: 2.5rem
}

.events__item h3 {
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
    margin-bottom: 1rem
}

.header {
    height: 100vh;
    padding: 15px;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 9999
}

@media (min-width:768px ) {
    .header__wrapper {
        overflow: scroll;
    }

    .header {
        height: 113vh;
    }
}

@media (max-width: 1024px) {
    .header {
        -webkit-transform: translate3d(150px, 0, 0);
        transform: translate3d(150px, 0, 0);
        -webkit-transition: -webkit-transform .25s;
        transition: -webkit-transform .25s;
        transition: transform .25s;
        transition: transform .25s, -webkit-transform .25s
    }

    .header.is-active {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.header:after, .header:before {
    content: "";
    width: 1px;
    height: 150vh;
    position: fixed;
    top: calc(50% - 75vh);
    background-color: #000;
    z-index: 9999
}

@media (max-width: 1024px) {
    .header:after {
        display: none
    }
}

@media (min-width: 1500px) {
    .header {
        width: 300px
    }

    .header:after {
        right: 600px
    }

    .header:before {
        right: 300px
    }
}

@media (max-width: 1500px) {
    .header {
        width: 220px
    }

    .header:after {
        right: 440px
    }

    .header:before {
        right: 220px
    }
}

.header__title {
    height: 40%
}

@media (min-width: 1024px) {
    .header__title img {
        height: 130%;
        width: auto;
    }
}

@media (max-width: 1024px) {
    .header__title img {
        width: 40px;
        height: auto;
    }
}

.header__socials {
    font-size: .7rem;
    position: absolute;
    bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: opacity .25s;
    transition: opacity .25s
}

@media (max-width: 1024px) {
    .header__socials {
        opacity: 0;
        pointer-events: none
    }

    .is-active .header__socials {
        opacity: 1;
        pointer-events: auto
    }
}

.header__nav {
    font-weight: 600;
    text-transform: uppercase
}

.header__nav ul {
    padding-bottom: 50px;
}

@media (max-width: 1024px) {
    .header__nav ul {
        opacity: 0;
        -webkit-transition: opacity .25s;
        transition: opacity .25s;
        pointer-events: none;
        position: absolute;
        left: 15px;
        bottom: 80px
    }

    .is-active .header__nav ul {
        opacity: 1;
        pointer-events: auto
    }
}

.header__nav li {
    cursor: pointer
}

.header__nav li.is-active {
    -webkit-transform: translateX(15px);
    transform: translateX(15px)
}

.header__nav li + li {
    margin-top: .5rem
}

.header__nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    position: relative;
    position: absolute;
    bottom: 90px;
    text-indent: -9999px
}

.header__nav-toggle:before {
    content: "";
    width: 24px;
    height: 18px;
    position: absolute;
    left: 0;
    top: calc(50% - 9px);
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    background: none
}

.header__nav-toggle:after {
    content: "";
    width: 24px;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    background-color: #000
}

@media (max-width: 1024px) {
    .header__nav-toggle {
        display: block
    }
}

.nav-collections {
    position: fixed;
    border-right: 1px solid #000;
    padding: 15px;
    font-size: .85rem;
    display: none;
    z-index: 999;
    overflow: hidden
}

.nav-collections--bg {
    background-color: #fff
}

@media (max-width: 1024px) {
    .nav-collections--sticky {
        background: #fff;
        border-left: 1px solid #000
    }
}

@media (min-width: 1024px) {
    .nav-collections--sticky {
        display: block
    }

    .nav-collections--sticky a {
        visibility: hidden
    }

    .nav-collections--sticky a.is-active {
        position: absolute;
        top: 50px;
        width: calc(100% - 50px);
        left: 15px
    }

    .nav-collections--sticky:hover a {
        visibility: visible;
        position: static;
        width: auto
    }
}

.nav-collections.is-active {
    display: block
}

.nav-collections.is-active a {
    visibility: visible;
    position: static;
    width: auto
}

@media (min-width: 1500px) {
    .nav-collections {
        width: 300px;
        height: 100vh;
        right: 300px
    }
}

@media (max-width: 1500px) {
    .nav-collections {
        width: 220px;
        height: 100vh;
        right: 220px
    }
}

@media (max-width: 1024px) {
    .nav-collections {
        right: 70px
    }
}

.nav-collections li + li {
    margin-top: 15px
}

.nav-collections a {
    padding: 15px 15px 20px;
    display: block;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600
}

.nav-collections a.is-active, .nav-collections a:hover {
    background-color: #000;
    color: #fff;
    visibility: visible
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 15px;
    gap: 30px;
}

.grid__item img, .grid__item video {
    max-width: 100%;
}

.grid__item {
    display: flex;
    width: auto;
}

.grid__item.cover .grid__item-wrap {
    width: 100%;
}

.grid__item.cover img,
.grid__item.cover video {
    width: 100%;
    height: calc(113vh - 204px);
    object-fit: cover;
}

.grid__item.small_vertical img,
.grid__item.small_vertical video {
    width: 190px;
    height: 254px;
    object-fit: cover;
}

.grid__item.medium_vertical img,
.grid__item.medium_vertical video {
    width: 300px;
    height: 400px;
    object-fit: cover;
}

.grid__item.large_vertical img,
.grid__item.large_vertical video {
    width: 474px;
    height: 632px;
    object-fit: cover;
}

.grid__item.small_horizontal img,
.grid__item.small_horizontal video {
    height: 190px;
    width: 254px;
    object-fit: cover;
}

.grid__item.medium_horizontal img,
.grid__item.medium_horizontal video {
    height: 300px;
    width: 400px;
    object-fit: cover;
}

.grid__item.large_horizontal img,
.grid__item.large_horizontal video {
    height: 474px;
    width: 632px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .grid__item.cover img, .grid__item.cover video {
        height: auto;
    }

    .grid__item.small_vertical img,
    .grid__item.small_vertical video {
        width: 127px;
        height: 169px;
    }

    .grid__item.medium_vertical img,
    .grid__item.medium_vertical video {
        width: 200px;
        height: 267px;
    }

    .grid__item.large_vertical img,
    .grid__item.large_vertical video {
        width: 316px;
        height: 421px;
    }

    .grid__item.small_horizontal img,
    .grid__item.small_horizontal video {
        height: 127px;
        width: 169px;
        object-fit: cover;
    }

    .grid__item.medium_horizontal img,
    .grid__item.medium_horizontal video {
        height: 200px;
        width: 267px;
        object-fit: cover;
    }

    .grid__item.large_horizontal img,
    .grid__item.large_horizontal video {
        height: 316px;
        width: 421px;
        object-fit: cover;
    }
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid__item.cover {
        grid-column: span 2;
    }
}

@media (min-width: 1025px) {
    .grid {
        width: calc(100% - 220px)
    }
}

@media (min-width: 1500px) {
    .grid {
        width: calc(100% - 300px)
    }

    .grid__item.cover img,
    .grid__item.cover video {
        width: 100%;
        height: calc(113vh - 213px);
        object-fit: cover;
    }
}

/* @media (min-width: 1024px) { */
    .grid__item-wrap.top {
        margin-bottom: auto
    }

    .grid__item-wrap.bottom {
        margin-top: auto
    }

    .grid__item-wrap.middle {
        margin-top: auto;
        margin-bottom: auto
    }

    .grid__item-wrap.center {
        margin-left: auto;
        margin-right: auto
    }

    .grid__item-wrap.left {
        margin-right: auto
    }

    .grid__item-wrap.right {
        margin-left: auto
    }
/* } */

.grid__item-info {
    position: absolute;
    background-color: #fff;
    border: 1px solid #000;
    padding: 8px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .7rem;
    color: #000
}

.about-caption {
    max-width: 300px;
    position: absolute;
    background: #fff;
    padding: 15px;
    border: 1px solid #000;
    left: 50%;
    top: 50vh;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    display: none
}

.collection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 1500px) {
    .collection {
        width: calc(100% - 220px)
    }
}

@media (max-width: 1024px) {
    .collection {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (min-width: 1500px) {
    .collection {
        width: calc(100% - 300px)
    }
}

.collection__season {
    cursor: default
}

.collection__season a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    display: inline-block;
    padding: 15px
}

.collection__season a.is-active {
    border: 1px solid #000
}

.collection__season div {
    font-size: .9rem;
    margin-bottom: .5rem
}

@media (max-width: 1500px) {
    .collection__season + .collection__season {
        margin-top: 1.75rem
    }
}

@media (max-width: 1024px) {
    .collection__season div {
        font-size: .75rem
    }
}

@media (min-width: 1500px) {
    .collection__season {
        width: 48%
    }
}

@media (min-width: 1024px) {
    .collection__looks {
        width: 15%;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .collection__looks li + li {
        margin-top: 15px
    }

    .collection__looks li {
        position: relative;
        cursor: pointer
    }

    .collection__looks li:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: hsla(0, 0%, 100%, .8);
        font-size: 2rem;
        font-weight: 600
    }

    .collection__looks li.is-current {
        pointer-events: none
    }

    .collection__looks li.is-current:after, .collection__looks li:hover:after {
        display: none
    }

    .collection__looks img {
        width: 100%
    }
}

@media (max-width: 1024px) {
    .collection__looks {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .collection__looks .scroll-container {
        padding-top: 0;
        white-space: nowrap;
        overflow-x: auto
    }

    .collection__looks li {
        display: inline-block
    }

    .collection__looks li + li {
        margin-left: 10px
    }

    .collection__looks img {
        width: 80px
    }
}

.collection__info, .collection__looks, .collection__viewer {
    position: relative;
    overflow: hidden
}

@media (min-width: 1024px) {
    .collection__info, .collection__looks, .collection__viewer {
        height: 100vh
    }
}

@media (max-width: 1024px) {
    .collection__info .scroll-container, .collection__looks .scroll-container, .collection__viewer .scroll-container {
        position: static
    }
}

.collection__info {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow-y: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

@media (min-width: 1024px) {
    .collection__info {
        width: 35%
    }
}

.collection__info p + p {
    margin-top: 1rem
}

.collection__info .scroll-container {
    padding-bottom: 8rem
}

.collection__info footer {
    margin-top: 2rem
}

.scroll-container {
    padding: 15px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-overflow-scrolling: touch
}

@media (min-width: 1024px) {
    .scroll-container {
        width: calc(100% + 20px);
        padding-right: 35px;
        height: 100vh;
        overflow-y: auto
    }

    .scroll-container.scrollbar {
        width: 100%
    }
}

@media (max-width: 1024px) {
    .scroll-container {
        width: 100%
    }
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background-color: transparent
}

::-webkit-scrollbar-thumb {
    background-color: #000
}

.collection__viewer {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.collection__viewer img {
    width: 80%;
    height: auto;
    display: none
}

.collection__viewer img.is-current {
    display: block
}

@media (max-width: 1024px) {
    .collection__viewer {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
}

.collection__info-title {
    text-transform: uppercase;
    font-weight: 600
}

@media (min-width: 1024px) {
    .collection__info-title {
        display: none
    }
}

.collection__info-nav {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 2rem 0
}

@media (min-width: 1500px) {
    .collection__info-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        font-size: 1.25rem
    }
}

.collection__sticker {
    padding: 15px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    top: 50px;
    font-size: .85rem
}

@media (min-width: 1500px) {
    .collection__sticker {
        width: 260px;
        right: 320px
    }
}

@media (max-width: 1500px) {
    .collection__sticker {
        width: 180px;
        right: 240px
    }
}

@media (max-width: 1024px) {
    .collection__sticker {
        display: none
    }
}

.is-collection-nav .collection__sticker {
    display: none
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 15px
}

@media (min-width: 1500px) {
    html {
        font-size: 16px
    }
}

body {
    font-family: Brown, sans-serif;
    -webkit-font-smoothing: antialiased
}

@media (max-width: 1024px) {
    body {
        padding-right: 71px
    }
}

b, strong {
    font-weight: 700
}

p + p {
    margin-top: 1rem
}

p {
    line-height: 1.2
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer
}

.about .grid {
    padding-right: 15px
}

@media (min-width: 1500px) {
    .about, .contact {
        padding-right: 300px
    }
}

@media (max-width: 1500px) {
    .about, .contact {
        padding-right: 220px
    }
}

@media (max-width: 1024px) {
    .about, .contact {
        padding-right: 70px
    }
}

.about img,
.contact img {
    width: calc(100% - 150px);
    height: 100vh;
    object-fit: cover;
    object-position: left center;
    display: block;
}

@media (min-width: 1025px) {
    .about img,
    .contact img {
        height: 100vh;
        padding: 15px;

        margin: auto; width: 100%; padding-right: 220px; max-width: 768px;
    }
}

/* @media (min-width: 1500px) {
    .about img,
    .contact img {
        width: calc(100% - 300px);
    }
}

@media (max-width: 1500px) {
    .about img,
    .contact img {
        width: calc(100% - 220px);
    }
} */

@media (max-width: 1024px) {
    .about img,
    .contact img {
        width: calc(100% - 70px);
    }
}

.collection__viewer img {
    max-height: 85vh;
    object-fit: cover;
}

/*# sourceMappingURL=bundle.css.map*/