/* _parts/our_journey/components/story/story.css */
.oj-story {
    background: var(--surface, #fffdf9);
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 4rem);
    overflow: hidden;
}

.oj-story-inner {
    max-width: 1365px;
    margin: 0 auto;
}

.oj-story-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 720px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.oj-story-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 500;
}

.oj-story-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    color: var(--primary);
    line-height: 1.05;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.015em;
}

.oj-story-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--primary-dark, var(--primary));
}

.oj-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
}

.oj-story-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oj-story-figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-light, #f3eee5);
}

.oj-story-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.02);
    transition: transform 1.2s ease;
}

.oj-story-card:hover .oj-story-figure img {
    transform: scale(1.04);
}

.oj-story-index {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    mix-blend-mode: difference;
}

.oj-story-body {
    max-width: 420px;
}

.oj-story-heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--primary);
    margin: 0 0 0.85rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.oj-story-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted, #6b6258);
    margin: 0;
}

.oj-story-bridge {
    margin-top: clamp(4rem, 8vw, 7rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.oj-story-bridge-rule {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.oj-story-bridge-text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    color: var(--primary-dark);
    line-height: 1.35;
    max-width: 800px;
    margin: 0;
    font-weight: 400;
}

.oj-story-bridge-text em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
}

@media (min-width: 820px) {
    .oj-story-grid {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }

    .oj-story-card--mother {
        padding-top: 3rem;
    }

    .oj-story-card--daughter {
        padding-bottom: 3rem;
    }

    .oj-story-card--mother .oj-story-figure {
        aspect-ratio: 4 / 5;
    }

    .oj-story-card--daughter .oj-story-figure {
        aspect-ratio: 3 / 4;
    }

    .oj-story-card--daughter .oj-story-body {
        margin-left: auto;
        text-align: right;
    }
}