
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

.contact-hero{
    background:#F8F4EC;
    padding:90px 0;
    overflow:hidden;
}

.contact-hero .container{
    max-width:1280px;
    margin:0 auto;
    padding:0 40px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-hero__content{
    max-width:580px;
}

.contact-hero__eyebrow{
    display:inline-block;

    margin-bottom:24px;

    font-family:'Inter',sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;

    color:#5E774B;
}

.contact-hero__title{
    margin:0 0 28px;

    font-family:'Cormorant Garamond',serif;
    font-size:82px;
    font-weight:700;
    line-height:.9;

    color:#1C2430;
}

.contact-hero__title span{
    display:block;
    color:#5A7A48;
}

.contact-hero__description{
    margin:0 0 42px;

    max-width:520px;

    font-family:'Inter',sans-serif;
    font-size:17px;
    line-height:1.8;
    font-weight:400;

    color:#6B6B6B;
}

.contact-hero__badges{
    display:flex;
    flex-wrap:wrap;
    gap:24px;
}

.hero-badge{
    display:flex;
    align-items:center;
    gap:10px;
}

.hero-badge__icon{
    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#EEF3E7;

    font-size:16px;
}

.hero-badge__text{
    font-family:'Inter',sans-serif;
    font-size:14px;
    font-weight:500;
    color:#4B5B43;
}

.contact-hero__image{
    position:relative;
    text-align:right;
}

.contact-hero__image img{
    width:100%;
    max-width:620px;
    height:auto;
    display:block;
    margin-left:auto;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media(max-width:992px){

    .contact-hero{
        padding:70px 0;
    }

    .contact-hero .container{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .contact-hero__content{
        max-width:100%;
    }

    .contact-hero__description{
        margin-left:auto;
        margin-right:auto;
    }

    .contact-hero__badges{
        justify-content:center;
    }

    .contact-hero__image{
        text-align:center;
    }

    .contact-hero__image img{
        margin:0 auto;
    }

    .contact-hero__title{
        font-size:62px;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media(max-width:576px){

    .contact-hero{
        padding:60px 0;
    }

    .contact-hero .container{
        padding:0 20px;
    }

    .contact-hero__title{
        font-size:48px;
    }

    .contact-hero__description{
        font-size:15px;
        line-height:1.7;
    }

    .contact-hero__badges{
        flex-direction:column;
        align-items:center;
        gap:16px;
    }

    .hero-badge{
        justify-content:center;
    }
}

