<!doctype html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<link rel="icon" sizes="any" href="/favicon-192.png" type="image/png">
		<title>Charles Eisenstein</title>
		
		  
<meta name="description" content="I am a writer and a speaker.">
<link rel="stylesheet" href="/index.css" />

	</head>
	<body>
		<div id="top" class="page">
		<header>
			<hgroup>
				<a href="/"><img src="/logo-full.png"
					alt="A Small Barn Swallow illustration serving as the logo of the site"
				></a>
			</hgroup>
			<nav>
				<ul>
					<li>
						<button
							class="dropdown-button"
							aria-haspopup="true"
							aria-expanded="false"
							aria-controls="dropdown-menu">What's New</button>
						<ul hidden class="dropdown-menu" role="menu" aria-hidden="true">
							<li role="menuitem"><a
									href="/sanity-project"
										>Sanity Project 2026</a></li>
							<li role="menuitem">
								<a href="/podcasts/halfmoon"
									>Halfmoon podcast</a>
							</li>
							<li role="menuitem">
								<a href="/events"
									>Upcoming events</a>
							</li>
							<li role="menuitem">
								<a href="/self-paced-courses"
									>Self-paced courses</a>
							</li>
						</ul>
					</li>
					<li><a
							
							href="/author">Author</a></li>
					<li><a
							
							
							href="/essays">Essays</a></li>
					<li><a
							
							
							href="/books">Books</a></li>
					<li>
						<a
							
							href="/donate"
							>Donate</a
						>
					</li>
					<li>
						<button
							class="dropdown-button"
							aria-haspopup="true"
							aria-expanded="false"
							aria-controls="dropdown-menu">Archive</button>
						<ul hidden class="dropdown-menu" role="menu" aria-hidden="true">
							<li role="menuitem"><a
									href="https://www.youtube.com/@charleseisenstein/videos"
										>Videos</a></li>
							<li role="menuitem"><a
									
									
									href="/podcasts">Podcasts</a></li>
							<li role="menuitem">
								<a href="/courses"
									>Courses</a>
							</li>
						</ul>
					</li>
				</ul>
			</nav>
		</header>
		
<section id="introduction">
	<blockquote>
		The barn swallow, subject of a traditional sailors' tattoo, appears only
		when a ship is close to land. It means that home is not far away. Maybe
		we were not lost after all.
	</blockquote>
</section>

		</div>
		<footer>
			<ul>
				<li><a href="https://charleseisenstein.substack.com/subscribe">Newsletter</a></li>
				<li aria-hidden="true">|</li>
				<li><a href="/contact">Contact</a></li>
				<li aria-hidden="true">|</li>
				<li><a href="/update-subscription">Update Subscription</a></li>
				<li aria-hidden="true">|</li>
				<li><a href="/naas">NAAS</a></li>
			</ul>
			<h2>Charles Eisenstein</h2>
			<small>All content on this website is licensed under a <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License.</a> Feel free to copy and share.</small>
		</footer>
	</body>
	<script>
		document.addEventListener('click', e => {
			toggleDropdowns(e.target);
		})

		// Align dropdown menu correctly.
		// Sadly this cannot currently be done with css.
		const buttons = document.getElementsByClassName("dropdown-button");
		function toggleDropdowns(target) {
			var hit = false;
			for (var button of buttons) {
				const menu = button.nextElementSibling;
				if (target !== button) {
					// Missed button.
					continue;
				}

				if (menu.hidden) {
					// Clicked on hidden dropdown: Show this one.
					menu.hidden = false;
					menu.ariaHidden = false;
					button.ariaExpanded = true;
				} else {
					// Clicked on visible dropdown: Hide only this one.
					menu.hidden = true;
					menu.ariaHidden = true;
					button.ariaExpanded = false;
				}
				hit = true;
				break;
			}
			if (hit === false) {
				// Missed all buttons: Hide all drowndowns.
				for (var button of buttons) {
					const menu = button.nextElementSibling;
					menu.hidden = true;
					menu.ariaHidden = true;
					button.ariaExpanded = false;
				}
			}
		}

		// Open external links in new tab.
		// Zola doesn't have a simple way to mark external links.
		let anchorLinks = document.querySelectorAll("a");

		for (let i = 0; i < anchorLinks.length; i += 1) {
			if (anchorLinks[i].hostname !== window.location.hostname) {
				anchorLinks[i].setAttribute("target", "_blank");
			}
		}
	</script>
</html>
