.start-project {
  padding-top: 40px;
  padding-bottom: 48px;
}

.start-project__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.start-project__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.start-project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start-project__title {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.start-project__lede {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.start-project__content {
  max-width: 65ch;
}

.start-project__content p {
  margin: 0 0 14px;
}

@media (max-width: 680px) {
  .start-project__grid {
    grid-template-columns: 1fr;
  }
}