/* Tam ekran logo intro → header konumuna geçiş */
body.logo-splash-active {
    overflow: hidden;
}

.logo-splash {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: background-color 0.5s ease 0.45s, opacity 0.4s ease;
}

.logo-splash.is-bg-fade {
    background-color: rgba(245, 243, 239, 0);
}

.logo-splash.is-finished {
    opacity: 0;
    pointer-events: none;
}

.logo-splash__img {
    width: min(72vw, 72vh, 380px);
    height: auto;
    max-height: min(72vw, 72vh, 380px);
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.logo-splash__img.is-flying {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 10001;
    transition: transform 1s cubic-bezier(0.45, 0, 0.15, 1);
    will-change: transform;
}

.logo-mark--splash-hidden {
    opacity: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    .logo-splash {
        display: none !important;
    }
}
