.about-body {
    background: #29302b;
}

.about-story {
    position: relative;
    min-height: 820px;
    margin: 0;
    padding: 100px 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 20, .04) 0%, rgba(17, 24, 20, .13) 42%, rgba(17, 24, 20, .38) 100%),
        url("../images/brandImg/abt-us-bg.jpg") center 62% / cover no-repeat;
}

.about-story::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, rgba(25, 31, 27, .08), transparent 30%, rgba(20, 26, 22, .18));
}

.about-story .container {
    position: relative;
    z-index: 1;
}

.about-story__card {
    padding: clamp(38px, 5vw, 68px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    background: rgba(46, 48, 46, .86);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
    backdrop-filter: blur(12px);
}

.about-story__header {
    margin-bottom: 38px;
}

.about-story__header > span {
    display: block;
    margin-bottom: 12px;
    color: #d2c393;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.about-story__header h1 {
    margin: 0;
    color: #fff;
    font-family: var(--headingFont);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 500;
    line-height: 1;
}

.about-story__section {
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.about-story__section h4 {
    margin-bottom: 13px;
    color: #d6c99e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.5;
}

.about-story .about-story__section p {
    margin: 0;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 15px;
    line-height: 1.85;
}

.about-story__cta {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
    padding: 15px 24px;
    border: 1px solid #dfd09f;
    border-radius: 999px;
    background: #d6c99e;
    color: #343532;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.about-story__cta:hover,
.about-story__cta:focus-visible {
    background: #f0e3b5;
    color: #252623;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .32);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .about-story {
        min-height: auto;
        padding: 76px 0;
        background-position: 38% center;
    }
}

@media (max-width: 575.98px) {
    .about-story {
        padding: 56px 10px;
        background-position: 32% center;
    }

    .about-story__card {
        padding: 34px 26px;
        border-radius: 22px;
        background: rgba(46, 48, 46, .9);
        backdrop-filter: blur(8px);
    }

    .about-story__header {
        margin-bottom: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-story__cta {
        transition: none;
    }
}
