 .u-section-1 {
  background-position: 50% 50%, 50% 50%;
  background-repeat: no-repeat, no-repeat;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) no-repeat 50% 50% / cover;
  background-size: cover, cover;
}

.u-section-1 .u-sheet-1 {
  min-height: 881px;
  margin-bottom: 0;
}

.u-section-1 .u-text-1 {
  font-size: 3rem;
  margin: 129px 0 0;
}

.u-section-1 .u-text-2 {
  font-size: 1.125rem;
  margin: 0;
}

.u-section-1 .u-custom-html-1 {
  margin-bottom: 55px;
  height: auto;
  min-height: 690px;
  margin-top: -103px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-sheet-1 {
    min-height: 886px;
  }

  .u-section-1 .u-custom-html-1 {
    margin-bottom: 60px;
    margin-top: -122px;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 842px;
  }

  .u-section-1 .u-custom-html-1 {
    margin-bottom: 40px;
    margin-top: -180px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-sheet-1 {
    min-height: 838px;
  }

  .u-section-1 .u-custom-html-1 {
    margin-bottom: 30px;
    margin-top: -203px;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 818px;
  }

  .u-section-1 .u-custom-html-1 {
    margin-bottom: 14px;
    margin-top: -370px;
  }
} :root{
  --gap:1rem;
  --radius:16px;
  --hover-scale:1.025;
  --transition:cubic-bezier(.4,0,.2,1)
}
.gallery-wrapper{
  width:100%;
  max-width:1200px;
  padding:2rem 1rem;
  background:transparent;
  margin:0 auto
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
  gap:var(--gap)
}
.gallery-item{
  position:relative;
  aspect-ratio:1/1;
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(120,120,120,.08);
  transition:transform .3s var(--transition),box-shadow .3s var(--transition);
  cursor:pointer
}
.gallery-item:hover{
  transform:scale(var(--hover-scale));
  box-shadow:0 8px 24px rgba(0,0,0,.18)
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  transition:opacity .4s ease
}
.gallery-item img.loaded{opacity:1}
.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:.75rem;
  margin-top:2rem;
  flex-wrap:wrap
}
.page-btn{
  background:transparent;
  border:1px solid rgba(120,120,120,.25);
  border-radius:10px;
  padding:.5rem .75rem;
  font-size:.875rem;
  color:inherit;
  cursor:pointer;
  transition:all .2s ease;
  min-width:40px;
  display:flex;
  align-items:center;
  justify-content:center
}
.page-btn:hover{background:rgba(120,120,120,.12)}
.page-btn.active{
  background:rgba(0,0,0,.85);
  color:#fff;
  border-color:transparent
}
.page-btn:disabled{opacity:.4;cursor:not-allowed}
.lightbox{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.95);
  z-index:9999;
  opacity:0;
  transition:opacity .3s ease
}
.lightbox.active{
  display:flex;
  opacity:1
}
.lightbox-content{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2rem
}
.lightbox-img{
  max-width:90%;
  max-height:90%;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 20px 60px rgba(0,0,0,.5)
}
.lightbox-close{
  position:absolute;
  top:20px;
  right:20px;
  width:50px;
  height:50px;
  background:rgba(255,255,255,.1);
  border:none;
  border-radius:50%;
  color:#fff;
  font-size:1.5rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s ease
}
.lightbox-close:hover{background:rgba(255,255,255,.2)}
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.1);
  border:none;
  color:#fff;
  width:50px;
  height:50px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  transition:background .2s ease
}
.lightbox-nav:hover{background:rgba(255,255,255,.2)}
.lightbox-prev{left:20px}
.lightbox-next{right:20px}
.lightbox-counter{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  font-size:.875rem;
  background:rgba(0,0,0,.5);
  padding:.5rem 1rem;
  border-radius:20px
}
@media(max-width:600px){
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .lightbox-nav{display:none}
}