/* APPROACH / ABOUT */

.about{
    padding:130px 60px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
    background:var(--charcoal);
}

.about-img-wrap{
    position:relative;
}

.about-img-wrap::before{
    content:'';
    position:absolute;
    top:-18px;
    left:-18px;
    right:18px;
    bottom:18px;
    border:1px solid var(--gold);
    opacity:.35;
    z-index:0;
}

.about-img-wrap img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
    position:relative;
    z-index:1;
    filter:brightness(.82);
}

.about-badge{
    position:absolute;
    bottom:-18px;
    right:-18px;
    width:120px;
    height:120px;
    background:var(--gold);
    color:#000;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    z-index:2;
    font-family:'Bebas Neue',sans-serif;
    letter-spacing:.08em;
}

.about-badge strong{
    font-size:2.5rem;
    line-height:1;
}

.about-content h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:clamp(3rem,5vw,5.5rem);
    line-height:.95;
    margin-bottom:30px;
}

.approach-item{
    display:flex;
    gap:20px;
    margin-bottom:28px;
    padding-bottom:28px;
    border-bottom:1px solid rgba(201,168,76,.15);
}

.approach-item:last-child{
    border-bottom:none;
}

.approach-icon{
    width:65px;
    height:65px;
    border:1px solid rgba(201,168,76,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.approach-icon img{
    width:32px;
    height:32px;
    object-fit:contain;
}

.approach-text h4{
    font-family:'Bebas Neue',sans-serif;
    font-size:1.5rem;
    letter-spacing:.04em;
    margin-bottom:8px;
    color:#fff;
}

.approach-text p{
    color:rgba(255,255,255,.58);
    font-size:.85rem;
    line-height:1.8;
    font-weight:300;
}

@media(max-width:900px){

    .about{
        grid-template-columns:1fr;
        padding:80px 24px;
        gap:50px;
    }

    .about-img-wrap img{
        height:420px;
    }

    .about-badge{
        width:90px;
        height:90px;
    }

    .about-badge strong{
        font-size:1.8rem;
    }
}