:root{
  --radius: 1.25rem;
}

.letter-tight { letter-spacing: -0.02em; }
.text-white-75 { color: rgba(255,255,255,.78); }

.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(0,0,0,.65), rgba(0,0,0,.25));
}
.hero-content{
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  color: #fff;
}

.gallery-img{
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
  transition: transform .2s ease;
}
.gallery-img:hover{
  transform: scale(1.01);
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #111;
  margin-top: .4rem;
  flex: 0 0 auto;
}

.rounded-4 { border-radius: var(--radius) !important; }
