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

:root{
--pink:#f5bfd1;
--black:#0e0e0e;
--white:#ffffff;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:white;
color:black;
overflow-x:hidden;
}

.hero{
min-height:100vh;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1600&auto=format&fit=crop');
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:space-between;
padding:30px 6%;
color:white;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:1.2rem;
letter-spacing:3px;
font-weight:bold;
}

.nav-btn{
border:1px solid white;
padding:12px 22px;
border-radius:50px;
color:white;
text-decoration:none;
}

.hero-content{
max-width:850px;
padding-bottom:80px;
}

.eyebrow{
letter-spacing:4px;
margin-bottom:20px;
opacity:.8;
}

.hero h1{
font-size:5rem;
line-height:1;
margin-bottom:25px;
}

.subtext{
max-width:650px;
font-size:1.1rem;
opacity:.9;
margin-bottom:35px;
}

.hero-actions{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}

.primary-btn{
background:var(--pink);
color:black;
}

.secondary-btn{
border:1px solid white;
color:white;
}

section{
padding:110px 6%;
}

.statement{
background:black;
color:white;
}

.statement h2{
font-size:3rem;
margin-bottom:20px;
}

.statement p{
max-width:700px;
line-height:1.8;
opacity:.85;
}

.section-heading p{
letter-spacing:3px;
color:#777;
margin-bottom:10px;
}

.section-heading h2{
font-size:3rem;
margin-bottom:50px;
}

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

.card{
background:#fafafa;
padding:40px;
border-radius:24px;
}

.card span{
font-size:2rem;
color:var(--pink);
font-weight:bold;
}

.card h3{
margin:20px 0;
}

.card p{
line-height:1.7;
color:#555;
}

.gallery{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:18px;
}

.gallery-item{
min-height:350px;
border-radius:24px;
background:
linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2)),
url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1200&auto=format&fit=crop');
background-size:cover;
background-position:center;
}

.large{
min-height:500px;
}

.process{
background:#f7f7f7;
}

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

.process-grid div{
background:white;
padding:35px;
border-radius:20px;
}

.cta{
background:var(--pink);
text-align:center;
}

.cta p{
letter-spacing:3px;
margin-bottom:15px;
}

.cta h2{
font-size:3rem;
margin-bottom:35px;
}

.dark{
background:black;
color:white;
}

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

@media(max-width:768px){

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

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

.statement h2,
.section-heading h2,
.cta h2{
font-size:2rem;
}

}
