.route-page-hero {
  position: relative;
  min-height: 70svh;
  padding: 160px 20px 92px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background-color: #101810;
  background-image:
    radial-gradient(circle at 78% 14%, rgba(239, 189, 66, .24), transparent 30rem),
    linear-gradient(90deg, rgba(8, 13, 8, .92), rgba(10, 13, 8, .58) 52%, rgba(8, 7, 4, .82)),
    linear-gradient(180deg, rgba(5, 8, 5, .14), rgba(5, 8, 5, .8)),
    url("../img/orchard-hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.route-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .014) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .3;
}

.route-page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content));
  margin: 0 auto;
}

.route-page-hero h1 {
  max-width: 940px;
  font-size: clamp(3.1rem, 7vw, 6rem);
}

.route-page-hero .hero-lede {
  max-width: 800px;
  margin: 22px 0 0;
}

.route-page-hero.makers {
  background-position: 58% center;
}

.route-page-hero.how {
  background-position: 44% center;
}

.route-page-section-dark {
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 189, 66, .08), transparent 28rem),
    linear-gradient(180deg, #111911, #182017);
}

.route-page-section-light {
  color: var(--ink);
  background: linear-gradient(180deg, #efe3bf, #d9dab9);
}

.route-page-section-light .section-label {
  color: var(--apple);
}

.route-page-section-light .section-heading > p:not(.section-label),
.route-page-section-light .route-page-card p {
  color: #5d4d37;
}

.route-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.route-page-card {
  min-height: 280px;
  padding: clamp(26px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 247, 223, .05);
}

.route-page-section-light .route-page-card {
  border-color: rgba(36, 21, 13, .12);
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 18px 44px rgba(42, 29, 15, .12);
}

.route-page-card h2,
.route-page-card h3 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.route-page-card p:last-child {
  margin-bottom: 0;
}

.route-page-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 28px;
  align-items: start;
}

.route-page-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 247, 223, .05);
}

.route-page-panel h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.route-page-panel p:last-child {
  margin-bottom: 0;
}

.route-page-steps {
  display: grid;
  gap: 14px;
  counter-reset: route-page-step;
}

.route-page-step {
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 247, 223, .045);
}

.route-page-step::before {
  counter-increment: route-page-step;
  content: "0" counter(route-page-step);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
}

.route-page-step h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.route-page-step p {
  margin-bottom: 0;
  color: rgba(255, 247, 223, .74);
}

.route-page-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.route-page-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 247, 223, .8);
}

.route-page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(239, 189, 66, .12);
}

.route-page-cta-section {
  background:
    radial-gradient(circle at 84% 14%, rgba(169, 70, 37, .12), transparent 28rem),
    linear-gradient(180deg, #111811, #172017);
}

.route-page-cta {
  padding: clamp(30px, 6vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(239, 189, 66, .11), rgba(255, 247, 223, .035));
}

.route-page-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.route-page-cta p {
  max-width: 760px;
  color: rgba(255, 247, 223, .78);
}

.route-page-cta .button-row {
  margin-top: 0;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .route-page-grid,
  .route-page-split,
  .route-page-cta {
    grid-template-columns: 1fr;
  }

  .route-page-cta .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .route-page-hero {
    min-height: 66svh;
    padding-top: 138px;
    background-position: 58% center;
  }

  .route-page-step {
    grid-template-columns: 1fr;
  }
}
