html {
  scroll-behavior: smooth;
}

.shadow-soft {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out both;
}

.gallery-shot {
  height: 220px;
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgb(226 232 240);
  object-fit: cover;
  background: white;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

@media (min-width: 640px) {
  .gallery-shot {
    height: 260px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
