* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0a0a;
  color: #f0ece4;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #1a1818;
}

::-webkit-scrollbar-thumb {
  background: #c9a96e;
  border-radius: 12px;
}

.glass {
  background: rgba(20, 18, 18, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.hero-grad {
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    #0b0a0a;
}

.gold {
  color: #c9a96e;
}

.border-gold {
  border-color: rgba(201, 169, 110, 0.3);
}

.btn-gold {
  background: #c9a96e;
  color: #0b0a0a;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-gold:hover {
  background: #dfc28a;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.masonry img {
  transition: transform 0.5s ease, filter 0.4s;
}

.masonry figure:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.lightbox-overlay {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #c9a96e;
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}

.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  background: #c9a96e;
  color: #0b0a0a;
  padding: 0.75rem 1rem;
  border-radius: 60px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.tab-btn {
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.tab-active {
  border-bottom-color: #c9a96e;
  color: #c9a96e;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #c9a96e;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Skeleton Loading Animations */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
}

.skeleton-title {
  height: 32px;
  width: 60%;
  margin-bottom: 12px;
}

.skeleton-img {
  height: 200px;
  width: 100%;
  border-radius: 12px;
}

.skeleton-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Image loading states */
.img-loading {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.img-loaded {
  opacity: 1;
}

/* Fade in for loaded content */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Broken image fallback */
img {
  color: transparent;
}

img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #1a1818;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
