@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f8f5f1;
    color:#1a1a1a;
    font-family:'Inter', sans-serif;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:32px 0;
}

.logo{
    font-family:'Cormorant Garamond', serif;
    font-size:42px;
    font-weight:500;
}

.nav-links{
    display:flex;
    gap:50px;
}

.nav-links a{
    text-decoration:none;
    color:#1a1a1a;
    font-size:18px;
}

.hero{
    background:#ece5dc;
    border-radius:24px;
    padding:60px;
    display:grid;
    grid-template-columns:420px 1fr 320px;
    gap:60px;
    align-items:center;
}

.hero img{
    width:100%;
    border-radius:24px;
    object-fit:cover;
}

.hero-text h1{
    font-family:'Cormorant Garamond', serif;
    font-size:92px;
    line-height:0.9;
    font-weight:500;
    margin-bottom:40px;
}

.hero-text p{
    font-size:24px;
    line-height:1.6;
    max-width:600px;
    color:#444;
}

.connect-box{
    background:#d9cdbf;
    padding:50px;
    border-radius:24px;
}

.connect-box h2{
    font-family:'Cormorant Garamond', serif;
    font-size:52px;
    margin-bottom:40px;
    font-weight:500;
}

.connect-box a{
    display:block;
    margin-bottom:30px;
    color:#1a1a1a;
    text-decoration:none;
    font-size:22px;
}

.sections{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:30px;
    margin-top:40px;
}

.card{
    border:2px solid #1a1a1a;
    border-radius:32px;
    padding:40px;
    background:#f8f5f1;
}

.card h2{
    font-family:'Cormorant Garamond', serif;
    font-size:64px;
    line-height:0.9;
    margin-bottom:30px;
    font-weight:500;
}

.card p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:25px;
}

.final-section{
    margin-top:60px;
    background:#ece5dc;
    border-radius:24px;
    padding:70px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.final-section h2{
    font-family:'Cormorant Garamond', serif;
    font-size:100px;
    line-height:0.95;
    font-weight:500;
    margin-bottom:40px;
}

.final-section p{
    font-size:28px;
    line-height:1.6;
}

form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

input,
textarea{
    width:100%;
    padding:22px 28px;
    border:2px solid #1a1a1a;
    border-radius:50px;
    background:transparent;
    font-size:18px;
    font-family:'Inter', sans-serif;
}

textarea{
    min-height:180px;
    border-radius:32px;
}

button{
    width:220px;
    padding:22px;
    border:none;
    border-radius:50px;
    background:black;
    color:white;
    font-size:20px;
    cursor:pointer;
}

@media(max-width:1200px){

    .hero{
        grid-template-columns:1fr;
    }

    .sections{
        grid-template-columns:1fr;
    }

    .final-section{
        grid-template-columns:1fr;
    }

    .hero-text h1{
        font-size:72px;
    }

    .final-section h2{
        font-size:72px;
    }
}

@media(max-width:768px){

    .container{
        padding:0 20px;
    }

    .hero{
        padding:30px;
    }

    .hero-text h1{
        font-size:54px;
    }

    .card h2{
        font-size:48px;
    }

    .final-section h2{
        font-size:54px;
    }

    .connect-box{
        padding:30px;
    }

    nav{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        gap:20px;
    }
}