Now welcoming new travelers
Legacy Collection

Education Journeys

University tours, summer programs, and study-abroad transitions.

Education Journeys is travel built around a child's next chapter — university tours, summer programs, or moving abroad for school. We coordinate the campus visits, the admissions advisors, and the practical move-in.

Perfect forThis journey suits

  • Families planning university tours across multiple countries
  • Students attending summer or gap programs abroad
  • Parents helping a child transition to university overseas
  • Adult learners enrolling in international programs

What’s includedEvery Education Journeys engagement

  • Custom campus tour schedule with admissions introductions
  • Travel between cities and pre-tour briefings
  • Summer or gap-program placement support
  • Student housing and move-in coordination
  • Parent itinerary woven around the student schedule
Choose your scale

Essential · Elevated · Elite

Three ways to enter the same journey — pick the depth that matches the moment.

Essential

Multi-campus tour itinerary across one country (5–7 nights).

Elevated

Cross-country tour with admissions advisors and parent leisure days.

Elite

Full student-relocation package — housing setup, banking, residency paperwork, parent residence nearby.

Begin the journey

Plan your education journeys

A complimentary planning call is always the first step. Tell us what you're imagining — we'll take it from there.

Plan this journey WhatsApp Us
Chat with us
🎉

You're on the list!

Thank you for subscribing to our newsletter.

script> document .querySelector(".newsletter-form") .addEventListener("submit", function (event) { event.preventDefault(); // Stop the default Formspree page redirect const form = this; const data = new FormData(form); const button = form.querySelector('button[type="submit"]'); // Optional: Disable button during submission if (button) button.disabled = true; // Send data to Formspree via AJAX fetch(form.action, { method: form.method, body: data, headers: { Accept: "application/json", }, }) .then((response) => { if (response.ok) { // Show your custom popup modal document.getElementById( "popupModal", ).style.display = "flex"; form.reset(); // Clear the email input field } else { alert( "Oops! There was a problem submitting your form", ); } }) .catch((error) => { alert( "Oops! There was a problem submitting your form", ); }) .finally(() => { // Re-enable button if (button) button.disabled = false; }); }); function closePopup() { document.getElementById("popupModal").style.display = "none"; }