.nmf-collections-wrap {
    width: 100%;
    color: #171419;
}

.nmf-collections-intro {
    max-width: 980px;
    margin: 0 0 44px;
}

.nmf-collections-wrap--center .nmf-collections-intro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.nmf-collections-wrap--right .nmf-collections-intro {
    margin-left: auto;
    text-align: right;
}

.nmf-collections-intro__eyebrow,
.nmf-collection-card__eyebrow,
.nmf-collection-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 13px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(23, 20, 25, .48);
}

.nmf-collections-intro__title {
    margin: 0;
    font-size: clamp(42px, 6vw, 96px);
    font-weight: 300;
    line-height: .9;
    letter-spacing: -.06em;
    color: currentColor;
}

.nmf-collections-intro__text {
    max-width: 52em;
    margin: 20px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(23, 20, 25, .66);
}

.nmf-collections-wrap--center .nmf-collections-intro__text {
    margin-left: auto;
    margin-right: auto;
}

.nmf-collections-wrap--right .nmf-collections-intro__text {
    margin-left: auto;
}

.nmf-collections-grid {
    --nmf-collections-columns: 3;
    --nmf-collections-gap: 26px;
    display: grid;
    grid-template-columns: repeat(var(--nmf-collections-columns), minmax(0, 1fr));
    gap: var(--nmf-collections-gap);
    width: 100%;
}

.nmf-collection-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--nmf-collection-card-color, currentColor);
    text-decoration: none !important;
    background: var(--nmf-collection-card-bg, #f4eeeb);
}

.nmf-collection-card:hover,
.nmf-collection-card:focus-visible {
    color: var(--nmf-collection-card-color, currentColor);
    text-decoration: none !important;
}

.nmf-collection-card__media {
    position: relative;
    display: block;
    height: 460px;
    overflow: hidden;
    background: rgba(244, 238, 235, .9);
}

.nmf-collection-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1.05s var(--nmf-ease), filter 1.05s var(--nmf-ease);
}

.nmf-collection-card:hover .nmf-collection-card__image,
.nmf-collection-card:focus-visible .nmf-collection-card__image {
    transform: scale(1.045);
    filter: saturate(1.02) contrast(1.01);
}

.nmf-collection-card__body {
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 28px 28px 30px;
}

.nmf-collection-card__title {
    display: block;
    font-size: clamp(31px, 3.8vw, 62px);
    font-weight: 300;
    line-height: .92;
    letter-spacing: -.055em;
    color: currentColor;
}

.nmf-collection-card__text {
    display: block;
    max-width: 34em;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(23, 20, 25, .66);
}

.nmf-collection-card__count {
    display: inline-flex;
    margin-top: auto;
    padding-top: 24px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(23, 20, 25, .52);
}

.nmf-collection-hero {
    --nmf-collection-hero-bg: #f4eeeb;
    --nmf-collection-hero-color: #171419;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 6vw, 96px);
    align-items: center;
    min-height: 520px;
    padding: 80px;
    color: var(--nmf-collection-hero-color);
    background-color: var(--nmf-collection-hero-bg);
}

.nmf-collection-hero--split-rev {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.nmf-collection-hero--split-rev .nmf-collection-hero__content {
    order: 2;
}

.nmf-collection-hero--split-rev .nmf-collection-hero__media {
    order: 1;
}

.nmf-collection-hero--center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.nmf-collection-hero--background {
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.48)), var(--nmf-collection-hero-bg-image);
    background-position: center;
    background-size: cover;
}

.nmf-collection-hero__content {
    max-width: 760px;
}

.nmf-collection-hero--center .nmf-collection-hero__content {
    margin: 0 auto;
}

.nmf-collection-hero__title {
    margin: 0;
    font-size: clamp(52px, 8vw, 132px);
    font-weight: 300;
    line-height: .86;
    letter-spacing: -.065em;
    color: currentColor;
}

.nmf-collection-hero__text {
    max-width: 48em;
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(23, 20, 25, .68);
}

.nmf-collection-hero--background .nmf-collection-hero__text {
    color: rgba(255,255,255,.82);
}

.nmf-collection-hero__media {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: rgba(255,255,255,.32);
}

.nmf-collection-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.nmf-collection-hero__button {
    position: relative;
    display: inline-flex;
    margin-top: 28px;
    color: currentColor;
    font-size: 11px;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none !important;
}

.nmf-collection-hero__button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    transform: scaleX(.42);
    transition: transform .45s var(--nmf-ease);
}

.nmf-collection-hero__button:hover::after,
.nmf-collection-hero__button:focus-visible::after {
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .nmf-collection-hero,
    .nmf-collection-hero--split-rev {
        grid-template-columns: 1fr;
    }

    .nmf-collection-hero--split-rev .nmf-collection-hero__content,
    .nmf-collection-hero--split-rev .nmf-collection-hero__media {
        order: initial;
    }
}

@media (max-width: 767px) {
    .nmf-collections-grid {
        grid-template-columns: 1fr;
    }

    .nmf-collections-intro {
        margin-bottom: 30px;
    }

    .nmf-collections-intro__title,
    .nmf-collection-hero__title {
        font-size: clamp(42px, 14vw, 70px);
    }

    .nmf-collection-card__media {
        height: 420px;
    }

    .nmf-collection-card__body {
        min-height: 0;
    }

    .nmf-collection-hero {
        padding: 44px 24px;
        min-height: 0;
    }

    .nmf-collection-hero__media {
        height: 420px;
    }
}
