/* LG: 1024–1279px */
@media (min-width: 1024px) and (max-width: 1279px) {

    .landing {
        background-size: cover;
        background-position: 40% center;
        background-attachment: fixed;
    }

    h1 {
        font-size: 3.6rem;
        margin-top: 280px;
        letter-spacing: 1.5px;
    }

    .grid {
        grid-template-columns: repeat(5, 110px);
        grid-template-rows: repeat(2, 76px);
        gap: 60px;
        padding: 60px 20px;
    }

    .grid>* {
        width: 110px;
        height: 76px;
    }

    .first-para {
        padding: 0 100px;
    }

    .trailer video {
        width: 800px;
        max-width: 90%;
        height: auto;
    }

    /* Adaptive section heights */
    .plot {
        height: auto;
        min-height: 65vh;
    }

    .trailer {
        height: auto;
        min-height: 75vh;
    }

    .team {
        height: auto;
        min-height: 100vh;
    }

    .reviews {
        height: auto;
        min-height: 110vh;
    }

    .contact {
        height: auto;
        min-height: 100vh;
    }

    /* Desktop: keep inline menu; hide hamburger */
    .menu-button {
        display: none;
    }

    .menu-links {
        display: flex;
        position: static;
        background: none;
        border: 0;
        padding: 0;
        gap: 20px;
    }
}