713 lines
25 KiB
HTML
713 lines
25 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Inward Travel | Sacred Mushroom Journey in Oaxaca, Mexico</title>
|
||
<meta name="description" content="A 9-day journey of ceremony, connection, and psilocybin mushrooms guided by trusted Mazatec healers in the mountains of Oaxaca.">
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
|
||
<style>
|
||
:root {
|
||
--color-bg: #0a0a0a;
|
||
--color-bg-alt: #111111;
|
||
--color-text: #e8e4df;
|
||
--color-text-muted: #9a958e;
|
||
--color-accent: #c4a35a;
|
||
--color-accent-soft: rgba(196, 163, 90, 0.15);
|
||
--font-serif: 'Cormorant Garamond', Georgia, serif;
|
||
--font-sans: 'Inter', -apple-system, sans-serif;
|
||
}
|
||
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
html {
|
||
scroll-behavior: smooth;
|
||
}
|
||
|
||
body {
|
||
font-family: var(--font-sans);
|
||
background: var(--color-bg);
|
||
color: var(--color-text);
|
||
line-height: 1.7;
|
||
font-weight: 300;
|
||
}
|
||
|
||
/* Hero Section */
|
||
.hero {
|
||
min-height: 100vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
text-align: center;
|
||
padding: 2rem;
|
||
position: relative;
|
||
background:
|
||
linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.95) 100%),
|
||
url('https://www.inwardtravel.com/content/image/251215-124345/acommodation-mountain-view-huautla-de-jimenez-variants/image-1759-main_adventure_image/acommodation-mountain-view-huautla-de-jimenez.jpeg');
|
||
background-size: cover;
|
||
background-position: center;
|
||
background-attachment: fixed;
|
||
}
|
||
|
||
.hero-content {
|
||
max-width: 900px;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.hero-tagline {
|
||
font-family: var(--font-sans);
|
||
font-size: 0.75rem;
|
||
letter-spacing: 0.3em;
|
||
text-transform: uppercase;
|
||
color: var(--color-accent);
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.hero h1 {
|
||
font-family: var(--font-serif);
|
||
font-size: clamp(2.5rem, 6vw, 4.5rem);
|
||
font-weight: 400;
|
||
line-height: 1.15;
|
||
margin-bottom: 1.5rem;
|
||
letter-spacing: -0.01em;
|
||
text-shadow: 0 2px 20px rgba(0,0,0,0.5);
|
||
}
|
||
|
||
.hero h1 em {
|
||
font-style: italic;
|
||
color: var(--color-accent);
|
||
}
|
||
|
||
.hero-subtitle {
|
||
font-size: 1.125rem;
|
||
color: var(--color-text);
|
||
max-width: 600px;
|
||
margin: 0 auto 3rem;
|
||
text-shadow: 0 1px 10px rgba(0,0,0,0.5);
|
||
}
|
||
|
||
.hero-details {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 3rem;
|
||
flex-wrap: wrap;
|
||
margin-bottom: 3rem;
|
||
padding: 1.5rem 2rem;
|
||
background: rgba(10, 10, 10, 0.8);
|
||
backdrop-filter: blur(10px);
|
||
border: 1px solid rgba(196, 163, 90, 0.2);
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.hero-detail {
|
||
text-align: center;
|
||
}
|
||
|
||
.hero-detail-label {
|
||
font-size: 0.7rem;
|
||
letter-spacing: 0.15em;
|
||
text-transform: uppercase;
|
||
color: var(--color-text-muted);
|
||
margin-bottom: 0.25rem;
|
||
}
|
||
|
||
.hero-detail-value {
|
||
font-family: var(--font-serif);
|
||
font-size: 1.25rem;
|
||
color: var(--color-text);
|
||
}
|
||
|
||
.cta-button {
|
||
display: inline-block;
|
||
padding: 1rem 2.5rem;
|
||
background: var(--color-accent);
|
||
color: var(--color-bg);
|
||
text-decoration: none;
|
||
font-size: 0.85rem;
|
||
font-weight: 500;
|
||
letter-spacing: 0.1em;
|
||
text-transform: uppercase;
|
||
border-radius: 2px;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.cta-button:hover {
|
||
background: #d4b36a;
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 10px 30px rgba(196, 163, 90, 0.3);
|
||
}
|
||
|
||
.scroll-indicator {
|
||
position: absolute;
|
||
bottom: 2rem;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
animation: float 2s ease-in-out infinite;
|
||
}
|
||
|
||
.scroll-indicator svg {
|
||
width: 24px;
|
||
height: 24px;
|
||
stroke: var(--color-text-muted);
|
||
}
|
||
|
||
@keyframes float {
|
||
0%, 100% { transform: translateX(-50%) translateY(0); }
|
||
50% { transform: translateX(-50%) translateY(8px); }
|
||
}
|
||
|
||
/* Full-width image break */
|
||
.image-break {
|
||
width: 100%;
|
||
height: 50vh;
|
||
min-height: 300px;
|
||
background-size: cover;
|
||
background-position: center;
|
||
background-attachment: fixed;
|
||
position: relative;
|
||
}
|
||
|
||
.image-break::after {
|
||
content: '';
|
||
position: absolute;
|
||
inset: 0;
|
||
background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 15%, transparent 85%, var(--color-bg) 100%);
|
||
}
|
||
|
||
.image-break-teotihuacan {
|
||
background-image: url('https://www.inwardtravel.com/content/image/251216-165925/teotihuacan-mexico-temple-variants/itinerary-33-adventure_itinerary_image/teotihuacan-mexico-temple.png');
|
||
}
|
||
|
||
.image-break-ceremony {
|
||
background-image: url('https://www.inwardtravel.com/content/image/251216-203848/mushroom-mazatec-tradition-curandera-mexico-variants/itinerary-35-adventure_itinerary_image_mobile/mushroom-mazatec-tradition-curandera-mexico.png');
|
||
}
|
||
|
||
.image-break-waterfall {
|
||
background-image: url('https://www.inwardtravel.com/content/image/251217-210223/oaxaca-tropical-waterfall-bridge-variants/itinerary-40-adventure_itinerary_image_mobile/oaxaca-tropical-waterfall-bridge.jpeg');
|
||
}
|
||
|
||
.image-break-sabina {
|
||
background-image: url('https://www.inwardtravel.com/content/image/251215-125710/mexican-art-maria-sabina-mushrooms-variants/itinerary-37-adventure_itinerary_image_mobile/mexican-art-maria-sabina-mushrooms.jpeg');
|
||
}
|
||
|
||
/* Section Styles */
|
||
section {
|
||
padding: 6rem 2rem;
|
||
max-width: 1000px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.section-label {
|
||
font-size: 0.7rem;
|
||
letter-spacing: 0.25em;
|
||
text-transform: uppercase;
|
||
color: var(--color-accent);
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
h2 {
|
||
font-family: var(--font-serif);
|
||
font-size: clamp(2rem, 4vw, 3rem);
|
||
font-weight: 400;
|
||
margin-bottom: 2rem;
|
||
line-height: 1.2;
|
||
}
|
||
|
||
p {
|
||
margin-bottom: 1.5rem;
|
||
color: var(--color-text-muted);
|
||
}
|
||
|
||
p.highlight {
|
||
color: var(--color-text);
|
||
font-size: 1.125rem;
|
||
}
|
||
|
||
/* Journey Section */
|
||
.journey {
|
||
background: var(--color-bg-alt);
|
||
padding: 6rem 2rem;
|
||
}
|
||
|
||
.journey-inner {
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.journey-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||
gap: 1.5rem;
|
||
margin-top: 3rem;
|
||
}
|
||
|
||
.journey-card {
|
||
position: relative;
|
||
border-radius: 4px;
|
||
overflow: hidden;
|
||
aspect-ratio: 4/3;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: flex-end;
|
||
}
|
||
|
||
.journey-card-bg {
|
||
position: absolute;
|
||
inset: 0;
|
||
background-size: cover;
|
||
background-position: center;
|
||
transition: transform 0.5s ease;
|
||
}
|
||
|
||
.journey-card:hover .journey-card-bg {
|
||
transform: scale(1.05);
|
||
}
|
||
|
||
.journey-card::after {
|
||
content: '';
|
||
position: absolute;
|
||
inset: 0;
|
||
background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
|
||
}
|
||
|
||
.journey-card-content {
|
||
position: relative;
|
||
z-index: 1;
|
||
padding: 1.5rem;
|
||
}
|
||
|
||
.journey-card h3 {
|
||
font-family: var(--font-serif);
|
||
font-size: 1.5rem;
|
||
font-weight: 400;
|
||
margin-bottom: 0.5rem;
|
||
color: var(--color-text);
|
||
}
|
||
|
||
.journey-card p {
|
||
font-size: 0.9rem;
|
||
margin-bottom: 0;
|
||
color: var(--color-text-muted);
|
||
}
|
||
|
||
/* Lineage Section */
|
||
.lineage {
|
||
position: relative;
|
||
}
|
||
|
||
.lineage-quote {
|
||
font-family: var(--font-serif);
|
||
font-size: clamp(1.25rem, 3vw, 1.75rem);
|
||
font-style: italic;
|
||
color: var(--color-text);
|
||
padding: 2rem 0;
|
||
border-left: 2px solid var(--color-accent);
|
||
padding-left: 2rem;
|
||
margin: 3rem 0;
|
||
}
|
||
|
||
.lineage-attribution {
|
||
font-family: var(--font-sans);
|
||
font-size: 0.85rem;
|
||
font-style: normal;
|
||
color: var(--color-accent);
|
||
display: block;
|
||
margin-top: 1rem;
|
||
}
|
||
|
||
/* Included Section */
|
||
.included {
|
||
background: var(--color-bg-alt);
|
||
padding: 6rem 2rem;
|
||
}
|
||
|
||
.included-inner {
|
||
max-width: 1000px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.included-list {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||
gap: 1rem;
|
||
margin-top: 2rem;
|
||
list-style: none;
|
||
}
|
||
|
||
.included-list li {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 0.75rem;
|
||
padding: 1rem;
|
||
background: rgba(255, 255, 255, 0.02);
|
||
border-radius: 4px;
|
||
border: 1px solid rgba(255,255,255,0.05);
|
||
}
|
||
|
||
.included-list li::before {
|
||
content: '✦';
|
||
color: var(--color-accent);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
/* Guides Section */
|
||
.guides {
|
||
text-align: center;
|
||
}
|
||
|
||
.guides-intro {
|
||
max-width: 700px;
|
||
margin: 0 auto 3rem;
|
||
}
|
||
|
||
.guide-names {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 3rem;
|
||
flex-wrap: wrap;
|
||
margin-top: 2rem;
|
||
}
|
||
|
||
.guide-name {
|
||
font-family: var(--font-serif);
|
||
font-size: 1.5rem;
|
||
color: var(--color-text);
|
||
}
|
||
|
||
/* CTA Section */
|
||
.cta-section {
|
||
text-align: center;
|
||
padding: 8rem 2rem;
|
||
position: relative;
|
||
background:
|
||
linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%),
|
||
url('https://www.inwardtravel.com/content/image/251215-125850/mountain-view-with-flowerts-huautla-de-jimenez-variants/itinerary-41-adventure_itinerary_image_mobile/mountain-view-with-flowerts-huautla-de-jimenez.jpeg');
|
||
background-size: cover;
|
||
background-position: center;
|
||
background-attachment: fixed;
|
||
}
|
||
|
||
.cta-section h2 {
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
|
||
.cta-section p {
|
||
max-width: 500px;
|
||
margin: 0 auto 2.5rem;
|
||
color: var(--color-text-muted);
|
||
}
|
||
|
||
.contact-email {
|
||
display: block;
|
||
margin-top: 2rem;
|
||
color: var(--color-text-muted);
|
||
font-size: 0.9rem;
|
||
}
|
||
|
||
.contact-email a {
|
||
color: var(--color-accent);
|
||
text-decoration: none;
|
||
}
|
||
|
||
.contact-email a:hover {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
/* Footer */
|
||
footer {
|
||
padding: 3rem 2rem;
|
||
text-align: center;
|
||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||
background: var(--color-bg);
|
||
}
|
||
|
||
.footer-logo {
|
||
font-family: var(--font-serif);
|
||
font-size: 1.25rem;
|
||
color: var(--color-text);
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
.footer-links {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 2rem;
|
||
margin-bottom: 1.5rem;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.footer-links a {
|
||
color: var(--color-text-muted);
|
||
text-decoration: none;
|
||
font-size: 0.85rem;
|
||
transition: color 0.2s;
|
||
}
|
||
|
||
.footer-links a:hover {
|
||
color: var(--color-accent);
|
||
}
|
||
|
||
.copyright {
|
||
font-size: 0.75rem;
|
||
color: var(--color-text-muted);
|
||
}
|
||
|
||
/* Image Gallery Row */
|
||
.image-gallery {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 4px;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
.image-gallery-item {
|
||
aspect-ratio: 1;
|
||
background-size: cover;
|
||
background-position: center;
|
||
position: relative;
|
||
}
|
||
|
||
.image-gallery-item::after {
|
||
content: '';
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(10,10,10,0.2);
|
||
transition: background 0.3s ease;
|
||
}
|
||
|
||
.image-gallery-item:hover::after {
|
||
background: rgba(10,10,10,0);
|
||
}
|
||
|
||
/* Responsive */
|
||
@media (max-width: 768px) {
|
||
.hero {
|
||
background-attachment: scroll;
|
||
}
|
||
|
||
.image-break {
|
||
background-attachment: scroll;
|
||
height: 40vh;
|
||
}
|
||
|
||
.cta-section {
|
||
background-attachment: scroll;
|
||
}
|
||
|
||
.image-gallery {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
|
||
.image-gallery-item {
|
||
aspect-ratio: 16/9;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 600px) {
|
||
.hero-details {
|
||
gap: 1.5rem;
|
||
padding: 1.25rem 1rem;
|
||
}
|
||
|
||
.hero-detail-value {
|
||
font-size: 1.1rem;
|
||
}
|
||
|
||
.guide-names {
|
||
gap: 1.5rem;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<!-- Hero -->
|
||
<section class="hero">
|
||
<div class="hero-content">
|
||
<p class="hero-tagline">Inward Travel</p>
|
||
<h1>Journey to the Heart of <em>Sacred Mushrooms</em> in Oaxaca</h1>
|
||
<p class="hero-subtitle">
|
||
Travel deep into the mountains of Oaxaca for a 9-day journey of ceremony, connection, and psilocybin mushrooms, guided by trusted Mazatec healers.
|
||
</p>
|
||
<div class="hero-details">
|
||
<div class="hero-detail">
|
||
<p class="hero-detail-label">Duration</p>
|
||
<p class="hero-detail-value">9 Days</p>
|
||
</div>
|
||
<div class="hero-detail">
|
||
<p class="hero-detail-label">Location</p>
|
||
<p class="hero-detail-value">Oaxaca, Mexico</p>
|
||
</div>
|
||
<div class="hero-detail">
|
||
<p class="hero-detail-label">Group Size</p>
|
||
<p class="hero-detail-value">Max 18</p>
|
||
</div>
|
||
<div class="hero-detail">
|
||
<p class="hero-detail-label">Starting From</p>
|
||
<p class="hero-detail-value">£2,480</p>
|
||
</div>
|
||
</div>
|
||
<a href="https://www.inwardtravel.com/registration/mexico-mushrooms-9-days/trip" class="cta-button">Reserve Your Spot</a>
|
||
</div>
|
||
<div class="scroll-indicator">
|
||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
||
<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5" />
|
||
</svg>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- About the Journey -->
|
||
<section class="about">
|
||
<p class="section-label">The Experience</p>
|
||
<h2>One of the Few Places Preserving an Ancient Tradition</h2>
|
||
<p class="highlight">
|
||
This is one of the few places in the world that has preserved its mushroom tradition, stretching back thousands of years.
|
||
</p>
|
||
<p>
|
||
From Mexico City to Huautla de Jiménez, our group travels together, leaving city life far behind and venturing into Mexico's breathtaking landscapes and pristine nature. This retreat blends depth and reflection with the joy of an unforgettable week of adventure and connection.
|
||
</p>
|
||
<p>
|
||
Between ceremonies, days are simple and nourishing—with yoga, breathwork, hikes through lush landscapes, shared meals, and meaningful conversations. You'll also visit sacred sites, including the majestic ruins of Teotihuacán near Mexico City.
|
||
</p>
|
||
</section>
|
||
|
||
<!-- Image Break: Teotihuacan -->
|
||
<div class="image-break image-break-teotihuacan"></div>
|
||
|
||
<!-- Journey Overview -->
|
||
<div class="journey">
|
||
<div class="journey-inner">
|
||
<p class="section-label">Your Journey</p>
|
||
<h2>9 Days of Ceremony & Connection</h2>
|
||
<div class="journey-grid">
|
||
<div class="journey-card">
|
||
<div class="journey-card-bg" style="background-image: url('https://www.inwardtravel.com/content/image/251216-165925/teotihuacan-mexico-temple-variants/itinerary-33-adventure_itinerary_image/teotihuacan-mexico-temple.png')"></div>
|
||
<div class="journey-card-content">
|
||
<h3>Arrival & Teotihuacán</h3>
|
||
<p>Begin in Mexico City with an exploration of the ancient temple complex, setting intentions before journeying into the mountains.</p>
|
||
</div>
|
||
</div>
|
||
<div class="journey-card">
|
||
<div class="journey-card-bg" style="background-image: url('https://www.inwardtravel.com/content/image/251216-203848/mushroom-mazatec-tradition-curandera-mexico-variants/itinerary-35-adventure_itinerary_image_mobile/mushroom-mazatec-tradition-curandera-mexico.png')"></div>
|
||
<div class="journey-card-content">
|
||
<h3>Three Sacred Ceremonies</h3>
|
||
<p>Experience traditional Mazatec mushroom ceremonies led by Magdalena or Eugenia Casimiro in the village of Huautla de Jiménez.</p>
|
||
</div>
|
||
</div>
|
||
<div class="journey-card">
|
||
<div class="journey-card-bg" style="background-image: url('https://www.inwardtravel.com/content/image/251217-210223/oaxaca-tropical-waterfall-bridge-variants/itinerary-40-adventure_itinerary_image_mobile/oaxaca-tropical-waterfall-bridge.jpeg')"></div>
|
||
<div class="journey-card-content">
|
||
<h3>Integration & Exploration</h3>
|
||
<p>Daily yoga, breathwork, hikes to waterfalls, a traditional temazcal ceremony, and visits to María Sabina's sacred sites.</p>
|
||
</div>
|
||
</div>
|
||
<div class="journey-card">
|
||
<div class="journey-card-bg" style="background-image: url('https://www.inwardtravel.com/content/image/251215-124551/huautla-de-imenez-place-of-worship-mountain-view-variants/itinerary-36-adventure_itinerary_image_mobile/huautla-de-imenez-place-of-worship-mountain-view.jpeg')"></div>
|
||
<div class="journey-card-content">
|
||
<h3>Community & Connection</h3>
|
||
<p>Shared meals, integration circles, and meaningful conversations with fellow travelers in an intimate group setting.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Image Gallery -->
|
||
<div class="image-gallery">
|
||
<div class="image-gallery-item" style="background-image: url('https://www.inwardtravel.com/content/image/251215-125710/mexican-art-maria-sabina-mushrooms-variants/itinerary-37-adventure_itinerary_image_mobile/mexican-art-maria-sabina-mushrooms.jpeg')"></div>
|
||
<div class="image-gallery-item" style="background-image: url('https://www.inwardtravel.com/content/image/251216-211822/temazcal-ceremony-mexico-variants/itinerary-38-adventure_itinerary_image_mobile/temazcal-ceremony-mexico.png')"></div>
|
||
<div class="image-gallery-item" style="background-image: url('https://www.inwardtravel.com/content/image/251215-130709/paiting-with-poem-from-maria-sabina-variants/itinerary-39-adventure_itinerary_image_mobile/paiting-with-poem-from-maria-sabina.jpeg')"></div>
|
||
</div>
|
||
|
||
<!-- Lineage -->
|
||
<section class="lineage">
|
||
<p class="section-label">A Living Lineage</p>
|
||
<h2>Guided by Trusted Mazatec Healers</h2>
|
||
<p>
|
||
We are honoured to work with our healers, Magdalena and Eugenia Casimiro. They are daughters of Doña Julieta Casimiro and carry forward the sacred Mazatec mushroom tradition that connects directly to María Sabina.
|
||
</p>
|
||
<p>
|
||
In their trusted hands, we are guided to explore our connection with consciousness and experience the insight, healing, creativity, and clarity that mushrooms so powerfully offer.
|
||
</p>
|
||
|
||
<blockquote class="lineage-quote">
|
||
María Sabina (1894–1985) was a Mazatec healer from Oaxaca, Mexico, renowned for her sacred mushroom ceremonies. In 1956, an article about María Sabina in Time magazine introduced the world to Mazatec mushroom ceremonies, sparking global interest in psychedelic exploration and plant medicine traditions.
|
||
<span class="lineage-attribution">— From the village of Huautla de Jiménez, where this retreat takes place</span>
|
||
</blockquote>
|
||
|
||
<p>
|
||
This is not a modern reinterpretation of ceremony. It is a living lineage, shared in a way that is grounded, focused, and welcoming to those approaching this medicine with sincerity and respect.
|
||
</p>
|
||
</section>
|
||
|
||
<!-- Image Break: Ceremony -->
|
||
<div class="image-break image-break-sabina"></div>
|
||
|
||
<!-- What's Included -->
|
||
<div class="included">
|
||
<div class="included-inner">
|
||
<p class="section-label">What's Included</p>
|
||
<h2>Everything You Need for the Journey</h2>
|
||
<ul class="included-list">
|
||
<li>Three traditional Mazatec mushroom ceremonies</li>
|
||
<li>9 nights accommodation (2 in Mexico City, 7 in Huautla)</li>
|
||
<li>All meals during the retreat</li>
|
||
<li>Private bus transport throughout</li>
|
||
<li>6 yoga classes & breathwork sessions</li>
|
||
<li>Traditional temazcal (sweat lodge) ceremony</li>
|
||
<li>Guided visit to Teotihuacán</li>
|
||
<li>Excursion to María Sabina's house</li>
|
||
<li>Two retreat leaders plus translator support</li>
|
||
<li>Preparation & integration talks</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Guides -->
|
||
<section class="guides">
|
||
<p class="section-label">Your Guides</p>
|
||
<h2>Decades of Experience Creating Exceptional Journeys</h2>
|
||
<div class="guides-intro">
|
||
<p>
|
||
Inward Travel brings decades of experience designing exceptional journeys. Every detail is thoughtfully handled, from logistics to group flow, so participants can enjoy the freedom of travel and make the most of their experience in Mexico, and with mushrooms.
|
||
</p>
|
||
</div>
|
||
<div class="guide-names">
|
||
<span class="guide-name">Curtis Smith</span>
|
||
<span class="guide-name">Jeff Emmett</span>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- CTA -->
|
||
<section class="cta-section">
|
||
<h2>Begin Your Journey</h2>
|
||
<p>
|
||
Join us for this rare opportunity to experience authentic Mazatec mushroom ceremonies in the mountains of Oaxaca.
|
||
</p>
|
||
<a href="https://www.inwardtravel.com/registration/mexico-mushrooms-9-days/trip" class="cta-button">Reserve Your Spot</a>
|
||
<p class="contact-email">
|
||
Questions? Reach out at <a href="mailto:info@inwardtravel.com">info@inwardtravel.com</a>
|
||
</p>
|
||
</section>
|
||
|
||
<!-- Footer -->
|
||
<footer>
|
||
<p class="footer-logo">Inward Travel</p>
|
||
<div class="footer-links">
|
||
<a href="https://www.inwardtravel.com">Main Site</a>
|
||
<a href="https://www.inwardtravel.com/mexico-mushrooms">Full Retreat Details</a>
|
||
<a href="mailto:info@inwardtravel.com">Contact</a>
|
||
</div>
|
||
<p class="copyright">© 2025 Inward Travel. All rights reserved.</p>
|
||
</footer>
|
||
</body>
|
||
</html>
|