/* ========================================
   Section: Image Reveal (scroll-driven)
   ======================================== */

.section-image-reveal {
    height: 250vh;
    position: relative;
    margin-top: 20px;
}

.section-image-reveal__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section-image-reveal__images {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image-reveal__layer {
    display: block;
    max-height: 100vh;
    max-width: 100vw;
    width: auto;
    height: 90vh;
    object-fit: contain;
}

.section-image-reveal__layer--sketch {
    position: relative;
    z-index: 1;
}

.section-image-reveal__layer--real {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    clip-path: inset(0 0 0 100%);
    will-change: clip-path;
}


