/* Full original artwork with only a small, soft wash behind the lower-left title. */
main > .home-hero {
  padding: 24px 0 36px;
  background: #f7fbfd;
}
.home-hero-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  overflow: hidden;
  border-radius: 26px;
  background: transparent;
}
.home-hero-art,
.home-hero-shade,
.home-hero-copy { grid-area: 1 / 1; }
.home-hero-art {
  display: block;
  align-self: center;
  justify-self: end;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1733 / 907;
  object-fit: contain;
  border: 0;
  border-radius: 26px;
  box-shadow: none;
  pointer-events: none;
}
.home-hero-shade {
  z-index: 1;
  align-self: end;
  justify-self: start;
  width: 76%;
  max-width: 820px;
  height: 43%;
  max-height: 210px;
  pointer-events: none;
  background: radial-gradient(ellipse farthest-side at left bottom, rgba(247,251,253,.5) 0%, rgba(247,251,253,.27) 52%, transparent 100%);
}
.home-hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: 68%;
  max-width: 720px;
  margin-left: 4%;
  padding: 0 0 32px;
}
.home-hero h1 {
  margin: 0;
  color: #17394b;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.home-hero-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 46px;
  margin-top: 28px;
  color: #334f60;
  font-size: 1rem;
  line-height: 1.7;
}
.home-hero-intro p { margin: 0; }
@media (max-width: 760px) {
  main > .home-hero { padding: 16px 0 28px; }
  .home-hero-banner { width: calc(100% - 28px); border-radius: 20px; }
  .home-hero-copy { width: 86%; max-width: 660px; margin-left: 5%; padding: 0 0 16px; }
  .home-hero h1 { font-size: clamp(1.15rem, 5.25vw, 1.85rem); line-height: 1.12; }
  .home-hero-intro { grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
  .home-hero-art { border-radius: 20px; }
  .home-hero-shade { width: 94%; height: 58%; max-height: 175px; }
}
@media print {
  main > .home-hero { padding: 0; background: none; }
  .home-hero-banner { display: block; width: 100%; border: 0; border-radius: 0; background: none; box-shadow: none; }
  .home-hero-art, .home-hero-shade { display: none; }
  .home-hero-copy { width: 100%; max-width: none; margin: 0; padding: 0; }
  .home-hero-intro { grid-template-columns: 1fr; }
}
