<!DOCTYPE html>

<html class="no-js" lang="en">

<head>

<meta charset="UTF-8">

<!-- Mobile View -->
<meta name="viewport" content="width=device-width">

<title>Naturalistic Paganism | A community of Naturalistic &amp; Humanistic Pagans</title>

<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="https://naturalisticpaganism.org/xmlrpc.php">

<meta name='robots' content='max-image-preview:large' />
<meta name="google-site-verification" content="F03NpCbuYhPHw756U6XbdKpWOb68XbGUfM9DJnTsLOs" />

<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=9457'
					+ '&is_singular=';
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9uYXR1cmFsaXN0aWNwYWdhbmlzbS5vcmc%3D"
		+ "&wpcomid=21255453"
		+ "&time=" + Math.floor( Date.now() / 1000 );
	document.body.appendChild( iframe );
}, false );
</script>
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//widgets.wp.com' />
<link rel='dns-prefetch' href='//fonts-api.wp.com' />
<link rel='dns-prefetch' href='//s1.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="Naturalistic Paganism &raquo; Feed" href="https://naturalisticpaganism.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="Naturalistic Paganism &raquo; Comments Feed" href="https://naturalisticpaganism.org/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Naturalistic Paganism &raquo; Home Comments Feed" href="https://naturalisticpaganism.org/front-page/feed/" />
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='/wp-content/mu-plugins/likes/jetpack-likes.css?m=1743883414i&cssminify=yes' type='text/css' media='all' />
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/common.min.css */
</style>
<style id="wp-block-library-inline-css-extra">
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}
/*# sourceURL=wp-block-library-inline-css */
</style>

<style id="classic-theme-styles-inline-css">
.wp-block-button__link{background-color:#32373c;border-radius:9999px;box-shadow:none;color:#fff;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-file__button{background:#32373c;color:#fff}.wp-block-accordion-heading{margin:0}.wp-block-accordion-heading__toggle{background-color:inherit!important;color:inherit!important}.wp-block-accordion-heading__toggle:not(:focus-visible){outline:none}.wp-block-accordion-heading__toggle:focus,.wp-block-accordion-heading__toggle:hover{background-color:inherit!important;border:none;box-shadow:none;color:inherit;padding:var(--wp--preset--spacing--20,1em) 0;text-decoration:none}.wp-block-accordion-heading__toggle:focus-visible{outline:auto;outline-offset:0}.wp-block-tab:not(.has-text-color){color:inherit!important}.wp-block-tab:not(.has-background){background-color:inherit!important}.wp-block-tab:focus,.wp-block-tab:hover{text-decoration:none}.wp-block-tab:focus-visible{outline:auto;outline-offset:0}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/classic.min.css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='/_static/??-eJx9jcEKg0AMRH+oaVhorR7Eb9E16IpZg8min2889FZ6GYbhPQYPgbhlo2zIBWQtU8qKcdvJd5be0AmmMfW0Ejv2jKoP/K0daZzIXNdvB6PzvyJ+A8MgO6mCJ6fCYLN/6e113IZXU9WfUL/DcgHSTkDo&cssminify=yes' type='text/css' media='all' />
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}.wp-block-button{--wp--preset--dimension--25: 25%;--wp--preset--dimension--50: 50%;--wp--preset--dimension--75: 75%;--wp--preset--dimension--100: 100%;}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
/*# sourceURL=global-styles-inline-css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-10-1' href='/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/moon/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/verbum-comments/verbum-comments.css?m=1777410324i&cssminify=yes' type='text/css' media='all' />
<link rel='stylesheet' id='verbum-gutenberg-css-css' href='https://widgets.wp.com/verbum-block-editor/block-editor.css?ver=1771405207' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='/_static/??-eJyVy1EOQDAMANALmVoEX+IssxQTXZe1Ipze4gb+34MrGc9RMSrohoQCKSOFk4Dz6mJ4nAaOIHofWHuRCv4MQzyHn7FYWIoz7kJh+vJEo+3bpmsGa7v9BeKdRB4=&cssminify=yes' type='text/css' media='all' />
<link rel='stylesheet' id='organization-fonts-css' href='https://fonts-api.wp.com/css?family=Roboto+Slab:400,300|Open+Sans:400,600,700,800,800italic,600italic,700italic,400italic|Lora:400,400italic,700,700italic|Droid+Serif:400,400i,700,700i&#038;subset=latin,latin-ext,latin,latin&#038;ver=1.0' media='all' />
<style id="jetpack_facebook_likebox-inline-css">
.widget_facebook_likebox {
	overflow: hidden;
}

/*# sourceURL=/wp-content/mu-plugins/jetpack-plugin/moon/modules/widgets/facebook-likebox/style.css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-16-1' href='/_static/??-eJzTLy/QTc7PK0nNK9HPLdUtyClNz8wr1i9KTcrJTwcy0/WTi5G5ekCujj52Temp+bo5+cmJJZn5eSgc3bScxMwikFb7XFtDE1NLExMLc0OTLACohS2q&cssminify=yes' type='text/css' media='all' />
<style id="jetpack-global-styles-frontend-style-inline-css">
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
/*# sourceURL=jetpack-global-styles-frontend-style-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-18-1' href='/_static/??-eJyNjcEKAjEMRH/IGlcqPYmfIt20tF3TpJiWxb/XFS/ixcswD4Y3sDaDwj1yhzpMo5EKKyyxN4+3D0MV2SIMigqa/T0GH8LjXQunParu4H/TtTDCPAoFUMHiyZAk0S/4cfYc6+s9W0gks6dtcKnnyTl7stPh6JYnG8BLYw==&cssminify=yes' type='text/css' media='all' />
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"21255453","postID":"9457","siteURL":"https://naturalisticpaganism.org","xhrURL":"https://naturalisticpaganism.org/wp-admin/admin-ajax.php","nonce":"cb7328318f","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https://s0.wp.com/wp-content/js/wpcom-proxy-request.js?m=1513050504i&amp;ver=20211021","shortlink":"https://wp.me/P1rbvT-2sx","i18n":{"followedText":"New posts from this site will now appear in your \u003Ca href=\"https://wordpress.com/reader\"\u003EReader\u003C/a\u003E","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","shortLinkCopied":"Shortlink copied to clipboard."}};
//# sourceURL=wpcom-actionbar-placeholder-js-extra
</script>
<script id="jetpack-mu-wpcom-settings-js-before">
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https://s1.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/moon/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/"};
//# sourceURL=jetpack-mu-wpcom-settings-js-before
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJydj7sOwjAMRX+IkALiNSBmfoA9at3GUV51HGj5elpUJDbUTh7uObavfEZRBs/gWZokybKIFLp+bdJKDhn60uYK0hiaNgP101g79H8h4bAhxfALf6+xBjcokcBhdjJQozy+FGPw4x4dHkC3DzrTTDkC1Zj0TG/qVSPfsUoLZQtdslgBLfOhzcoKDdhoHlSbnR8/ubrL5rgt9rvicDqbNy6lpZU='></script>
<script id="rlt-proxy-js-after">
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
//# sourceURL=rlt-proxy-js-after
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://humanisticpaganism.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel="canonical" href="https://naturalisticpaganism.org/" />
<link rel='shortlink' href='https://wp.me/P1rbvT-2sx' />
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/?format=json&amp;url=https%3A%2F%2Fnaturalisticpaganism.org%2F&amp;for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/?format=xml&amp;url=https%3A%2F%2Fnaturalisticpaganism.org%2F&amp;for=wpcom-auto-discovery" />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Naturalistic Paganism" />
<meta property="og:description" content="A community of Naturalistic &amp; Humanistic Pagans" />
<meta property="og:url" content="https://naturalisticpaganism.org/" />
<meta property="og:site_name" content="Naturalistic Paganism" />
<meta property="og:image" content="https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=200&#038;ts=1781089520" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta property="article:publisher" content="https://www.facebook.com/WordPresscom" />
<meta name="twitter:text:title" content="Home" />
<meta name="twitter:image" content="https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=240" />
<meta name="twitter:card" content="summary" />

<!-- End Jetpack Open Graph Tags -->
<link rel="shortcut icon" type="image/x-icon" href="https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=32" sizes="16x16" />
<link rel="icon" type="image/x-icon" href="https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=32" sizes="16x16" />
<link rel="apple-touch-icon" href="https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=114" />
<link rel='openid.server' href='https://naturalisticpaganism.org/?openidserver=1' />
<link rel='openid.delegate' href='https://naturalisticpaganism.org/' />
<link rel="search" type="application/opensearchdescription+xml" href="https://naturalisticpaganism.org/osd.xml" title="Naturalistic Paganism" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<meta name="theme-color" content="#ad9f96" />
		<style type="text/css">
			.recentcomments a {
				display: inline !important;
				padding: 0 !important;
				margin: 0 !important;
			}

			table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
				border: 0px;
				margin: 0;
			}

			table.recentcommentsavatartop a, table.recentcommentsavatarend a {
				border: 0px !important;
				background-color: transparent !important;
			}

			td.recentcommentsavatarend, td.recentcommentsavatartop {
				padding: 0px 0px 1px 0px;
				margin: 0px;
			}

			td.recentcommentstextend {
				border: none !important;
				padding: 0px 0px 2px 10px;
			}

			.rtl td.recentcommentstextend {
				padding: 0px 10px 2px 0px;
			}

			td.recentcommentstexttop {
				border: none;
				padding: 0px 0px 0px 10px;
			}

			.rtl td.recentcommentstexttop {
				padding: 0px 10px 0px 0px;
			}
		</style>
		<meta name="description" content="A community of Naturalistic &amp; Humanistic Pagans" />
	<style type="text/css" id="organization-header-css">
			.site-header {
			background: url(https://naturalisticpaganism.org/wp-content/uploads/2014/12/cropped-outer_space_earth_edit2.jpg) no-repeat scroll top;
			background-size: 1600px auto;
		}
		</style>
<style id="custom-background-css">
body.custom-background { background-color: #ad9f96; }
</style>
<style type="text/css" id="custom-colors-css">.site-title a,.home-news h1,.home-news h2,.home-news h3,.home-news h4,.home-news h5,.home-news h6,.home-news h1 a,.home-news h2 a,.home-news h3 a,.home-news h4 a,.home-news h5 a,.home-news h6 a,.home-news h1 a:link,.home-news h2 a:link,.home-news h3 a:link,.home-news h4 a:link,.home-news h5 a:link,.home-news h6 a:link { color: #303030;}
.home-news { color: #303030;}
#header .site-description,.home-news .post-author,.container .home-news i { color: #303030;}
#footer, #footer a, #footer a:link { color: #FFFFFF;}
#slideshow .information p { color: #D1D1D1;}
#slideshow .information .headline a { color: #FFFFFF;}
body { background-color: #ad9f96;}
.home-news a,.home-news a:link { color: #2A3145;}
.home-news h1 a:hover,.home-news h2 a:hover,.home-news h3 a:hover,.home-news h4 a:hover,.home-news h5 a:hover,.home-news h6 a:hover { color: #2A3145;}
a,a:link { color: #5C6E93;}
.mobile-menu a { color: #FFFFFF;}
a:focus, a:hover, a:active { color: #A6B1C7;}
a:hover,h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover { color: #5C6E93;}
#navigation { background-color: #8795B4;}
.menu ul.sub-menu,.menu ul.children { background-color: #8795B4;}
.gallery a:hover { background-color: #8795B4;}
.widget ul.menu li a, .widget ul.menu li a:hover { color: #5C6E93;}
a.btn:hover,a.button:hover,.reply a:hover,#searchsubmit:hover,#prevLink a:hover,#nextLink a:hover,.more-link:hover,#submit:hover,#comments #respond input#submit:hover,form input[type="submit"]:hover { background-color: #8795B4;}
#slideshow .holder { background-color: #1a1210;}
#slideshow .holder { background-color: rgba( 26, 18, 16, 0.7 );}
#footer { background-color: #726d73;}
.social-icons a { background-color: #817B83;}
.social-icons a:hover { background-color: #99959C;}
</style>
			<link rel="stylesheet" id="custom-css-css" type="text/css" href="https://s2.wp.com/?custom-css=1&#038;csblog=1rbvT&#038;cscache=6&#038;csrev=34" />
			</head>

<body class="home wp-singular page-template page-template-template-home page-template-template-home-php page page-id-9457 custom-background wp-theme-premiumorganization customizer-styles-applied organization-singular organization-right-sidebar organization-sidebar-inactive no-featured-image organization-relative-text jetpack-reblog-enabled custom-colors">

<!-- BEGIN #wrap -->
<div id="wrap">

	<!-- BEGIN #header -->
	<div id="header">

		<!-- BEGIN .row -->
		<div class="row">

			<div class="site-info">

				<!-- BEGIN .logo -->
				<div class="logo">

											<h1 id="custom-header"><a href="https://naturalisticpaganism.org/"><img src="https://humanisticpaganism.files.wordpress.com/2020/09/new-header.png?w=720&#038;h=120&#038;crop=1" alt="Naturalistic Paganism" />Naturalistic Paganism</a></h1>
					
				<!-- END .logo -->
				</div>

				<div class="header-search">
					<form method="get" id="searchform" action="https://naturalisticpaganism.org/">
						<input type="search" class="search-field" placeholder="Search Here" value="" name="s" title="Search for:">
						<input type="submit" id="searchsubmit" value='Go' />
					</form>
				</div>

			</div>

		<!-- END .row -->
		</div>

		<!-- BEGIN .row -->
		<div class="row">

			<!-- BEGIN #navigation -->
			<nav id="navigation" class="navigation-main" role="navigation">

				<h1 class="menu-toggle">Menu</h1>

				<div class="menu-container"><ul id="menu-header-menu" class="menu"><li id="menu-item-9497" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9497"><a href="http://humanisticpaganism.com/blog/">THE BLOG</a></li>
<li id="menu-item-11447" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-11447"><a href="https://naturalisticpaganism.org/what-is-humanistic-paganism/">What is Naturalistic Paganism?</a>
<ul class="sub-menu">
	<li id="menu-item-11440" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11440"><a href="https://naturalisticpaganism.org/humanistic-paganism/">Naturalistic Paganism</a></li>
	<li id="menu-item-9472" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9472"><a href="http://humanisticpaganism.com/religious-naturalism/">Naturalism</a></li>
	<li id="menu-item-9478" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9478"><a href="http://humanisticpaganism.com/religious-humanism/">Humanism</a></li>
	<li id="menu-item-9474" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9474"><a href="http://humanisticpaganism.com/paganism/">Paganism</a></li>
	<li id="menu-item-11459" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11459"><a href="https://naturalisticpaganism.org/religious-naturalism-and-nature-religion/">Paganism and Naturalism</a></li>
</ul>
</li>
<li id="menu-item-9477" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9477"><a href="https://naturalisticpaganism.org/getting-started/">How to Get Started</a></li>
<li id="menu-item-20402" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20402"><a href="https://naturalisticpaganism.org/naturalistic-pagan-practice-hub/">Practices Hub</a></li>
<li id="menu-item-11448" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-11448"><a href="https://naturalisticpaganism.org/elements-of-humanistic-paganism/">Elements of Naturalistic Paganism</a>
<ul class="sub-menu">
	<li id="menu-item-11452" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11452"><a href="https://naturalisticpaganism.org/science/">Science</a></li>
	<li id="menu-item-9479" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9479"><a href="http://humanisticpaganism.com/myth/">Myth</a></li>
	<li id="menu-item-9475" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9475"><a href="http://humanisticpaganism.com/ritual/">Ritual</a></li>
	<li id="menu-item-9473" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9473"><a href="http://humanisticpaganism.com/deity/">Deity?</a></li>
	<li id="menu-item-9476" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9476"><a href="http://humanisticpaganism.com/transcendence/">Transcendence</a></li>
	<li id="menu-item-11461" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11461"><a href="https://naturalisticpaganism.org/a-naturalistic-creed/">A Naturalistic Creed</a></li>
</ul>
</li>
<li id="menu-item-9685" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-9685"><a href="https://naturalisticpaganism.org/voices/">Meet our People</a>
<ul class="sub-menu">
	<li id="menu-item-11520" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11520"><a href="https://naturalisticpaganism.org/supporters/">Our Supporters</a></li>
	<li id="menu-item-9683" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9683"><a href="https://naturalisticpaganism.org/columnists/">Columnists</a></li>
	<li id="menu-item-9684" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9684"><a href="https://naturalisticpaganism.org/contributors-2/">Contributors</a></li>
	<li id="menu-item-9687" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9687"><a href="https://naturalisticpaganism.org/editor/">Staff</a></li>
	<li id="menu-item-9686" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9686"><a href="http://humanisticpaganism.com/contact/">Contact the Editor</a></li>
</ul>
</li>
<li id="menu-item-11451" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11451"><a href="http://humanisticpaganism.com">HOME</a></li>
</ul></div>
				<span class="corner-left"></span>
				<span class="corner-right"></span>

			</nav><!-- END #navigation -->

		<!-- END .row -->
		</div>

	<!-- END #header -->
	</div>

<!-- BEGIN .container -->
<div class="container home">

	<!-- BEGIN .row -->
	<div class="row">

		<!-- BEGIN .twelve columns -->
		<div class="twelve columns">

			
	<!-- BEGIN #slideshow -->
	<div id="slideshow">

		<!-- BEGIN .flexslider -->
		<div class="flexslider loading">

			<div class="preloader"></div>

			<!-- BEGIN .slides -->
			<ul class="slides">
																		<li class="post-15408 post type-post status-publish format-standard has-post-thumbnail hentry category-emotion-themes category-emotion category-experience category-jon-cleland-host category-latest-posts category-naturalistic-pagan category-practice category-practice-categories-themes category-starstuff-contemplating">
													<a class="feature-img" href="https://naturalisticpaganism.org/2017/08/28/eclipse-afterglow-aftershadow-stardust-contemplating/" rel="bookmark" title="Permalink to Eclipse Afterglow (aftershadow?) [Stardust,&nbsp;Contemplating]">
								<img width="980" height="501" src="https://naturalisticpaganism.org/wp-content/uploads/2017/08/eclipse-88.png?w=980&amp;h=501&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2017/08/eclipse-88.png 980w, https://naturalisticpaganism.org/wp-content/uploads/2017/08/eclipse-88.png?w=150&amp;h=77&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2017/08/eclipse-88.png?w=300&amp;h=153&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2017/08/eclipse-88.png?w=768&amp;h=393&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="15481" data-permalink="https://naturalisticpaganism.org/2017/08/28/eclipse-afterglow-aftershadow-stardust-contemplating/eclipse-88/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2017/08/eclipse-88.png" data-orig-size="980,501" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Eclipse 88" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2017/08/eclipse-88.png?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2017/08/28/eclipse-afterglow-aftershadow-stardust-contemplating/" rel="bookmark">Eclipse Afterglow (aftershadow?) [Stardust,&nbsp;Contemplating]</a></h2>
									<p>All of this shows me yet again how wonderful, how astounding, and how incredibly powerful our real world is.  These deep wells of spirituality don&#8217;t need any supernatural belief, no otherworldly woo.  It&#8217;s all right here, all stunning, and all (most of all) undeniably *real*.  </p>
								</div>
							</div>
																		</li>
														<li class="post-12245 post type-post status-publish format-standard hentry category-announcements">
													<a class="feature-img" href="https://naturalisticpaganism.org/2015/10/27/godless-paganism-voices-of-non-theistic-pagans/" rel="bookmark" title="Permalink to Godless Paganism: Voices of Non-Theistic&nbsp;Pagans">
								<img src="https://s2.wp.com/wp-content/themes/premium/organization/images/default-slide.jpg?m=1391150308i" title="Default Image" alt="Default Image" />
							</a>
							<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2015/10/27/godless-paganism-voices-of-non-theistic-pagans/" rel="bookmark">Godless Paganism: Voices of Non-Theistic&nbsp;Pagans</a></h2>
									<p>Godless Paganism: Voices of Non-Theistic Pagans will be the first ever anthology of writing by and about non-theistic Pagans.  The goal of the anthology is to educate others in the Pagan community about both the diversity and the depth of non-theistic Pagan practice.</p>
								</div>
							</div>
											</li>
														<li class="post-11167 post type-post status-publish format-standard has-post-thumbnail hentry category-latest-posts category-ritual category-shauna-aura-knight">
													<a class="feature-img" href="https://naturalisticpaganism.org/2015/06/11/i-dont-believe-in-purification-by-shauna-aura-knight/" rel="bookmark" title="Permalink to &#8220;I Don’t Believe in Purification&#8221; by Shauna Aura&nbsp;Knight">
								<img width="980" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2015/06/balinesehindusgatherperformpurificationigy-7n-uudkl2.jpg?w=980&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2015/06/balinesehindusgatherperformpurificationigy-7n-uudkl2.jpg 980w, https://naturalisticpaganism.org/wp-content/uploads/2015/06/balinesehindusgatherperformpurificationigy-7n-uudkl2.jpg?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2015/06/balinesehindusgatherperformpurificationigy-7n-uudkl2.jpg?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2015/06/balinesehindusgatherperformpurificationigy-7n-uudkl2.jpg?w=768&amp;h=408&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="11414" data-permalink="https://naturalisticpaganism.org/2015/06/11/i-dont-believe-in-purification-by-shauna-aura-knight/balinesehindusgatherperformpurificationigy-7n-uudkl-3/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2015/06/balinesehindusgatherperformpurificationigy-7n-uudkl2.jpg" data-orig-size="980,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="balinesehindusgatherperformpurificationigy-7n-uudkl" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2015/06/balinesehindusgatherperformpurificationigy-7n-uudkl2.jpg?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2015/06/11/i-dont-believe-in-purification-by-shauna-aura-knight/" rel="bookmark">&#8220;I Don’t Believe in Purification&#8221; by Shauna Aura&nbsp;Knight</a></h2>
									<p> If there is one thing about my own spiritual calling that is the most inspiring to me, it’s that moment when someone goes deep and awakens. When we are singing together in a ritual and I see them crack open, I see them connect to that something larger, touch their fingertips to that mystery they are seeking.</p>
								</div>
							</div>
																		</li>
														<li class="post-10817 post type-post status-publish format-standard has-post-thumbnail hentry category-adrian-harris category-latest-posts category-naturestoicism">
													<a class="feature-img" href="https://naturalisticpaganism.org/2015/04/28/sacred-ecology-with-a-new-introduction-by-adrian-harris/" rel="bookmark" title="Permalink to &#8220;Sacred Ecology&#8221; (with a new introduction) by Dr. Adrian&nbsp;Harris">
								<img width="980" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2015/04/ta-prohm-1edit.jpg?w=980&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2015/04/ta-prohm-1edit.jpg 980w, https://naturalisticpaganism.org/wp-content/uploads/2015/04/ta-prohm-1edit.jpg?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2015/04/ta-prohm-1edit.jpg?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2015/04/ta-prohm-1edit.jpg?w=768&amp;h=408&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="11411" data-permalink="https://naturalisticpaganism.org/2015/04/28/sacred-ecology-with-a-new-introduction-by-adrian-harris/ta-prohm-1edit/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2015/04/ta-prohm-1edit.jpg" data-orig-size="980,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="ta-prohm-1edit" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2015/04/ta-prohm-1edit.jpg?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2015/04/28/sacred-ecology-with-a-new-introduction-by-adrian-harris/" rel="bookmark">&#8220;Sacred Ecology&#8221; (with a new introduction) by Dr. Adrian&nbsp;Harris</a></h2>
									<p>What is required is another way of knowing, a Sacred Ecology that moves beyond the cerebral to bring us to a direct experience of a wholeness rooted in the body.</p>
								</div>
							</div>
																		</li>
														<li class="post-10426 post type-post status-publish format-standard has-post-thumbnail hentry category-de-natura-deorum category-latest-posts category-naturestoicism">
													<a class="feature-img" href="https://naturalisticpaganism.org/2015/04/02/de-natura-deorum-the-forgotten-gods-of-nature-by-lupa-greenwolf/" rel="bookmark" title="Permalink to &#8220;The Forgotten Gods of Nature&#8221; by Lupa&nbsp;Greenwolf">
								<img width="981" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2015/04/view_of_loch_lomondedit.jpg?w=981&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2015/04/view_of_loch_lomondedit.jpg 981w, https://naturalisticpaganism.org/wp-content/uploads/2015/04/view_of_loch_lomondedit.jpg?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2015/04/view_of_loch_lomondedit.jpg?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2015/04/view_of_loch_lomondedit.jpg?w=768&amp;h=407&amp;crop=1 768w" sizes="(max-width: 981px) 100vw, 981px" data-attachment-id="11410" data-permalink="https://naturalisticpaganism.org/2015/04/02/de-natura-deorum-the-forgotten-gods-of-nature-by-lupa-greenwolf/view_of_loch_lomondedit/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2015/04/view_of_loch_lomondedit.jpg" data-orig-size="981,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;DSC-P200&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1134777373&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;7.9&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.0015625&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="view_of_loch_lomondedit" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2015/04/view_of_loch_lomondedit.jpg?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2015/04/02/de-natura-deorum-the-forgotten-gods-of-nature-by-lupa-greenwolf/" rel="bookmark">&#8220;The Forgotten Gods of Nature&#8221; by Lupa&nbsp;Greenwolf</a></h2>
									<p>When we think of the gods of nature, we almost always anthropomorphize them. But what of nature deities that have never, and will never, take human form? Who are the gods of the salmon and the slime molds, of pine trees and fig wasps? </p>
								</div>
							</div>
																		</li>
														<li class="post-8962 post type-post status-publish format-standard has-post-thumbnail hentry category-anna-walther category-nature">
													<a class="feature-img" href="https://naturalisticpaganism.org/2014/11/30/four-devotional-practices-for-naturalistic-pagans-by-anna-walther/" rel="bookmark" title="Permalink to &#8220;Four Devotional Practices for Naturalistic Pagans&#8221; by Anna&nbsp;Walther">
								<img width="980" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2014/11/dsc06407edit.png?w=980&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/11/dsc06407edit.png 980w, https://naturalisticpaganism.org/wp-content/uploads/2014/11/dsc06407edit.png?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/11/dsc06407edit.png?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2014/11/dsc06407edit.png?w=768&amp;h=408&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="9659" data-permalink="https://naturalisticpaganism.org/2014/11/30/four-devotional-practices-for-naturalistic-pagans-by-anna-walther/dsc06407edit/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/11/dsc06407edit.png" data-orig-size="980,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="dsc06407edit" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/11/dsc06407edit.png?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2014/11/30/four-devotional-practices-for-naturalistic-pagans-by-anna-walther/" rel="bookmark">&#8220;Four Devotional Practices for Naturalistic Pagans&#8221; by Anna&nbsp;Walther</a></h2>
									<p>In my place-based, Naturalistic Paganism, I relate most often to nature powers. Humans around the world share the old, great powers: the abundance of the Earth, the strength and direction of the Wind, the Sun’s relentless fire. Other powers are younger and local: the bluebonnets that push up through the soil each spring, Central Texas’s many limestone creeks and springs, and even the water that flows through the tap of my own kitchen sink. I am always in relationship with these powers, whether I will it or not. My goal as a Pagan is to cultivate mindful relationships with these nature powers. I do not believe that the springs in any sense needed or wanted my offering, but I was different for having made it.</p>
								</div>
							</div>
																		</li>
														<li class="post-8677 post type-post status-publish format-standard has-post-thumbnail hentry category-atheism category-mark-green category-paganism category-religion">
													<a class="feature-img" href="https://naturalisticpaganism.org/2014/08/10/atheopaganism-an-earth-centered-religion-without-supernatural-credulity-by-mark-green/" rel="bookmark" title="Permalink to &#8220;Atheopaganism: An Earth-Centered Religion without Supernatural Credulity&#8221; by Mark&nbsp;Green">
								<img width="980" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2014/08/godless1.jpg?w=980&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/08/godless1.jpg 980w, https://naturalisticpaganism.org/wp-content/uploads/2014/08/godless1.jpg?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/08/godless1.jpg?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2014/08/godless1.jpg?w=768&amp;h=408&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="11412" data-permalink="https://naturalisticpaganism.org/2014/08/10/atheopaganism-an-earth-centered-religion-without-supernatural-credulity-by-mark-green/godless1/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/08/godless1.jpg" data-orig-size="980,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="godless1" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/08/godless1.jpg?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2014/08/10/atheopaganism-an-earth-centered-religion-without-supernatural-credulity-by-mark-green/" rel="bookmark">&#8220;Atheopaganism: An Earth-Centered Religion without Supernatural Credulity&#8221; by Mark&nbsp;Green</a></h2>
									<p>Atheopaganism provides the fulfillment benefits of a traditional religion, yet is rooted in what is true and open to learning, change, and constant reconsideration of itself. While it does not make promises of eternal existence, a cosmically-determined plan or magical powers, it also does not ask us to sacrifice the unique and marvelous capacities of our cognitive minds in the name of living with a pretty story.</p>
								</div>
							</div>
																		</li>
														<li class="post-8107 post type-post status-publish format-standard has-post-thumbnail hentry category-big-history category-crafter-yearly category-deity category-intellect category-science">
													<a class="feature-img" href="https://naturalisticpaganism.org/2014/07/23/godlessness-and-the-sacred-universe-by-crafter-yearly/" rel="bookmark" title="Permalink to &#8220;Godlessness and the Sacred Universe&#8221; by Crafter&nbsp;Yearly">
								<img width="980" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2014/07/bunglesmilkyway-1920x1080-mikesalwayedit.png?w=980&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/07/bunglesmilkyway-1920x1080-mikesalwayedit.png 980w, https://naturalisticpaganism.org/wp-content/uploads/2014/07/bunglesmilkyway-1920x1080-mikesalwayedit.png?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/07/bunglesmilkyway-1920x1080-mikesalwayedit.png?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2014/07/bunglesmilkyway-1920x1080-mikesalwayedit.png?w=768&amp;h=408&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="9697" data-permalink="https://naturalisticpaganism.org/2014/07/23/godlessness-and-the-sacred-universe-by-crafter-yearly/bunglesmilkyway-1920x1080-mikesalwayedit/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/07/bunglesmilkyway-1920x1080-mikesalwayedit.png" data-orig-size="980,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="BunglesMilkyWay-1920&amp;#215;1080-MikeSalwayedit" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/07/bunglesmilkyway-1920x1080-mikesalwayedit.png?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2014/07/23/godlessness-and-the-sacred-universe-by-crafter-yearly/" rel="bookmark">&#8220;Godlessness and the Sacred Universe&#8221; by Crafter&nbsp;Yearly</a></h2>
									<p>My experience of the divine is not grounded in some external personality or authority. But the values I came to hold in Pagan community and the energy states I experienced in Pagan practice thoroughly pervade my spiritual experiences. In their eclectic circle, I learned reverence for the earth, the interconnectedness of all beings, a deep love and for the wisdom and beauty of the life cycle—of birth, growth, death, and decay. In circle and in meditations guided by my mentor, I felt the warm peace and ecstasy that comes from the experience of union with the universe. I may have given up on finding the goddesses and gods. But I have reclaimed and rediscovered those values and experiences that I think most importantly capture the spirit of Paganism through a naturalistic, Earth-based practice.</p>
								</div>
							</div>
																		</li>
														<li class="post-4327 post type-post status-publish format-standard has-post-thumbnail hentry category-jon-cleland-host category-order-and-structure category-starstuff-contemplating">
													<a class="feature-img" href="https://naturalisticpaganism.org/2014/03/12/starstuff-contemplating-by-jon-cleland-host-a-naturalistic-credo/" rel="bookmark" title="Permalink to &#8220;A Naturalistic Credo&#8221; by Jon Cleland&nbsp;Host">
								<img width="980" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2014/03/imadugyedit2.png?w=980&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/03/imadugyedit2.png 980w, https://naturalisticpaganism.org/wp-content/uploads/2014/03/imadugyedit2.png?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/03/imadugyedit2.png?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2014/03/imadugyedit2.png?w=768&amp;h=408&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="9691" data-permalink="https://naturalisticpaganism.org/2014/03/12/starstuff-contemplating-by-jon-cleland-host-a-naturalistic-credo/imadugyedit2/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/03/imadugyedit2.png" data-orig-size="980,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="ImaDugYedit2" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/03/imadugyedit2.png?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2014/03/12/starstuff-contemplating-by-jon-cleland-host-a-naturalistic-credo/" rel="bookmark">&#8220;A Naturalistic Credo&#8221; by Jon Cleland&nbsp;Host</a></h2>
									<p>Evolution gives my life incredible meaning and purpose.  I marvel at my family tree, which goes back though innumerable life forms, through amazing stories of survival, hope, courage, and parental love.  It includes the tiny mammal, surviving through the freezing, yearlong darkness after the asteroid impact by eating, and likely hiding in, a frozen dinosaur carcass.  It includes the first mother to produce milk, and the first blurry view through a newly evolved eye.  I’ve grown from a long line of survivors &#8212; noble creatures of every sort, who conquered deadly challenges billions of times over.  What other origin could possibly give my life more meaning?</p>
								</div>
							</div>
																		</li>
														<li class="post-3926 post type-post status-publish format-standard has-post-thumbnail hentry category-atheism tag-archetypes tag-atheism tag-atheist-pagan tag-belief tag-existence tag-gods tag-meaning tag-ontology tag-paganism tag-symbols tag-theism">
													<a class="feature-img" href="https://naturalisticpaganism.org/2013/12/25/yes-virginia-im-a-pagan-atheist/" rel="bookmark" title="Permalink to Yes, Virginia, I&#8217;m a Pagan Atheist, by Jeffrey&nbsp;Flagg">
								<img width="980" height="518" src="https://naturalisticpaganism.org/wp-content/uploads/2013/12/4pew0wi.jpg?w=980&amp;h=518&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2013/12/4pew0wi.jpg 980w, https://naturalisticpaganism.org/wp-content/uploads/2013/12/4pew0wi.jpg?w=150&amp;h=79&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2013/12/4pew0wi.jpg?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2013/12/4pew0wi.jpg?w=768&amp;h=406&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="9626" data-permalink="https://naturalisticpaganism.org/2013/12/25/yes-virginia-im-a-pagan-atheist/4pew0wi/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2013/12/4pew0wi.jpg" data-orig-size="980,518" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="4PEw0WI" data-image-description="&lt;p&gt;Advertisement for the Freedom from Religion Foundation&lt;/p&gt;
" data-image-caption="&lt;p&gt;Advertisement for the Freedom from Religion Foundation&lt;/p&gt;
" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2013/12/4pew0wi.jpg?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2013/12/25/yes-virginia-im-a-pagan-atheist/" rel="bookmark">Yes, Virginia, I&#8217;m a Pagan Atheist, by Jeffrey&nbsp;Flagg</a></h2>
									<p>All of this is to say that I find the question of the gods being “real,” and indeed discussions of their ontological nature in general, somewhat silly.  It doesn’t matter if they’re “real” if they’re meaningful.  So, yes, I am an atheist because I don’t believe in the existence of a deity.  I’m also, however, a Pagan, because I have a personal relationship to the same things that Pagans have relationships to.  Once you get past the word games of ontology, being an atheist Pagan isn’t so silly after all.</p>
								</div>
							</div>
																		</li>
														<li class="post-5650 post type-post status-publish format-standard has-post-thumbnail hentry category-aine-orga tag-atheist-pagan tag-naturalistic-paganism tag-science-and-god tag-science-and-myth tag-science-and-religion">
													<a class="feature-img" href="https://naturalisticpaganism.org/2013/07/21/emotional-pantheism-where-the-logic-ends-and-the-feelings-start-by-aine-orga/" rel="bookmark" title="Permalink to Emotional Pantheism: Where the logic ends and the feelings start, by Áine&nbsp;Órga">
								<img width="980" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2013/07/stone20edit.png?w=980&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2013/07/stone20edit.png 980w, https://naturalisticpaganism.org/wp-content/uploads/2013/07/stone20edit.png?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2013/07/stone20edit.png?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2013/07/stone20edit.png?w=768&amp;h=408&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="9671" data-permalink="https://naturalisticpaganism.org/2013/07/21/emotional-pantheism-where-the-logic-ends-and-the-feelings-start-by-aine-orga/stone20edit/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2013/07/stone20edit.png" data-orig-size="980,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="stone20edit" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2013/07/stone20edit.png?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2013/07/21/emotional-pantheism-where-the-logic-ends-and-the-feelings-start-by-aine-orga/" rel="bookmark">Emotional Pantheism: Where the logic ends and the feelings start, by Áine&nbsp;Órga</a></h2>
									<p>I don’t take many leaps of faith intellectually, everything is based in reason. In this way I am a naturalistic Pagan. Where I do take those leaps of faith is in the emotional sphere. By engaging in this spiritual practice, I open myself up to experiencing things beyond the mundane. In many ways, it is in exercise in allowing myself to feel without judgement. My spirituality is my way of allowing my pantheism a space in my life.</p>
								</div>
							</div>
																		</li>
														<li class="post-4554 post type-post status-publish format-standard has-post-thumbnail hentry category-atheism category-stifyn-emrys tag-atheism tag-atheist-pagan tag-naturalistic-paganism tag-paganism">
													<a class="feature-img" href="https://naturalisticpaganism.org/2013/03/03/pagan-atheists-yes-we-exist-by-stifyn-emrys/" rel="bookmark" title="Permalink to Pagan Atheists: Yes, we exist, by Stifyn&nbsp;Emrys">
								<img width="980" height="520" src="https://naturalisticpaganism.org/wp-content/uploads/2013/03/paganatheist3.png?w=980&amp;h=520&amp;crop=1" class="attachment-organization-featured-large size-organization-featured-large wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2013/03/paganatheist3.png 980w, https://naturalisticpaganism.org/wp-content/uploads/2013/03/paganatheist3.png?w=150&amp;h=80&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2013/03/paganatheist3.png?w=300&amp;h=159&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2013/03/paganatheist3.png?w=768&amp;h=408&amp;crop=1 768w" sizes="(max-width: 980px) 100vw, 980px" data-attachment-id="9694" data-permalink="https://naturalisticpaganism.org/2013/03/03/pagan-atheists-yes-we-exist-by-stifyn-emrys/paganatheist3-2/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2013/03/paganatheist3.png" data-orig-size="980,520" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="paganatheist3" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2013/03/paganatheist3.png?w=604" />							</a>
														<div class="holder">
								<div class="information">
									<h2 class="headline"><a href="https://naturalisticpaganism.org/2013/03/03/pagan-atheists-yes-we-exist-by-stifyn-emrys/" rel="bookmark">Pagan Atheists: Yes, we exist, by Stifyn&nbsp;Emrys</a></h2>
									<p>Carl Sagan, an agnostic who made a career of exploring &#8211; and marveling at &#8211; the wonders of the universe. His philosophy was that no concept of a creator or overseer could possibly match the awe-inspiring grandeur of nature itself.  This is the way the Pagan atheist views the world, and the universe at large. It’s not some dry, clinical and bitter philosophy. It’s a vibrant, dynamic view of life and the environment that births and sustains it. </p>
								</div>
							</div>
																		</li>
								
			<!-- END .slides -->
			</ul>

		<!-- END .flexslider -->
		</div>

	<!-- END #slideshow -->
	</div>


		<!-- END .twelve columns -->
		</div>

	<!-- END .row -->
	</div>

	
	<!-- BEGIN .row -->
	<div class="row">

		<!-- BEGIN .homepage top -->
		<div class="homepage top">

			<!-- BEGIN .home-pages -->
			<div class="home-pages">

									<div class="holder first">
						<div class="information">
	
			<a class="feature-img" href="https://naturalisticpaganism.org/religious-naturalism/" rel="bookmark" title="Religious Naturalism"><img width="1200" height="800" src="https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=1200&amp;h=800&amp;crop=1" class="attachment-organization-featured-medium size-organization-featured-medium wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=1200&amp;h=800&amp;crop=1 1200w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=2400&amp;h=1600&amp;crop=1 2400w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=150&amp;h=100&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=300&amp;h=200&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=768&amp;h=512&amp;crop=1 768w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=1024&amp;h=683&amp;crop=1 1024w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=1440&amp;h=960&amp;crop=1 1440w" sizes="(max-width: 1200px) 100vw, 1200px" data-attachment-id="9556" data-permalink="https://naturalisticpaganism.org/religious-humanism/b7jvakw/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg" data-orig-size="2560,1600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="b7jVaKW" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/b7jvakw.jpg?w=604" /></a>
	
	<div class="text-holder">
		<h2 class="title text-center">Religious Naturalism</h2>
		<p>Naturalistic Paganism is a form of Religious or Spiritual Naturalism. A &#8220;naturalistic&#8221; religion or spirituality is one which seeks to explain the universe without resort to supernatural causes. For most Naturalistic Pagans, “naturalistic” is more or less synonymous with “scientific.&#8221;&#8230;</p>
	</div>
	
	<div class="btn-holder align-center text-center">
		<a class="btn" href="https://naturalisticpaganism.org/religious-naturalism/" rel="bookmark" title="Religious Naturalism">Learn More</a>
	</div>

</div>					</div>
				
									<div class="holder middle">
						<div class="information">
	
			<a class="feature-img" href="https://naturalisticpaganism.org/paganism/" rel="bookmark" title="Paganism"><img width="670" height="667" src="https://naturalisticpaganism.org/wp-content/uploads/2014/12/ptidrqf.jpg?w=670&amp;h=667&amp;crop=1" class="attachment-organization-featured-medium size-organization-featured-medium wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/12/ptidrqf.jpg 670w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/ptidrqf.jpg?w=150&amp;h=150&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/ptidrqf.jpg?w=300&amp;h=300&amp;crop=1 300w" sizes="(max-width: 670px) 100vw, 670px" data-attachment-id="9555" data-permalink="https://naturalisticpaganism.org/religious-humanism/ptidrqf/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/ptidrqf.jpg" data-orig-size="670,667" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="PTIdrQF" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/ptidrqf.jpg?w=604" /></a>
	
	<div class="text-holder">
		<h2 class="title text-center">Paganism</h2>
		<p>Contemporary Paganism is a general term for a variety of related religious movements which began in the United States in the 1960′s, with literary roots going back to the mid-19th century Europe, as attempts to revive what their founders thought were the&#8230;</p>
	</div>
	
	<div class="btn-holder align-center text-center">
		<a class="btn" href="https://naturalisticpaganism.org/paganism/" rel="bookmark" title="Paganism">Learn More</a>
	</div>

</div>					</div>
				
									<div class="holder last">
						<div class="information">
	
			<a class="feature-img" href="https://naturalisticpaganism.org/religious-humanism/" rel="bookmark" title="Religious Humanism"><img width="744" height="495" src="https://naturalisticpaganism.org/wp-content/uploads/2014/12/humanismearth.png?w=744&amp;h=495&amp;crop=1" class="attachment-organization-featured-medium size-organization-featured-medium wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/12/humanismearth.png 744w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/humanismearth.png?w=150&amp;h=100&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/humanismearth.png?w=300&amp;h=200&amp;crop=1 300w" sizes="(max-width: 744px) 100vw, 744px" data-attachment-id="9562" data-permalink="https://naturalisticpaganism.org/religious-humanism/humanismearth/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/humanismearth.png" data-orig-size="744,495" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="humanismearth" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/humanismearth.png?w=604" /></a>
	
	<div class="text-holder">
		<h2 class="title text-center">Religious Humanism</h2>
		<p>This site was previously named HumanisticPaganism.com and was changed in 2020 to NaturalisticPaganism.org. Naturalistic Paganism is a form of Religious or Spiritual Humanism. Religious Humanism includes any religion that takes a human-centered ethical perspective, as contrasted with a deity-centered ethical perspective. A&#8230;</p>
	</div>
	
	<div class="btn-holder align-center text-center">
		<a class="btn" href="https://naturalisticpaganism.org/religious-humanism/" rel="bookmark" title="Religious Humanism">Learn More</a>
	</div>

</div>					</div>
				
			<!-- END .home-pages -->
			</div>

		<!-- END .homepage top -->
		</div>

	<!-- END .row -->
	</div>

	
	
		
	<!-- BEGIN .row -->
	<div class="row">

		<!-- BEGIN .homepage bottom -->
		<div class="homepage bottom">

			
			<!-- BEGIN .six columns -->
			<div class="six columns">

				<!-- BEGIN .home-news -->
				<div class="home-news">

					

	<h4 class="headline">Latest Posts</h4>

			
	<!-- BEGIN .row -->
	<div class="row">

	
		<!-- BEGIN .three columns -->
		<div class="three columns">

			<a class="feature-img" href="https://naturalisticpaganism.org/2026/05/23/how-can-you-escape-from-an-abusive-religion-such-as-many-types-of-christianity-part-1-john-becketts-steps/" rel="bookmark" title="Permalink to How can you Escape from an Abusive Religion, such as many types of Christianity?  Part 1 &#8211; John Beckett&#8217;s&nbsp;Steps"><img width="480" height="480" src="https://naturalisticpaganism.org/wp-content/uploads/2026/05/atheism-2000.jpg?w=480&amp;h=480&amp;crop=1" class="attachment-organization-featured-small size-organization-featured-small wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2026/05/atheism-2000.jpg 480w, https://naturalisticpaganism.org/wp-content/uploads/2026/05/atheism-2000.jpg?w=150&amp;h=150&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2026/05/atheism-2000.jpg?w=300&amp;h=300&amp;crop=1 300w" sizes="(max-width: 480px) 100vw, 480px" data-attachment-id="26221" data-permalink="https://naturalisticpaganism.org/2026/05/23/how-can-you-escape-from-an-abusive-religion-such-as-many-types-of-christianity-part-1-john-becketts-steps/atheism-2000/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2026/05/atheism-2000.jpg" data-orig-size="480,480" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="atheism 2000" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2026/05/atheism-2000.jpg?w=480" /></a>

		<!-- END .three columns -->
		</div>

		<!-- BEGIN .nine columns -->
		<div class="nine columns">

			<h2 class="title"><a href="https://naturalisticpaganism.org/2026/05/23/how-can-you-escape-from-an-abusive-religion-such-as-many-types-of-christianity-part-1-john-becketts-steps/" rel="bookmark">How can you Escape from an Abusive Religion, such as many types of Christianity?  Part 1 &#8211; John Beckett&#8217;s&nbsp;Steps</a></h2>

			<div class="post-author">
				<p class="align-left"><i class="fa fa-clock-o"></i>&nbsp;&nbsp;<span class="posted-on">Posted on <a href="https://naturalisticpaganism.org/2026/05/23/how-can-you-escape-from-an-abusive-religion-such-as-many-types-of-christianity-part-1-john-becketts-steps/" title="5:03 pm" rel="bookmark"><time class="entry-date published" datetime="2026-05-23T17:03:09-05:00">May 23, 2026</time></a></span></p>
								<p class="align-right"><i class="fa fa-comment"></i>&nbsp;&nbsp;<a href="https://naturalisticpaganism.org/2026/05/23/how-can-you-escape-from-an-abusive-religion-such-as-many-types-of-christianity-part-1-john-becketts-steps/#comments">Leave a Comment</a></p>
							</div>

			<div class="entry-content">
				<p>For many of us, escaping a toxic religion has left scars that require a lot of healing, but we now have a richer, more honest life than before.  But plenty of people are still trapped.  Hopefully, the resources in this series of three blog posts can help them own their own lives.</p>
			</div>

		<!-- END .nine columns -->
		</div>

	
	<!-- END .row -->
	</div>

		
	<!-- BEGIN .row -->
	<div class="row">

	
		<!-- BEGIN .three columns -->
		<div class="three columns">

			<a class="feature-img" href="https://naturalisticpaganism.org/2026/05/05/a-detroit-automotive-insider-spills-the-tea-about-new-car-tech-presentation-by-jon-cleland-host-with-ebsat-on-monday-night-june-8th-8-pm-est/" rel="bookmark" title="Permalink to A Detroit Automotive Insider Spills the Tea about New Car Tech!  Presentation by Jon Cleland Host, with EBSAT, on Monday Night May 11th, 8 pm&nbsp;EST!"><img width="640" height="640" src="https://naturalisticpaganism.org/wp-content/uploads/2026/05/esbat-evs.jpg?w=640&amp;h=640&amp;crop=1" class="attachment-organization-featured-small size-organization-featured-small wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2026/05/esbat-evs.jpg?w=640&amp;h=640&amp;crop=1 640w, https://naturalisticpaganism.org/wp-content/uploads/2026/05/esbat-evs.jpg?w=150&amp;h=150&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2026/05/esbat-evs.jpg?w=300&amp;h=300&amp;crop=1 300w" sizes="(max-width: 640px) 100vw, 640px" data-attachment-id="26171" data-permalink="https://naturalisticpaganism.org/2026/05/05/a-detroit-automotive-insider-spills-the-tea-about-new-car-tech-presentation-by-jon-cleland-host-with-ebsat-on-monday-night-june-8th-8-pm-est/esbat-evs/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2026/05/esbat-evs.jpg" data-orig-size="953,645" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Jon&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1778006929&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="ESBAT EVs" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2026/05/esbat-evs.jpg?w=604" /></a>

		<!-- END .three columns -->
		</div>

		<!-- BEGIN .nine columns -->
		<div class="nine columns">

			<h2 class="title"><a href="https://naturalisticpaganism.org/2026/05/05/a-detroit-automotive-insider-spills-the-tea-about-new-car-tech-presentation-by-jon-cleland-host-with-ebsat-on-monday-night-june-8th-8-pm-est/" rel="bookmark">A Detroit Automotive Insider Spills the Tea about New Car Tech!  Presentation by Jon Cleland Host, with EBSAT, on Monday Night May 11th, 8 pm&nbsp;EST!</a></h2>

			<div class="post-author">
				<p class="align-left"><i class="fa fa-clock-o"></i>&nbsp;&nbsp;<span class="posted-on">Posted on <a href="https://naturalisticpaganism.org/2026/05/05/a-detroit-automotive-insider-spills-the-tea-about-new-car-tech-presentation-by-jon-cleland-host-with-ebsat-on-monday-night-june-8th-8-pm-est/" title="6:32 pm" rel="bookmark"><time class="entry-date published" datetime="2026-05-05T18:32:41-05:00">May 5, 2026</time></a></span></p>
								<p class="align-right"><i class="fa fa-comment"></i>&nbsp;&nbsp;<a href="https://naturalisticpaganism.org/2026/05/05/a-detroit-automotive-insider-spills-the-tea-about-new-car-tech-presentation-by-jon-cleland-host-with-ebsat-on-monday-night-june-8th-8-pm-est/#comments">Leave a Comment</a></p>
							</div>

			<div class="entry-content">
				<p>What new technologies are coming to cars?  Here&#8217;s a great talk on this subject, coming up soon!  Note that this is at 8 pm EST.</p>
			</div>

		<!-- END .nine columns -->
		</div>

	
	<!-- END .row -->
	</div>

		
	<!-- BEGIN .row -->
	<div class="row">

	
		<!-- BEGIN .three columns -->
		<div class="three columns">

			<a class="feature-img" href="https://naturalisticpaganism.org/2026/05/01/happy-spring-equitherm-beltane-6/" rel="bookmark" title="Permalink to Happy Spring Equitherm&nbsp;(Beltane)!"><img width="515" height="547" src="https://naturalisticpaganism.org/wp-content/uploads/2026/04/beltane-moon-fixed.jpg?w=515&amp;h=547&amp;crop=1" class="attachment-organization-featured-small size-organization-featured-small wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2026/04/beltane-moon-fixed.jpg 515w, https://naturalisticpaganism.org/wp-content/uploads/2026/04/beltane-moon-fixed.jpg?w=141&amp;h=150&amp;crop=1 141w, https://naturalisticpaganism.org/wp-content/uploads/2026/04/beltane-moon-fixed.jpg?w=282&amp;h=300&amp;crop=1 282w" sizes="(max-width: 515px) 100vw, 515px" data-attachment-id="26162" data-permalink="https://naturalisticpaganism.org/2026/05/01/happy-spring-equitherm-beltane-6/beltane-moon-fixed/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2026/04/beltane-moon-fixed.jpg" data-orig-size="515,547" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Jon&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1777583921&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Beltane moon fixed" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2026/04/beltane-moon-fixed.jpg?w=515" /></a>

		<!-- END .three columns -->
		</div>

		<!-- BEGIN .nine columns -->
		<div class="nine columns">

			<h2 class="title"><a href="https://naturalisticpaganism.org/2026/05/01/happy-spring-equitherm-beltane-6/" rel="bookmark">Happy Spring Equitherm&nbsp;(Beltane)!</a></h2>

			<div class="post-author">
				<p class="align-left"><i class="fa fa-clock-o"></i>&nbsp;&nbsp;<span class="posted-on">Posted on <a href="https://naturalisticpaganism.org/2026/05/01/happy-spring-equitherm-beltane-6/" title="8:15 am" rel="bookmark"><time class="entry-date published" datetime="2026-05-01T08:15:09-05:00">May 1, 2026</time></a></span></p>
								<p class="align-right"><i class="fa fa-comment"></i>&nbsp;&nbsp;<a href="https://naturalisticpaganism.org/2026/05/01/happy-spring-equitherm-beltane-6/#comments">Leave a Comment</a></p>
							</div>

			<div class="entry-content">
				<p>Attraction! Our world reawakens, and we see beauty around  us! </p>
			</div>

		<!-- END .nine columns -->
		</div>

	
	<!-- END .row -->
	</div>

		

				<!-- END .home-news -->
				</div>

			<!-- END .six columns -->
			</div>

			
			
			<!-- BEGIN .six columns -->
			<div class="six columns">

				<!-- BEGIN .home-tabs -->
				<div class="home-tabs">

					

	
	
	<ul id="tabs" data-num-tabs="three" >
		
				
			<li><a href="#tabs-1">Why do ritual?</a></li>

				
				
			<li><a href="#tabs-2">Religion without deity?</a></li>

				
				
			<li><a href="#tabs-3">Something bigger than&nbsp;ourselves?</a></li>

					</ul>

		
	
	<div id="tabs-1">

					<a class="feature-img" href="https://naturalisticpaganism.org/1066/10/14/ritual/" rel="bookmark"><img width="599" height="402" src="https://naturalisticpaganism.org/wp-content/uploads/2014/12/irap6w2.png?w=599&amp;h=402&amp;crop=1" class="attachment-organization-featured-medium size-organization-featured-medium wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/12/irap6w2.png 599w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/irap6w2.png?w=150&amp;h=101&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/irap6w2.png?w=300&amp;h=201&amp;crop=1 300w" sizes="(max-width: 599px) 100vw, 599px" data-attachment-id="9589" data-permalink="https://naturalisticpaganism.org/1066/10/14/ritual/irap6w2/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/irap6w2.png" data-orig-size="599,402" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="IrAP6W2" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/irap6w2.png?w=599" /></a>
		
		<div class="information">
			<h2 class="title"><a href="https://naturalisticpaganism.org/1066/10/14/ritual/" rel="bookmark">Why do ritual?</a></h2>
			<p>There is no single practice for Naturalistic Pagans. The religious practices of some Naturalistic Pagans may be outwardly indistinguishable from other Pagans, including prayers and offerings to “gods” and working &#8220;magic&#8221;, while other Naturalistic Pagans may not use theistic symbolism in ritual. Naturalistic Pagans&#8230;</p>
		</div>

		<a class="btn" href="https://naturalisticpaganism.org/1066/10/14/ritual/" rel="bookmark">Learn More</a>

	</div>

		
	<div id="tabs-2">

					<a class="feature-img" href="https://naturalisticpaganism.org/1066/10/14/deity/" rel="bookmark"><img width="500" height="257" src="https://naturalisticpaganism.org/wp-content/uploads/2014/12/ouwfaga.jpg?w=500&amp;h=257&amp;crop=1" class="attachment-organization-featured-medium size-organization-featured-medium wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/12/ouwfaga.jpg 500w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/ouwfaga.jpg?w=150&amp;h=77&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/ouwfaga.jpg?w=300&amp;h=154&amp;crop=1 300w" sizes="(max-width: 500px) 100vw, 500px" data-attachment-id="9591" data-permalink="https://naturalisticpaganism.org/1066/10/14/deity/ouwfaga/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/ouwfaga.jpg" data-orig-size="500,257" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="OUWfaGA" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/ouwfaga.jpg?w=500" /></a>
		
		<div class="information">
			<h2 class="title"><a href="https://naturalisticpaganism.org/1066/10/14/deity/" rel="bookmark">Religion without deity?</a></h2>
			<p>Naturalistic Pagans may be atheists, pantheists, or even animists. Not all Naturalistic Pagans use theistic language, but some do. The use of “god language” by non-theists can be confusing. Some feel that we should “say what we mean” and avoid&#8230;</p>
		</div>

		<a class="btn" href="https://naturalisticpaganism.org/1066/10/14/deity/" rel="bookmark">Learn More</a>

	</div>

		
	<div id="tabs-3">

					<a class="feature-img" href="https://naturalisticpaganism.org/1066/10/14/transcendence/" rel="bookmark"><img width="1200" height="800" src="https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=1200&amp;h=800&amp;crop=1" class="attachment-organization-featured-medium size-organization-featured-medium wp-post-image" alt="" decoding="async" srcset="https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=1200&amp;h=800&amp;crop=1 1200w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=2400&amp;h=1600&amp;crop=1 2400w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=150&amp;h=100&amp;crop=1 150w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=300&amp;h=200&amp;crop=1 300w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=768&amp;h=512&amp;crop=1 768w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=1024&amp;h=683&amp;crop=1 1024w, https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=1440&amp;h=960&amp;crop=1 1440w" sizes="(max-width: 1200px) 100vw, 1200px" data-attachment-id="9593" data-permalink="https://naturalisticpaganism.org/1066/10/14/transcendence/jmdx0qm/" data-orig-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg" data-orig-size="3840,1934" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="jMDx0qM" data-image-description="" data-image-caption="" data-large-file="https://naturalisticpaganism.org/wp-content/uploads/2014/12/jmdx0qm.jpg?w=604" /></a>
		
		<div class="information">
			<h2 class="title"><a href="https://naturalisticpaganism.org/1066/10/14/transcendence/" rel="bookmark">Something bigger than&nbsp;ourselves?</a></h2>
			<p>Many Naturalistic Pagans use ritual and meditative practices to connect to something greater than themselves. Theists and atheists alike may wonder how this is possible, since Naturalistic Pagans do not believe in deities or spirits. But there are other things&#8230;</p>
		</div>

		<a class="btn" href="https://naturalisticpaganism.org/1066/10/14/transcendence/" rel="bookmark">Learn More</a>

	</div>

		

				<!-- END .home-tabs -->
				</div>

			<!-- END .six columns -->
			</div>

			
		<!-- END .homepage bottom -->
		</div>

	<!-- END .row -->
	</div>

	
<!-- END .container -->
</div>


<div class="clear"></div>

<!-- END #wrap -->
</div>


<!-- BEGIN #footer-widgets -->
<div id="footer-widgets">

	<!-- BEGIN .row -->
	<div class="row">

		<div class="two columns">
			<div class="footer-widget">
				<div id="nav_menu-9" class="widget widget_nav_menu"><h6>About HP</h6><div class="menu-about-np-container"><ul id="menu-about-np" class="menu"><li id="menu-item-9489" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9489"><a href="http://humanisticpaganism.com/blog/">Blog</a></li>
<li id="menu-item-9490" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9490"><a href="http://humanisticpaganism.com/columnists/">Columnists</a>
<ul class="sub-menu">
	<li id="menu-item-11268" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11268"><a href="https://naturalisticpaganism.org/category/contributors/anna-walther/">Anna Walther</a></li>
	<li id="menu-item-9748" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9748"><a href="http://humanisticpaganism.com/category/columns/a-pedagogy-of-gaia/">Bart Everson</a></li>
	<li id="menu-item-9957" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9957"><a href="http://humanisticpaganism.com/category/columns/rotting-silver/">B. T. Newberg</a></li>
	<li id="menu-item-9751" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9751"><a href="http://humanisticpaganism.com/category/columns/the-wheel-of-evolution/">Eric Steinhart</a></li>
	<li id="menu-item-9749" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9749"><a href="http://humanisticpaganism.com/category/columns/postpagan-ceremony-ecology/">Glen Gordon</a></li>
	<li id="menu-item-9750" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9750"><a href="http://humanisticpaganism.com/category/columns/starstuff-contemplating/">Jon Cleland Host</a></li>
	<li id="menu-item-9747" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9747"><a href="http://humanisticpaganism.com/category/columns/musings-of-a-pagan-mythicist/">Maggie Jay Lee</a></li>
	<li id="menu-item-9746" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9746"><a href="http://humanisticpaganism.com/category/columns/an-atheopagan-life/">Mark Green</a></li>
</ul>
</li>
<li id="menu-item-9491" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9491"><a href="http://humanisticpaganism.com/voices/contributors-2/">Contributors</a></li>
<li id="menu-item-9492" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9492"><a href="http://humanisticpaganism.com/editor/">Staff</a></li>
<li id="menu-item-9493" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9493"><a href="http://humanisticpaganism.com/submissions/">Submissions</a></li>
<li id="menu-item-9609" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9609"><a href="https://naturalisticpaganism.org/archive/">Archive</a></li>
<li id="menu-item-9669" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9669"><a href="https://naturalisticpaganism.org/praise-for-hp/">Praise for NP</a></li>
<li id="menu-item-9494" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9494"><a href="http://humanisticpaganism.com/support-hp/">Support NP</a></li>
</ul></div></div>			</div>
		</div>

		<div class="two columns">
			<div class="footer-widget">
				<div id="nav_menu-10" class="widget widget_nav_menu"><h6>Links</h6><div class="menu-links-container"><ul id="menu-links" class="menu"><li id="menu-item-9711" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9711"><a href="https://naturalisticpaganism.org/a-naturalistic-creed/">A Naturalistic Creed</a></li>
<li id="menu-item-12955" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12955"><a href="https://naturalisticpaganism.org/a-50-year-vision-for-naturalistic-pagans/">The Future</a></li>
<li id="menu-item-9754" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9754"><a href="http://humanisticpaganism.com/2014/07/02/naturalistic-paganism-faq-by-jon-cleland-host/">FAQ</a></li>
<li id="menu-item-10205" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10205"><a href="https://naturalisticpaganism.org/brochures/">Brochures</a></li>
<li id="menu-item-9662" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9662"><a href="https://naturalisticpaganism.org/the-hpedia/">The HPedia</a></li>
<li id="menu-item-9501" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-9501"><a href="https://naturalisticpaganism.org/practice/">Practice</a>
<ul class="sub-menu">
	<li id="menu-item-9503" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9503"><a href="https://naturalisticpaganism.org/practice/myth/">Myth</a></li>
	<li id="menu-item-9504" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9504"><a href="https://naturalisticpaganism.org/practice/meditation/">Meditation</a></li>
	<li id="menu-item-9654" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9654"><a href="https://naturalisticpaganism.org/practice/rituals/">Rituals</a></li>
	<li id="menu-item-9506" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9506"><a href="https://naturalisticpaganism.org/practice/seasonalcelebrations/">HP Calendar</a></li>
	<li id="menu-item-9665" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9665"><a href="https://naturalisticpaganism.org/cosmic-calendar-special/">Cosmic Calendar</a></li>
	<li id="menu-item-12495" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12495"><a href="https://naturalisticpaganism.org/music/">Music</a></li>
</ul>
</li>
<li id="menu-item-9507" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-9507"><a href="https://naturalisticpaganism.org/community/">Community</a>
<ul class="sub-menu">
	<li id="menu-item-9508" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9508"><a href="https://naturalisticpaganism.org/groups/">Groups</a></li>
	<li id="menu-item-9519" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9519"><a href="https://naturalisticpaganism.org/community/raising-children/">Children</a></li>
	<li id="menu-item-9656" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9656"><a href="https://naturalisticpaganism.org/community/ordination/">Ordination</a></li>
</ul>
</li>
<li id="menu-item-9509" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-9509"><a href="https://naturalisticpaganism.org/activism/">Activism</a>
<ul class="sub-menu">
	<li id="menu-item-9510" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9510"><a href="https://naturalisticpaganism.org/environment/">Environment</a></li>
	<li id="menu-item-9511" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9511"><a href="https://naturalisticpaganism.org/gender/">Gender</a></li>
	<li id="menu-item-9512" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9512"><a href="https://naturalisticpaganism.org/humanitarian/">Humanitarian</a></li>
	<li id="menu-item-9513" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9513"><a href="https://naturalisticpaganism.org/interfaith/">Interfaith</a></li>
	<li id="menu-item-9514" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9514"><a href="https://naturalisticpaganism.org/other-issues/">Other issues</a></li>
	<li id="menu-item-9568" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9568"><a href="https://naturalisticpaganism.org/activism/charities-by-deity/">Charities by deity</a></li>
	<li id="menu-item-9570" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9570"><a href="https://naturalisticpaganism.org/charities-a-z/">Charities A-Z</a></li>
</ul>
</li>
<li id="menu-item-9515" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-9515"><a href="https://naturalisticpaganism.org/resources/">Resources</a>
<ul class="sub-menu">
	<li id="menu-item-9516" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9516"><a href="https://naturalisticpaganism.org/books/">Books</a></li>
	<li id="menu-item-9517" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9517"><a href="https://naturalisticpaganism.org/websites/">Websites</a></li>
	<li id="menu-item-9518" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9518"><a href="https://naturalisticpaganism.org/blogs/">Blogs</a></li>
	<li id="menu-item-9567" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9567"><a href="https://naturalisticpaganism.org/ebooks/">HP ebooks</a></li>
</ul>
</li>
<li id="menu-item-13192" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13192"><a href="https://naturalisticpaganism.org/godless-paganism-voices-of-non-theistic-pagans/">Godless Paganism: Voices of Non-Theistic Pagans</a></li>
</ul></div></div>			</div>
		</div>

		<div class="two columns">
			<div class="footer-widget">
							</div>
		</div>

		<div class="two columns">
			<div class="footer-widget">
							</div>
		</div>

		<div class="four columns">
			<div class="footer-widget">
				<div id="text-24" class="widget widget_text"><h6>Our Mission</h6>			<div class="textwidget"><p>This site is dedicated to amplifying the voices of and providing an online home for Naturalistic and Humanistic Pagans who seek to integrate ritual and meditative practices with a mythic worldview based on the most current and compelling scientific evidence.</p>
<p>Tree logo © Bryan Beard</p>
</div>
		</div>			</div>
		</div>

	<!-- END .row -->
	</div>

<!-- END #footer-widgets -->
</div>


<!-- BEGIN #footer -->
<div id="footer">

	<!-- BEGIN .row -->
	<div class="row">

		<div class="twelve columns">

			<div class="footer left">
				<p><a href="https://wordpress.com/?ref=footer_website" rel="nofollow">Create a free website or blog at WordPress.com.</a></p>
				<p></p>
			</div>

			<div class="footer right">
				<div class="social-icons">

			<a class="link-facebook" href="https://www.facebook.com/humanistic.paganism" target="_blank"><i class="fa fa-facebook"><span class="screen-reader-text">Facebook</span></i></a>
	
	
	
	
	
	
	
	
			<a class="link-email" href="mailto:humanisticpaganism@gmail.com" target="_blank"><i class="fa fa-envelope"><span class="screen-reader-text">Email</span></i></a>
	
</div>
			</div>

		</div>

	<!-- END .row -->
	</div>

<!-- END #footer -->
</div>

<!--  -->
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/files/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/premium/organization/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="grofiles-cards-js" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202624d1133547e8a1f2801609f51cef12522abe7f6647d869e9fbc974fe356a37e613"></script>
<script id="wpgroho-js-extra">
var WPGroHo = {"my_hash":""};
//# sourceURL=wpgroho-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>

	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}

				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}

				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};

				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile →': 'Edit your profile →',
							'View profile →': 'View profile →',
							'Contact': 'Contact',
							'Send money': 'Send money',
							'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
							'Gravatar not found.': 'Gravatar not found.',
							'Too Many Requests.': 'Too Many Requests.',
							'Internal Server Error.': 'Internal Server Error.',
							'Is this you?': 'Is this you?',
							'Claim your free profile.': 'Claim your free profile.',
							'Email': 'Email',
							'Home Phone': 'Home Phone',
							'Work Phone': 'Work Phone',
							'Cell Phone': 'Cell Phone',
							'Contact Form': 'Contact Form',
							'Calendar': 'Calendar',
						},
					}
				);
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>

		<div style="display:none">
	</div>
		<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-premium-organization actnbr-has-follow actnbr-has-actions">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="https://naturalisticpaganism.org">
				<img loading='lazy' alt='' src='https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png' srcset='https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1x, https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=75&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1.5x, https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=100&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 2x, https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=150&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 3x, https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=200&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 4x' class='avatar avatar-50' height='50' width='50' />				Naturalistic Paganism			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
																						<div class="actnbr-follow-count">Join 1,130 other subscribers</div>
																					<div>
										<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
										</div>
										<input type="hidden" name="action" value="subscribe" />
										<input type="hidden" name="blog_id" value="21255453" />
										<input type="hidden" name="source" value="https://naturalisticpaganism.org/" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="169343edad" />										<div class="actnbr-button-wrap">
											<button type="submit" value="Sign me up">
												Sign me up											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fnaturalisticpaganism.org%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
								<li class="actnbr-sitename">
			<a href="https://naturalisticpaganism.org">
				<img loading='lazy' alt='' src='https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png' srcset='https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1x, https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=75&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1.5x, https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=100&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 2x, https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=150&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 3x, https://secure.gravatar.com/blavatar/e0e267461e3f0c8303de3c89d14f4b59f7b3da9b4f50d962e16c4201bc65535f?s=200&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 4x' class='avatar avatar-50' height='50' width='50' />				Naturalistic Paganism			</a>
		</li>
								<li class="actnbr-folded-follow">
										<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
								</li>
														<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
							<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fnaturalisticpaganism.org%252F">Log in</a></li>
																<li class="actnbr-shortlink">
										<a href="https://wp.me/P1rbvT-2sx">
											<span class="actnbr-shortlink__text">Copy shortlink</span>
											<span class="actnbr-shortlink__icon"><svg class="gridicon gridicons-checkmark" height="16" width="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M9 19.414l-6.707-6.707 1.414-1.414L9 16.586 20.293 5.293l1.414 1.414"/></g></svg></span>
										</a>
									</li>
																<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://naturalisticpaganism.org/" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/blogs/21255453/posts/9457">
										View post in Reader									</a>
								</li>
															<li class="actnbr-subs">
									<a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
								</li>
																<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
														</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<script>
window.addEventListener( "DOMContentLoaded", function( event ) {
	var link = document.createElement( "link" );
	link.href = "/wp-content/mu-plugins/actionbar/actionbar.css?v=20250116";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "/wp-content/mu-plugins/actionbar/actionbar.js?v=20250204";
	document.body.appendChild( script );
} );
</script>

	
	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',

				toggle_reblog_box_flair: function (obj_id, post_id) {

					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;

					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';

					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
							location.href = url;
						}
					};

					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};

			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/likes/queuehandler.js?m=1741961244i'></script>
<script id="wp-hooks-js" src="/wp-content/plugins/gutenberg-core/v23.3.2/build/scripts/hooks/index.min.js?m=1780625085i&#038;ver=7496969728ca0f95732d"></script>
<script id="wp-i18n-js" src="/wp-content/plugins/gutenberg-core/v23.3.2/build/scripts/i18n/index.min.js?m=1780625085i&#038;ver=125448662852c5e18937"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="verbum-settings-js-before">
window.VerbumComments = {"Log in or provide your name and email to leave a reply.":"Log in or provide your name and email to leave a reply.","Log in or provide your name and email to leave a comment.":"Log in or provide your name and email to leave a comment.","Receive web and mobile notifications for posts on this site.":"Receive web and mobile notifications for posts on this site.","Name":"Name","Email (address never made public)":"Email (address never made public)","Website (optional)":"Website (optional)","Leave a reply. (log in optional)":"Leave a reply. (log in optional)","Leave a comment. (log in optional)":"Leave a comment. (log in optional)","Log in to leave a reply.":"Log in to leave a reply.","Log in to leave a comment.":"Log in to leave a comment.","Logged in via %s":"Logged in via %s","Log out":"Log out","Email":"Email","(Address never made public)":"(Address never made public)","Instantly":"Instantly","Daily":"Daily","Reply":"Reply","Comment":"Comment","WordPress":"WordPress","Weekly":"Weekly","Notify me of new posts":"Notify me of new posts","Email me new posts":"Email me new posts","Email me new comments":"Email me new comments","Cancel":"Cancel","Write a comment...":"Write a comment...","Write a reply...":"Write a reply...","Website":"Website","Optional":"Optional","We'll keep you in the loop!":"We'll keep you in the loop!","Loading your comment...":"Loading your comment...","Discover more from":"Discover more from Naturalistic Paganism","Subscribe now to keep reading and get access to the full archive.":"Subscribe now to keep reading and get access to the full archive.","Continue reading":"Continue reading","Never miss a beat!":"Never miss a beat!","Interested in getting blog post updates? Simply click the button below to stay in the loop!":"Interested in getting blog post updates? Simply click the button below to stay in the loop!","Enter your email address":"Enter your email address","Subscribe":"Subscribe","Comment sent successfully":"Comment sent successfully","Save my name, email, and website in this browser for the next time I comment.":"Save my name, email, and website in this browser for the next time I comment.","hovercardi18n":{"Edit your profile \u2192":"Edit your profile \u2192","View profile \u2192":"View profile \u2192","Contact":"Contact","Send money":"Send money","Gravatar not found.":"Gravatar not found.","This profile is private.":"This profile is private.","Too Many Requests.":"Too Many Requests.","Internal Server Error.":"Internal Server Error.","Sorry, we are unable to load this Gravatar profile.":"Sorry, we are unable to load this Gravatar profile."},"siteId":21255453,"postId":9457,"mustLogIn":false,"requireNameEmail":true,"commentRegistration":false,"connectURL":"https://humanisticpaganism.wordpress.com/public.api/connect/?action=request\u0026domain=naturalisticpaganism.org","logoutURL":"https://humanisticpaganism.wordpress.com/wp-login.php?action=logout\u0026_wpnonce=9024c337bf","homeURL":"https://naturalisticpaganism.org/","subscribeToBlog":true,"subscribeToComment":true,"isJetpackCommentsLoggedIn":false,"jetpackUsername":"","jetpackUserId":0,"jetpackSignature":"","jetpackAvatar":"https://0.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=96","enableBlocks":true,"enableSubscriptionModal":true,"currentLocale":"en","isJetpackComments":false,"allowedBlocks":["core/paragraph","core/list","core/code","core/list-item","core/quote","core/image","core/embed","core/quote","core/code"],"embedNonce":"592ae25a62","verbumBundleUrl":"/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/moon/jetpack_vendor/automattic/jetpack-mu-wpcom/src/features/verbum-comments/dist/index.js","isRTL":false,"vbeCacheBuster":1771405207,"iframeUniqueId":0,"colorScheme":false}
//# sourceURL=verbum-settings-js-before
</script>
<script data-wp-strategy="defer" defer id="verbum-dynamic-loader-js" src="/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/moon/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/verbum-comments/assets/dynamic-loader.js?m=1772518873i&#038;minify=false&#038;ver=8b5296f9195db92c42e4"></script>
<script id="jetpack-facebook-embed-js-extra">
var jpfbembed = {"appid":"249643311490","locale":"en_US"};
//# sourceURL=jetpack-facebook-embed-js-extra
</script>
<script id="jetpack-script-data-js-before">
window.JetpackScriptData = {"site":{"host":"wpcom","is_wpcom_platform":true}};
//# sourceURL=jetpack-script-data-js-before
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJyNkNFuwjAMRX9oqTUmYC8Tn4LcxHQudRwSBwRfT4RYtUlI66Pte44twyU5r9EoGtg3CRVImYSrgOYBI9/QWCOMBcZTpXztfC2m0o3lDZazEc88PKofkKOfamjIbIbK4DVTJ/xPyrAvv1MLj3hgL8ReRRruMqXp+sor1aWpDhxbnCyhPz5rEG3qfZPBAT31qkdH0lNYYGitS2qr/6iew/2ZYtAMWNur0Yz9jGEpZAX6ylOYm8VnTuYCGrbNO/l6327Xm8/VevUx3gEF0LVy'></script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/","ext":".png","svgUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/","svgExt":".svg","source":{"concatemoji":"/wp-includes/js/wp-emoji-release.min.js?m=1764078722i&ver=7.0-RC4-62382"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=/wp-includes/js/wp-emoji-loader.min.js
</script>
<script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'21255453','blog_tz':'-5','user_lang':'en','blog_lang':'en','user_id':'0'}]);
		// Prevent sending pageview tracking from WP-Admin pages.
		_stq.push(['view', {'blog':'21255453','v':'wpcom','tz':'-5','user_id':'0','post':'9457','subd':'humanisticpaganism'}]);
		_stq.push(['extra', {'crypt':'UE5tW3cvZGRMaUwtPVd1RHVmY2d8bCxtWWVadTAwLTFrNG9mU0c9K0tmZ0dkM1lSbGtYTGlEMSssVEhZM0pRJTBMZktaM1F4MDZWfkU5ODBadWtudCtVKzZwJWJMUm8lZS9ZYW4xdnBJeklkNnxrcjZ0U01HeH5FRlM0Vl1Zd2NqM1FqNC9SdTBySXhBdERUZ1MuaX42WEgwSzQxRDdEJmorfkhITyxPVnw4VFtFRUtZSDQ2cDB1VVktTFRWazcwSHM9V0pkUiZDdQ=='}]);
_stq.push([ 'clickTrackerInit', '21255453', '9457' ]);
</script>
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<meta id="bilmur" property="bilmur:data" content="" data-provider="wordpress.com" data-service="simple" data-site-tz="America/Chicago" data-custom-props="{&quot;enq_jquery&quot;:&quot;1&quot;,&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;premium\/organization&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}"  >
		<script defer src="/wp-content/js/bilmur.min.js?i=17&amp;m=202624"></script> 	
<script>
(function() {
	'use strict';

	const fetches = {};
	const promises = {};
	const urls = {
		'wp-polyfill': '/wp-includes/js/dist/vendor/wp-polyfill.min.js?m=1775575011i&ver=3.15.0',
		'verbum': '/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/moon/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/verbum-comments/verbum-comments.js?m=1781023412i&minify=false&ver=5ff7b65e90017493fba3'
	};
	const loaders = {
		'verbum': () => {
			fetchExternalScript('wp-polyfill');
			fetchExternalScript('verbum');
			promises['wp-polyfill'] = promises['wp-polyfill'] || loadWPScript('wp-polyfill');
			promises['verbum'] = promises['verbum'] || promises['wp-polyfill'].then( () => loadWPScript('verbum') );
			return promises['verbum'];
		},
		
	};
	const scriptExtras = {
		
	};

	window.WP_Enqueue_Dynamic_Script = {
		loadScript: (handle) => {
			if (!loaders[handle]) {
				console.error('WP_Enqueue_Dynamic_Script: unregistered script `' + handle + '`.');
			}
			return loaders[handle]();
		}
	};

	function fetchExternalScript(handle) {
		if (!urls[handle]) {
			return Promise.resolve();
		}

		fetches[handle] = fetches[handle] || fetch(urls[handle], { mode: 'no-cors' });
		return fetches[handle];
	}

	function runExtraScript(handle, type, index) {
		const id = 'wp-enqueue-dynamic-script:' + handle + ':' + type + ':' + (index + 1);
		const template = document.getElementById(id);
		if (!template) {
			return Promise.reject();
		}

		const script = document.createElement( 'script' );
		script.innerHTML = template.innerHTML;
		document.body.appendChild( script );
		return Promise.resolve();
	}

	function loadExternalScript(handle) {
		if (!urls[handle]) {
			return Promise.resolve();
		}

		return fetches[handle].then(() => {
			return new Promise((resolve, reject) => {
				const script = document.createElement('script');
				script.onload = () => resolve();
				script.onerror = (e) => reject(e);
				script.src = urls[handle];
				document.body.appendChild(script);
			});
		});
	}

	function loadExtra(handle, pos) {
		const count = (scriptExtras[handle] && scriptExtras[handle][pos]) || 0;
		let promise = Promise.resolve();

		for (let i = 0; i < count; i++) {
			promise = promise.then(() => runExtraScript(handle, pos, i));
		}

		return promise;
	}

	function loadWPScript(handle) {
		// Core loads scripts in this order. See: https://github.com/WordPress/WordPress/blob/a59eb9d39c4fcba834b70c9e8dfd64feeec10ba6/wp-includes/class-wp-scripts.php#L428.
		return loadExtra(handle, 'translations')
			.then(() => loadExtra(handle, 'before'))
			.then(() => loadExternalScript(handle))
			.then(() => loadExtra(handle, 'after'));
	}
} )();
</script>

</body>
</html>