/* ============================================================
   01. THE STUDIO - GLOBAL / PAGE BASE
   ============================================================ */

/* ZOOM PHOTO STUDIO - the-studio.css v1.1 */

.studio_page{
    --studio-ink:#24211e;
    --studio-muted:#6c645d;
    --studio-cream:#f8f4ee;
    --studio-soft:#efe5da;
    --studio-line:#dfd4c8;
    --studio-gold:#b58b62;
    background:#fff;
    color:var(--studio-ink);
}

.studio_page *,
.studio_page *::before,
.studio_page *::after{
    box-sizing:border-box;
}

.studio_page img{
    display:block;
    width:100%;
}

.studio_container{
    width:min(1180px,calc(100% - 80px));
    margin:0 auto;
}

.studio_page h1,
.studio_page h2{
    font-family:var(--zoom-serif);
    font-weight:400;
}

.studio_kicker{
    margin:0 0 16px;
    font-size:10px;
    font-weight:700;
    letter-spacing:.17em;
    line-height:1.4;
    text-transform:uppercase;
}

.studio_kicker_light{
    color:#fff;
}

.studio_button{
    display:inline-flex;
    min-height:48px;
    padding:13px 25px;
    align-items:center;
    justify-content:center;
    border:1px solid transparent;
    font-size:9px;
    font-weight:700;
    letter-spacing:.11em;
    line-height:1.2;
    text-decoration:none;
    text-transform:uppercase;
    transition:background .2s ease,color .2s ease,border-color .2s ease;
}

.studio_button_dark{
    background:#211f1c;
    color:#fff;
}

.studio_button_light{
    background:#fff;
    color:#211f1c;
}

.studio_button_outline{
    border-color:#bcae9f;
    color:#211f1c;
}

.studio_button:hover{
    opacity:.88;
}



.studio_hero_actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.studio_button_light_outline{
    background:transparent;
    border-color:#fff;
    color:#fff;
}

.studio_button_light_outline:hover{
    background:#fff;
    border-color:#fff;
    color:#211f1c;
}

/* ============================================================
   02. HERO
   ============================================================ */

.studio_hero{
    position:relative;
    min-height:680px;
    overflow:hidden;
    background:#2b2723;
}

.studio_hero_media,
.studio_hero_overlay{
    position:absolute;
    inset:0;
}

.studio_hero_media img{
    height:100%;
    object-fit:cover;
    object-position:center 52%;
}

.studio_hero_overlay{
    background:linear-gradient(
        90deg,
        rgba(22,18,15,.58) 0%,
        rgba(22,18,15,.38) 38%,
        rgba(22,18,15,.10) 72%,
        rgba(22,18,15,.04) 100%
    );
}

.studio_hero_content{
    position:relative;
    z-index:2;
    width:min(1180px,calc(100% - 80px));
    min-height:680px;
    margin:0 auto;
    padding:90px 0;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    color:#fff;
}

.studio_hero h1{
    max-width:650px;
    margin:0;
    font-size:clamp(58px,6vw,92px);
    line-height:.95;
    letter-spacing:-.025em;
}

.studio_hero_text{
    max-width:470px;
    margin:28px 0 30px;
    font-size:14px;
    line-height:1.85;
}


/* ============================================================
   03. FEATURES
   ============================================================ */

.studio_features{
    padding:38px 0;
    background:var(--studio-cream);
    border-bottom:1px solid var(--studio-line);
}

.studio_feature_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.studio_feature{
    padding:8px 34px;
    text-align:center;
    border-right:1px solid var(--studio-line);
}

.studio_feature:last-child{
    border-right:0;
}

.studio_feature_icon{
    display:block;
    min-height:36px;
    margin-bottom:10px;
    color:var(--studio-gold);
    font-family:Georgia,serif;
    font-size:30px;
    line-height:1;
}

.studio_feature h2{
    margin:0 0 8px;
    font-family:inherit;
    font-size:10px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.studio_feature p{
    max-width:220px;
    margin:0 auto;
    color:var(--studio-muted);
    font-size:10px;
    line-height:1.65;
}


/* ============================================================
   04. GALLERY
   ============================================================ */

.studio_gallery{
    background:#fff;
    overflow:hidden;
}

.studio_gallery_track{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    padding:8px;
}

.studio_gallery_item{
    height:500px;
    margin:0;
    overflow:hidden;
}

.studio_gallery_item img{
    height:100%;
    object-fit:cover;
}

.studio_gallery_item:nth-child(1) img{
    object-position:center 55%;
}

.studio_gallery_item:nth-child(2) img{
    object-position:center 48%;
}

.studio_gallery_item:nth-child(3) img{
    object-position:center 55%;
}


/* ============================================================
   05. AWARDS
   ============================================================ */

.studio_awards{
    padding:90px 0;
    background:var(--studio-cream);
}

.studio_awards_grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

.studio_awards_media{
    overflow:hidden;
}

.studio_awards_media img{
    aspect-ratio:4/3;
    object-fit:cover;
}

.studio_awards_copy{
    max-width:500px;
}

.studio_awards_copy h2,
.studio_timeless_copy h2,
.studio_visit_copy h2{
    margin:0 0 24px;
    font-size:clamp(40px,4vw,58px);
    line-height:1.04;
}

.studio_awards_copy p:not(.studio_kicker),
.studio_timeless_copy p:not(.studio_kicker),
.studio_visit_copy p:not(.studio_kicker){
    margin:0 0 18px;
    color:var(--studio-muted);
    font-size:13px;
    line-height:1.85;
}

.studio_awards_copy .studio_button{
    margin-top:12px;
}


/* ============================================================
   06. TIMELESS PORTRAITS
   ============================================================ */

.studio_timeless{
    padding:100px 0;
    background:#fff;
}

.studio_timeless_grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:90px;
    align-items:center;
}

.studio_timeless_copy{
    max-width:520px;
}

.studio_timeless_media{
    aspect-ratio:1 / 1;
    overflow:hidden;
}

.studio_timeless_media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
}


/* ============================================================
   07. VISIT THE STUDIO
   ============================================================ */

.studio_visit{
    padding:90px 0;
    background:var(--studio-soft);
}

.studio_visit_grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:80px;
    align-items:center;
}

.studio_visit_copy{
    max-width:500px;
}

.studio_address{
    color:var(--studio-ink)!important;
    font-weight:600;
}

.studio_visit_media{
    max-height:620px;
    overflow:hidden;
}

.studio_visit_media img{
    height:620px;
    object-fit:cover;
    object-position:center 48%;
}


/* ============================================================
   08. STUDIO LOCATION MAP
   ============================================================ */

.studio_map{
    position:relative;
    width:100%;
    height:430px;
    overflow:hidden;
    background:#eeeae5;
    border-top:1px solid var(--studio-gold);
    border-bottom:1px solid var(--studio-gold);
}

.studio_map iframe{
    display:block;
    width:100%;
    height:100%;
}


/* ============================================================
   09. FINAL CTA
   ============================================================ */

.studio_final_cta{
    padding:52px 0;
    background:var(--studio-soft);
    color:var(--studio-ink);
}

.studio_final_cta_inner{
    display:flex;
    gap:50px;
    align-items:center;
    justify-content:space-between;
}

.studio_final_cta h2{
    max-width:760px;
    margin:0;
    font-size:clamp(34px,3.6vw,52px);
    line-height:1.05;
}


/* ============================================================
   10. TABLET
   ============================================================ */

@media(max-width:1000px){

    .studio_container,
    .studio_hero_content{
        width:min(100% - 48px,900px);
    }

    .studio_hero,
    .studio_hero_content{
        min-height:620px;
    }

    .studio_feature{
        padding:8px 18px;
    }

    .studio_gallery_item{
        height:420px;
    }

    .studio_awards_grid,
    .studio_timeless_grid,
    .studio_visit_grid{
        gap:45px;
    }

}


/* ============================================================
   11. MOBILE
   ============================================================ */

@media(max-width:700px){

    .studio_hero_actions{
        width:100%;
        flex-direction:column;
    }

    .studio_hero_actions .studio_button{
        width:100%;
    }


    .studio_container,
    .studio_hero_content{
        width:calc(100% - 40px);
    }


    /* HERO */

    .studio_hero{
        min-height:660px;
    }

    .studio_hero_media img{
        object-position:60% center;
    }

    .studio_hero_overlay{
        background:linear-gradient(
            0deg,
            rgba(22,18,15,.72) 0%,
            rgba(22,18,15,.40) 55%,
            rgba(22,18,15,.12) 100%
        );
    }

    .studio_hero_content{
        min-height:660px;
        padding:70px 0 54px;
        justify-content:flex-end;
    }

    .studio_hero h1{
        font-size:52px;
        line-height:.98;
    }

    .studio_hero_text{
        max-width:100%;
        margin:22px 0 26px;
        font-size:13px;
        line-height:1.75;
    }


    /* FEATURES */

    .studio_features{
        padding:28px 0;
    }

    .studio_feature_grid{
        grid-template-columns:1fr 1fr;
    }

    .studio_feature{
        padding:22px 14px;
        border-right:1px solid var(--studio-line);
        border-bottom:1px solid var(--studio-line);
    }

    .studio_feature:nth-child(2n){
        border-right:0;
    }

    .studio_feature:nth-child(3),
    .studio_feature:nth-child(4){
        border-bottom:0;
    }


    /* GALLERY */

    .studio_gallery{
        padding:8px 0;
    }

    .studio_gallery_track{
        display:flex;
        gap:8px;
        overflow-x:auto;
        padding:0 42px 0 20px;
        scroll-snap-type:x mandatory;
        scrollbar-width:none;
    }

    .studio_gallery_track::-webkit-scrollbar{
        display:none;
    }

    .studio_gallery_item{
        flex:0 0 82%;
        height:112vw;
        max-height:590px;
        scroll-snap-align:center;
    }


    /* AWARDS / TIMELESS / VISIT */

    .studio_awards,
    .studio_timeless,
    .studio_visit{
        padding:58px 0;
    }

    .studio_awards_grid,
    .studio_timeless_grid,
    .studio_visit_grid{
        grid-template-columns:1fr;
        gap:34px;
    }

    .studio_awards_copy,
    .studio_timeless_copy,
    .studio_visit_copy{
        max-width:none;
    }

    .studio_awards_copy h2,
    .studio_timeless_copy h2,
    .studio_visit_copy h2{
        font-size:39px;
    }

    .studio_awards_media{
        order:2;
    }


    /* TIMELESS PORTRAITS */

    .studio_timeless_media{
        aspect-ratio:1 / 1;
    }

    .studio_timeless_media img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center center;
    }


    /* VISIT */

    .studio_visit_media{
        max-height:none;
    }

    .studio_visit_media img{
        height:105vw;
        max-height:600px;
    }


    /* STUDIO LOCATION MAP */

    .studio_map{
        height:360px;
    }


    /* FINAL CTA */

    .studio_final_cta{
        padding:46px 0;
    }

    .studio_final_cta_inner{
        flex-direction:column;
        align-items:flex-start;
        gap:26px;
    }

    .studio_final_cta h2{
        font-size:36px;
    }

    .studio_final_cta .studio_button{
        width:100%;
    }

}