html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; }

.font-serif { font-family: 'Cormorant Garamond', serif; }

.gold-gradient {
  background: linear-gradient(135deg, #E5C76B 0%, #C9A227 50%, #A8861A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15) 100%);
}

.project-card { transition: all .5s ease; }
.project-card:hover { transform: translateY(-6px); }
.project-card:hover img { transform: scale(1.08); }
.project-card img { transition: transform .8s ease; }

.slider-track { display: flex; transition: transform .6s ease; }
.slider-slide { min-width: 100%; padding: 0 4px; }

.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, #C9A227, transparent);
  margin: 1rem auto;
}
.gold-divider.\!ml-0 { margin-left: 0; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #C9A227; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #A8861A; }