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

body{
font-family:Georgia, serif;
background:#f5f2ed;
color:#111;
line-height:1.6;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
url('images/photo_9.jpg');
background-size:cover;
background-position:center;
color:white;
}

.overlay{
height:100%;
display:flex;
flex-direction:column;
}

nav{
display:flex;
justify-content:center;
align-items:center;
padding:34px 20px 0;
}

.logo{
height:190px;
}

.nav-btn{
text-decoration:none;
color:white;
padding:10px 22px;
border-radius:999px;
border:1px solid rgba(255,255,255,.35);
background:rgba(255,255,255,.12);
font-size:14px;
letter-spacing:1px;
}

.hero-content{
margin:auto;
text-align:center;
max-width:780px;
padding:20px;
margin-top:20px;
transform:translateY(55px);
}

.eyebrow{
font-size:12px;
letter-spacing:3px;
opacity:.85;
margin-bottom:24px;
transform:translateY(-55px);
}

.hero-content h1{
font-size:60px;
line-height:1.05;
margin-bottom:24px;
font-weight:normal;
}

.hero-content p{
font-size:22px;
max-width:650px;
margin:0 auto 34px;
opacity:.92;
}

.main-btn{
display:inline-block;
text-decoration:none;
padding:16px 32px;
border-radius:999px;
background:white;
color:#111;
font-size:15px;
}

.container{
width:min(1180px,92%);
margin:auto;
}

.narrow{
max-width:860px;
text-align:center;
}

.intro{
padding:100px 0 80px;
}

.intro h2{
font-size:42px;
margin-bottom:24px;
font-weight:normal;
}

.intro p{
font-size:22px;
color:#333;
}

.simple-stats{
display:flex;
justify-content:center;
gap:26px;
flex-wrap:wrap;
margin-top:42px;
font-size:14px;
letter-spacing:1px;
text-transform:uppercase;
color:#555;
}

.gallery{
padding:20px 0 90px;
}

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

.hero-image{
height:640px;
}

.hero-image img,
.side-images img,
.bottom-row img{
width:100%;
height:100%;
object-fit:cover;
border-radius:22px;
display:block;
}

.side-images{
display:grid;
grid-template-rows:1fr 1fr;
gap:20px;
}

.bottom-row{
grid-column:1 / span 2;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
height:260px;
}

.statement{
background:#0d0d0d;
color:white;
padding:110px 20px;
text-align:center;
}

.statement h2{
font-size:54px;
line-height:1.1;
font-weight:normal;
margin-bottom:40px;
}

.dark{
background:white;
color:#111;
}

footer{
background:#111;
color:#888;
text-align:center;
padding:28px;
font-size:14px;
}

@media(max-width:900px){

.logo{
height:155px;
}

.hero-content{
margin-top:10px;
}

.hero-content h1{
font-size:44px;
}

.hero-content p{
font-size:19px;
}

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

.hero-image{
height:340px;
}

.side-images{
grid-template-columns:1fr 1fr;
grid-template-rows:none;
}

.bottom-row{
grid-column:auto;
grid-template-columns:1fr;
height:auto;
}

.bottom-row img{
height:240px;
}

.statement h2{
font-size:38px;
}
}
