.hero {
  min-height: auto;
  padding-bottom: 10vh;
}

.hero-image {
  display: none;
}

.hero-copy {
  padding-top: 18vh;
}

.hero h1 {
  position: static;
  width: auto;
  margin: 22px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.3rem, 3.2vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

.hero .button {
  display: inline-flex;
  align-self: center;
  justify-content: center;
  width: auto;
  margin-top: 48px;
  padding-bottom: 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-card-text {
  background: #d8d8cf;
  color: var(--ink);
}

.work-card-text::after {
  display: none;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 50px 5vw 50px 6.25vw;
}

.about-copy {
  max-width: none;
  min-height: 621px;
  margin: 0;
  padding: 120px 12.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #e5e6d8;
}

.about-copy h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.about-copy > p:not(.eyebrow) {
  font-size: 0.76rem;
  line-height: 1.6;
}

.about-copy .text-link {
  align-self: flex-start;
  width: max-content;
}

.about {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.about-image {
  width: 100%;
  height: 621px;
  aspect-ratio: auto;
  border-radius: 1000px;
}

@media (max-width: 750px) {
  .hero {
    padding-bottom: 8vh;
  }

  .hero-copy {
    padding-top: 18vh;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2.2rem, 9vw, 3.25rem);
  }

  .hero .button {
    align-self: center;
    width: auto;
    margin-top: 34px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 8vh;
    padding: 32px 22px;
  }

  .about-copy {
    min-height: 520px;
    margin: 0;
    padding: 80px 18vw;
  }

  .about-image {
    height: 520px;
  }
}