.studio-proof {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(32rem, 1.35fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: clamp(1rem, 3vw, 3rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
  background: var(--background-deep);
}

.studio-profile {
  align-self: start;
}

.studio-profile h2 {
  max-width: 11ch;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  line-height: 0.94;
}

.studio-profile h2 em {
  color: var(--gold);
}

.studio-profile-copy {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.studio-profile-copy p {
  margin: 0;
  color: var(--muted);
}

.studio-profile-copy p:first-child {
  color: var(--soft);
  font-size: 1.08rem;
}

.studio-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.82rem;
  transition: border-color 180ms ease, color 180ms ease;
}

.studio-text-link:hover,
.proof-card > a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.proof-list {
  border-top: 1px solid var(--line-strong);
}

.proof-card {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) minmax(18rem, 1.4fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line-strong);
}

.proof-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-card h3 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  line-height: 0.95;
}

.proof-card p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
}

.proof-card > a {
  grid-column: 2;
  justify-self: start;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.78rem;
  transition: border-color 180ms ease, color 180ms ease;
}

@media (max-width: 920px) {
  .studio-proof {
    grid-template-columns: 1fr;
  }

  .studio-profile h2 {
    max-width: 10ch;
  }
}

@media (max-width: 620px) {
  .studio-proof {
    gap: 4rem;
    padding-top: 0;
  }

  .studio-profile h2 {
    font-size: clamp(3.5rem, 17vw, 4.7rem);
    line-height: 0.98;
  }

  .proof-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .proof-card-meta {
    flex-direction: row;
    justify-content: space-between;
  }

  .proof-card > a {
    grid-column: 1;
  }
}
