


/* ═══════════════════════════════════════
   ABOUT STORY SECTION
   ═══════════════════════════════════════ */
.about-story-section {
    background-color: var(--coffee);
    padding: 120px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.about-story-images {
    position: relative;
    height: 480px;
}

.about-story-img-wrap {
    position: absolute;
    border-radius: 12px;
    border: 2px solid var(--biscuit);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.about-story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-story-img-wrap:hover img {
    transform: scale(1.04);
}

.about-story-img-back {
    top: 0;
    left: 0;
    width: 55%;
    height: 70%;
    z-index: 1;
}

.about-story-img-front {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 66%;
    z-index: 2;
}

.about-story-content {
    display: flex;
    flex-direction: column;
}

.about-story-title-top {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.about-story-title {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 35px;
    margin-top: 0;
    letter-spacing: 0.02em;
}

.about-story-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #D2C4BE;
    margin-bottom: 16px;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-story-images {
        height: 380px;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .about-story-section {
        padding: 70px 0;
    }

    .about-story-images {
        height: 300px;
    }
}

