/* =========================================================
   NOTRE HISTOIRE — Couple fondateur Kiara & Largo
========================================================= */

.story-founders {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 8vw, 120px) 0;
    background:
        radial-gradient(circle at 14% 0%, rgba(200, 168, 90, .12), transparent 34%),
        linear-gradient(180deg, #fffaf1 0%, #f3eadc 100%);
}

.story-founders::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(200, 168, 90, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 168, 90, .025) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .5;
    pointer-events: none;
}

.story-founders .container {
    position: relative;
    z-index: 2;
}

.story-founders__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.story-founder-card {
    overflow: hidden;
    border-radius: 38px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(200, 168, 90, .22);
    box-shadow: 0 24px 70px rgba(31, 24, 12, .08);
}

.story-founder-card figure {
    position: relative;
    overflow: hidden;
    height: 440px;
    margin: 0;
    background: #17130d;
}

.story-founder-card figure::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(232, 190, 83, .28);
    border-radius: 26px;
    pointer-events: none;
}

.story-founder-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: brightness(.94) contrast(1.04) saturate(1.03);
}

.story-founder-card div {
    padding: 28px;
}

.story-founder-card span {
    color: #a06f22;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 11px;
    font-weight: 900;
}

.story-founder-card h3 {
    margin: 12px 0 14px;
    color: #17130d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.story-founder-card p {
    margin: 0;
    color: rgba(28, 23, 15, .72);
    font-size: 15.5px;
    line-height: 1.75;
}

@media (max-width: 760px) {
    .story-founders {
        padding: 64px 0;
    }

    .story-founders .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .story-founders__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .story-founder-card {
        border-radius: 30px;
    }

    .story-founder-card figure {
        height: min(58vh, 390px);
        min-height: 310px;
    }

    .story-founder-card div {
        padding: 22px;
    }

    .story-founder-card h3 {
        font-size: 28px;
    }

    .story-founder-card p {
        font-size: 14.6px;
        line-height: 1.68;
    }
}

@media (max-width: 430px) {
    .story-founders {
        padding: 58px 0;
    }

    .story-founder-card {
        border-radius: 26px;
    }

    .story-founder-card figure {
        height: 310px;
        min-height: 0;
    }

    .story-founder-card div {
        padding: 20px;
    }
}
