body {
    background-color: #cfbfbf;
}

/* ---- Keyframes ---- */
@keyframes blur-in {
    from {
        filter: blur(16px);
        opacity: 0.6;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Split Hero Layout ---- */
#media-hero {
    display: flex;
    min-height: 100vh;
}

/* ---- Left: content ---- */
#media-content-side {
    width: 50%;
    background-color: #cfbfbf;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12vh 8% 7rem 6%;
    box-sizing: border-box;
    gap: 3rem;
}

#media-content-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2e1a1a;
    margin: 0;
    line-height: 1.15;
}

/* ---- Video list ---- */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---- Right: image ---- */
#media-image-side {
    width: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    flex-shrink: 0;
}

#media-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: blur-in 1.4s ease-out both;
}

/* ---- Title word reveal ---- */
.title-word {
    display: inline-block;
    opacity: 0;
    animation: fade-in 0.65s ease-out forwards;
}

.title-word:nth-child(1) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.8s; animation-duration: 0.3s; }
.title-word:nth-child(4) { animation-delay: 1.3s; }

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}