/* ─── SECTIONS ─── */
section {
  padding: 100px 80px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 20px;
  color: var(--white);
}

.section-desc {
  color: rgba(240, 237, 232, 0.55);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(0.4deg);
  }
  66% {
    transform: translateY(-5px) rotate(-0.2deg);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.25;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.45;
    transform: translateX(-50%) scaleX(1.15);
  }
}
