@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500&display=swap');

:root{
--stone:#f5f1eb;
--cream:#fffaf4;
--brown:#403830;
--soft:#887b6d;
}

*{
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
margin:0;
background:var(--stone);
color:var(--brown);
font-family:Inter,Arial,sans-serif;
line-height:1.7;
}

h1,h2,h3{
font-family:"Cormorant Garamond",serif;
}

h1{
font-size:clamp(3rem,6vw,5rem);
line-height:1.05;
}

h2{
font-size:2.5rem;
}

section{
padding:90px 10%;
}

.header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 10%;
background:rgba(255,250,244,.95);
z-index:10;
}

.logo{
text-decoration:none;
color:var(--brown);
font-weight:600;
}

.nav a{
margin-left:25px;
text-decoration:none;
color:var(--brown);
}

.menu-toggle{
display:none;
border:0;
background:none;
font-size:25px;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
}

.button{
display:inline-block;
background:var(--brown);
color:white;
padding:14px 32px;
border-radius:40px;
text-decoration:none;
border:none;
cursor:pointer;
}

.about{
display:flex;
gap:50px;
align-items:center;
}

.portrait{
height:350px;
width:350px;
border-radius:50%;
background:#d8cec2;
display:flex;
align-items:center;
justify-content:center;
}

.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card,article{
background:white;
padding:30px;
border-radius:22px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

input,textarea{
width:100%;
padding:16px;
margin:8px 0;
border:0;
border-radius:12px;
}

textarea{
height:150px;
}

.reveal{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.reveal.visible{
opacity:1;
transform:none;
}

footer{
padding:30px;
text-align:center;
background:white;
}

@media(max-width:800px){

.menu-toggle{
display:block;
}

.nav{
display:none;
position:absolute;
top:70px;
right:10%;
background:white;
padding:20px;
flex-direction:column;
}

.nav.active{
display:flex;
}

.nav a{
margin:10px;
}

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

.about{
flex-direction:column;
}

}
