.about-story {
    position: relative;
    background: #25211b;
    padding: 48px 0 92px;
}

.about-story__inner {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.22);
}

.about-story__top {
    padding: 0 0 22px;
}

.about-story__heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.34);
    padding: 0 0 12px;
}

.about-story__heading h2,
.about-story__heading span {
    font-size: clamp(44px, 4.4vw, 58px);
    line-height: 0.92;
    font-weight: 300;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.94);
}

.about-story__heading span {
    color: rgba(255,255,255,0.62);
}

.about-story__copy {
    padding: 20px 0 34px;
}

.about-story__text {
    max-width: 1120px;
    font-size: 14px;
    line-height: 1.48;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.about-story__visual {
    position: relative;
    overflow: hidden;
    margin-bottom: 44px;
    background: rgba(255,255,255,0.02);
}

.about-story__visual img {
    display: block;
    width: 100%;
    height: clamp(340px, 44vw, 520px);
    object-fit: cover;
}

.about-story__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    min-height: 98px;
    border-top: 1px solid rgba(255,255,255,0.34);
    border-bottom: 1px solid rgba(255,255,255,0.22);
}

.about-story__bottom p {
    font-size: clamp(34px, 4.9vw, 66px);
    line-height: 0.94;
    font-weight: 300;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.94);
}

.about-story__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dcc09c;
    flex: 0 0 auto;
}

.reveal-story {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.8s ease, transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-story.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
    .about-story {
        padding: 0 0 72px;
    }

    .about-story__copy {
        padding: 18px 0 26px;
    }

    .about-story__visual {
        margin-bottom: 32px;
    }
}

@media (max-width: 640px) {
    .about-story__inner {
        width: calc(100% - 20px);
    }

    .about-story__heading {
        gap: 10px;
    }

    .about-story__text {
        font-size: 12px;
        line-height: 1.5;
    }

    .about-story__bottom {
        gap: 12px;
        min-height: 76px;
    }

    .about-story__bottom p {
        font-size: clamp(26px, 9vw, 44px);
        text-align: center;
    }

    .about-story__dot {
        width: 14px;
        height: 14px;
    }
}
