*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Header scroll state */
#site-header {
  background: transparent;
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 31, 61, 0.08);
}

/* Mobile menu */
#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  position: relative;
}

.mobile-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a84c;
  transition: width 0.3s ease;
}

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

/* Subtle line animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold accent line */
.gold-line {
  width: 48px;
  height: 1px;
  background: #c9a84c;
}

/* Image hover container */
.group img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #091226;
}
::-webkit-scrollbar-thumb {
  background: #c9a84c;
  border-radius: 3px;
}

/* Selection */
::selection {
  background: rgba(201, 168, 76, 0.2);
  color: #0f1f3d;
}

@media (max-width: 767px) {
  #hero h1 {
    font-size: 3.2rem;
  }
}
