
*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:'Manrope',sans-serif;
background:#fbf7f4;
color:#171717;
overflow-x:hidden;
}
.navbar{
position:fixed;
top:0;
width:100%;
padding:26px 5%;
display:flex;
justify-content:space-between;
align-items:center;
backdrop-filter:blur(12px);
z-index:999;
}
.logo,.page-hero h1,.statement h2,footer h2,.hero-title,.product-card h3,.ingredient h2,.journal-card h3{
font-family:'Prata',serif;
font-weight:400;
}
.nav-links{display:flex;gap:32px}
.nav-links a{
text-decoration:none;
color:#171717;
font-size:.9rem;
text-transform:uppercase;
letter-spacing:.12em;
}
.hero{min-height:200vh}
.hero-sticky{
position:sticky;isolation:isolate;
top:0;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}
.hero-glow{
position:absolute;
width:900px;
height:900px;
background:radial-gradient(circle,#f6d4dc 0%,transparent 70%);
filter:blur(80px);
}
.hero-image-wrap{
position:absolute;top:0;left:0;
width:100%;
height:100vh;
border-radius:0;
overflow:hidden;
box-shadow:0 30px 80px rgba(0,0,0,.08);
}
.hero-image{
width:100%;
height:100%;
object-fit:cover;
transform:scale(1.2);
}
.hero-content{
position:relative;
z-index:2;
text-align:center;
}
.hero-sub{
letter-spacing:.3em;
text-transform:uppercase;
font-size:.8rem;
margin-bottom:30px;
color:#8f7c82;
}
.hero-title{
font-size:clamp(4rem,10vw,9rem);
line-height:.92;
max-width:1000px;
}
.hero-desc{
max-width:700px;
margin:40px auto;
line-height:1.9;
color:#666;
}
.hero-btn{
display:inline-block;
padding:18px 32px;
border-radius:999px;
background:#171717;
color:white;
text-decoration:none;
}
.page-hero{
padding:180px 8vw 80px;
}
.page-hero h1{
font-size:5rem;
margin-bottom:20px;
}
.page-hero p{
max-width:700px;
line-height:1.8;
color:#666;
}
.cards-grid,.journal-grid,.ingredient-section,.contact-wrapper{
padding:0 8vw 120px;
display:grid;
gap:40px;
}
.cards-grid{
grid-template-columns:repeat(3,1fr);
}
.product-card{
background:white;
border-radius:30px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,.05);
}
.product-card img{
width:100%;
height:340px;
object-fit:cover;
}
.product-card h3,.product-card p{
padding:20px 24px;
}
.ingredient,.journal-card,.contact-box{
background:white;
padding:50px;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.04);
}
.ingredient h2,.journal-card h3{
margin-bottom:16px;
font-size:2rem;
}
.statement{
padding:220px 8vw;
}
.statement h2{
font-size:clamp(3rem,8vw,7rem);
line-height:1;
max-width:1100px;
}
footer{
padding:120px 8vw;
background:#1d1d1d;
color:white;
}
footer h2{
font-size:4rem;
}
@media(max-width:992px){
.nav-links{display:none}
.cards-grid{grid-template-columns:1fr}
.hero-image-wrap{width:80vw}
.page-hero h1{font-size:3rem}
}
