.brand-story {
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 20%, rgba(202, 161, 91, .16), transparent 28rem),
        linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
}

.brand-story__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, .82fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.brand-story__copy h2 {
    max-width: 820px;
    margin: 14px 0 22px;
    color: var(--charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.75rem, 5.6vw, 5.8rem);
    line-height: .95;
    letter-spacing: -.035em;
}

.brand-story__copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(23, 21, 19, .7);
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.story-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.story-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(74, 33, 26, .14);
    border-radius: 999px;
    background: rgba(255, 252, 246, .78);
    color: var(--ulin-dark);
    font-size: .86rem;
    font-weight: 850;
}

.brand-story__visual {
    position: relative;
    min-height: 390px;
    display: grid;
    align-items: end;
}

.story-photo-card {
    overflow: hidden;
    width: min(100%, 520px);
    aspect-ratio: 4 / 3;
    justify-self: end;
    border: 1px solid rgba(74, 33, 26, .14);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(74, 33, 26, .1), rgba(202, 161, 91, .2));
    box-shadow: 0 34px 90px rgba(74, 33, 26, .16);
}

.story-photo-card img,
.story-photo-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    object-fit: cover;
}

.story-photo-placeholder {
    color: rgba(74, 33, 26, .4);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
}

.brand-story__visual .story-card {
    position: absolute;
    left: 0;
    bottom: -24px;
    width: min(360px, 86%);
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 252, 246, .92);
    backdrop-filter: blur(16px);
    box-shadow: 0 28px 72px rgba(74, 33, 26, .18);
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(30px, 5vw, 56px);
}

.pagination-wrap nav,
.pagination-wrap ul,
.pagination-wrap .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination-wrap li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination-wrap a,
.pagination-wrap span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 14px;
    border: 1px solid rgba(74, 33, 26, .14);
    border-radius: 999px;
    background: rgba(255, 252, 246, .86);
    color: var(--ulin-dark);
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(74, 33, 26, .08);
}

.pagination-wrap a:hover,
.pagination-wrap .active a,
.pagination-wrap .active span {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: #fffaf2;
}

@media (max-width: 1080px) {
    .brand-story__grid {
        grid-template-columns: 1fr;
    }

    .brand-story__visual {
        min-height: auto;
        padding-bottom: 36px;
    }

    .story-photo-card {
        justify-self: start;
        width: min(100%, 560px);
    }
}

@media (max-width: 640px) {
    .brand-story__copy h2 {
        font-size: 2.65rem;
    }

    .brand-story__visual .story-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 14px;
    }

    .brand-story__visual {
        padding-bottom: 0;
    }
}
