/* An original field of possible futures, inspired by the supplied reference. */
.hero-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1fr); gap: 2rem; }
.hero-copy { grid-column: 2; grid-row: 1; }
.future-field { grid-column: 1; grid-row: 1; }
.hero { padding-block: clamp(3rem, 5vw, 5rem); }
.hero h1 { font-size: clamp(3rem, 4.65vw, 4.3rem); }
.hero-proof { margin-top: 2.5rem; }
.future-field {
  position: relative;
  min-height: 540px;
  width: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.future-lines { width: 110%; max-width: none; height: 100%; position: absolute; inset: 0 auto 0 -12%; overflow: visible; }
.future-trails { opacity: .9; }
.future-trails:not(.is-textured) path { stroke-dasharray: 9 13; }
.future-trails.is-textured { filter: url(#pencil-grain); }
.future-caption {
  position: absolute;
  left: 0;
  bottom: 4rem;
  color: var(--muted);
  font: .64rem/1.5 var(--font-label);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.closing { position: relative; overflow: hidden; background: var(--bg); }
.closing-texture { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.closing::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(var(--bg), rgb(242 238 226 / 93%) 40%, var(--bg)); pointer-events: none; }
.closing-inner { position: relative; z-index: 2; }
@media (max-width: 1080px) {
  .hero-grid { gap: 1.5rem; }
  .future-field { min-height: 470px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy, .future-field { grid-column: auto; grid-row: auto; }
  .future-field { width: 100%; min-height: 360px; margin: 0; }
  .future-lines { width: 100%; left: 0; }
  .future-caption { bottom: 2.8rem; }
}
@media (max-width: 600px) {
  .hero { padding-top: 3rem; }
  .hero h1 { font-size: clamp(2.55rem, 10.5vw, 3.8rem); }
  .hero-grid { position: relative; }
  .future-field { position: absolute; inset: 110px -16px auto; width: calc(100% + 32px); height: 360px; min-height: 0; z-index: 3; pointer-events: none; }
  .future-lines { left: 12%; width: 115%; opacity: .35; }
  .future-caption { display: none; }
  .hero-copy { padding-bottom: 1rem; }
  .hero .lede { margin-top: 4.5rem; }
}
@media (max-width: 430px) {
  .future-field { min-height: 290px; }
  .future-caption { font-size: .57rem; }
}
