/* Landing page layout update */
header p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.25;
}

.hero {
  display: flex;
  align-items: flex-end;
  padding: 90px 6vw 40px;
  background: radial-gradient(circle at 82% 28%, #263746 0, transparent 31%);
}

.hero h1 {
  margin: 0 0 13vh;
  font-size: clamp(68px, 11.5vw, 180px);
  line-height: .7;
}

.hero-bottom {
  justify-content: flex-end;
}

.about {
  display: block;
}

.work-head {
  min-height: 82vh;
  padding: 16vh 8vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-head h2 {
  max-width: 11ch;
  font-size: clamp(56px, 9vw, 145px);
  line-height: .77;
  margin: 6vh 0;
}

.work-head > p:last-child {
  position: static;
  align-self: flex-end;
  margin: 0;
}

@media (max-width: 700px) {
  header p {
    font-size: 10px;
  }

  .hero {
    min-height: 680px;
    padding: 100px 22px 30px;
  }

  .hero h1 {
    margin-bottom: 16vh;
    font-size: 17vw;
  }

  .hero-bottom {
    left: 22px;
    right: 22px;
  }

  .work-head {
    min-height: 710px;
    padding: 14vh 22px 12vh;
  }

  .work-head h2 {
    max-width: 10ch;
    font-size: 15vw;
    margin: 5vh 0;
  }

  .work-head > p:last-child {
    align-self: flex-start;
  }
}
