/* URG custom styles */
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; color:#1f2a24; background:#f5f1e8; }
.serif { font-family: 'Cormorant Garamond', serif; }
.hero-bg {
  background:
    linear-gradient(rgba(20,30,25,0.45), rgba(20,30,25,0.55)),
    url('https://images.unsplash.com/photo-1542051841857-5f90071e7989?w=1920&q=80') center/cover no-repeat;
}
.card-img { aspect-ratio: 4 / 3; object-fit: cover; }
.nav-link { position: relative; }
.nav-link::after {
  content:''; position:absolute; left:0; bottom:-4px; width:0; height:1px;
  background:#1f2a24; transition: width .3s ease;
}
.nav-link:hover::after { width:100%; }
