/* Explain: Immersive layout utilities and background texture. - */
.texture-section {
    position: relative;
    overflow: hidden;
}

.texture-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(23, 61, 50, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 61, 50, 0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at 30% 10%, black 0%, transparent 62%);
}

.texture-section > * {
    position: relative;
    z-index: 1;
}

.hero-cinema::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 28%;
    pointer-events: none;
    background: radial-gradient(ellipse at bottom, rgba(184, 115, 51, 0.18), transparent 58%);
}



@media (max-width: 767px) {
    .hero-cinema {
        min-height: 92vh;
    }
}
