/* --- SIPANWA UNIFIED CINEMATIC LOADERS --- */
#cinematic-loader, #class-loader, #contact-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0f1015; /* Clean dark cinematic canvas */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-content {
    text-align: center;
    width: 85%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-branding {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: -1.5px;
    margin: 15px 0;
    color: #ffffff;
    text-transform: uppercase;
}

.law-tagline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #f4a261; /* Peach */
    opacity: 0.8;
}

.gold-separator {
    width: 40px;
    height: 2px;
    background: #f4a261;
    margin: 10px auto;
}

.progress-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto 10px;
    overflow: hidden;
    border-radius: 1px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #f4a261;
    transition: width 0.4s ease;
}

.loading-phrase {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}