*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#F8F3EA;
color:#2B2B2B;
line-height:1.7;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.hero{
padding:120px 0;
text-align:center;
background:
linear-gradient(
rgba(248,243,234,0.88),
rgba(248,243,234,0.88)
),
url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}


.brand{
font-family:'Playfair Display',serif;
font-size:42px;
font-weight:700;
letter-spacing:3px;
margin-bottom:20px;
}

h1{
font-family:'Playfair Display',serif;
font-size:56px;
line-height:1.2;
margin-bottom:25px;
}

.hero-text{
max-width:700px;
margin:auto;
font-size:20px;
margin-bottom:40px;
}

.btn{
display:inline-block;
padding:14px 30px;
background:#C9A66B;
color:#fff;
text-decoration:none;
border-radius:40px;
}

.section{
padding:90px 0;
}

.alt{
background:#ffffff;
}

h2{
font-family:'Playfair Display',serif;
font-size:38px;
margin-bottom:25px;
}

.subtitle{
font-size:20px;
font-weight:600;
margin-bottom:20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:40px;
}

.card{
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.card ul{
padding-left:18px;
}

.contact-box{
margin-top:30px;
}

.contact-box p{
margin-bottom:25px;
}

footer{
padding:40px 0;
text-align:center;
border-top:1px solid #e6ddd1;
}

@media(max-width:768px){

h1{
font-size:38px;
}

.brand{
font-size:32px;
}

h2{
font-size:30px;
}

.hero{
padding:90px 0;
}

}
