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

html,
body{
    min-height:100%;
    background:#f7f4ef;
}

body{
    font-family:Inter,sans-serif;
    color:#342B27;

    display:flex;
    flex-direction:column;
}

.page{
    display:grid;
    grid-template-columns:44% 56%;
    flex:1;
}

.content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:clamp(80px,6vw,140px);
}

.logo{
    width:800px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto 70px;
}

.eyebrow{
    font-size:12px;
    letter-spacing:.35em;
    text-transform:uppercase;
    color:#9A8570;
    margin-bottom:18px;
}

h1{
    font-family:"Cormorant Garamond",serif;
    font-size:60px;
    font-weight:300;
    line-height:1.15;
    margin-bottom:30px;
}

p{
    max-width:460px;
    font-size:18px;
    line-height:1.9;
    color:#6d625d;
    margin-bottom:50px;
}

.button{
    display:inline-flex;
    width:fit-content;

    margin-top:50px;

    font-size:11px;
    letter-spacing:.25em;
    text-transform:uppercase;

    color:#342B27;
    text-decoration:none;

    position:relative;

    opacity:.85;
    transition:opacity .35s ease;
}

.button:hover{
    opacity:1;
}

.button::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;

    width:100%;
    height:1px;

    background:#342B27;

    transform:scaleX(0);
    transform-origin:left;

    transition:transform .4s ease;
}

.button:hover::after{
    transform:scaleX(1);
}

.button:focus,
.button:active{
    outline:none;
    box-shadow:none;
}

.hero{
    overflow:hidden;
    position:relative;
}

.hero img{
    width:100%;
    height:100%;
    min-height:100%;
    object-fit:cover;
    object-position:center;

    transform:scale(1);
    will-change:transform;
    transition:transform 2s ease-out;

}

.hero:hover img{
    transform:scale(1.05);
}

footer{
    width:100%;
    font-size:12px;
    color:#8a8079;
    letter-spacing:.15em;

    padding:30px clamp(40px,6vw,140px) 50px;

    position:static;
}

/* Tablet */

@media (max-width:1000px){

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

    .hero{
        height:50vh;
    }

    .content{
        padding:50px 40px;
    }

    h1{
        font-size:46px;
    }

    .logo{
        width:500px;
    }
}

/* Mobile */

@media (max-width:700px){

    .logo{
        width:260px;
        margin-bottom:40px;
    }

    h1{
        font-size:38px;
    }

    p{
        font-size:16px;
    }

    .button{
        width:fit-content;
        background:none;
        box-shadow:none;
        border:none;
    }

    .hero{
        height:45vh;
    }

    footer{
        padding:25px 40px 40px;
    }
}

.contact-section{
    max-width:700px;
    margin:120px auto;
    padding:0 40px;
}

.contact-section h1{
    font-size:clamp(2rem,4vw,3.5rem);
    font-weight:300;
    margin-bottom:20px;
}

.contact-intro{
    margin-bottom:50px;
    color:#6f6660;
    line-height:1.7;
}

.form-group{
    margin-bottom:28px;
}

.contact-section input,
.contact-section textarea{
    width:100%;
    border:none;
    border-bottom:1px solid #d9d1c9;
    background:transparent;
    padding:16px 0;
    font:inherit;
    color:#342B27;
}

.contact-section textarea{
    resize:vertical;
    min-height:140px;
}

.contact-section input:focus,
.contact-section textarea:focus{
    outline:none;
    border-bottom-color:#342B27;
}

.contact-section button{
    margin-top:10px;
    padding:14px 34px;
    border:1px solid #342B27;
    background:transparent;
    color:#342B27;
    text-transform:uppercase;
    letter-spacing:.12em;
    cursor:pointer;
    transition:.3s ease;
}

.contact-section button:hover{
    background:#342B27;
    color:#fff;
}

.form-success{
    padding:20px;
    border:1px solid #b7c9b7;
    color:#2e5a2e;
    margin-top:30px;
}

.form-error{
    padding:20px;
    border:1px solid #d8b8b8;
    color:#8b3030;
    margin-bottom:30px;
}

.honeypot{
    display:none;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.7;
}
