/*
==========================================
Wander Wise Pro
Single State Page
==========================================
*/

/* ---------- Hero ---------- */

.ww-state-single-hero{
    position:relative;
    min-height:70vh;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#0b1f1c;
}

.ww-state-single-banner{
    position:absolute;
    inset:0;
}

.ww-state-single-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ww-state-single-overlay{
    position:relative;
    z-index:1;
    width:100%;
    padding:140px 0 64px;
    background:linear-gradient(
        180deg,
        rgba(6,20,18,0) 0%,
        rgba(6,20,18,.55) 55%,
        rgba(4,14,13,.92) 100%
    );
}

.ww-state-single-eyebrow{
    display:inline-flex;
    padding:8px 20px;
    margin-bottom:20px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.35);
    backdrop-filter:blur(10px);
    border-radius:999px;
    color:#fff;
    font-family:var(--body-font,'Josefin Sans',sans-serif);
    font-size:12px;
    font-weight:600;
    letter-spacing:2.5px;
    text-transform:uppercase;
}

.ww-state-single-overlay h1{
    color:#fff;
    font-size:clamp(38px,5.5vw,64px);
    line-height:1.1;
    margin-bottom:16px;
}

.ww-state-single-tagline{
    color:rgba(255,255,255,.92) !important;
    font-family:var(--body-font,'Josefin Sans',sans-serif);
    font-style:italic;
    font-size:clamp(16px,1.6vw,20px);
    max-width:640px;
}

/* ---------- Facts ---------- */

.ww-state-facts{
    padding:64px 0;
    background:#fff;
    border-bottom:1px solid #eef1f5;
}

.ww-facts-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.ww-fact{
    text-align:center;
    padding:28px 20px;
    border-radius:20px;
    background:#f8fafc;
    transition:var(--transition,.3s ease);
}

.ww-fact:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow,0 20px 50px rgba(0,0,0,.08));
}

.ww-fact-icon{
    display:block;
    font-size:28px;
    margin-bottom:12px;
}

.ww-fact h4{
    font-size:13px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--muted,#5B6472);
    margin-bottom:8px;
}

.ww-fact p{
    color:var(--text,#1A1A1A) !important;
    font-weight:700;
    font-size:18px;
}

/* ---------- About / Content ---------- */

.ww-state-about{
    padding:80px 0;
    background:#fff;
}

.ww-state-about-inner{
    max-width:800px;
    margin:0 auto;
}

.ww-state-about-inner p{
    color:var(--muted,#5B6472);
    font-size:18px;
    line-height:1.9;
    margin-bottom:24px;
}

.ww-state-about-inner h2,
.ww-state-about-inner h3{
    margin:40px 0 18px;
}

/* ---------- Responsive ---------- */

@media (max-width:1024px){

    .ww-facts-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .ww-state-single-hero{
        min-height:56vh;
    }

    .ww-state-single-overlay{
        padding:100px 0 44px;
    }

    .ww-state-facts{
        padding:44px 0;
    }

    .ww-fact{
        padding:22px 14px;
    }

    .ww-state-about{
        padding:56px 0;
    }

    .ww-state-about-inner p{
        font-size:17px;
    }

}
