/* ===================== WWD STYLES ===================== */
.wwd-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.wwd-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* FIXED: Background is now always visible */
    opacity: 0.5; 
    background-image: url('/assets/wwd.webp');
    background-size: cover;
    background-position: center;
}

.wwd-vignette-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.85) 100%);
}

.wwd-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    padding: 0 8%;
    box-sizing: border-box;
}

/* Typography Utilities */
.wwd-no-bold { font-weight: 100 !important; }
.wwd-heading-weight { font-weight: 600 !important; }

/* FIXED: Heading "O" orphan issue fixed with nowrap */
.wwd-shifting-heading {
    font-size: clamp(2.2rem, 8vw, 5rem);
    letter-spacing: 0.4em;
    margin-bottom: 2rem; 
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap; 
}

.wwd-description-text {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 850px;
    margin: 0 auto 3rem auto;
    text-wrap: balance;
}

.wwd-branding-container { margin-top: 4rem; }

.wwd-dream-text {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    max-width: 90%;
    margin-inline: auto;
}

.wwd-welcome-text {
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    color: #fff;
    letter-spacing: 0.5em;
    margin-top: 1.5rem;
}

/* Animation State */
.wwd-char {
    display: inline-block;
    opacity: 0;
    filter: blur(15px);
    transform: translateY(15px);
    transition: opacity 1.5s ease, filter 1.5s ease, transform 1.5s ease;
}
.wwd-char.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* Mobile Specifics */
@media (max-width: 600px) {
    .wwd-shifting-heading { 
        letter-spacing: 0.15em; 
        line-height: 1.3;
        white-space: normal; /* Allows wrapping on tiny mobile screens only */
    }
    .wwd-welcome-text { 
        letter-spacing: 0.3em; 
    }
}