.gallery-hero{
  text-align:center;
  padding:20px 0 10px;
}

.gallery-hero h1{
  margin:0;
  font-size:52px;
  letter-spacing:3px;
  color:#193C19;
}

.gallery-subtitle{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:2px;
  color:#8B6F47;
}

.gallery-section{
  max-width:1200px;
  margin:0 auto;
  padding:20px 0 40px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

@media (max-width:900px){
  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:600px){
  .gallery-hero h1{
    font-size:36px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }
}