/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   SECTION SHARED STYLES
=========================== */
section { position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .section-inner { padding: 0 20px; } }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-sub {
  font-size: 18px; font-weight: 400;
  color: var(--gray-text);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 600px;
}


/* ===========================
   GLOBAL MOTION PREFERENCES
=========================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
