.atmosphere-v2 {
    position: relative;
    overflow: hidden;
    padding: clamp(6rem, 11vw, 10rem) 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background:
        radial-gradient(circle at 8% 12%, rgba(184, 115, 35, .12), transparent 31rem),
        radial-gradient(circle at 91% 82%, rgba(92, 55, 25, .15), transparent 34rem),
        #0b0a09;
    color: #f7f2ea;
}

.atmosphere-v2__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.atmosphere-v2__wrap {
    position: relative;
    z-index: 1;
    width: min(100%, 1240px);
    margin-inline: auto;
}

.atmosphere-v2__header {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.atmosphere-v2__eyebrow {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.25rem;
    color: #d7a34e;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.atmosphere-v2__eyebrow::before {
    width: 2.5rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.atmosphere-v2__title {
    max-width: 900px;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(3.5rem, 7.2vw, 7.5rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .82;
}

.atmosphere-v2__title em {
    color: #d7a34e;
    font-weight: 400;
}

.atmosphere-v2__intro {
    max-width: 390px;
    margin: 0 0 .35rem auto;
    color: rgba(237, 231, 221, .58);
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.85;
}

.atmosphere-v2__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr);
    grid-template-rows: repeat(2, minmax(280px, 330px));
    gap: 1rem;
}

.atmosphere-card {
    position: relative;
    min-height: 0;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 2px;
    background: #17130f;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
}

.atmosphere-card--feature {
    grid-row: 1 / span 2;
}

.atmosphere-card__video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78) contrast(1.05);
    transform: scale(1.015);
    transition: filter .8s ease, transform 1.6s cubic-bezier(.2, .7, .2, 1);
}

.atmosphere-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(180deg, rgba(7, 6, 5, .24), rgba(7, 6, 5, .08) 32%, rgba(7, 6, 5, .91) 100%);
}

.atmosphere-card:hover .atmosphere-card__video {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.06);
}

.atmosphere-card__top {
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    left: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .7);
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.atmosphere-card__number {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #efbd69;
    letter-spacing: 0;
}

.atmosphere-card__body {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
}

.atmosphere-card--feature .atmosphere-card__body {
    right: 2.5rem;
    bottom: 2.5rem;
    left: 2.5rem;
}

.atmosphere-card__kicker {
    display: block;
    margin-bottom: .65rem;
    color: #e1ae5a;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.atmosphere-card__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 3.2vw, 3.65rem);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: .95;
}

.atmosphere-card:not(.atmosphere-card--feature) .atmosphere-card__title {
    font-size: clamp(1.8rem, 2.2vw, 2.55rem);
}

.atmosphere-card__copy {
    max-width: 520px;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .67);
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.65;
    opacity: 0;
    transform: translateY(.5rem);
    transition: max-height .55s ease, margin .55s ease, opacity .45s ease, transform .55s ease;
}

.atmosphere-card:hover .atmosphere-card__copy,
.atmosphere-card:focus-within .atmosphere-card__copy {
    max-height: 6rem;
    margin-top: .85rem;
    opacity: 1;
    transform: translateY(0);
}

.atmosphere-v2__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.atmosphere-v2__note {
    margin: 0;
    color: rgba(255, 255, 255, .45);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
}

.atmosphere-v2__cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 1rem;
    padding: .85rem 1.15rem;
    color: #edc177;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-decoration: none;
    text-transform: uppercase;
}

.atmosphere-v2__cta span {
    width: 2.5rem;
    height: 1px;
    background: currentColor;
    transition: width .35s ease;
}

.atmosphere-v2__cta:hover span {
    width: 4rem;
}

@media (max-width: 767px) {
    .atmosphere-v2 {
        padding: 5.5rem 0 6.5rem;
    }

    .atmosphere-v2__wrap {
        width: 100%;
    }

    .atmosphere-v2__header,
    .atmosphere-v2__footer {
        margin-inline: 1.25rem;
    }

    .atmosphere-v2__header {
        display: block;
        margin-bottom: 2.25rem;
    }

    .atmosphere-v2__title {
        max-width: 360px;
        font-size: clamp(3.4rem, 16vw, 5rem);
        line-height: .86;
    }

    .atmosphere-v2__intro {
        margin: 1.75rem 0 0;
        font-size: .86rem;
        line-height: 1.7;
    }

    .atmosphere-v2__grid {
        display: flex;
        gap: .75rem;
        overflow-x: auto;
        padding: 0 1.25rem 1rem;
        scroll-padding-left: 1.25rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .atmosphere-v2__grid::-webkit-scrollbar {
        display: none;
    }

    .atmosphere-card,
    .atmosphere-card--feature {
        width: min(82vw, 350px);
        height: 465px;
        flex: 0 0 min(82vw, 350px);
        scroll-snap-align: start;
    }

    .atmosphere-card--feature .atmosphere-card__body,
    .atmosphere-card__body {
        right: 1.35rem;
        bottom: 1.45rem;
        left: 1.35rem;
    }

    .atmosphere-card__copy,
    .atmosphere-card:hover .atmosphere-card__copy,
    .atmosphere-card:focus-within .atmosphere-card__copy {
        max-height: 7rem;
        margin-top: .7rem;
        opacity: 1;
        transform: none;
    }

    .atmosphere-card__title,
    .atmosphere-card:not(.atmosphere-card--feature) .atmosphere-card__title {
        font-size: 2.35rem;
    }

    .atmosphere-v2__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: .65rem;
        margin-top: 1.25rem;
    }

    .atmosphere-v2__cta {
        margin-left: -.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .atmosphere-card__video,
    .atmosphere-card__copy,
    .atmosphere-v2__cta span {
        transition: none;
    }
}
