/**
 * Preloader only — background #111827 (not site-wide).
 */
#partha-splash {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-splash, 99999);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#partha-splash .splash-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

#partha-splash .splash-logo img,
#partha-splash .splash-logo svg {
    display: block;
    max-width: min(280px, 72vw);
    width: auto;
    height: auto;
    object-fit: contain;
}

.splash-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
