.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--green2), #1f7f3c 48%, var(--green));
  color: #fff;
  padding: 72px 0 112px;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 44px;
  align-items: center;
}

.about-copy .lead {
  color: #ecfff1;
}

.about-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.about-photo-pair figure {
  margin: 0;
  background: #fff;
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 9px 10px 0 rgba(0,0,0,.3);
  transform: rotate(-1.5deg);
  animation: photoDrift 7s ease-in-out infinite;
}

.about-photo-pair figure:nth-child(2) {
  transform: rotate(2deg);
  margin-top: 64px;
  animation-delay: .7s;
}

.about-photo-pair img {
  border-radius: 19px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.about-photo-pair figcaption {
  padding: 10px 6px 2px;
  font-weight: 950;
  text-align: center;
}

.about-card-stack {
  display: grid;
  gap: 16px;
}

.about-card-stack article {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 7px 8px 0 var(--ink);
}

.about-card-stack span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  font-weight: 950;
  margin-bottom: 12px;
}

.about-card-stack p {
  color: var(--soft);
  margin-bottom: 0;
}

@keyframes photoDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@media (max-width: 900px) {
  .about-hero-grid,
  .about-photo-pair {
    grid-template-columns: 1fr;
  }

  .about-photo-pair figure,
  .about-photo-pair figure:nth-child(2) {
    transform: none;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-photo-pair figure {
    animation: none;
  }
}
