.about {
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 900ms;
  --stagger: 80ms;
  background: var(--color-grey-tint);
  padding: clamp(5px, 20vw, 120px) 16px;
  margin-top: -1px;
}

.about__inner {
  width: min(960px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.about__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__content {
  padding: clamp(20px, 5vw, 36px) clamp(16px, 5vw, 36px);
  color: #111;
}

.about__heading {
  margin: 0 0 clamp(8px, 2.6vw, 14px);
  font-family: var(--headline-expanded);
  font-weight: 800;
  font-size: clamp(24px, 5.2vw, 40px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: #111;
}

.about__text {
  margin: 0 0 clamp(10px, 3.2vw, 16px);
  font-family: var(--burger-description-font);
  font-weight: 500;
  font-size: clamp(14px, 2.8vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.about__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: clamp(8px, 3vw, 14px) 0 0;
  list-style: none;
}

.about__highlights li {
  background: var(--color-details);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--headline-expanded);
  font-weight: 800;
  font-size: clamp(10px, 2.4vw, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Pageload animaties: nooit verbergen, alleen animeren */
@keyframes aboutFadeUp {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes aboutZoom {
  from {
    transform: scale(1.04);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes chipUp {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.about.animate-in .about__inner {
  animation: aboutFadeUp var(--dur) var(--ease) both;
}
.about.animate-in .about__media img {
  animation: aboutZoom calc(var(--dur) + 200ms) var(--ease) both;
}
.about.animate-in .about__heading {
  animation: aboutFadeUp var(--dur) var(--ease) calc(var(--stagger) * 1) both;
}
.about.animate-in .about__text {
  animation: aboutFadeUp var(--dur) var(--ease) calc(var(--stagger) * 2) both;
}
.about.animate-in .about__text + .about__text {
  animation-delay: calc(var(--stagger) * 3);
}
.about.animate-in .about__highlights li {
  animation: chipUp 560ms var(--ease) both;
}
.about.animate-in .about__highlights li:nth-child(1) {
  animation-delay: calc(var(--stagger) * 4);
}
.about.animate-in .about__highlights li:nth-child(2) {
  animation-delay: calc(var(--stagger) * 5);
}
.about.animate-in .about__highlights li:nth-child(3) {
  animation-delay: calc(var(--stagger) * 6);
}

@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
  }
  .about__media {
    aspect-ratio: auto;
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about.animate-in .about__inner,
  .about.animate-in .about__media img,
  .about.animate-in .about__heading,
  .about.animate-in .about__text,
  .about.animate-in .about__highlights li {
    animation: none !important;
  }
}
