.home-page {
  min-height: 100vh;
  background: #f4f6f7;
}

.home-header {
  position: fixed;
  right: 0;
  left: 0;
  border-bottom-color: rgba(29, 29, 31, .04);
  background: rgba(247, 249, 250, .66);
}

.vision-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.55fr);
  min-height: 100svh;
  padding-top: 76px;
  overflow: hidden;
  background: #f4f6f7;
}

.vision-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1 / -1;
  width: min(46vw, 640px);
  max-width: none;
  padding: clamp(48px, 7vw, 112px) clamp(28px, 5vw, 82px);
}

.vision-kicker {
  margin: 0 0 22px;
  color: #65717a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
}

.vision-copy h1 {
  margin: 0;
  color: #191b1d;
  font-size: clamp(40px, 3.8vw, 54px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.vision-subtitle {
  margin: 20px 0 0;
  color: #343a3e;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 520;
  line-height: 1.35;
}

.vision-statement {
  max-width: 450px;
  margin: 34px 0 0;
  color: #666d72;
  font-size: 15px;
  line-height: 1.82;
}

.vision-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #292d30;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.vision-link span {
  transition: transform .2s ease;
}

.vision-link:hover span {
  transform: translateX(4px);
}

.vision-media {
  position: absolute;
  z-index: 0;
  inset: 76px 0 0;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.vision-media::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 48%;
  background: linear-gradient(90deg, #f4f6f7 12%, rgba(244, 246, 247, .84) 58%, rgba(244, 246, 247, 0));
  content: "";
  pointer-events: none;
}

.vision-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
  filter: contrast(.98) saturate(.78);
}

@media (max-width: 900px) {
  .vision-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(48svh, 1fr);
  }

  .vision-copy {
    width: auto;
    max-width: 700px;
    padding: 56px clamp(22px, 7vw, 64px) 38px;
  }

  .vision-copy h1 {
    font-size: clamp(40px, 10vw, 62px);
    white-space: normal;
  }

  .vision-statement {
    margin-top: 24px;
  }

  .vision-media {
    position: relative;
    inset: auto;
    min-height: 48svh;
  }

  .vision-media::before {
    inset: 0 0 auto;
    width: auto;
    height: 16%;
    background: linear-gradient(180deg, #f4f6f7, rgba(244, 246, 247, 0));
  }

  .vision-media img {
    object-position: 68% center;
  }
}

@media (max-width: 640px) {
  .vision-hero {
    grid-template-rows: auto minmax(38svh, 1fr);
  }

  .vision-copy {
    padding: 42px 22px 26px;
  }

  .vision-kicker {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .vision-copy h1 {
    font-size: 42px;
  }

  .vision-subtitle {
    margin-top: 14px;
    font-size: 18px;
  }

  .vision-statement {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.72;
  }

  .vision-link {
    margin-top: 22px;
  }

  .vision-media {
    min-height: 38svh;
  }

}
