/* =========================================================
   WHERE WE WORK — where-we-work.css
   Requires: styles.css + page-template.css
========================================================= */

/* =========================================================
   INTRO REACH STATS
========================================================= */

.wwwork-reach-stats{

    display:flex;
    align-items:center;
    gap:24px;
    margin-top:40px;

}

.program-cta-inner{
max-width: 900px;

    display: flex;
    flex-direction: column;
    gap: 25px; /* controls spacing between items */
}

.wwwork-reach-stat{

    display:flex;
    align-items:center;
    gap:12px;

}

.wwwork-flag{

    font-size:36px;
    line-height:1;

}

.wwwork-reach-label{

    font-family:'Oswald', sans-serif;
    font-size:20px;
    font-weight:600;
    color:#111;

}

.wwwork-reach-divider{

    width:1px;
    height:40px;
    background:rgba(0,0,0,.12);

}

/* =========================================================
   LOCATION SECTIONS
========================================================= */

.wwwork-location-section{

    padding:100px 8%;
    position:relative;
    overflow:hidden;

}

.wwwork-location--canada{
    background:#fff;
}

.wwwork-location--drc{
    background:#f7f2df;
}

/* subtle watermark country name */
.wwwork-location--canada::before{
    content:"CANADA";
    position:absolute;
    right:-30px;
    bottom:-40px;
    font-family:'Oswald',sans-serif;
    font-size:200px;
    font-weight:700;
    color:rgba(0,0,0,.03);
    pointer-events:none;
    user-select:none;
    white-space:nowrap;
    line-height:1;
}

.wwwork-location--drc::before{
    content:"CONGO";
    position:absolute;
    left:-20px;
    bottom:-40px;
    font-family:'Oswald',sans-serif;
    font-size:200px;
    font-weight:700;
    color:rgba(0,0,0,.03);
    pointer-events:none;
    user-select:none;
    white-space:nowrap;
    line-height:1;
}

/* INNER GRID */

.wwwork-location-inner{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:72px;
    align-items:start;
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:0 auto;

}

/* DRC flips map to left */
.wwwork-location-inner--flip .wwwork-map-block{ order:1; }
.wwwork-location-inner--flip .wwwork-location-content{ order:2; }

/* ── CONTENT ── */

.wwwork-location-flag-row{

    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;

}

.wwwork-location-flag{
    font-size:32px;
    line-height:1;
}

.wwwork-location-flag-row .section-label{
    margin-bottom:0;
}

.wwwork-location-title{

    font-family:'Oswald',sans-serif;
    font-size:48px;
    font-weight:700;
    line-height:1.05;
    color:#111;
    margin-bottom:20px;

}

.wwwork-location-body{

    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:36px;

}

/* CONTACT CARDS */

.wwwork-contact-cards{

    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:36px;

}

.wwwork-contact-card{

    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:18px 20px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.07);
    background:#fafafa;
    transition:border-color .2s ease, box-shadow .2s ease;

}

.wwwork-location--drc .wwwork-contact-card{
    background:rgba(255,255,255,.7);
}

.wwwork-contact-card:hover{

    border-color:rgba(223,177,38,.4);
    box-shadow:0 6px 20px rgba(0,0,0,.06);

}

.wwwork-contact-icon{

    font-size:22px;
    flex-shrink:0;
    margin-top:1px;

}

.wwwork-contact-card strong{

    display:block;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#aaa;
    margin-bottom:6px;

}

.wwwork-contact-card address,
.wwwork-contact-card a{

    display:block;
    font-style:normal;
    font-size:15px;
    color:#333;
    line-height:1.7;
    text-decoration:none;
    transition:color .2s ease;

}

.wwwork-contact-card a:hover{
    color:#dfb126;
}

.wwwork-btn{
    display:inline-block;
}

/* ── MAP ── */

.wwwork-map-block{

    display:flex;
    flex-direction:column;
    gap:12px;
    position:sticky;
    top:120px;

}

.wwwork-map-frame{

    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 20px 56px rgba(0,0,0,.10);
    height:420px;

}

.wwwork-map-frame iframe{

    width:100%;
    height:100%;
    border:none;
    display:block;

}

.wwwork-map-label{

    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    color:#999;
    font-weight:500;
    padding:0 4px;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .wwwork-location-inner{
        gap:48px;
    }

    .wwwork-location-title{
        font-size:38px;
    }

    .wwwork-map-block{
        position:static;
    }

}

@media(max-width:900px){

    .wwwork-location-section{
        padding:70px 6%;
    }

    .wwwork-location-inner,
    .wwwork-location-inner--flip{
        grid-template-columns:1fr;
        gap:40px;
    }

    /* always show map below content on mobile */
    .wwwork-location-inner--flip .wwwork-map-block{ order:2; }
    .wwwork-location-inner--flip .wwwork-location-content{ order:1; }

    .wwwork-map-frame{
        height:300px;
    }

    .wwwork-location-title{
        font-size:32px;
    }

    .wwwork-location--canada::before,
    .wwwork-location--drc::before{
        font-size:120px;
    }

}

@media(max-width:600px){

    .wwwork-reach-stats{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .wwwork-reach-divider{
        width:40px;
        height:1px;
    }

}