/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 60px 0;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Screen-only / Print-only toggle */
.print-only {
  display: none !important;
}
