.founders {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder img {
  width: 250px;
  height: auto;
  margin-bottom: 1rem;
}

.founder strong {
  display: block;
  font-family: "LR Retrofied", system-ui, sans-serif;
  font-weight: 700;
}

.founder small {
  display: block;
  font-family: "LR Retrofied", system-ui, sans-serif;
  font-weight: 300;
  margin-top: 0.25rem;
}

.about-text {
  max-width: 700px;   /* adjust: 600–760px is ideal */
  margin: 3rem auto;  /* centers + adds vertical space */
  text-align: center;
  font-family: "LR Retrofied", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.founder-dinky {
  animation: slideInFromLeft 0.6s ease-out forwards;
  animation-delay: 0.1s;
}

.founder-marky {
  animation: slideInFromRight 0.6s ease-out forwards;
  animation-delay: 0.25s; /* split-second delay */
}



.about-animate {
  opacity: 0; /* prevent flash */
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 1.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-dinky,
  .founder-marky,
  .about-animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
}