/* Modern Brand Story Section */
.brand-story-section {
    background-color: #070707;
    padding-top: 80px;
}

.brandstory-modern {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #000000 60%, #000000 100%);
    overflow: hidden;
}

.brandstory-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/latest-img/img19.webp') center/cover no-repeat;
    opacity: 0.7;
    z-index: 1;
}

.brandstory-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    background: rgb(0 0 0 / 78%);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 48px 32px;
    text-align: center;
    margin: 0px 20px;
}

.brandstory-title {
    font-family: 'FuturaBT-Light', 'FuturaLT', Arial, sans-serif;
    font-size: 3.5rem;
    color: #7a6c5d;
    letter-spacing: 0.08em;
    font-weight: 300;
    margin-bottom: 12px;
}

.brandstory-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c2b9a6 0%, #1e1a13 100%);
    border-radius: 2px;
    margin: 0 auto 24px auto;
}

.brandstory-subtitle {
    font-family: 'FuturaBT-Light', 'FuturaLT', Arial, sans-serif;
    font-size: 1.5rem;
    color: #a08c6b;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.brandstory-desc {
    font-family: 'FuturaBT-Light', 'FuturaLT', Arial, sans-serif;
    font-size: 1.1rem;
    color: #a08c6b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.brandstory-btn {
    display: inline-block;
    padding: 12px 36px;
    background: linear-gradient(90deg, #a08c6b 0%, #000000 100%);
    color: #fff;
    font-family: 'FuturaBT-Light', 'FuturaLT', Arial, sans-serif;
    font-size: 1.1rem;
    border-radius: 24px;
    text-decoration: none;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(160, 140, 107, 0.12);
    transition: .3s all;
}

.brandstory-btn:hover {
    background: linear-gradient(90deg, #7a6c5d 0%, #a08c6b 100%);
    color: #fff;
    transition: .3s all;
}

@media (max-width: 900px) {
    .brandstory-content {
        padding: 32px 12px;
    }

    .brandstory-title {
        font-size: 2.2rem;
    }

    .brandstory-subtitle {
        font-size: 1.1rem;
    }
}