.hero {
  min-height: 44rem;
  display: grid;
  grid-template-columns: minmax(22rem, .88fr) minmax(32rem, 1.12fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 8vw, 8.75rem) 7vw;
}

.hero h1,
.order-intro h2,
.gifting-callout h2,
.path-copy h3 {
  font-family: var(--ranger-serif);
  font-weight: 400;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 6.4vw, 7.1rem);
  line-height: .88;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 31rem;
  margin: 2.3rem 0 2rem;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.55;
}

.hero-gallery {
  min-height: 44rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: .55rem;
  margin: 0;
  padding: .55rem;
  background: var(--ranger-green);
}

.hero-image {
  min-height: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.82) contrast(.97);
  transition: transform .6s ease;
}

.hero-image:hover img {
  transform: scale(1.015);
}

.hero-image-main {
  grid-row: auto;
}

.hero-image-main img {
  object-position: center;
}

.hero-gallery figcaption {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding: .65rem .75rem .5rem;
  color: var(--ranger-paper);
  font-size: .61rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(16rem, .67fr) minmax(32rem, 1.33fr);
  gap: 7vw;
  padding: clamp(5.5rem, 9vw, 9rem) 7vw;
  background: var(--ranger-paper);
  border-top: 1px solid var(--ranger-line);
}

.order-intro {
  position: sticky;
  top: 2.5rem;
  align-self: start;
}

.order-intro h2 {
  max-width: 7ch;
  margin: 0;
  font-size: clamp(3.3rem, 5.2vw, 5.1rem);
  line-height: .94;
  letter-spacing: -.04em;
}

.order-intro > p:last-child {
  max-width: 22rem;
  margin: 1.8rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

.order-paths {
  border-top: 1px solid var(--ranger-line);
}

.order-path {
  min-height: 12rem;
  display: grid;
  grid-template-columns: 2.5rem minmax(15rem, 1fr) minmax(9.5rem, auto);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--ranger-line);
}

.path-number {
  align-self: start;
  margin: .35rem 0 0;
  color: var(--ranger-rust);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.path-label {
  margin: 0 0 .55rem;
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .13em;
  opacity: .65;
  text-transform: uppercase;
}

.path-copy h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.025em;
}

.path-copy > p:last-child {
  max-width: 35rem;
  margin: .75rem 0 0;
  font-size: .88rem;
  line-height: 1.55;
}

.text-link {
  min-width: 9.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1.1rem;
  padding: .8rem 0;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.text-link span {
  font-size: 1rem;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.order-path-featured {
  margin-top: .9rem;
  padding-inline: 1.4rem;
  background: var(--ranger-green);
  color: var(--ranger-paper);
  border-bottom-color: transparent;
}

.order-path-featured .path-number {
  color: var(--ranger-gold);
}

.order-path-direct {
  padding-inline: 1.4rem;
  background: var(--ranger-cream);
}

.gifting-callout {
  display: grid;
  grid-template-columns: minmax(20rem, 1.2fr) minmax(17rem, .7fr) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(4rem, 7vw, 7rem) 7vw;
  background: var(--ranger-rust);
  color: var(--ranger-paper);
}

.gifting-callout .eyebrow {
  color: var(--ranger-paper);
  opacity: .72;
}

.gifting-callout h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.035em;
}

.gifting-callout > p {
  max-width: 24rem;
  margin: 0;
  line-height: 1.65;
}

.button-light {
  border: 1px solid rgb(250 246 238 / 65%);
  color: var(--ranger-paper);
  white-space: nowrap;
}

.button-light:hover {
  background: var(--ranger-paper);
  color: var(--ranger-rust);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 38rem;
  }

  .hero-gallery {
    min-height: 38rem;
  }

  .order-section {
    grid-template-columns: 1fr;
  }

  .order-intro {
    position: static;
  }

  .order-intro > p:last-child {
    margin-bottom: 2rem;
  }

  .gifting-callout {
    grid-template-columns: 1fr 1fr;
  }

  .gifting-callout .button {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .hero-copy {
    min-height: 35rem;
    padding: 5rem var(--ranger-page-padding);
  }

  .hero h1 {
    font-size: clamp(3.45rem, 15vw, 5rem);
  }

  .hero-gallery {
    min-height: 34rem;
  }

  .order-section {
    padding: 5.5rem var(--ranger-page-padding);
  }

  .order-path {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }

  .order-path .text-link {
    width: 100%;
    grid-column: 2;
  }

  .order-path-featured,
  .order-path-direct {
    padding: 1.6rem 1.15rem;
  }

  .gifting-callout {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 5rem var(--ranger-page-padding);
  }

  .gifting-callout .button {
    grid-column: 1;
  }
}

@media (max-width: 430px) {
  .header-link {
    font-size: 0;
  }

  .header-link span {
    margin: 0;
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .hero-gallery {
    min-height: 30rem;
  }

  .hero-gallery figcaption {
    font-size: .55rem;
  }
}
