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

body {
  font-family: "Adobe Garamond Pro", Garamond, serif;
  background: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.mobile-header {
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding: 20px 10px 30px;
  position: fixed;
  top: 0;
  background: white;
  z-index: 999;
}

.mobile-header h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.gallery {
  padding: 20px 20px 40px;
  margin-top: 120px;
}

.image-grid {
  column-count: 2;
  column-gap: 20px;
}

.image-grid a {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
}

.image-grid a:first-child {
  margin-top: 0;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.image-grid img:hover {
  filter: brightness(1.1);
}

.contact-wrapper {
  text-align: center;
}

.contact-wrapper img {
  padding-top: 100px;
  height: auto;
  width: 30%;
  display: block;
  margin: auto;
}

@media (max-width: 768px) {
  .image-grid {
    column-count: 1;
  }

  .contact-wrapper img {
    padding-top: 0px;
    width: 90%;
  }
}
