/* ============================================================
   story.css — Our Story section on index.html
   ============================================================ */

.story {
    background: #ffffff;
    padding: 100px var(--gutter);
    overflow-x: hidden;
    width: 100%;
}

.story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max-width);
    margin-inline: auto;
}

/* ── LEFT: TEXT ─────────────────────────────────────────────── */
.story__eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c94b1a;
    margin-bottom: 1rem;
}

.story__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1c1410;
    margin-bottom: 1.75rem;
}

.story__body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.8;
    color: #3a2a22;
    margin-bottom: 1.25rem;
    max-width: 480px;
}

.story__body:last-of-type {
    margin-bottom: 2.5rem;
}

/* ── STATS ROW ──────────────────────────────────────────────── */
.story__stats {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.story__stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.story__stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1c1410;
    line-height: 1;
}

.story__stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a5c50;
}

/* ── RIGHT: IMAGE ───────────────────────────────────────────── */
.story__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* Slight aspect-ratio constraint so the image doesn't grow too tall */
    aspect-ratio: 3 / 4;
}

.story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.story__image-wrap:hover .story__image {
    transform: scale(1.03);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .story__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Image moves below text on mobile */
    .story__image-wrap {
        aspect-ratio: unset;
        height: 420px;
        order: 2;
    }

    .story__text {
        order: 1;
    }

    .story__body {
        max-width: 100%;
    }

    .story {
        padding: 60px var(--gutter);
    }
}