*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
background: linear-gradient(to bottom, #7a7a7a, #5f5f5f);
  color:#fff;
  line-height:1.5;
}

.site-header{
  background:linear-gradient(#fff,#e9e9e9);
  color:#222;
  padding:28px 20px 0;
}

.header-inner{
  max-width:1000px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
}

.logo h1{
  margin:0;
  font-size:38px;
  line-height:.9;
  text-transform:uppercase;
  font-weight:900;
}

.logo .small{
  font-size:17px;
  font-weight:bold;
}

.logo .tagline{
  font-size:16px;
  font-weight:bold;
}

.contact-top{
  text-align:right;
  font-weight:bold;
  font-size:16px;
}

.nav{
  max-width:1000px;
  margin:18px auto 0;
  background:linear-gradient(#fff,#e7e7e7);
  border:1px solid #ccc;
  border-radius:8px 8px 0 0;
  padding:13px 18px;
}

.nav a{
  color:#555;
  text-decoration:none;
  margin-right:22px;
  font-size:15px;
}

.nav a:hover{color:#000}

.main{
  max-width:1000px;
  margin:0 auto;
  padding:45px 20px 80px;
  background:rgba(255,255,255,.08);
  min-height:520px;
}

h2{
  font-size:28px;
  font-weight:normal;
  margin:0 0 10px;
}

h3{
  font-size:22px;
  font-weight:normal;
  margin:22px 0 8px;
}

p{font-size:15px;margin:0 0 14px}

.home-grid{
  display:grid;
  grid-template-columns:1fr 210px;
  gap:35px;
}

.sketch{
  max-width:190px;
  background:#fff;
  padding:8px;
  border:1px solid #ddd;
}

.thumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.thumbs img{
  width:150px;
  height:90px;
  object-fit:cover;
  border:4px solid #eee;
}

.statement{
  background:#fff;
  color:#111;
  padding:22px;
  text-align:center;
  margin-top:25px;
  font-size:18px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(2, minmax(240px,1fr));
  gap:28px 40px;
  max-width:760px;
}

.project img{
  width:100%;
  border:5px solid #eee;
  background:#fff;
}

.project h3{
  font-size:16px;
  margin:0 0 8px;
}

.footer{
  max-width:1000px;
  margin:auto;
  padding:25px 20px;
  color:#ddd;
  font-size:13px;
  border-top:1px solid rgba(255,255,255,.2);
}

@media(max-width:760px){
  .header-inner,.home-grid{
    display:block;
    text-align:left;
  }

  .contact-top{
    text-align:left;
    margin-top:20px;
  }

  .logo h1{font-size:30px}

  .nav a{
    display:inline-block;
    margin:0 14px 8px 0;
  }

  .gallery{grid-template-columns:1fr}
}

.lightbox-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:30px;
}

.lightbox-overlay img{
  max-width:90vw;
  max-height:85vh;
  border:6px solid #fff;
  background:#fff;
}

.lightbox-overlay span{
  position:absolute;
  top:20px;
  right:30px;
  color:#fff;
  font-size:45px;
  cursor:pointer;
}

.contact-card{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:40px;
  align-items:center;
  max-width:760px;
  margin-top:25px;
}

.contact-details{
  background:rgba(0,0,0,.18);
  padding:28px;
  border-radius:4px;
}

.contact-details p{
  font-size:18px;
  line-height:1.6;
}

.contact-image img{
  width:100%;
  border:5px solid #eee;
  background:#fff;
}

@media(max-width:760px){
  .contact-card{
    grid-template-columns:1fr;
  }

  .contact-image{
    max-width:220px;
  }
}