/* === ROUTE PAGES === */

/* Hero */
.route-hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.route-hero-img {
  position: absolute;
  inset: 0;
}

.route-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.route-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 4rem;
  color: #fff;
  max-width: 720px;
}

.route-breadcrumb {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.route-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.route-breadcrumb a:hover { color: #fff; }

.route-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  color: #fff;
}

.route-hero-content .hero-sub {
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.route-hero-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
  color: #fff;
}

.hero-meta-item span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

/* Intro section */
.route-intro-section {
  padding: 6rem 0;
  background: #fff;
}

.route-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.route-intro-text h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.route-intro-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.aside-card {
  background: var(--warm-light);
  padding: 2rem;
  border-radius: 3px;
  position: sticky;
  top: 90px;
}

.aside-card h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.aside-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.aside-card li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.88rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.aside-card li:last-child { border-bottom: none; }

.aside-card li span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Elevation */
.elevation-section {
  padding: 5rem 0;
  background: var(--bg);
}

.elevation-section h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.elevation-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.elevation-chart {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  background: #fff;
}

.elevation-chart svg {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.8rem;
}

.elevation-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
  padding: 0 0.2rem;
}

/* Options */
.route-options {
  padding: 5rem 0;
  background: #fff;
}

.route-options h3,
.route-highlights-section h3,
.other-routes h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.option-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  position: relative;
  background: var(--bg);
}

.option-badge {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--text);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.option-card h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.option-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.option-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-meta span {
  font-size: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  color: var(--muted);
}

/* Highlights */
.route-highlights-section {
  padding: 5rem 0;
  background: var(--warm-light);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.highlight-block {
  background: #fff;
  padding: 1.8rem;
  border-radius: 3px;
}

.highlight-block .h-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.8rem;
}

.highlight-block h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.highlight-block p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.7;
}

/* Other routes */
.other-routes {
  padding: 5rem 0;
  background: var(--bg);
}

.other-routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.other-route-card {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.other-route-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.other-route-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.other-route-info {
  padding: 1rem 1.2rem;
}

.other-route-info span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.3rem;
}

.other-route-info h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.other-route-info p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Route CTA */
.route-cta {
  padding: 6rem 0;
  background: var(--text);
  color: #fff;
  text-align: center;
}

.route-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.route-cta p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.route-cta .btn-primary--dark {
  background: #fff;
  color: var(--text);
}

/* Responsive */
@media (max-width: 960px) {
  .route-intro-grid { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .options-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .other-routes-grid { grid-template-columns: repeat(2, 1fr); }
  .route-hero-meta { gap: 1.2rem; }
}

@media (max-width: 600px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .other-routes-grid { grid-template-columns: 1fr; }
  .route-hero-content { padding: 0 1.5rem 3rem; }
  .elevation-labels { display: none; }
}
