.about-page {
  width: 90%;
  max-width: none;
  padding-bottom: clamp(72px, 10vw, 140px);
}

.about-hero {
  min-height: clamp(620px, 82vh, 900px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(42px, 8vw, 124px);
  align-items: center;
}

.about-hero__copy {
  max-width: 760px;
}

.about-hero__copy h1 {
  margin: 0 0 clamp(64px, 8vw, 112px);
  font-size: clamp(4.4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.about-hero__copy p {
  margin: 0 0 clamp(34px, 4vw, 58px);
  font-size: clamp(1.6rem, 2.8vw, 3.1rem);
  font-weight: 400;
  line-height: 1.32;
}

.about-hero__copy p:last-child {
  margin-bottom: 0;
}

.about-hero__image {
  margin: 0;
}

.about-hero__image img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(54px, 10vw, 150px);
  padding: clamp(44px, 7vw, 96px) 0 clamp(80px, 12vw, 160px);
  color: #fff;
}

.about-detail-group h2 {
  margin: 0 0 clamp(30px, 5vw, 58px);
  color: var(--yellow);
  font-size: clamp(1.5rem, 2.1vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-detail-group h2:not(:first-child) {
  margin-top: clamp(38px, 6vw, 72px);
}

.about-detail-group dl {
  margin: 0;
}

.about-detail-group dt {
  margin: clamp(28px, 4vw, 54px) 0 6px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.18;
}

.about-detail-group dt:first-child {
  margin-top: 0;
}

.about-detail-group dd,
.about-detail-group p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 1.9vw, 2rem);
  font-weight: 400;
  line-height: 1.34;
}

.about-timeline {
  display: grid;
  gap: clamp(52px, 7vw, 92px);
  padding: clamp(26px, 4vw, 54px) 0 clamp(72px, 9vw, 120px);
  overflow: visible;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(180px, 0.7fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.timeline-item:nth-child(even) {
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 0.95fr);
}

.timeline-item__content {
  min-width: 0;
}

.timeline-item:nth-child(even) .timeline-item__content {
  text-align: right;
}

.timeline-item--four {
  display: flex;
  justify-content: end;
}

.timeline-item--four .timeline-item__content {
  width: min(100%, 52rem);
  justify-self: end;
  text-align: right;
}

.timeline-item time {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(3.1rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.92;
}

.timeline-item p {
  margin: 0;
  font-size: clamp(1.8rem, 3.25vw, 3.8rem);
  font-weight: 400;
  line-height: 1.16;
}

.timeline-item__curve {
  width: 100%;
  height: clamp(180px, 22vw, 300px);
  align-self: center;
  margin-inline: 0;
  overflow: visible;
}

.timeline-item__curve path {
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: square;
  stroke-width: 16;
}

@media (max-width: 960px) {
  .about-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: clamp(34px, 8vw, 72px);
  }

  .about-hero__copy h1 {
    margin-bottom: 42px;
  }

  .about-hero__image {
    width: min(100%, 560px);
    justify-self: center;
  }

  .about-details {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-detail-group--wide {
    grid-column: auto;
    margin-top: 0;
  }

  .about-timeline {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    padding: clamp(56px, 12vw, 92px) 0;
    overflow: visible;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 28px;
    text-align: left;
  }

  .timeline-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(even) .timeline-item__content,
  .timeline-item--four .timeline-item__content {
    width: auto;
    justify-self: stretch;
    text-align: left;
  }

  .timeline-item::before {
    position: absolute;
    top: 8px;
    bottom: -44px;
    left: 0;
    width: 5px;
    background: var(--yellow);
    content: "";
  }

  .timeline-item:last-child::before {
    bottom: 8px;
  }

  .timeline-item time {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .timeline-item p {
    font-size: clamp(1.6rem, 8vw, 3rem);
  }

  .timeline-item__curve {
    display: none;
  }
}

@media (max-width: 620px) {
  .about-page {
    width: 90%;
  }

  .about-hero__copy p {
    font-size: clamp(1.32rem, 7vw, 2rem);
  }

  .about-detail-group dd,
  .about-detail-group p {
    font-size: clamp(1.08rem, 6vw, 1.55rem);
  }

  .about-detail-group dt {
    font-size: clamp(1.16rem, 6vw, 1.65rem);
  }
}
