*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    padding: 14px;
    background: #eee9dc;
    font-family: Arial, Helvetica, sans-serif;
    color: #20261d;
}

.navbar{
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    background: #f7f4ec;
    border-radius: 18px;
}

.logo{
    font-size: 22px;
    font-weight: 800;
    color: #20261d;
    text-decoration: none;
}

.logo span{
    color: #9b6745;
}

.nav-links{
    display: flex;
    gap: 30px;
}

.nav-links a{
    color: #6d6b60;
    font-size: 17px;
    text-decoration: none;
}

.nav-links a:hover{
    color: #20261d;
    font-weight: 700;
}

.nav-btn,
.hero-btn{
    padding: 11px 18px;
    background: #263321;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

.hero{
    height: calc(100vh - 110px);
    min-height: 570px;
    background: #c9c9aa;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 14px;
    border-radius: 24px;
}

.hero-text{
    width: 52%;
    padding-left: 8%;
    position: relative;
    z-index: 2;
}

.eyebrow{
    font-size: 13px;
    letter-spacing: 2px;
    color: #667055;
}

.hero-text h1{
    margin: 18px 0;
    font-size: clamp(52px,7vw,92px);
    line-height: .9;
    letter-spacing: -4px;
}

.hero-text h1 i{
    font-family: Georgia,san-serif;
    font-weight: 400;
    color: #7d604c;
}

.hero-text p{
    max-width: 370px;
    margin-bottom: 28px;
    color: #626557;
    font-size: 15px;
    line-height: 1.6;
}

.hero-image{
    position: absolute;
    right: 5%;
    width: 43%;
    height: 88%;
    overflow: visible;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 180px 180px 20px 20px;
}

/* Mobile Responsive */

@media(max-width:700px){
    
    body{
        padding: 8px;
    }

    .navbar{
        padding: 0 18px;
    }

    .nav-links{
        display: none;
    }

    .nav-btn{
        padding: 10px 14px;
    }

    .hero{
        height: calc(100vh - 92px);
        min-height: 650px;
        align-items: flex-end;
    }

    .hero-image{
        top: 0;
        right: 0;
        width: 100%;
        height: 65%;
    }

    .hero-image img{
        border-radius: 0 0 25px 25px;
    }

    .hero-image:after{
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 45%, #c9c9aa);
        border-radius: 0 0 25px 25px;
    }


    .hero-text{
        width: 100%;
        padding: 30px 25px 45px;
    }
    
    .hero-text h1{
        font-size: 55px;
        letter-spacing: -2px;
    }
}