.project-intro {
  padding: 96px 0 88px;
}

.project-intro__header {
  max-width: 1120px;
}

.project-intro__client {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.project-intro__logo {
  max-height: 54px;
  width: auto;
  display: block;
}

.project-intro__client-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.project-intro__title {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.project-intro__lead {
  max-width: 1180px;
}

.project-intro__lead p {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.72);
}

/* meta row */

.project-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}

.project-meta__item {
  min-width: 0;
}

.project-meta__label {
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.project-meta__value {
  font-size: 1rem;
  line-height: 1.5;
  color: #111;
}

/* scope grid */

.project-scope {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 72px;
}

.project-scope__item {
  max-width: 520px;
}

.project-scope__title {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-scope__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

@media (max-width: 1100px) {
  .project-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .project-intro {
    padding: 72px 0 72px;
  }

  .project-intro__client {
    margin-bottom: 22px;
  }

  .project-intro__logo {
    max-height: 42px;
  }

  .project-intro__title {
    margin-bottom: 22px;
    line-height: 1;
  }

  .project-meta,
  .project-scope {
    grid-template-columns: 1fr;
  }

  .project-meta {
    margin-top: 42px;
    gap: 22px;
  }

  .project-scope {
    margin-top: 56px;
    gap: 36px;
  }
}