.story-section {
    background: var(--surface-strong);
}

.story-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
    gap: 48px;
    align-items: center;
}

.story-section__copy {
    display: grid;
    gap: 16px;
}

.story-section__copy h2 {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
}

.story-section__copy p {
    color: var(--text);
    line-height: 1.7;
}

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

.story-section__gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
    .story-section__grid {
        grid-template-columns: 1fr;
    }

    .story-section__gallery {
        order: -1;
    }
}

@media (max-width: 767px) {
    .story-section__copy h2 {
        font-size: 1.5rem;
    }

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