.page-hero {
    background-image:
        linear-gradient(
            180deg,
            rgba(250, 244, 238, 0.15),
            rgba(250, 244, 238, 0.65)
        ),
        var(--page-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .editorial-grid,
#journey .editorial-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

#journey .editorial-copy,
#performance .editorial-copy {
    max-width: 720px;
}

#intro .editorial-copy p + p {
    margin-top: 24px;
}

.dance-intro-video {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: block;
}

.journey-thumbnail {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow);
    border: 1px solid rgba(111, 74, 132, 0.15);
    transition: transform 0.35s ease;
}

.journey-thumbnail:hover {
    transform: translateY(-6px);
}

.journey-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.journey-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-thumbnail::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(250, 244, 238, 0.92);
    color: var(--purple);
    font-size: 34px;
    font-weight: 700;
    pointer-events: none;
    box-shadow: 0 8px 30px rgba(67, 45, 76, 0.15);
}

.performance-gallery {
    margin-top: 48px;
}

.performance-gallery .photo-card {
    height: 520px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.performance-gallery .photo-card:hover {
    transform: translateY(-6px);
}

.performance-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 980px) {
    #intro .editorial-grid,
    #journey .editorial-grid {
        grid-template-columns: 1fr;
    }

    .dance-intro-video,
    .journey-thumbnail {
        height: 420px;
    }

    .performance-gallery .photo-card {
        height: 420px;
    }
}