:root {
  --home-ink: #353437;
  --home-link: #7253a2;
  --home-focus: #1d5d9b;
  --home-lilac: #9c7fc9;
}

.home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  color: var(--home-ink);
}

.home__image-panel {
  min-height: 100vh;
  background: var(--home-lilac);
  overflow: hidden;
}

.home__portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home__content-panel {
  display: flex;
  align-items: center;
  padding: 3rem 4rem;
}

.home__content {
  width: min(100%, 31.25rem);
}

.home__header h1 {
  margin: 0 0 2.25rem;
  font-family: Futura, "Avenir Next", Avenir, sans-serif;
  font-size: clamp(2.75rem, 4.2vw, 3.375rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.home__bio {
  font-family: "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.home__bio p {
  margin: 0 0 1rem;
}

.home__bio p:last-child {
  margin-bottom: 0;
}

.home a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.home a:hover {
  color: var(--home-link);
}

.home a:focus-visible {
  outline: 0.1875rem solid var(--home-focus);
  outline-offset: 0.2rem;
  border-radius: 0.1rem;
}

.home__links {
  margin-top: 3.75rem;
  font-family: Futura, "Avenir Next", Avenir, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.home__links > a {
  display: inline-block;
  margin-bottom: 1rem;
}

.home__links ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 48rem) {
  .home {
    display: block;
  }

  .home__image-panel {
    min-height: 0;
    height: min(108vw, 26.375rem);
  }

  .home__content-panel {
    display: block;
    padding: 2.5rem 1.25rem 3rem;
  }

  .home__content {
    width: 100%;
  }

  .home__header h1 {
    margin-bottom: 2.25rem;
  }

  .home__links {
    margin-top: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home * {
    scroll-behavior: auto;
  }
}
