:root{
–ivory:#F7F3EE;
–sand:#D8C8B5;
–gold:#B08A57;
–charcoal:#2E2A27;
–sage:#5F6B52;
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:‘Inter’,sans-serif;
background:var(–ivory);
color:var(–charcoal);
}

.header{
position:fixed;
width:100%;
top:0;
left:0;
z-index:100;
display:flex;
justify-content:space-between;
padding:25px 8%;
background:rgba(255,255,255,0.85);
backdrop-filter:blur(10px);
}

.logo{
font-family:‘Cormorant Garamond’,serif;
font-size:2rem;
letter-spacing:4px;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:var(–charcoal);
}

.hero{
height:100vh;
background:url(“https://images.unsplash.com/photo-1505693416388-ac5ce068fe85”) center/cover;
display:flex;
align-items:center;
position:relative;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
}

.hero-content{
position:relative;
z-index:2;
color:white;
padding-left:10%;
max-width:700px;
}

.hero h1{
font-size:6rem;
font-family:‘Cormorant Garamond’,serif;
}

.hero h2{
font-weight:300;
margin:20px 0;
}

.hero-text{
margin-bottom:30px;
line-height:1.8;
}

.btn{
background:white;
color:black;
padding:15px 28px;
text-decoration:none;
}

.collections{
padding:120px 8%;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:3rem;
font-family:‘Cormorant Garamond’,serif;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
overflow:hidden;
background:white;
}

.card img{
width:100%;
height:320px;
object-fit:cover;
}

.card h3{
padding:20px;
}

.story{
background:white;
padding:120px 10%;
}

.story h2{
font-family:‘Cormorant Garamond’,serif;
font-size:3rem;
margin-bottom:25px;
}

.story p{
line-height:2;
max-width:700px;
}

.nature{
height:70vh;
background:url(“https://images.unsplash.com/photo-1441974231531-c6227db76b6e”) center/cover;
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.nature-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.4);
}

.nature-content{
position:relative;
color:white;
text-align:center;
max-width:700px;
}

.nature h2{
font-family:‘Cormorant Garamond’,serif;
font-size:4rem;
}

.newsletter{
padding:120px 8%;
text-align:center;
}

.newsletter h2{
font-size:3rem;
font-family:‘Cormorant Garamond’,serif;
}

.newsletter form{
margin-top:30px;
}

.newsletter input{
padding:15px;
width:300px;
max-width:90%;
}

.newsletter button{
padding:15px 20px;
border:none;
background:var(–gold);
color:white;
}

footer{
background:var(–charcoal);
color:white;
text-align:center;
padding:60px;
}

@media(max-width:768px){

.hero h1{
font-size:4rem;
}

nav{
display:none;
}

}
