/* Base reset — scoped to the .ss-wrap page wrapper. Shared across all pages. */
body {
  margin: 0;
  padding: 0;
}

.ss-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ss-wrap {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a18;
  background: #faf9f6;
  line-height: 1;
  overflow-x: hidden;
}

.ss-wrap a {
  text-decoration: none;
  color: inherit;
}

.ss-wrap img {
  display: block;
  max-width: 100%;
}

/* Honor users who prefer reduced motion: neutralize animations and transitions
   (covers CSS keyframes, hover transitions, and JS-set inline transitions). */
@media (prefers-reduced-motion: reduce) {
  .ss-wrap *,
  .ss-wrap *::before,
  .ss-wrap *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
