.route-hero {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--green-dark);
  color: white;
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
}

.route-hero .eyebrow {
  color: var(--gold);
}

.route-hero h1 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.route-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.route-stats {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.route-stat {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.route-stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.route-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.route-cta-section {
  background: var(--soft);
}

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