.trv-page{
  background-color: var(--trv-sand);
  color: var(--trv-charcoal);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.trv-section{
  padding: 6.5rem 0;
  background-color: var(--trv-sand);
  position: relative;
}

.trv-section--sand{
  background-color: var(--trv-sand-dark);
}

.trv-section--border{
  border-top: 1px solid var(--trv-border);
  border-bottom: 1px solid var(--trv-border);
}

.trv-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trv-tag{
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trv-warm);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.trv-title{
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--trv-charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.trv-title em{
  font-style: italic;
  font-weight: 300;
  color: var(--trv-teal);
}

.trv-subtitle{
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--trv-muted);
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 3.5rem;
}

.trv-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}

.trv-btn--warm{
  background-color: var(--trv-warm);
  color: #fff !important;
}

.trv-btn--warm:hover{
  background-color: #b34a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 92, 56, 0.2);
}

.trv-btn--outline{
  background-color: transparent;
  color: var(--trv-charcoal) !important;
  border: 1px solid rgba(35, 33, 31, 0.2);
}

.trv-btn--outline:hover{
  background-color: rgba(35, 33, 31, 0.03);
  border-color: var(--trv-charcoal);
  transform: translateY(-2px);
}

/* Travel Hero Split */
.trv-hero{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  overflow: hidden;
}

.trv-hero-image{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.trv-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 246, 240, 0.98) 0%, rgba(250, 246, 240, 0.85) 50%, rgba(250, 246, 240, 0.1) 100%);
  z-index: 2;
}

.trv-hero-content{
  position: relative;
  z-index: 3;
  max-width: 750px;
}

.trv-hero-actions{
  display: flex;
  gap: 1.5rem;
}

/* Routes Curation */
.trv-routes-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.trv-route-card{
  background: #fff;
  border: 1px solid var(--trv-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--trv-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.trv-route-card:hover{
  transform: translateY(-6px);
  border-color: var(--trv-teal);
  box-shadow: 0 24px 56px rgba(35, 33, 31, 0.08);
}

.trv-route-image-wrap{
  aspect-ratio: 16/10;
  overflow: hidden;
}

.trv-route-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.trv-route-card:hover .trv-route-image{
  transform: scale(1.05);
}

.trv-route-body{
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trv-route-meta{
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--trv-warm);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.trv-route-title{
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.trv-route-desc{
  font-size: 0.9rem;
  color: var(--trv-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.trv-route-link{
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trv-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: color 0.3s ease;
}

.trv-route-link::after{
  content: '→';
  transition: transform 0.3s ease;
}

.trv-route-card:hover .trv-route-link{
  color: var(--trv-warm);
}

.trv-route-card:hover .trv-route-link::after{
  transform: translateX(4px);
}

/* Travel Journal Layout */
.trv-journal-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.trv-journal-title{
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.trv-journal-desc{
  color: var(--trv-muted);
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Timeline */
.trv-timeline{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 2rem;
}

.trv-timeline::before{
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background-color: var(--trv-border);
}

.trv-timeline-item{
  position: relative;
}

.trv-timeline-item::before{
  content: '';
  position: absolute;
  left: -21px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--trv-sand);
  border: 1px solid var(--trv-teal);
  box-sizing: border-box;
}

.trv-timeline-time{
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--trv-warm);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.trv-timeline-content h4{
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.trv-timeline-content p{
  font-size: 0.9rem;
  color: var(--trv-muted);
  margin: 0;
  line-height: 1.5;
}

/* Map Card */
.trv-map-card{
  background: #fff;
  border: 1px solid var(--trv-border);
  border-radius: 4px;
  padding: 3rem;
  box-shadow: var(--trv-shadow);
}

.trv-map-card-title{
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.trv-map-card-subtitle{
  font-size: 0.85rem;
  color: var(--trv-muted);
  display: block;
  margin-bottom: 2rem;
}

.trv-map-visual{
  background: var(--trv-sand);
  border: 1px solid var(--trv-border);
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.trv-map-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--trv-border);
}

.trv-map-stats .stat-box{
  display: flex;
  flex-direction: column;
}

.trv-map-stats .val{
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--trv-teal);
  line-height: 1;
}

.trv-map-stats .lbl{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--trv-muted);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Timeline Navigation System Styles
   ========================================================================== */
.vw-timeline-nav-wrapper{
  position: sticky;
  top: 70px; /* Offset for main header nav */
  z-index: 100;
  background: rgba(250, 248, 245, 0.85); /* Matches off-white/sand background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.vw-timeline-nav-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.vw-timeline-nav-title{
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wp--preset--color--vw-charcoal);
  opacity: 0.4;
  white-space: nowrap;
}

.vw-timeline-nav{
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.vw-timeline-nav::-webkit-scrollbar{
  display: none;
}

.vw-timeline-nav-item{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--wp--preset--color--vw-gray-500) !important;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.vw-timeline-nav-dot{
  display: inline-block;
  width: var(--dot-size, 8px);
  height: var(--dot-size, 8px);
  border-radius: 50%;
  background-color: var(--wp--preset--color--vw-gray-500);
  opacity: var(--dot-opacity, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vw-timeline-nav-label{
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  transition: all 0.3s ease;
}

.vw-timeline-nav-item:hover{
  color: var(--wp--preset--color--vw-terracotta) !important;
}

.vw-timeline-nav-item:hover .vw-timeline-nav-dot{
  background-color: var(--wp--preset--color--vw-terracotta);
  opacity: 1;
  transform: scale(1.2);
}

.vw-timeline-nav-item.is-active{
  color: var(--wp--preset--color--vw-terracotta) !important;
}

.vw-timeline-nav-item.is-active .vw-timeline-nav-dot{
  background-color: var(--wp--preset--color--vw-terracotta);
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(200, 92, 56, 0.4);
}

@media (max-width: 768px) {
.vw-timeline-nav-wrapper{
    top: 56px; /* Offset for smaller mobile header */
    padding: 0.75rem 0;
  }
.vw-timeline-nav-container{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0 1rem;
  }
.vw-timeline-nav-title{
    font-size: 0.65rem;
  }
.vw-timeline-nav{
    width: 100%;
    gap: 1.5rem;
    padding-bottom: 0.25rem;
  }
.vw-timeline-nav-item{
    gap: 0.5rem;
  }
.vw-timeline-nav-label{
    font-size: 0.8rem;
  }
}
