html {
  scroll-behavior: smooth;
}

body {
  background-color: #0A0A0A;
  color: #FFFFFF;
  overflow-x: hidden;
}

.text-gradient {
  background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.08);
}

.glass-panel-light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-bg {
  background-color: #000000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gold-line {
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #D4AF37, transparent) 1;
}

.section-divider {
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 70%, rgba(10,10,10,0) 100%);
  color: #0A0A0A;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.accordion-item.active .accordion-content {
  max-height: 220px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Fade the bottom edge of the hero photo */
.mask-image-bottom {
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 25%);
  mask-image: linear-gradient(to top, transparent 0%, black 25%);
}

/* --- Scroll Animations --- */
[data-animate] {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}