html { scroll-behavior: smooth; }
body { background-color: #F6F5F1; }

/* Premium Twill weave texture */
.weave-dark {
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 12px);
}
.weave-light {
  background-image:
    repeating-linear-gradient(45deg, rgba(20,33,61,0.03) 0px, rgba(20,33,61,0.03) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(-45deg, rgba(20,33,61,0.02) 0px, rgba(20,33,61,0.02) 1px, transparent 1px, transparent 12px);
}

/* Glassmorphism Utilities */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.glass-dark {
  background: rgba(20, 33, 61, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-tag {
  position: relative;
  border: 1px dashed rgba(176,141,87,0.55);
  padding: 4px 12px;
  background: rgba(176,141,87,0.05);
  border-radius: 2px;
}
.label-tag::before, .label-tag::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #B08D57;
  top: 50%; transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(176,141,87,0.8);
}
.label-tag::before { left: -2.5px; }
.label-tag::after { right: -2.5px; }

/* Enhanced Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stitch-border {
  border: 1.5px dashed rgba(255,255,255,0.35);
  transition: all 0.3s ease;
}
.stitch-border:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

::selection { background: #B08D57; color: #fff; }

.card-lift { 
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease; 
}
.card-lift:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 28px 50px -12px rgba(20,33,61,0.15); 
  border-color: rgba(176,141,87,0.4);
}

.glow-hover:hover {
  box-shadow: 0 0 20px rgba(176,141,87,0.4);
}

.marquee-track { animation: marquee 35s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

input:focus, textarea:focus, select:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid #B08D57;
  outline-offset: 2px;
}
