/* Site loader — white overlay + logo on inner pages (not index) */

html.is-loading {
    background: #ffffff;
}

html.is-loading body {
    overflow: hidden;
    background: #ffffff;
}

#site-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

#site-loader.is-revealing {
    pointer-events: none;
    background: transparent;
}

#site-loader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__mark {
    width: clamp(108px, 24vw, 168px);
    height: clamp(108px, 24vw, 168px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#site-loader-canvas {
    width: 100%;
    height: 100%;
    display: block;
}
