/* ==========================================================================
   Journeys (tours listing) — page-specific styles.
   Shares tokens, nav, footer, buttons, FAQ and final-cta with ../main/style.css
   ========================================================================== */

.breadcrumbs {
  font-size: 12px;
  color: var(--text-inverse-muted);
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--text-inverse-muted); transition: color 0.3s ease; }
.breadcrumbs a:hover { color: var(--text-inverse); }
.breadcrumbs span { margin: 0 8px; }

.hero.hero--page {
  height: 58vh;
  min-height: 440px;
}
.hero.hero--page .hero-content { padding-bottom: 64px; }
.hero.hero--page .hero-title { font-size: clamp(36px, 5vw, 60px); max-width: 20ch; }

/* Search */
.tour-search {
  padding: 56px 0 0;
  background: var(--paper);
}
.search-card {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.search-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--ink);
  margin: 10px 0 10px;
}
.search-copy p { color: var(--text-muted); font-size: 14px; line-height: 1.7; max-width: 44ch; }
.search-label { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 8px; }
.tour-search-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(20,22,28,0.14);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tour-search-input:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(176,141,87,0.15);
}
.search-status { margin-top: 12px; font-size: 12px; color: var(--text-muted); }

/* Tour grid */
.tour-list {
  padding: 64px 0 40px;
  background: var(--paper);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.experience-card {
  background: var(--paper);
  border: 1px solid rgba(20,22,28,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-tight);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.experience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.experience-image { aspect-ratio: 16/10; overflow: hidden; }
.experience-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.experience-card:hover .experience-image img { transform: scale(1.06); }
.experience-copy { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.experience-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dim);
  margin-bottom: 10px;
}
.experience-copy h2 { font-size: 0; margin: 0 0 12px; }
.experience-title-link {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  transition: color 0.3s ease;
}
.experience-title-link:hover { color: var(--teal-deep); }
.experience-copy > p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; }

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}
.highlight-list li {
  font-size: 12px;
  color: var(--teal-deep);
  background: var(--teal-mist);
  padding: 7px 14px;
  border-radius: 999px;
}

.experience-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(20,22,28,0.08);
  margin-bottom: 20px;
}
.experience-meta span:first-child {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
}
.experience-meta span:last-child { font-size: 12px; color: var(--text-muted); max-width: 22ch; text-align: right; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(20,22,28,0.16);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s var(--ease);
}
.btn-secondary:hover { border-color: var(--ink); background: var(--ink); color: var(--text-inverse); transform: translateY(-2px); }

.experience-card.is-hidden-by-search { display: none; }
.experience-card.is-collapsed { display: none; }

.tour-actions { text-align: center; padding: 10px 0 40px; }
.btn-outline {
  display: none;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(20,22,28,0.18);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .search-card { grid-template-columns: 1fr; }
  .tour-list { grid-template-columns: 1fr; }
}
