.about {
  padding: calc(10vh + 45px) 48px 100px 160px;
}

.about__kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 26px;
  animation: about-reveal 0.8s var(--ease-out) 0.15s both;
}

.about__bio {
  max-width: 680px;
}

.about__bio p {
  font-size: 1.15rem;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  animation: about-reveal 0.8s var(--ease-out) both;
}

.about__bio p + p {
  margin-top: 24px;
}

.about__bio p:nth-child(1) {
  animation-delay: 0.35s;
}

.about__bio p:nth-child(2) {
  animation-delay: 0.5s;
}

.about__bio p:nth-child(3) {
  animation-delay: 0.65s;
}

.about__bio p:nth-child(4) {
  animation-delay: 0.8s;
}

.about__bio strong {
  color: var(--color-accent);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(253, 233, 204, 0.3);
}

@keyframes about-reveal {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__kicker,
  .about__bio p {
    animation: none;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 72px 24px 60px;
  }

  .about__bio p {
    font-size: 1.05rem;
  }
}
