html{scroll-behavior:smooth}.gold-underline{position:relative}.gold-underline:after{content:'';position:absolute;left:0;bottom:-4px;width:64px;height:2px;background:#d4af37}

/* Tile hover zoom */
.tile-card .tile-img{
  transform: scale(1);
  transition: transform .35s ease;
}
.tile-card:hover .tile-img{
  transform: scale(1.08);
}

/* Modal pop-in */
#tileModal .shadow-2xl{
  transform: scale(.96);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}
#tileModal.is-open .shadow-2xl{
  transform: scale(1);
  opacity: 1;
}

#tileModal ::-webkit-scrollbar {
  width: 8px;
}
#tileModal ::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,.6);
  border-radius: 4px;
}
#tileModal ::-webkit-scrollbar-track {
  background: transparent;
}

