/*
Theme Name: One Life in Love
Theme URI: https://onelifeinlove.com/
Author: One Life in Love
Description: A minimal, spacious WordPress theme for contemplative philosophy and Yoga Nidra practice.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: one-life-in-love
*/

:root {
	--olil-cream: #F7F3EC;
	--olil-soft: #F3EEE5;
	--olil-soft-white: #FCFBF8;
	--olil-gold: #B59B68;
	--olil-muted: #5E564B;
	--olil-nav: #3F382F;
	--olil-nav-active: #342C24;
	--olil-ink: #3F382F;
	--olil-max: 1160px;
	--olil-reading: 720px;
	--olil-narrow: 560px;
	--olil-border: rgba(63, 56, 47, 0.18);
	--olil-copy-stack-gap: 1.5rem;
	--olil-image-radius: 4px;
}

@font-face {
	font-family: "Inter";
	src: url("fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Cormorant Garamond";
	src: url("fonts/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
	font-weight: 300 700;
	font-style: normal;
	size-adjust: 112%;
	font-display: swap;
}

@font-face {
	font-family: "Cormorant Garamond";
	src: url("fonts/Cormorant_Garamond/CormorantGaramond-Italic-VariableFont_wght.ttf") format("truetype");
	font-weight: 300 700;
	font-style: italic;
	size-adjust: 112%;
	font-display: swap;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}

body {
	margin: 0;
	background: var(--olil-cream);
	color: var(--olil-gold);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.72;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
}

h1,
h2 {
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-weight: 300;
	font-style: italic;
}

body.nav-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-color: var(--olil-gold);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.24em;
}

a:hover,
a:focus-visible {
	color: var(--olil-muted);
}

button,
input,
textarea {
	font: inherit;
	letter-spacing: 0;
}

button,
a,
input,
textarea {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 2px solid var(--olil-gold);
	outline-offset: 4px;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--olil-ink);
	color: var(--olil-cream);
}

.site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid var(--olil-border);
	background: var(--olil-soft-white);
	box-shadow: 0 10px 28px rgba(63, 56, 47, 0.06);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header--transparent {
	position: fixed;
	right: 0;
	left: 0;
	background: transparent;
	border-bottom-color: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

body.header-is-scrolled .site-header--transparent,
body.nav-open .site-header--transparent {
	background: rgba(252, 251, 248, 0.92);
	border-bottom-color: var(--olil-border);
	box-shadow: 0 10px 28px rgba(63, 56, 47, 0.06);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

body:not(.header-is-scrolled):not(.nav-open) .site-header--global-practice .site-navigation a,
body:not(.header-is-scrolled):not(.nav-open) .site-header--global-practice .site-navigation a[aria-current="page"],
body:not(.header-is-scrolled):not(.nav-open) .site-header--global-practice .site-navigation a:focus-visible,
body:not(.header-is-scrolled):not(.nav-open) .site-header--global-practice .site-navigation__trigger,
body:not(.header-is-scrolled):not(.nav-open) .site-header--global-practice .site-navigation__trigger:focus-visible {
	color: var(--olil-soft-white);
}

body.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

.site-header__inner,
.section__inner,
.site-footer__inner {
	width: min(calc(100% - 2rem), var(--olil-max));
	margin-inline: auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 5.5rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.site-brand img {
	display: block;
	width: clamp(7.25rem, 11vw, 8.75rem);
	height: auto;
}

.site-navigation__list {
	display: flex;
	align-items: center;
	gap: 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__item {
	position: relative;
	list-style: none;
}

.site-navigation a,
.site-navigation__trigger {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	color: #5E564B;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
}

.site-navigation__trigger {
	gap: 0.42rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-navigation__label {
	display: inline-block;
	position: relative;
}

.site-navigation a[aria-current="page"],
.site-navigation a:focus-visible,
.site-navigation__trigger:focus-visible,
.site-navigation__item--has-submenu.is-open > .site-navigation__trigger {
	color: #4F473D;
}

.site-navigation a[aria-current="page"] .site-navigation__label::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -0.38rem;
	left: 0;
	height: 1px;
	background: rgba(181, 155, 104, 0.78);
}

.site-navigation a:hover,
.site-navigation__trigger:hover,
.site-navigation__item--has-submenu:is(:hover, :focus-within) > .site-navigation__trigger {
	color: #D4AF37;
}

.site-navigation a:hover .site-navigation__label,
.site-navigation__trigger:hover .site-navigation__label,
.site-navigation__item--has-submenu:is(:hover, :focus-within) > .site-navigation__trigger .site-navigation__label {
	background-image: linear-gradient(180deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.site-navigation__caret {
	width: 0.42rem;
	height: 0.42rem;
	margin-top: -0.12rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	opacity: 0.6;
	transform: rotate(45deg);
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-navigation__item--has-submenu:is(:hover, :focus-within, .is-open) .site-navigation__caret {
	opacity: 0.8;
	transform: rotate(225deg);
}

.site-navigation__submenu {
	position: absolute;
	top: calc(100% + 0.28rem);
	right: 0;
	min-width: 13.25rem;
	margin: 0;
	padding: 0.32rem 0;
	list-style: none;
	border: 1px solid rgba(181, 155, 104, 0.18);
	border-radius: 6px;
	background: rgba(252, 251, 248, 0.98);
	box-shadow: 0 12px 24px rgba(63, 56, 47, 0.06);
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.35rem);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-navigation__submenu::before {
	content: "";
	position: absolute;
	top: -0.4rem;
	right: 0;
	left: 0;
	height: 0.4rem;
}

.site-navigation__item--has-submenu:is(:hover, :focus-within, .is-open) > .site-navigation__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.site-navigation__submenu-item {
	list-style: none;
}

.site-navigation__submenu-link {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 2.3rem;
	padding: 0.28rem 0.92rem;
	color: #5E564B;
	font-size: 0.93rem;
	line-height: 1.45;
	white-space: nowrap;
	text-decoration: none;
}

.site-navigation__submenu-link:hover,
.site-navigation__submenu-link:focus-visible {
	color: #4F473D;
	background: rgba(181, 155, 104, 0.08);
}

.nav-toggle {
	display: none;
	width: 2.75rem;
	height: 2.75rem;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--olil-border);
	border-radius: 4px;
	background: transparent;
	color: var(--olil-ink);
	cursor: pointer;
}

.nav-toggle__icon {
	display: grid;
	gap: 0.28rem;
	width: 1.15rem;
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 1px;
	background: currentColor;
}

.section {
	padding-block: clamp(5.9rem, 7vw, 7.1rem);
}

.section--soft {
	background: var(--olil-soft);
}

.section--bordered {
	border-top: 1px solid var(--olil-border);
}

.section-stack {
	display: grid;
	align-content: start;
	gap: var(--olil-copy-stack-gap);
}

.section-stack--centered {
	text-align: center;
	justify-items: center;
}

.section-stack--centered > * {
	margin-inline: auto;
}

.section-stack--centered > .section-actions {
	justify-content: center;
}

.section-stack--centered > .yn-text-flow,
.section-stack--centered > .yn-closing__details {
	width: 100%;
}

.section-stack--centered > .section-hero__text,
.section-stack--centered > .section-philosophy__text,
.section-stack--centered > .section-offering__text,
.section-stack--centered > .section-about__text,
.section-stack--centered > p:not(.section__kicker) {
	max-width: min(100%, 40rem);
}

.section-stack--centered > .yn-text-flow {
	max-width: min(100%, 48rem);
}

.section-stack > .section__kicker,
.section-stack > .section-hero__text,
.section-stack > .section-philosophy__text,
.section-stack > .section-offering__text,
.section-stack > .section-about__text,
.section-stack > .section-link,
.section-stack > .section-actions,
.section-stack > .section-offering__actions,
.section-stack > .quiet-list,
.section-stack > .practice-list,
.section-stack > .path-preview-list,
.section-stack > .contact-list,
.section-stack > .yn-text-flow,
.section-stack > .yn-closing__body,
.section-stack > .yn-closing__details,
.section-stack > .yn-section-note,
.section-stack > .yn-blessing,
.section-stack > p:not(.section__kicker) {
	margin: 0;
}

.section-stack > h1 + p,
.section-stack > h2 + p,
.section-stack > h3 + p {
	margin-top: 0;
}

.section-stack > .yn-closing__body,
.section-stack > .yn-closing__details,
.section-stack > .yn-blessing {
	margin-inline: auto;
}

.section__kicker {
	margin: 0 0 clamp(1.35rem, 2.4vw, 1.7rem);
	color: var(--olil-gold);
	font-size: 0.92rem;
	line-height: 1.5;
}

.section h1,
.section h2,
.section h3 {
	margin-block: 0;
	line-height: 1.08;
	letter-spacing: 0;
	color: var(--olil-ink);
}

.section h3 {
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-weight: 400;
	font-style: normal;
}

.section h1,
.about-page h1 {
	max-width: 900px;
	font-size: 3.2rem;
}

.section h2 {
	max-width: 780px;
	font-size: 2.45rem;
}

.section h3 {
	font-size: 1.35rem;
}

.section p {
	margin-block: 0;
	color: var(--olil-muted);
}

.section-hero {
	padding-block: 6rem 5rem;
}

.section-hero--path-statement {
	background: var(--olil-soft-white);
}

.section-hero--path-statement .section-hero__grid {
	grid-template-columns: minmax(0, 0.76fr) minmax(19rem, 0.58fr);
	gap: clamp(4.6rem, 8vw, 7.4rem);
	align-items: center;
}

.section-hero--path-statement .section-hero__content {
	max-width: 36rem;
	padding-top: 0;
	align-self: start;
}

.section-hero--path-statement .section-hero__text {
	max-width: 35rem;
}

.section-hero--path-statement .section-hero__media {
	align-self: end;
	justify-self: end;
	width: min(100%, 35rem);
	padding-top: clamp(1.35rem, 2.6vw, 1.9rem);
	border-top: 1px solid rgba(181, 155, 104, 0.46);
}

.section-hero__statement {
	margin: 0;
	color: var(--olil-ink);
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 2.2vw, 2.2rem);
	font-weight: 400;
	line-height: 1.22;
	letter-spacing: 0;
}

.site-main > .section-hero:first-child {
	padding-top: 8.5rem;
}

.site-main.about-page > .about-page__intro:first-child {
	padding-top: clamp(8.35rem, 11vw, 10rem);
}

.site-main.legal-page > .legal-page__header:first-child {
	padding-top: clamp(7.8rem, 10.5vw, 9.3rem);
}

.site-main.yoga-nidra-page > .yn-cover:first-child {
	padding-top: clamp(6.5rem, 8vw, 7.7rem);
}

.section-hero__content {
	max-width: 820px;
}

.section-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(17rem, 0.54fr);
	gap: clamp(3rem, 6vw, 5.25rem);
	align-items: center;
}

.section-hero__media {
	justify-self: end;
	width: min(100%, 27rem);
	margin: 0;
}

.section-hero__media img {
	width: 100%;
	height: auto;
	filter: saturate(0.96) brightness(0.98);
}

.section-hero__text {
	max-width: 650px;
	font-size: 1.12rem;
}

.section-hero__title-line {
	display: block;
}

.section-hero--home .section-hero__content {
	max-width: none;
}

.section-hero--philosophy .section-hero__content {
	max-width: none;
}

.section-hero--home h1 {
	max-width: none;
	text-wrap: balance;
}

.section-hero--philosophy h1 {
	max-width: none;
}

.section-hero--home .section-hero__title-line--wide {
	width: 100%;
	font-size: clamp(2.45rem, 4vw, 3rem);
	line-height: 1.02;
	white-space: nowrap;
}

.section-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.95rem;
}

.section-home-honesty {
	padding-block: clamp(4rem, 5.6vw, 5rem);
}

.section-home-header {
	padding-bottom: clamp(5.4rem, 6.8vw, 6.8rem);
	background: linear-gradient(180deg, rgba(252, 251, 248, 0.98) 0%, rgba(247, 243, 236, 0.92) 100%);
}

.section-home-header__inner {
	max-width: min(100%, 72rem);
	display: grid;
	gap: clamp(3rem, 5vw, 4rem);
}

.section-home-header .section-hero__content {
	max-width: none;
	text-align: center;
	justify-items: center;
}

.section-home-header h1 {
	font-size: 2.5rem;
}

.section-home-header .section-hero__title-line--wide {
	font-size: inherit;
}

.section-home-header .section-hero__text {
	margin-inline: auto;
}

.section-home-header .section-home-orientation--embedded {
	padding-top: clamp(0.5rem, 1vw, 0.9rem);
}

.section-home-orientation__inner {
	max-width: min(100%, 76rem);
}

.orientation-board {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem) minmax(0, 1fr);
	grid-template-rows: auto auto auto;
	grid-template-areas:
		"top-left center top-right"
		". center ."
		"bottom-left bottom-center bottom-right";
	gap: clamp(1.6rem, 3vw, 2.45rem) clamp(1.25rem, 2.8vw, 2.2rem);
	align-items: stretch;
	padding-top: clamp(1rem, 2vw, 1.5rem);
	min-height: clamp(37rem, 54vw, 47rem);
	isolation: isolate;
}

.orientation-board__paths {
	position: absolute;
	inset: clamp(7.5rem, 10vw, 9rem) 6% clamp(3rem, 5vw, 5rem);
	z-index: 0;
	pointer-events: none;
	opacity: 0.82;
}

.orientation-board__paths svg {
	width: 100%;
	height: 100%;
}

.orientation-board__path,
.orientation-board__arrowhead {
	fill: none;
	stroke: rgba(181, 155, 104, 0.56);
	stroke-width: 1.1;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.orientation-board__node-logo {
	opacity: 0.95;
}

.orientation-board__center {
	grid-area: center;
	position: relative;
	z-index: 1;
	align-self: center;
	justify-self: center;
	max-width: 16rem;
	padding-bottom: clamp(2.4rem, 4vw, 3.6rem);
	gap: 1rem;
}

.orientation-board__center h2 {
	max-width: none;
	margin: 0;
	font-size: 2.1875rem;
	line-height: 0.98;
	color: var(--olil-ink);
}

.orientation-board__divider {
	position: relative;
	display: block;
	width: min(100%, 9.5rem);
	height: 1rem;
	margin-inline: auto;
}

.orientation-board__divider::before {
	content: "";
	position: absolute;
	inset: 50% 0 auto 0;
	border-top: 1px solid rgba(181, 155, 104, 0.52);
	transform: translateY(-50%);
}

.orientation-board__divider::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.62rem;
	height: 0.62rem;
	border: 1px solid rgba(181, 155, 104, 0.7);
	background: rgba(252, 251, 248, 0.96);
	transform: translate(-50%, -50%) rotate(45deg);
}

.orientation-board__card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: min(100%, 15.75rem);
	min-height: 18.35rem;
	padding: clamp(1.4rem, 2vw, 1.68rem) clamp(1.2rem, 1.85vw, 1.55rem);
	border: 1px solid rgba(181, 155, 104, 0.4);
	border-radius: 4px;
	background: linear-gradient(180deg, rgba(252, 251, 248, 0.92) 0%, rgba(247, 243, 236, 0.76) 100%);
	box-shadow: 0 14px 32px rgba(181, 155, 104, 0.08), 0 2px 8px rgba(63, 56, 47, 0.04);
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.orientation-board__card:hover,
.orientation-board__card:focus-visible {
	border-color: rgba(181, 155, 104, 0.7);
	box-shadow: 0 18px 36px rgba(181, 155, 104, 0.12), 0 4px 12px rgba(63, 56, 47, 0.06);
	transform: translateY(-2px);
}

.orientation-board__card--featured {
	width: min(100%, 16.8rem);
	min-height: 20rem;
}

.orientation-board__card--top-left {
	grid-area: top-left;
	justify-self: end;
	left: clamp(-2.75rem, -4vw, -1.85rem);
	margin-top: 0.25rem;
}

.orientation-board__card--top-right {
	grid-area: top-right;
	justify-self: start;
	left: clamp(1.85rem, 4vw, 2.75rem);
	margin-top: 0.25rem;
}

.orientation-board__card--bottom-left {
	grid-area: bottom-left;
	justify-self: end;
	top: 0.45rem;
	margin-top: 0;
}

.orientation-board__card--bottom-center {
	grid-area: bottom-center;
	justify-self: center;
	top: clamp(1.7rem, 3vw, 2.8rem);
	margin-top: 0;
}

.orientation-board__card--bottom-right {
	grid-area: bottom-right;
	justify-self: start;
	top: 0.45rem;
	margin-top: 0;
}

.orientation-board__kicker {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.45;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(146, 122, 78, 0.95);
}

.orientation-board__card h3 {
	margin: 0;
	font-size: clamp(1.62rem, 1.82vw, 1.92rem);
	line-height: 1.04;
	color: var(--olil-ink);
}

.orientation-board__card--featured h3 {
	font-size: clamp(1.82rem, 2.08vw, 2.18rem);
}

.orientation-board__text {
	max-width: 16ch;
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--olil-muted);
}

.orientation-board__card--featured .orientation-board__text {
	max-width: 17ch;
}

.orientation-board__cta {
	margin-top: 0;
	padding-top: 0;
	color: var(--olil-gold);
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.orientation-board {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
		grid-template-areas:
			"center center"
			"top-left top-right"
			"bottom-left bottom-right"
			"bottom-center bottom-center";
		gap: 1.2rem;
		min-height: auto;
		padding-top: 0.6rem;
	}

	.orientation-board__paths {
		display: none;
	}

	.orientation-board__center {
		max-width: 24rem;
		padding-bottom: 0.25rem;
	}

	.orientation-board__center h2 {
		font-size: 1.7rem;
	}

	.orientation-board__card,
	.orientation-board__card--featured {
		justify-self: center;
		width: min(100%, 20rem);
		min-height: auto;
		margin-top: 0;
	}

	.orientation-board__card--top-left,
	.orientation-board__card--top-right {
		left: 0;
	}

	.orientation-board__card--bottom-left,
	.orientation-board__card--bottom-center,
	.orientation-board__card--bottom-right {
		top: 0;
	}

	.orientation-board__text,
	.orientation-board__card--featured .orientation-board__text {
		max-width: 22ch;
	}
}

@media (min-width: 1101px) {
	.section-home-header .orientation-board__center {
		padding-top: clamp(1rem, 1.6vw, 1.5rem);
		padding-bottom: clamp(1.8rem, 3vw, 2.8rem);
	}

	.section-home-header .orientation-board__center h2 {
		font-size: 1.95rem;
	}
}

.section-home-honesty__inner {
	max-width: min(100%, 72rem);
}

.section-home-honesty--stacked .section-home-honesty__inner {
	max-width: min(100%, 72rem);
}

.section-home-honesty__stacked {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(16rem, 0.48fr);
	grid-template-areas: "intro feature";
	gap: clamp(3.2rem, 7vw, 6rem);
	align-items: center;
}

.section-home-honesty__lead {
	max-width: 100%;
	margin: 0;
	color: var(--olil-ink);
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(1.7rem, 2.05vw, 2rem);
	line-height: 1.28;
	text-align: left;
}

.section-home-honesty__lead-line {
	display: block;
}

.section-home-honesty--stacked .section-home-honesty__intro {
	grid-area: intro;
	max-width: 43rem;
	padding-top: 0;
	border-top: 0;
	gap: 0;
	text-align: left;
}

.section-home-honesty--stacked .section-home-honesty__body {
	max-width: 100%;
	margin: 1.25rem 0 0;
	text-align: left;
}

.section-home-honesty--stacked .section-home-honesty__closing {
	margin-top: 1.15rem;
	text-align: left;
}

.section-home-honesty--stacked .section-home-honesty__closing span {
	display: block;
}

.section-home-honesty__feature {
	grid-area: feature;
	justify-self: end;
	width: min(100%, 26rem);
	padding-top: clamp(1.35rem, 2.6vw, 1.9rem);
	border-top: 1px solid rgba(181, 155, 104, 0.46);
}

.section-home-honesty__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.82fr);
	grid-template-areas:
		"intro statement"
		"foundation practice";
	gap: clamp(2rem, 4vw, 2.8rem) clamp(2rem, 5vw, 4.6rem);
	align-items: start;
}

.section-home-honesty__intro,
.section-home-honesty__practice {
	padding-top: 0.35rem;
	border-top: 1px solid var(--olil-gold);
}

.section-home-honesty__intro {
	grid-area: intro;
	max-width: 38rem;
	gap: 0;
}

.section-home-honesty__body {
	max-width: 38rem;
	margin-top: 1.25rem;
}

.section-home-honesty__body p + p {
	margin-top: 1.15rem;
}

.section-home-honesty__closing {
	margin-top: 1.15rem;
	color: var(--olil-ink);
}

.section-home-honesty__closing span {
	display: block;
}

.section-home-honesty__statement {
	grid-area: statement;
	align-self: end;
	justify-self: end;
	max-width: 26rem;
	margin: 0;
	color: var(--olil-ink);
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(1.22rem, 1.95vw, 1.58rem);
	line-height: 1.38;
}

.section-home-honesty__statement-line {
	display: block;
}

.section-home-honesty__foundation {
	grid-area: foundation;
	max-width: 38rem;
	align-content: start;
	gap: 1rem;
}

.section-home-honesty__foundation-title {
	max-width: 32rem;
	margin: 0;
	color: var(--olil-ink);
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 2.9vw, 2.35rem);
	line-height: 1.18;
}

.section-home-honesty__foundation-text {
	max-width: 31rem;
	margin: 0;
}

.section-home-honesty__practice {
	grid-area: practice;
	justify-self: end;
	max-width: 23rem;
	gap: 1rem;
}

.section-home-honesty__practice h3 {
	margin: 0;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 2.8vw, 2.5rem);
	line-height: 1.06;
	color: var(--olil-ink);
}

.section-home-honesty__practice p {
	margin: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.72rem 1.05rem;
	border: 1px solid var(--olil-gold);
	border-radius: 4px;
	color: var(--olil-ink);
	font-size: 0.96rem;
	line-height: 1.2;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
	background: var(--olil-gold);
	border-color: var(--olil-gold);
	color: var(--olil-cream);
}

.button--primary {
	background: rgba(181, 155, 104, 0.16);
	border-color: var(--olil-gold);
	color: var(--olil-ink);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: var(--olil-gold);
	border-color: var(--olil-gold);
	color: var(--olil-ink);
}

.section-philosophy__grid,
.section-path-preview__grid,
.section-offering__grid,
.section-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
	gap: 4.25rem;
	align-items: center;
}

.section-philosophy__grid {
	grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.6fr);
	gap: clamp(3rem, 5vw, 4rem);
}

.section-about__grid {
	align-items: start;
}

.section-philosophy__media {
	padding: 1.5rem;
	border: 1px solid var(--olil-border);
	border-radius: 4px;
	background: var(--olil-cream);
}

.section-philosophy__media--frameless {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.section-philosophy__media img {
	width: 100%;
}

.section-philosophy__title {
	max-width: 22ch;
	font-size: clamp(1.82rem, 2.25vw, 2.32rem);
	line-height: 1.12;
}

.section-philosophy__text,
.section-offering__text,
.section-about__text {
	max-width: var(--olil-narrow);
}

.section-offering__content {
	max-width: 34rem;
}

.section-offering__title-line {
	display: block;
}

.section-about__title-line {
	display: block;
}

.section-path-preview__content {
	max-width: 35rem;
}

.section-path-preview,
.section-offering {
	background: var(--olil-soft-white);
}

.section-path-preview__text {
	max-width: var(--olil-narrow);
}

.path-preview-list {
	display: grid;
	gap: 1.05rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.path-preview-list li {
	display: grid;
	gap: 0.18rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(181, 155, 104, 0.28);
	color: var(--olil-muted);
}

.path-preview-list strong {
	color: var(--olil-ink);
	font-weight: 500;
}

.section-path-preview__content .button {
	justify-self: start;
	min-width: min(100%, 12rem);
}

.section-path-preview__media {
	justify-self: center;
	width: min(100%, 30rem);
	margin: 0;
}

.section-path-preview__media img {
	width: 100%;
	height: auto;
	filter: saturate(0.96) brightness(0.98);
}

.section-about__side {
	display: grid;
	align-content: start;
	width: 100%;
	justify-items: stretch;
}

.section-about__media {
	width: 100%;
	margin: 0 0 2rem;
}

.section-about__media img {
	width: 100%;
	height: auto;
	border-radius: var(--olil-image-radius);
}

.section-offering__actions {
	display: grid;
	align-content: start;
	gap: 0.95rem;
	justify-items: start;
}

.section-offering__actions .button {
	min-width: min(100%, 16rem);
}

.section-offering__media {
	display: grid;
	align-items: center;
	justify-items: center;
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid rgba(63, 56, 47, 0.12);
	border-radius: 4px;
	background: rgba(247, 243, 236, 0.82);
}

.section-offering__media--frameless {
	min-height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.section-offering__media img {
	width: min(100%, 31rem);
	height: auto;
}

.section-link {
	display: inline-flex;
	margin-top: 1.6rem;
	color: var(--olil-ink);
	font-weight: 500;
	text-decoration-color: var(--olil-gold);
}

.quiet-list,
.practice-list,
.contact-list {
	display: grid;
	gap: 1rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.quiet-list li,
.practice-list li,
.contact-list li {
	padding-top: 1rem;
	border-top: 1px solid var(--olil-border);
	color: var(--olil-muted);
}

.quiet-list strong,
.practice-list strong,
.contact-list strong {
	display: block;
	margin-bottom: 0.28rem;
	color: var(--olil-ink);
	font-weight: 500;
}

.page-band {
	padding-block: clamp(4.85rem, 5.8vw, 5.6rem);
	border-top: 1px solid var(--olil-border);
}

.page-band--soft {
	background: var(--olil-soft);
}

.page-band__inner {
	width: min(calc(100% - 2rem), var(--olil-max));
	margin-inline: auto;
}

.page-band__narrow {
	max-width: var(--olil-reading);
}

.page-band__narrow--headline {
	max-width: min(100%, 58rem);
}

.page-band__inner:not(.contact-layout) > .page-band__narrow {
	margin-inline: auto;
	text-align: center;
}

.page-band__headline--single-line {
	max-width: none;
}

.page-band__narrow--headline > p {
	max-width: var(--olil-reading);
	margin-inline: auto;
}

.philosophy-page__path-intro {
	width: min(100%, 48rem);
	margin-inline: auto;
	text-align: center;
}

.philosophy-page__path-intro > p {
	max-width: none;
}

.page-band h1,
.page-band h2,
.page-band h3 {
	margin: 0;
	line-height: 1.12;
	color: var(--olil-ink);
}

.page-band h1 {
	font-size: 3.2rem;
}

.page-band h2 {
	font-size: 2.15rem;
}

.page-band h3 {
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.25rem;
}

.page-band p {
	margin: 1rem 0 0;
	color: var(--olil-muted);
}

.page-side-motif {
	--page-side-motif-color: rgba(181, 155, 104, 0.24);
	--page-side-motif-width: 1.5px;
	--page-side-motif-gap: 1.05rem;
	--page-side-motif-left: max(0rem, calc((100% - min(calc(100% - 2rem), var(--olil-max))) / 2 - 11rem));
	--page-side-motif-marker-size: 0.74rem;
	--page-side-motif-standard-top: 45%;
	--page-side-motif-standard-bottom: 55%;
	--page-side-motif-end-stop: 45%;
}

.page-side-motif.path-page > .section-hero,
.page-side-motif.path-page > .path-section,
.page-side-motif.reflections-page > .reflections-section,
.page-side-motif.about-page > .about-page__intro,
.page-side-motif.about-page > .about-page__section,
.page-side-motif.philosophy-page > .section-hero,
.page-side-motif.philosophy-page > .section-philosophy,
.page-side-motif.philosophy-page > .page-band,
.page-side-motif.philosophy-page > .section-closing {
	position: relative;
	isolation: isolate;
}

.page-side-motif.path-page > .section-hero > *,
.page-side-motif.path-page > .path-section > *,
.page-side-motif.reflections-page > .reflections-section > *,
.page-side-motif.about-page > .about-page__intro > *,
.page-side-motif.about-page > .about-page__section > *,
.page-side-motif.philosophy-page > .section-hero > *,
.page-side-motif.philosophy-page > .section-philosophy > *,
.page-side-motif.philosophy-page > .page-band > *,
.page-side-motif.philosophy-page > .section-closing > * {
	position: relative;
	z-index: 1;
}

.page-side-motif.path-page > .section-hero::before,
.page-side-motif.path-page > .path-section::before,
.page-side-motif.reflections-page > .reflections-section:not(.reflections-section--library)::before,
.page-side-motif.about-page > .about-page__intro::before,
.page-side-motif.about-page > .about-page__section:not(.about-page__closing)::before,
.page-side-motif.philosophy-page > .section-hero::before,
.page-side-motif.philosophy-page > .section-philosophy::before,
.page-side-motif.philosophy-page > .page-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	background-image:
		linear-gradient(var(--page-side-motif-color), var(--page-side-motif-color)),
		linear-gradient(var(--page-side-motif-color), var(--page-side-motif-color)),
		linear-gradient(var(--page-side-motif-color), var(--page-side-motif-color));
	background-position:
		var(--page-side-motif-left) 0,
		calc(var(--page-side-motif-left) + var(--page-side-motif-gap)) 0,
		calc(var(--page-side-motif-left) + var(--page-side-motif-gap)) bottom;
	background-size:
		var(--page-side-motif-width) 100%,
		var(--page-side-motif-width) var(--page-side-motif-standard-top),
		var(--page-side-motif-width) calc(100% - var(--page-side-motif-standard-bottom));
}

.page-side-motif.path-page > .section-hero::after,
.page-side-motif.path-page > .path-section::after,
.page-side-motif.reflections-page > .reflections-section:not(.reflections-section--library)::after,
.page-side-motif.about-page > .about-page__intro::after,
.page-side-motif.about-page > .about-page__section:not(.about-page__closing)::after,
.page-side-motif.philosophy-page > .section-hero::after,
.page-side-motif.philosophy-page > .section-philosophy::after,
.page-side-motif.philosophy-page > .page-band::after {
	content: "";
	position: absolute;
	left: calc(var(--page-side-motif-left) + var(--page-side-motif-gap) - (var(--page-side-motif-marker-size) / 2));
	top: 50%;
	width: var(--page-side-motif-marker-size);
	height: var(--page-side-motif-marker-size);
	transform: translateY(-50%);
	background: url("assets/illustrations/page-side-diamond.svg") center / 100% 100% no-repeat;
	z-index: 0;
	pointer-events: none;
}

.page-side-motif.reflections-page > .reflections-section--library::before,
.page-side-motif.about-page > .about-page__closing::before,
.page-side-motif.philosophy-page > .section-closing::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	background-image:
		linear-gradient(var(--page-side-motif-color), var(--page-side-motif-color)),
		linear-gradient(var(--page-side-motif-color), var(--page-side-motif-color));
	background-position:
		var(--page-side-motif-left) 0,
		calc(var(--page-side-motif-left) + var(--page-side-motif-gap)) 0;
	background-size:
		var(--page-side-motif-width) var(--page-side-motif-end-stop),
		var(--page-side-motif-width) var(--page-side-motif-end-stop);
}

.page-side-motif.reflections-page > .reflections-section--library::after,
.page-side-motif.about-page > .about-page__closing::after,
.page-side-motif.philosophy-page > .section-closing::after {
	content: "";
	position: absolute;
	left: calc(var(--page-side-motif-left) - (var(--page-side-motif-marker-size) / 2));
	top: 50%;
	width: calc(var(--page-side-motif-gap) + var(--page-side-motif-marker-size));
	height: var(--page-side-motif-marker-size);
	transform: translateY(-50%);
	background: url("assets/illustrations/page-side-diamonds.svg") center / 100% 100% no-repeat;
	z-index: 0;
	pointer-events: none;
}

/* Reflections */

.reflections-section {
	padding-block: clamp(4.2rem, 6vw, 6rem);
	border-top: 1px solid var(--olil-border);
}

.reflections-section--intro {
	padding-block: clamp(8.35rem, 11vw, 10rem) clamp(4.3rem, 6.2vw, 5.5rem);
	border-top: 0;
	background: var(--olil-soft-white);
}

.reflections-section--stream {
	background: var(--olil-soft);
	padding-block: clamp(2.8rem, 4.5vw, 4rem);
}

.reflections-header {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(18rem, 0.72fr);
	gap: clamp(2.8rem, 6vw, 5.2rem);
	align-items: start;
}

.reflections-page__intro {
	max-width: min(100%, 39rem);
}

.reflections-page__intro .section-hero__text {
	max-width: min(100%, 36rem);
}

.reflections-page__supporting {
	max-width: min(100%, 34rem);
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(63, 56, 47, 0.76);
}

.reflections-header__stream {
	max-width: 24rem;
	padding-top: clamp(0.45rem, 1vw, 0.85rem);
}

.reflections-header__stream h2 {
	max-width: 15rem;
	font-size: clamp(1.7rem, 2.8vw, 2rem);
	line-height: 1.12;
}

.reflections-header__stream p {
	max-width: 22rem;
}

.reflections-stream__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.95rem 1.2rem;
	padding-top: 0.2rem;
}

.reflections-stream__actions-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.95rem 1.2rem;
}

.reflections-stream__button {
	padding-inline: 1rem;
	border-color: rgba(181, 155, 104, 0.54);
	background: rgba(181, 155, 104, 0.08);
}

.reflections-stream__button:hover,
.reflections-stream__button:focus-visible {
	background: rgba(181, 155, 104, 0.16);
	border-color: rgba(181, 155, 104, 0.72);
	color: var(--olil-ink);
}

.reflections-stream__rss {
	color: rgba(63, 56, 47, 0.7);
	text-decoration: none;
	border-bottom: 1px solid rgba(181, 155, 104, 0.42);
	transition: color 160ms ease, border-color 160ms ease;
}

.reflections-stream__rss:hover,
.reflections-stream__rss:focus-visible {
	color: var(--olil-ink);
	border-color: currentColor;
}

.reflections-feed {
	display: grid;
	gap: 1.15rem;
	width: min(100%, 32rem);
	margin-inline: auto;
}

.reflections-feed__eyebrow {
	margin: 0;
	color: var(--olil-gold);
	font-size: 0.88rem;
	line-height: 1.5;
}

.reflections-feed__featured {
	border-top: 1px solid rgba(181, 155, 104, 0.32);
}

.reflections-feed__secondary {
	display: grid;
	gap: 0;
}

.reflections-feed__entry {
	display: grid;
	gap: 0.6rem;
	min-width: 0;
	padding: 1.15rem 0 1.25rem;
	border-bottom: 1px solid rgba(181, 155, 104, 0.18);
}

.reflections-feed__entry--featured {
	gap: 0.88rem;
	padding: 1.45rem 0 1.85rem;
}

.reflections-feed__entry--compact {
	gap: 0.48rem;
	padding: 0.95rem 0 1.05rem;
}

.reflections-feed__date,
.reflection-entry__date {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(63, 56, 47, 0.62);
}

.reflections-library__categories {
	margin: 0;
	color: var(--olil-gold);
	font-size: 0.86rem;
	line-height: 1.55;
	letter-spacing: 0.01em;
}

.reflection-entry__categories {
	margin: 0;
	color: var(--olil-gold);
	font-size: 0.86rem;
	line-height: 1.55;
	letter-spacing: 0.01em;
}

.reflections-feed__entry h3,
.reflections-library__entry h3 {
	margin: 0;
	font-size: 1.28rem;
	line-height: 1.18;
}

.reflections-feed__entry--featured h3 {
	font-size: 1.56rem;
	line-height: 1.12;
	max-width: 27rem;
}

.reflections-feed__entry--featured p {
	max-width: 29rem;
	line-height: 1.84;
}

.reflections-feed__entry--featured .reflections-feed__link {
	margin-top: 0.1rem;
}

.reflections-feed__entry--compact h3 {
	font-size: 1.08rem;
	line-height: 1.24;
}

.reflections-feed__entry h3 a,
.reflections-library__entry h3 a {
	color: var(--olil-ink);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 160ms ease, color 160ms ease;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.reflections-feed__entry h3 a:hover,
.reflections-feed__entry h3 a:focus-visible,
.reflections-library__entry h3 a:hover,
.reflections-library__entry h3 a:focus-visible {
	color: var(--olil-ink);
	border-color: rgba(181, 155, 104, 0.6);
}

.reflections-feed__entry p,
.reflections-library__entry p:not(.reflections-library__categories),
.reflections-feed__empty,
.reflections-library__empty {
	margin: 0;
	line-height: 1.8;
	color: var(--olil-muted);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.reflection-entry__intro .reflection-entry__categories {
	color: var(--olil-gold);
}

.reflections-feed__entry--compact p {
	line-height: 1.72;
}

.reflections-feed__empty {
	padding-top: 1.15rem;
	border-top: 1px solid rgba(181, 155, 104, 0.18);
}

.reflections-feed__link,
.reflections-library__link,
.reflection-entry__back {
	justify-self: start;
	color: rgba(63, 56, 47, 0.78);
	text-decoration: none;
	border-bottom: 1px solid rgba(181, 155, 104, 0.4);
	transition: color 160ms ease, border-color 160ms ease;
}

.reflections-feed__link:hover,
.reflections-feed__link:focus-visible,
.reflections-library__link:hover,
.reflections-library__link:focus-visible,
.reflection-entry__back:hover,
.reflection-entry__back:focus-visible {
	color: var(--olil-ink);
	border-color: currentColor;
}

.reflections-library {
	display: grid;
	gap: clamp(2.2rem, 4vw, 3rem);
}

.reflections-library__intro {
	width: min(100%, 36rem);
	margin-inline: auto;
	text-align: center;
}

.reflections-library__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem 0.85rem;
	width: min(100%, 46rem);
	margin: -1.55rem auto 0;
}

.reflections-library__filter-label {
	width: min(100%, 46rem);
	color: rgba(63, 56, 47, 0.72);
	font-size: 0.94rem;
	line-height: 1.55;
}

.reflections-library__filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.2rem;
	padding: 0.38rem 0.78rem;
	border: 1px solid rgba(181, 155, 104, 0.22);
	border-radius: 999px;
	color: rgba(63, 56, 47, 0.74);
	font-size: 0.94rem;
	line-height: 1.3;
	text-decoration: none;
	background: rgba(247, 243, 236, 0.48);
	transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.reflections-library__filter:hover,
.reflections-library__filter:focus-visible {
	color: var(--olil-ink);
	border-color: rgba(181, 155, 104, 0.42);
	background: rgba(181, 155, 104, 0.08);
}

.reflections-library__filter.is-active {
	color: var(--olil-ink);
	border-color: rgba(181, 155, 104, 0.58);
	background: rgba(181, 155, 104, 0.1);
}

.reflections-library__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.8rem, 3vw, 2.4rem) clamp(2.2rem, 4vw, 3.2rem);
	width: min(100%, 66rem);
	margin-inline: auto;
}

.reflections-library__entry {
	display: grid;
	gap: 0.8rem;
	align-content: start;
	min-width: 0;
	padding: 1.5rem 0 1.95rem;
	border-top: 1px solid rgba(181, 155, 104, 0.22);
}

.reflections-library__empty {
	max-width: min(100%, 34rem);
	margin-inline: auto;
	text-align: center;
}

.reflection-entry-section--intro {
	padding-block: clamp(8.35rem, 11vw, 10rem) clamp(3.25rem, 5vw, 4.25rem);
	background: var(--olil-soft-white);
	border-top: 0;
}

.reflection-entry-section--body {
	padding-block: clamp(3.6rem, 5.4vw, 4.8rem);
}

.reflection-entry__intro {
	max-width: min(100%, 41rem);
	margin-inline: auto;
	justify-items: center;
}

.reflection-entry__intro .reflection-entry__back {
	justify-self: center;
}

.reflection-entry__deck {
	max-width: min(100%, 35rem);
	font-size: 1.08rem;
	line-height: 1.78;
	color: rgba(63, 56, 47, 0.78);
}

.reflection-entry__figure {
	width: min(100%, 48rem);
	margin: 0 auto clamp(2rem, 4vw, 2.8rem);
}

.reflection-entry__figure img {
	display: block;
	width: 100%;
	height: auto;
}

.reflection-entry__content {
	width: min(100%, 42rem);
	margin-inline: auto;
	display: grid;
	gap: 1.1rem;
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--olil-muted);
}

.reflection-entry__content > * {
	margin: 0;
}

.reflection-entry__content h2,
.reflection-entry__content h3,
.reflection-entry__content h4 {
	margin-top: 1.4rem;
	line-height: 1.14;
	color: var(--olil-ink);
}

.reflection-entry__content h2 {
	font-size: 2rem;
}

.reflection-entry__content h3,
.reflection-entry__content h4 {
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-weight: 400;
	font-style: normal;
}

.reflection-entry__content h3 {
	font-size: 1.5rem;
}

.reflection-entry__content a {
	color: var(--olil-ink);
	text-decoration: underline;
	text-decoration-color: rgba(181, 155, 104, 0.5);
	text-underline-offset: 0.16em;
}

.reflection-entry__content a:hover,
.reflection-entry__content a:focus-visible {
	text-decoration-color: currentColor;
}

.reflection-entry__content ul,
.reflection-entry__content ol {
	display: grid;
	gap: 0.55rem;
	padding-left: 1.25rem;
}

.reflection-entry__content blockquote {
	margin: 0.2rem 0;
	padding-left: 1rem;
	border-left: 1px solid rgba(181, 155, 104, 0.48);
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 1.18rem;
	line-height: 1.7;
	color: rgba(63, 56, 47, 0.84);
}

@media (min-width: 901px) {
	.page-band__headline--single-line {
		white-space: nowrap;
	}
}

.newsletter-message {
	padding-block: clamp(0.9rem, 2vw, 1.4rem);
	text-align: center;
}

.newsletter-message__brand-mark {
	display: flex;
	justify-content: center;
	margin-bottom: clamp(1.15rem, 2.4vw, 1.85rem);
}

.newsletter-message__brand-mark img {
	width: min(100%, 16.5rem);
	height: auto;
}

.newsletter-message h1 {
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	line-height: 1.12;
	color: var(--olil-ink);
}

.newsletter-message__content {
	max-width: 38rem;
	margin-inline: auto;
	margin-top: 1.45rem;
	display: grid;
	gap: 1.35rem;
}

.newsletter-message__content p {
	margin: 0;
}

.newsletter-message__closing {
	margin-top: 0.7rem;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 1.18rem;
	line-height: 1.7;
	color: var(--olil-ink);
}

.newsletter-message__return {
	margin-top: 0.25rem;
}

.newsletter-message__return-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--olil-ink);
	text-decoration: none;
	border-bottom: 1px solid rgba(63, 56, 47, 0.25);
	transition: border-color 0.24s ease, color 0.24s ease;
}

.newsletter-message__return-link:hover,
.newsletter-message__return-link:focus-visible {
	color: var(--olil-accent);
	border-color: currentColor;
}

.legal-page__header {
	padding-block: clamp(4rem, 6.8vw, 5.9rem) clamp(2.1rem, 3.4vw, 2.85rem);
	border-bottom: 1px solid var(--olil-border);
}

.legal-page__body {
	padding-block: clamp(3rem, 5vw, 4.55rem);
}

.legal-page__inner {
	width: min(calc(100% - 2rem), 860px);
	margin-inline: auto;
}

.legal-page h1,
.legal-content h2 {
	margin: 0;
	line-height: 1.12;
	color: var(--olil-ink);
}

.legal-page h1 {
	font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.legal-content {
	display: grid;
	gap: 2.1rem;
}

.legal-section {
	display: grid;
	gap: 0.85rem;
}

.legal-section + .legal-section {
	padding-top: 2.1rem;
	border-top: 1px solid var(--olil-border);
}

.legal-content h2 {
	font-size: clamp(1.28rem, 2.6vw, 1.65rem);
}

.legal-content p,
.legal-content address,
.legal-content li {
	margin: 0;
	color: var(--olil-muted);
}

.legal-content address {
	font-style: normal;
}

.legal-content ul {
	display: grid;
	gap: 0.35rem;
	margin: 0;
	padding-left: 1.25rem;
}

.legal-placeholder {
	padding-left: 0.85rem;
	border-left: 2px solid rgba(181, 155, 104, 0.55);
	color: var(--olil-ink);
}

.about-page__intro,
.about-page__section {
	padding-block: clamp(4.15rem, 6vw, 5.95rem);
	border-top: 1px solid var(--olil-border);
}

.about-page__intro {
	border-top: 0;
}

.about-page__intro--brand {
	text-align: center;
	background: var(--olil-soft-white);
}

.about-page__section--soft {
	background: var(--olil-soft);
}

.about-page__inner {
	width: min(calc(100% - 2rem), var(--olil-max));
	margin-inline: auto;
}

.about-page__intro-grid {
	display: block;
}

.about-page__copy {
	max-width: 41rem;
}

.about-page__copy--lead {
	max-width: 42rem;
}

.about-page__copy--wrapped {
	max-width: none;
}

.about-page__brand-mark {
	display: flex;
	justify-content: center;
	margin-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
}

.about-page__brand-mark img {
	width: min(100%, 19.5rem);
	height: auto;
}

.about-page h1,
.about-page h2,
.about-page h3 {
	margin: 0;
	line-height: 1.1;
	letter-spacing: 0;
	color: var(--olil-ink);
}

.about-page h3 {
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-weight: 400;
	font-style: normal;
}

.about-page h2 {
	font-size: clamp(2rem, 4vw, 2.85rem);
}

.about-page h3 {
	font-size: clamp(1.25rem, 2vw, 1.45rem);
}

.about-page__text-flow {
	display: grid;
	gap: 1.12rem;
	margin-top: clamp(1.65rem, 3vw, 2.2rem);
	color: var(--olil-muted);
}

.about-page__text-flow--wrapped {
	display: flow-root;
	max-width: none;
}

.about-page__text-flow--centered {
	max-width: 44rem;
	margin-inline: auto;
}

.about-page__text-flow--centered > * {
	margin-inline: auto;
}

.about-page__affirmation {
	width: min(100%, 32rem);
	margin-top: 0.4rem;
	margin-inline: auto;
	justify-self: center;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	line-height: 1.28;
	color: var(--olil-ink);
	text-align: center;
}

.about-page__text-flow p,
.about-page__text-flow ul,
.about-page__text-flow li {
	margin: 0;
}

.about-page__text-flow--wrapped > p,
.about-page__text-flow--wrapped > ul {
	margin: 0 0 1.12rem;
}

.about-page__text-flow--wrapped > :last-child {
	margin-bottom: 0;
}

.about-page__text-flow ul {
	display: grid;
	gap: 0.48rem;
	padding-left: 1.15rem;
}

.about-page__text-flow li::marker {
	color: var(--olil-gold);
}

.about-page__portrait {
	justify-self: end;
	width: min(100%, 27.5rem);
	margin: 0;
}

.about-page__portrait--wrapped {
	float: right;
	clear: right;
	width: min(39%, 25.75rem);
	margin: 0 0 1.45rem clamp(1.35rem, 2.8vw, 2.6rem);
}

.about-page__portrait img {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--olil-image-radius);
	object-fit: cover;
	object-position: 72% center;
	filter: saturate(0.96) brightness(0.99);
}

.about-page__reading {
	max-width: 44rem;
}

.about-page__reading--centered {
	margin-inline: auto;
	text-align: center;
}

.about-page__section-heading {
	max-width: 44rem;
	margin-inline: auto;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}

.about-page__guide-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2.2rem, 4vw, 3.6rem) clamp(3rem, 6vw, 5rem);
}

.about-page__guide {
	padding-top: 1.15rem;
	border-top: 1px solid rgba(181, 155, 104, 0.58);
}

.about-page__guide .about-page__text-flow {
	gap: 0.95rem;
	margin-top: 1.1rem;
}

.about-page__closing {
	text-align: center;
}

.about-page__closing .about-page__reading {
	margin-inline: auto;
}

.about-page__closing .about-page__text-flow {
	max-width: 38rem;
	margin-inline: auto;
}

.about-page__actions {
	justify-content: center;
	margin-top: clamp(2rem, 4vw, 2.8rem);
}

.path-section {
	padding-block: clamp(3.45rem, 5vw, 4.65rem);
	border-top: 1px solid var(--olil-border);
}

.path-section--soft {
	background: var(--olil-soft);
}

.path-section--personalized {
	background: linear-gradient(180deg, var(--olil-cream) 0%, rgba(243, 238, 229, 0.72) 50%, var(--olil-cream) 100%);
}

.path-section--personalized .path-reading {
	padding-block: clamp(0.4rem, 1.4vw, 0.9rem);
	border-top: 1px solid rgba(181, 155, 104, 0.3);
	border-bottom: 1px solid rgba(181, 155, 104, 0.18);
}

.path-section__inner {
	width: min(calc(100% - 2rem), var(--olil-max));
	margin-inline: auto;
}

.path-reading {
	max-width: 44rem;
}

.path-reading--centered {
	margin-inline: auto;
	text-align: center;
}

.path-page h2,
.path-page h3 {
	margin: 0;
	line-height: 1.12;
	letter-spacing: 0;
	color: var(--olil-ink);
}

.path-page h2 {
	font-size: clamp(2rem, 4vw, 2.85rem);
}

.path-page h3 {
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(1.25rem, 2vw, 1.48rem);
}

.path-text-flow {
	display: grid;
	gap: 1.1rem;
	margin-top: clamp(1.55rem, 3vw, 2.1rem);
	color: var(--olil-muted);
}

.path-text-flow--compact {
	margin-top: 0;
}

.path-text-flow p,
.path-intro,
.path-closing-text {
	margin: 0;
	color: var(--olil-muted);
	line-height: 1.74;
}

.path-intro {
	max-width: 38rem;
	margin-top: clamp(1.35rem, 2.5vw, 1.85rem);
	margin-inline: auto;
}

.olil-scroll-fade {
	opacity: 0;
	transform: translate3d(0, 1rem, 0);
	transition: opacity 700ms ease, transform 700ms ease;
	will-change: opacity, transform;
}

.olil-scroll-fade.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.path-card-grid {
	display: grid;
	gap: clamp(1.25rem, 2.6vw, 1.8rem);
	margin-top: clamp(2.5rem, 5vw, 3.6rem);
}

.path-opening__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(19rem, 0.62fr);
	gap: clamp(3.4rem, 7vw, 6.4rem);
	align-items: center;
}

.path-opening__copy {
	max-width: 39.5rem;
}

.path-opening__feature {
	justify-self: end;
	width: min(100%, 26rem);
	padding-top: clamp(1.35rem, 2.6vw, 1.9rem);
	border-top: 1px solid rgba(181, 155, 104, 0.46);
}

.path-opening__feature p {
	margin: 0;
	color: #3F382F;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.28;
	letter-spacing: 0;
}

.path-opening__feature--video {
	width: min(100%, 35rem);
	padding-top: 0;
	border-top: 0;
}

.path-opening-video {
	position: relative;
	border: 1px solid rgba(181, 155, 104, 0.34);
	border-radius: 6px;
	background: rgba(252, 251, 248, 0.82);
	aspect-ratio: 16 / 9;
	box-shadow: 0 18px 34px rgba(63, 56, 47, 0.07);
	isolation: isolate;
}

.path-opening-video__media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: rgba(243, 238, 229, 0.9);
	border-radius: inherit;
}

.path-opening-video.is-ready:not(.is-playing) .path-opening-video__media {
	pointer-events: none;
}

.path-opening-video__play {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
}

.path-opening-video.is-ready .path-opening-video__play {
	display: flex;
}

.path-opening-video__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.path-opening-video__play:hover .path-opening-video__play-icon,
.path-opening-video__play:focus-visible .path-opening-video__play-icon {
	background: rgba(252, 251, 248, 0.98);
	border-color: rgba(181, 155, 104, 0.9);
	transform: scale(1.02);
}

.path-opening-video__play-icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.45rem;
	height: 4.45rem;
	border: 1px solid rgba(181, 155, 104, 0.78);
	border-radius: 999px;
	background: rgba(252, 251, 248, 0.72);
	box-shadow: 0 12px 24px rgba(63, 56, 47, 0.09);
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.path-opening-video__play-icon::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.22rem;
	border-top: 0.72rem solid transparent;
	border-bottom: 0.72rem solid transparent;
	border-left: 1.18rem solid var(--olil-gold);
}

.path-opening-video.is-playing .path-opening-video__play[hidden] {
	display: none;
}

.path-opening-video:fullscreen,
.path-opening-video:-webkit-full-screen {
	border: 0;
	border-radius: 0;
	background: #000;
	box-shadow: none;
}

.path-opening-video__media:fullscreen,
.path-opening-video__media:-webkit-full-screen {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0;
	background: #000;
}

.path-opening-transcript {
	margin-top: 1rem;
}

.path-opening-transcript__summary {
	width: 100%;
	justify-content: space-between;
	padding-inline: 1rem 1.15rem;
}

.path-opening-transcript__panel {
	background: rgba(252, 251, 248, 0.84);
	box-shadow: 0 14px 28px rgba(63, 56, 47, 0.06);
}

.path-opening-transcript__panel .path-text-flow p {
	font-size: 0.98rem;
	line-height: 1.78;
}

.path-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-card-grid--three > .path-card:nth-child(1) {
	grid-column: 1;
	grid-row: 2;
	align-self: end;
}

.path-card-grid--three > .path-card:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
}

.path-card-grid--three > .path-card:nth-child(3) {
	grid-column: 3;
	grid-row: 2;
	align-self: end;
}

.path-card-grid--three > .path-method__figure {
	grid-column: 2;
	grid-row: 2;
	align-self: start;
	justify-self: center;
	margin: 0 auto;
}

.path-card-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: min(100%, 46rem);
	margin-inline: auto;
}

.path-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
}

.path-card-grid--four .path-card-grid__arrow {
	display: none;
}

.path-card {
	display: grid;
	align-content: start;
	gap: 0.95rem;
	min-height: 100%;
	padding: clamp(1.55rem, 3vw, 2.1rem);
	border: 1px solid rgba(181, 155, 104, 0.2);
	border-radius: 6px;
	background: rgba(247, 243, 236, 0.36);
	box-shadow: none;
}

.path-card--quiet {
	background: rgba(247, 243, 236, 0.18);
	box-shadow: none;
}

.path-card-grid--four .path-card {
	border-color: rgba(181, 155, 104, 0.1);
	background: rgba(247, 243, 236, 0.07);
}

.path-card-grid--four .path-card h3 {
	line-height: 1.18;
}

.path-card-grid--four .path-card p {
	line-height: 1.68;
}

.path-card p {
	margin: 0;
	color: var(--olil-muted);
}

.path-card-grid__arrow-glyph {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 0.34rem solid transparent;
	border-bottom: 0.34rem solid transparent;
	border-left: 0.54rem solid rgba(181, 155, 104, 0.7);
}

.path-card-grid--three > .path-card h3 {
	font-size: clamp(1.12rem, 1.55vw, 1.26rem);
}

.path-card-grid--three > .path-card p {
	font-size: 0.96rem;
	line-height: 1.62;
}

.path-card-grid--three > .path-card:nth-child(1),
.path-card-grid--three > .path-card:nth-child(3) {
	min-height: 0;
	padding: clamp(1.2rem, 2.2vw, 1.55rem);
}

.path-card__subtitle {
	color: var(--olil-ink);
	font-weight: 500;
	line-height: 1.55;
}

.path-method-detail {
	display: grid;
	justify-items: center;
	gap: 1.05rem;
	max-width: 48rem;
	margin: clamp(2.35rem, 5vw, 3.4rem) auto 0;
	color: var(--olil-muted);
	text-align: center;
}

.path-method-detail p,
.path-check-list--method {
	margin: 0;
}

.path-check-list--method {
	width: min(100%, 46rem);
	margin-top: 0.15rem;
}

@media (min-width: 901px) {
	.path-card-grid--four {
		grid-template-columns:
			minmax(0, 1fr)
			minmax(1rem, auto)
			minmax(0, 1fr)
			minmax(1rem, auto)
			minmax(0, 1fr)
			minmax(1rem, auto)
			minmax(0, 1fr);
		column-gap: clamp(1.15rem, 2.8vw, 1.95rem);
		row-gap: 0;
	}

	.path-card-grid--four .path-card-grid__arrow {
		display: grid;
		place-items: center;
		align-self: center;
	}
}

.path-method__figure {
	width: fit-content;
	margin: clamp(3rem, 5vw, 4.4rem) auto 0;
}

.path-method__figure img {
	display: block;
	width: auto;
	max-width: 100%;
	height: clamp(15rem, 20vw, 18rem);
	border-radius: var(--olil-image-radius);
	filter: saturate(0.92) brightness(0.98);
}

.path-closing-text {
	max-width: 44rem;
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	margin-inline: auto;
	text-align: center;
}

.path-closing-text--split {
	grid-column: 1 / -1;
	margin-top: 0;
}

.path-split {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.9fr);
	gap: clamp(3rem, 6vw, 5.25rem);
	align-items: start;
}

.path-split--journey {
	column-gap: clamp(4rem, 7.5vw, 6.75rem);
	row-gap: clamp(1.85rem, 3.2vw, 2.4rem);
}

.path-split--balanced {
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.78fr);
}

.path-hold-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(21rem, 24rem);
	gap: clamp(3.4rem, 6.4vw, 5.75rem);
	align-items: center;
}

.path-hold-layout__copy {
	max-width: 42rem;
}

.path-hold-layout__figure {
	align-self: center;
	justify-self: end;
	width: 100%;
	max-width: 24rem;
	margin: 0;
	padding-inline-start: 0;
}

.path-hold-layout__figure img {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	border-radius: var(--olil-image-radius);
	object-fit: cover;
	object-position: 50% 50%;
	filter: saturate(0.96) brightness(1.01);
}

.path-offer-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.76fr) minmax(18rem, 0.44fr);
	gap: clamp(3rem, 6vw, 5rem);
	align-items: start;
}

.path-offer-layout__copy {
	max-width: 43rem;
}

.path-offer-panel {
	align-self: start;
	justify-self: end;
	display: grid;
	gap: clamp(1.4rem, 3vw, 1.85rem);
	width: min(100%, 25rem);
	padding-block: clamp(1.25rem, 2.6vw, 1.7rem);
	border-top: 1px solid rgba(181, 155, 104, 0.34);
	border-bottom: 1px solid rgba(181, 155, 104, 0.24);
}

.path-offer-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.path-offer-list__item {
	display: grid;
	gap: 0.4rem;
	padding-block: 0.95rem;
	border-top: 1px solid rgba(181, 155, 104, 0.22);
}

.path-offer-list__item:first-child {
	padding-top: 0;
	border-top: 0;
}

.path-offer-list__item:last-child {
	padding-bottom: 0;
}

.path-offer-list__item--inline {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: baseline;
	column-gap: 1rem;
}

.path-offer-list__label {
	color: var(--olil-ink);
	font-weight: 500;
	line-height: 1.55;
}

.path-offer-list__value {
	color: var(--olil-ink);
	font-weight: 500;
	line-height: 1.3;
}

.path-offer-list__value--price {
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(1.7rem, 3.4vw, 2.1rem);
	font-weight: 400;
	letter-spacing: 0;
}

.path-offer-list__note {
	margin: 0;
	color: var(--olil-muted);
	line-height: 1.68;
}

.path-section--trial .path-offer-panel {
	border-top-color: rgba(181, 155, 104, 0.28);
	border-bottom-color: rgba(181, 155, 104, 0.18);
}

.path-section--trial .button--primary {
	min-height: 2.88rem;
	padding: 0.66rem 0.98rem;
	border-color: rgba(181, 155, 104, 0.72);
	background: rgba(181, 155, 104, 0.13);
	letter-spacing: 0.005em;
}

.path-section--trial .button--primary:hover,
.path-section--trial .button--primary:focus-visible {
	background: rgba(181, 155, 104, 0.22);
	border-color: rgba(181, 155, 104, 0.8);
	color: var(--olil-ink);
}

.path-offer-includes {
	display: grid;
	gap: 1.15rem;
	margin-top: clamp(2rem, 4vw, 2.8rem);
}

.path-offer-includes h3 {
	margin: 0;
	font-size: clamp(1.08rem, 1.8vw, 1.18rem);
	line-height: 1.4;
}

.path-offer-includes .path-check-list {
	gap: 0;
	max-width: 39rem;
}

.path-actions--start {
	justify-content: flex-start;
}

.path-closing-text--offer {
	max-width: 36rem;
	margin-inline: 0;
	text-align: left;
}

.path-section--testimonials {
	padding-block: clamp(2.9rem, 4.8vw, 4.15rem);
	background: linear-gradient(180deg, rgba(243, 238, 229, 0.8) 0%, rgba(252, 251, 248, 0.84) 100%);
}

.path-testimonials {
	display: grid;
	gap: clamp(1.55rem, 3vw, 2.2rem);
}

.path-testimonials__intro {
	max-width: 28rem;
	margin-inline: auto;
	text-align: center;
}

.path-testimonials__intro h2 {
	font-size: clamp(1.72rem, 3vw, 2.2rem);
}

.path-testimonials__carousel {
	--path-testimonials-visible: 3;
	--path-testimonials-gap: 0.95rem;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-areas:
		"prev viewport next"
		". dots .";
	column-gap: clamp(0.85rem, 2vw, 1.4rem);
	row-gap: 0.95rem;
	width: min(100%, 67rem);
	margin-inline: auto;
}

.path-testimonials__viewport {
	grid-area: viewport;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	border-radius: 6px;
	overscroll-behavior-x: contain;
	touch-action: pan-x pan-y;
}

.path-testimonials__viewport::-webkit-scrollbar {
	display: none;
}

.path-testimonials__track {
	display: grid;
	align-items: start;
	gap: var(--path-testimonials-gap);
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--path-testimonials-gap) * (var(--path-testimonials-visible) - 1))) / var(--path-testimonials-visible));
	transition: transform 320ms ease;
	will-change: transform;
}

.path-testimonials__carousel:not(.is-native-scroll) .path-testimonials__viewport {
	overflow: hidden;
}

.path-testimonials__carousel.is-native-scroll .path-testimonials__track {
	transform: none !important;
	transition: none;
	will-change: auto;
}

.path-testimonial {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	align-content: stretch;
	gap: clamp(1rem, 1.6vw, 1.3rem);
	min-height: clamp(13.75rem, 20vw, 16.5rem);
	padding: clamp(1.1rem, 1.6vw, 1.45rem);
	margin: 0;
	border: 1px solid rgba(181, 155, 104, 0.18);
	border-radius: 6px;
	background: rgba(252, 251, 248, 0.68);
	box-shadow: none;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.path-testimonial__body {
	display: flex;
	align-items: flex-start;
	max-width: none;
}

.path-testimonial__body p {
	margin: 0;
	color: var(--olil-ink);
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(0.94rem, 1.02vw, 1.06rem);
	line-height: 1.64;
	overflow-wrap: anywhere;
}

.path-testimonial__meta {
	display: flex;
	align-items: center;
	gap: 0.78rem;
	padding-top: 0.72rem;
	border-top: 1px solid rgba(181, 155, 104, 0.14);
}

.path-testimonial__profile {
	flex: 0 0 auto;
	width: clamp(2.35rem, 3.8vw, 2.75rem);
	aspect-ratio: 1;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(181, 155, 104, 0.08);
	box-shadow: inset 0 0 0 1px rgba(181, 155, 104, 0.14);
}

.path-testimonial__profile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.path-testimonial__profile.has-image {
	background: rgba(243, 238, 229, 0.4);
	box-shadow: none;
}

.path-testimonial__attribution {
	margin: 0;
	flex: 1 1 auto;
	color: rgba(94, 86, 75, 0.84);
	font-size: 0.78rem;
	line-height: 1.48;
}

.path-testimonials__controls {
	display: contents;
}

.path-testimonials__control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	padding: 0;
	border: 1px solid rgba(181, 155, 104, 0.32);
	border-radius: 999px;
	background: rgba(252, 251, 248, 0.5);
	color: rgba(181, 155, 104, 0.72);
	cursor: pointer;
	transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.path-testimonials__control-glyph {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 0.28rem solid transparent;
	border-bottom: 0.28rem solid transparent;
}

.path-testimonials__control-glyph--prev {
	border-right: 0.44rem solid currentColor;
	margin-left: -0.04rem;
}

.path-testimonials__control-glyph--next {
	border-left: 0.44rem solid currentColor;
	margin-right: -0.04rem;
}

.path-testimonials__control:first-child {
	grid-area: prev;
	align-self: center;
	justify-self: start;
}

.path-testimonials__control:last-child {
	grid-area: next;
	align-self: center;
	justify-self: end;
}

.path-testimonials__control:hover,
.path-testimonials__control:focus-visible {
	border-color: rgba(181, 155, 104, 0.58);
	color: rgba(181, 155, 104, 0.9);
	background: rgba(252, 251, 248, 0.7);
}

.path-testimonials__control[disabled] {
	opacity: 0.38;
	cursor: default;
}

.path-testimonials__dots {
	grid-area: dots;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	justify-self: center;
}

.path-testimonials__dot {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(181, 155, 104, 0.24);
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.path-testimonials__dot:hover,
.path-testimonials__dot:focus-visible,
.path-testimonials__dot.is-active,
.path-testimonials__dot[aria-current="true"] {
	background: rgba(181, 155, 104, 0.82);
	transform: scale(1.06);
}

.path-hold-list {
	display: grid;
	gap: 0.55rem;
	margin: -0.25rem 0 0;
	padding: 0;
	list-style: none;
}

.path-hold-list li {
	position: relative;
	padding-left: 1.15rem;
	color: var(--olil-muted);
}

.path-hold-list li::before {
	content: "";
	position: absolute;
	top: 0.78em;
	left: 0;
	width: 0.32rem;
	height: 0.32rem;
	border-radius: 999px;
	background: rgba(181, 155, 104, 0.86);
}

.path-copy-block {
	max-width: 34rem;
}

.path-split--journey .path-copy-block {
	max-width: 27.5rem;
}

.path-split--journey .path-intro + .path-text-flow {
	margin-top: clamp(0.95rem, 2vw, 1.25rem);
}

.path-practical-detail {
	display: grid;
	gap: 0.7rem;
	margin-top: clamp(1.3rem, 2.4vw, 1.7rem);
	padding-top: clamp(1.1rem, 2.1vw, 1.35rem);
	border-top: 1px solid rgba(181, 155, 104, 0.2);
}

.path-practical-detail__heading {
	margin: 0;
	color: var(--olil-gold);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.path-practical-detail__line {
	margin: 0;
	color: var(--olil-ink);
	font-weight: 450;
	line-height: 1.65;
}

.path-practical-detail__copy {
	display: grid;
	gap: 0.7rem;
}

.path-practical-detail__copy p {
	margin: 0;
}

.path-split--journey .path-session-list {
	width: min(100%, 37rem);
}

.path-process-reveal {
	margin-top: clamp(1.2rem, 2.2vw, 1.65rem);
}

.path-process-reveal--centered {
	grid-column: 1 / -1;
	width: 100%;
	margin-inline: auto;
	text-align: center;
}

.path-process-reveal[open] {
	padding-bottom: 0.1rem;
}

.path-process-reveal__summary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	max-width: 100%;
	min-height: 3.1rem;
	padding: 0.76rem 1.2rem;
	border: 1px solid rgba(181, 155, 104, 0.24);
	border-radius: 4px;
	background: rgba(181, 155, 104, 0.04);
	color: var(--olil-ink);
	font: inherit;
	line-height: 1.55;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	list-style: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.path-process-reveal__summary::-webkit-details-marker {
	display: none;
}

.path-process-reveal__summary::after {
	content: "+";
	color: var(--olil-gold);
	font-size: 1rem;
	line-height: 1;
	transition: transform 180ms ease, color 180ms ease;
}

.path-process-reveal[open] .path-process-reveal__summary::after {
	transform: rotate(45deg);
}

.path-process-reveal__summary:hover,
.path-process-reveal__summary:focus-visible {
	background: rgba(181, 155, 104, 0.18);
	border-color: rgba(181, 155, 104, 0.66);
	color: var(--olil-ink);
}

.path-process-reveal__summary:hover::after,
.path-process-reveal__summary:focus-visible::after {
	color: var(--olil-ink);
}

.path-process-reveal__panel {
	margin-top: 0.9rem;
	padding: clamp(1.65rem, 3.3vw, 2.15rem);
	border: 1px solid rgba(181, 155, 104, 0.1);
	border-radius: 6px;
	background: rgba(247, 243, 236, 0.3);
}

.path-process-reveal--centered .path-process-reveal__summary {
	justify-content: center;
	margin-inline: auto;
}

.path-process-reveal--centered .path-process-reveal__panel {
	text-align: left;
}

.path-process-reveal__content {
	display: grid;
	max-width: 40.5rem;
	gap: 1.35rem;
	margin-inline: auto;
}

.path-process-reveal__content h3 {
	font-size: clamp(1.35rem, 2.3vw, 1.62rem);
	font-style: italic;
}

.path-process-reveal__intro {
	margin: 0;
	color: var(--olil-ink);
	font-weight: 450;
	line-height: 1.62;
}

.path-process-reveal__rhythm {
	display: grid;
	gap: 1.1rem;
}

.path-process-reveal__list {
	display: grid;
	gap: 0.92rem;
	margin: 0;
	padding: 0;
	list-style: none;
	max-width: 38rem;
}

.path-process-reveal__list li {
	position: relative;
	padding-left: 1.05rem;
	color: var(--olil-muted);
}

.path-process-reveal__list li::before {
	content: "";
	position: absolute;
	top: 0.78em;
	left: 0;
	width: 0.3rem;
	height: 0.3rem;
	border-radius: 999px;
	background: rgba(181, 155, 104, 0.82);
}

.path-session-list,
.path-check-list {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.path-session-list {
	counter-reset: path-session;
}

.path-session-list li,
.path-check-list li {
	position: relative;
	padding: 1rem 0 0 1.7rem;
	border-top: 1px solid rgba(181, 155, 104, 0.24);
	color: var(--olil-muted);
}

.path-session-list li {
	display: grid;
	gap: 0.36rem;
	padding-top: 1.15rem;
	border-top-color: rgba(181, 155, 104, 0.18);
}

.path-session-list li::before,
.path-check-list li::before {
	position: absolute;
	left: 0;
	color: var(--olil-gold);
}

.path-session-list li::before {
	counter-increment: path-session;
	content: counter(path-session, decimal-leading-zero);
	top: 1.16rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.path-session-list__title {
	color: var(--olil-ink);
	font-weight: 450;
	line-height: 1.72;
}

.path-session-list__detail {
	color: var(--olil-muted);
	font-size: 0.96rem;
	font-weight: 400;
	line-height: 1.78;
}

.path-check-list li::before {
	content: "";
	top: 1.55rem;
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 999px;
	background: currentColor;
}

.path-check-list__item--featured {
	color: var(--olil-ink);
	font-weight: 500;
}

.path-check-list__item--featured::before {
	top: 1.48rem;
	width: 0.46rem;
	height: 0.46rem;
	background: var(--olil-gold);
	box-shadow: 0 0 0 0.22rem rgba(181, 155, 104, 0.12);
}

.path-audience__stack {
	display: grid;
	gap: clamp(2.3rem, 4.5vw, 3.35rem);
}

.path-audience .path-intro {
	max-width: 34rem;
}

.path-check-list--columns {
	position: relative;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	row-gap: 0;
	column-gap: clamp(2.6rem, 4.5vw, 3.8rem);
	width: min(100%, 52rem);
	margin-inline: auto;
}

.path-check-list--columns::before {
	content: "";
	position: absolute;
	top: 0.45rem;
	bottom: 0.25rem;
	left: 50%;
	width: 1px;
	transform: translateX(-50%);
	background: rgba(181, 155, 104, 0.34);
	pointer-events: none;
}

.path-check-list--narrow {
	width: min(100%, 50rem);
}

.path-check-list--support {
	width: min(100%, 53rem);
}

.path-check-list--for {
	width: min(100%, 49rem);
}

.path-fit-note {
	display: grid;
	gap: 0.95rem;
	padding-top: clamp(1.8rem, 3.2vw, 2.4rem);
	border-top: 1px solid rgba(181, 155, 104, 0.28);
}

.path-fit-note h3 {
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 1.36rem);
	line-height: 1.35;
}

.path-fit-note__body {
	display: grid;
	gap: 0.55rem;
	color: var(--olil-muted);
}

.path-fit-note--audience {
	width: min(100%, 46rem);
	margin-inline: auto;
}

.path-fit-note--audience h3 {
	color: var(--olil-muted);
}

.path-check-list--editorial li {
	display: flex;
	align-items: center;
	padding: 0.92rem 0 0.96rem;
	border-top: 0;
	color: rgba(63, 56, 47, 0.82);
}

.path-check-list--editorial li > span {
	display: block;
	max-width: 100%;
}

.path-check-list--editorial li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1.15rem;
	height: 1px;
	transform: none;
	border-radius: 999px;
	background: rgba(181, 155, 104, 0.78);
}

.path-check-list--editorial li:nth-child(odd) {
	justify-content: flex-end;
	text-align: right;
}

.path-check-list--for li {
	font-size: 0.97rem;
	line-height: 1.7;
	color: rgba(63, 56, 47, 0.76);
}

.path-check-list--support li {
	font-size: 1.01rem;
	line-height: 1.78;
}

.path-check-list--method li {
	font-size: 0.99rem;
	line-height: 1.72;
	color: rgba(63, 56, 47, 0.78);
}

.path-check-list--editorial li:nth-child(even) {
	justify-content: flex-start;
	text-align: left;
}

.path-check-list--editorial li:nth-child(odd)::before {
	left: auto;
	right: 0;
	transform: none;
}

.path-closing-text--audience {
	margin-top: 0;
	max-width: 36rem;
}

.path-actions {
	justify-content: center;
	margin-top: clamp(2rem, 4vw, 2.8rem);
}

.path-final-cta {
	display: grid;
	gap: clamp(1.6rem, 3.2vw, 2.35rem);
}

.path-final-cta__intro {
	max-width: 38rem;
}

.path-final-cta__intro-copy {
	max-width: 34rem;
	margin-inline: auto;
	text-align: center;
}

.path-final-cta__comparison {
	width: min(100%, 54rem);
	margin-top: 0;
}

.path-final-cta__card {
	align-content: stretch;
	grid-template-rows: auto 1fr auto;
	gap: 1.1rem;
	padding: clamp(1.3rem, 2.8vw, 1.75rem);
	border-color: rgba(181, 155, 104, 0.16);
	background: rgba(247, 243, 236, 0.2);
}

.path-final-cta__card h3 {
	font-size: clamp(1.2rem, 2vw, 1.36rem);
	line-height: 1.22;
}

.path-final-cta__list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.path-final-cta__list li {
	padding-top: 0.72rem;
	border-top: 1px solid rgba(181, 155, 104, 0.14);
	color: var(--olil-muted);
	line-height: 1.7;
}

.path-final-cta__list li:first-child {
	padding-top: 0;
	border-top: 0;
}

.path-final-cta__price {
	color: rgba(63, 56, 47, 0.82);
	font-weight: 500;
	letter-spacing: 0.01em;
}

.path-final-cta__card-actions {
	justify-content: flex-start;
	margin-top: auto;
	padding-top: 0.35rem;
}

.path-final-cta__card-actions .button {
	min-height: 2.78rem;
	padding: 0.62rem 0.94rem;
}

.path-final-cta__intro-call {
	margin: 0;
	color: rgba(63, 56, 47, 0.72);
	font-size: 0.98rem;
	line-height: 1.72;
	text-align: center;
}

.path-final-cta__intro-call a {
	color: rgba(63, 56, 47, 0.84);
	text-decoration: none;
	border-bottom: 1px solid rgba(181, 155, 104, 0.34);
	transition: border-color 180ms ease, color 180ms ease;
}

.path-final-cta__intro-call a:hover,
.path-final-cta__intro-call a:focus-visible {
	color: var(--olil-ink);
	border-bottom-color: rgba(181, 155, 104, 0.58);
}

.path-final-cta__note {
	max-width: 39rem;
	margin: 0 auto;
	color: rgba(63, 56, 47, 0.58);
	font-size: 0.93rem;
	line-height: 1.78;
	text-align: center;
}

.principle-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: clamp(1.25rem, 2.5vw, 1.8rem);
	margin-top: clamp(2.6rem, 5vw, 3.6rem);
}

.principle {
	display: grid;
	align-content: start;
	gap: 1rem;
	height: 100%;
	padding: clamp(1.65rem, 3vw, 2.25rem);
	border: 1px solid rgba(181, 155, 104, 0.34);
	border-radius: 6px;
	background: rgba(247, 243, 236, 0.78);
	box-shadow: 0 1.4rem 3.8rem rgba(63, 56, 47, 0.08), 0 0.25rem 1rem rgba(63, 56, 47, 0.04);
}

.principle h3 {
	color: var(--olil-ink);
}

.principle p {
	margin: 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
	gap: 4rem;
	align-items: start;
}

/* Contact page fallback form */
.one-life-contact-form .contact-form {
	display: grid;
	gap: 1rem;
}

.one-life-contact-form .field {
	display: grid;
	gap: 0.45rem;
}

.one-life-contact-form .field label {
	color: var(--olil-ink);
	font-size: 0.94rem;
}

.one-life-contact-form .field input,
.one-life-contact-form .field textarea {
	width: 100%;
	border: 1px solid var(--olil-border);
	border-radius: 4px;
	background: var(--olil-cream);
	color: var(--olil-ink);
	padding: 0.85rem 0.9rem;
}

.one-life-contact-form .field textarea {
	min-height: 11rem;
	resize: vertical;
}

.one-life-contact-form .field input:focus,
.one-life-contact-form .field textarea:focus {
	border-color: var(--olil-gold);
	outline: none;
}

.one-life-contact-form .form-note,
.one-life-contact-form .form-response {
	color: var(--olil-muted);
	font-size: 0.94rem;
}

.one-life-contact-form .form-response {
	padding: 0.9rem 1rem;
	border: 1px solid var(--olil-border);
	border-radius: 4px;
	background: var(--olil-soft);
}

/* Contact Form 7 base */
.one-life-contact-form {
	width: min(100%, 47.5rem);
	margin: 0 auto;
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	color: var(--olil-ink);
}

.one-life-contact-form .wpcf7 {
	max-width: 100%;
	margin: 0 auto;
	color: var(--olil-ink);
}

.one-life-contact-form .wpcf7 .screen-reader-response {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.one-life-contact-form .wpcf7 form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.one-life-contact-form .wpcf7 p {
	margin: 0;
}

.one-life-contact-form .contact-form__field,
.one-life-contact-form .contact-form__fieldset {
	display: block;
	margin: 0;
	scroll-margin-top: 7rem;
}

.one-life-contact-form .wpcf7-form-control-wrap {
	display: block;
}

.one-life-contact-form .contact-form__field > p,
.one-life-contact-form .contact-form__fieldset > p,
.one-life-contact-form .contact-form__submit > p {
	display: grid;
	gap: 0.45rem;
	margin: 0;
}

.one-life-contact-form .wpcf7 label,
.one-life-contact-form .wpcf7 legend {
	display: block;
	margin-bottom: 0.45rem;
	padding: 0;
	color: var(--olil-ink);
	font-size: 0.95rem;
	line-height: 1.5;
}

.one-life-contact-form .contact-form__required {
	color: var(--olil-gold);
	font-weight: 600;
}

.one-life-contact-form .wpcf7 fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	min-inline-size: 0;
}

.one-life-contact-form .wpcf7 input[type="text"],
.one-life-contact-form .wpcf7 input[type="email"],
.one-life-contact-form .wpcf7 input[type="url"],
.one-life-contact-form .wpcf7 input[type="tel"],
.one-life-contact-form .wpcf7 textarea,
.one-life-contact-form .wpcf7 select {
	width: 100%;
	box-sizing: border-box;
	padding: 0.95rem 1rem;
	border: 1px solid #d9cebb;
	border-radius: 8px;
	background: var(--olil-cream);
	color: var(--olil-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.one-life-contact-form .wpcf7 textarea {
	min-height: 11.25rem;
	resize: vertical;
}

.one-life-contact-form .wpcf7 input::placeholder,
.one-life-contact-form .wpcf7 textarea::placeholder {
	color: #8a8175;
}

.one-life-contact-form .wpcf7 input:focus,
.one-life-contact-form .wpcf7 textarea:focus,
.one-life-contact-form .wpcf7 select:focus {
	outline: none;
	border-color: var(--olil-gold);
	box-shadow: 0 0 0 2px rgba(181, 155, 104, 0.15);
	background: #fbf8f3;
}

/* Conditional groups and exploration booking branch */
.one-life-contact-form .contact-form__group {
	display: grid;
	gap: 1.35rem;
	padding-top: 1.35rem;
	margin-top: 0.15rem;
	border-top: 1px solid rgba(181, 155, 104, 0.26);
}

.one-life-contact-form .contact-form__group--booking {
	gap: 1.2rem;
}

.one-life-contact-form .contact-form__booking-panel {
	display: grid;
	gap: 0.8rem;
	padding: 1.25rem 1.3rem;
	border: 1px solid rgba(181, 155, 104, 0.26);
	border-radius: 8px;
	background: rgba(243, 238, 229, 0.62);
}

.one-life-contact-form .contact-form__booking-title {
	margin: 0;
	color: var(--olil-ink);
	font-family: Cormorant Garamond, "Times New Roman", serif;
	font-size: clamp(1.55rem, 2.5vw, 1.9rem);
	line-height: 1.18;
}

.one-life-contact-form .contact-form__booking-panel p,
.one-life-contact-form .contact-form__booking-help {
	margin: 0;
	color: var(--olil-muted);
}

.one-life-contact-form #olil-exploration-note {
	min-height: 8rem;
}

.one-life-contact-form .contact-form__booking-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.one-life-contact-form .contact-form__booking-actions > p {
	margin: 0;
}

.one-life-contact-form .contact-form__booking-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Choice controls */
.one-life-contact-form .wpcf7 .contact-form__choices {
	display: grid;
	gap: 0.7rem;
}

.one-life-contact-form .wpcf7 .wpcf7-list-item {
	display: block;
	margin: 0 0 0.6rem;
}

.one-life-contact-form .wpcf7 .wpcf7-list-item:last-child {
	margin-bottom: 0;
}

.one-life-contact-form .wpcf7 .wpcf7-list-item label {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.65rem;
	margin-bottom: 0;
	cursor: pointer;
	color: var(--olil-muted);
}

.one-life-contact-form .wpcf7 input[type="radio"],
.one-life-contact-form .wpcf7 input[type="checkbox"] {
	margin-top: 0.2rem;
	accent-color: var(--olil-gold);
}

.one-life-contact-form .wpcf7 .contact-form__privacy-note {
	margin: 0;
	color: var(--olil-muted);
	font-size: 0.94rem;
}

/* Submission and validation states */
.one-life-contact-form .contact-form__submit {
	margin-top: 0.45rem;
}

.one-life-contact-form .wpcf7 .wpcf7-submit {
	appearance: none;
	align-self: flex-start;
	min-height: 3rem;
	padding: 0.95rem 1.4rem;
	border: 1px solid var(--olil-gold);
	border-radius: 4px;
	background: rgba(181, 155, 104, 0.16);
	color: var(--olil-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.one-life-contact-form .wpcf7 .wpcf7-submit:hover,
.one-life-contact-form .wpcf7 .wpcf7-submit:focus {
	outline: none;
	background: var(--olil-gold);
	border-color: var(--olil-gold);
	color: var(--olil-ink);
}

.one-life-contact-form .wpcf7 .wpcf7-submit:active {
	transform: translateY(1px);
}

.one-life-contact-form .contact-form__submit[hidden] {
	display: none !important;
}

.one-life-contact-form .wpcf7 .wpcf7-not-valid-tip {
	margin-top: 0.4rem;
	color: #8c4f45;
	font-size: 0.9rem;
	display: none !important;
}

.one-life-contact-form .wpcf7 .wpcf7-not-valid {
	border-color: rgba(181, 155, 104, 0.74);
	box-shadow: 0 0 0 0.12rem rgba(181, 155, 104, 0.12);
}

.one-life-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.one-life-contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.one-life-contact-form .wpcf7 form.failed .wpcf7-response-output,
.one-life-contact-form .wpcf7 form.sent .wpcf7-response-output,
.one-life-contact-form .contact-form__validation-summary {
	margin-top: 1rem;
	padding: 1rem 1.1rem;
	border-radius: 8px;
}

.one-life-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.one-life-contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.one-life-contact-form .wpcf7 form.failed .wpcf7-response-output {
	border: 1px solid #c89a91;
	background: #f8eeeb;
	color: #6b3d37;
}

.one-life-contact-form .wpcf7 form.sent .wpcf7-response-output {
	border: 1px solid #cfc3ad;
	background: var(--olil-soft);
	color: var(--olil-ink);
}

.one-life-contact-form .contact-form__validation-summary {
	border: 1px solid #c89a91;
	background: #f8eeeb;
	color: #6b3d37;
}

.one-life-contact-form .contact-form__validation-summary ul {
	display: grid;
	gap: 0.3rem;
	margin: 0;
	padding-left: 1.1rem;
}

.one-life-contact-form .contact-form__validation-summary li {
	line-height: 1.5;
}

.one-life-contact-form .contact-form__validation-summary a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(107, 61, 55, 0.45);
	text-underline-offset: 0.18em;
}

.one-life-contact-form .contact-form__validation-summary a:hover,
.one-life-contact-form .contact-form__validation-summary a:focus {
	color: var(--olil-ink);
	text-decoration-color: currentColor;
	outline: none;
}

.one-life-contact-form .wpcf7 .wpcf7-spinner {
	margin: 0.7rem 0 0 0.75rem;
}

.one-life-contact-form .honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.section-closing {
	text-align: center;
}

.section-closing .section-actions {
	justify-content: center;
}

.section-closing__content {
	max-width: 760px;
	margin-inline: auto;
}

.section-closing p {
	max-width: 620px;
	margin: 0 auto;
}

.site-footer {
	border-top: 1px solid var(--olil-border);
	background: var(--olil-soft);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.92fr) minmax(18rem, 1fr);
	grid-template-areas:
		"brand links aside"
		"meta meta meta";
	gap: 2.8rem 3.2rem;
	align-items: start;
	padding-block: 3.5rem;
}

.site-footer__brand {
	grid-area: brand;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	align-content: start;
	align-self: start;
	max-width: 24rem;
}

.site-footer__brand-copy {
	min-width: 0;
}

.site-footer__links {
	grid-area: links;
	display: grid;
	align-content: start;
	align-self: start;
	gap: 1rem;
}

.site-footer__elsewhere {
	display: grid;
	gap: 0.52rem;
	padding-top: 0.18rem;
}

.site-footer__title {
	margin: 0;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 1.3rem;
	line-height: 1.02;
	color: var(--olil-ink);
}

.site-footer__heading {
	margin: 0;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	text-transform: uppercase;
	font-size: 0.92rem;
	line-height: 1.02;
	letter-spacing: 0.08em;
	color: var(--olil-ink);
}

.site-footer__brand-copy > p {
	margin: 0.7rem 0 0;
	color: var(--olil-muted);
}

.site-footer__links-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem 2.2rem;
}

.site-footer__links-stack {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.site-footer__nav {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__nav a {
	color: var(--olil-muted);
	text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
	color: var(--olil-ink);
}

.site-footer__nav--legal {
	font-size: 0.88rem;
}

.site-footer__nav--elsewhere {
	gap: 0.42rem;
	font-size: 0.86rem;
	line-height: 1.45;
}

.site-footer__nav--elsewhere a {
	display: inline-flex;
	align-items: center;
	width: fit-content;
}

.site-footer__aside {
	grid-area: aside;
	display: grid;
	gap: 2rem;
	align-content: start;
	align-self: start;
}

.site-footer__newsletter {
	width: 100%;
}

.site-footer__newsletter-copy {
	max-width: 28ch;
}

.site-footer__newsletter-form {
	display: grid;
	gap: 0.72rem;
	margin-top: 1rem;
}

.site-footer__newsletter-field {
	display: grid;
	gap: 0.32rem;
}

.site-footer__newsletter-field label {
	font-size: 0.88rem;
	color: var(--olil-ink);
}

.site-footer__newsletter-field input {
	width: 100%;
	min-height: 2.75rem;
	padding: 0.48rem 0.72rem;
	border: 1px solid rgba(181, 155, 104, 0.34);
	border-radius: 0.35rem;
	background: rgba(252, 251, 248, 0.56);
	color: var(--olil-ink);
	font: inherit;
	box-sizing: border-box;
	transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.site-footer__newsletter-field input:focus {
	outline: none;
	border-color: rgba(181, 155, 104, 0.72);
	background: rgba(252, 251, 248, 0.82);
	box-shadow: 0 0 0 1px rgba(181, 155, 104, 0.14);
}

.site-footer__newsletter-consent {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.6rem;
	margin-top: 0.05rem;
}

.site-footer__newsletter-consent input {
	margin: 0.2rem 0 0;
	accent-color: var(--olil-gold);
}

.site-footer__newsletter-consent label {
	font-size: 0.86rem;
	line-height: 1.45;
	color: var(--olil-muted);
}

.site-footer__newsletter-error {
	margin: 0.08rem 0 0;
	font-size: 0.8rem;
	line-height: 1.45;
	color: #7a5247;
}

.site-footer__newsletter-actions {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-top: 0.05rem;
}

.site-footer__newsletter-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.48rem 0.9rem;
	border: 1px solid rgba(181, 155, 104, 0.48);
	border-radius: 0.5rem;
	background: rgba(252, 251, 248, 0.92);
	color: var(--olil-muted);
	font: inherit;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-footer__newsletter-button:hover,
.site-footer__newsletter-button:focus-visible {
	border-color: rgba(181, 155, 104, 0.82);
	background: rgba(252, 251, 248, 1);
	color: var(--olil-ink);
}

.site-footer__newsletter-button:active {
	transform: translateY(1px);
}

.site-footer__newsletter-status,
.site-footer__newsletter-note,
.site-footer__contact-line {
	font-size: 0.88rem;
}

.site-footer__newsletter-status {
	margin-top: 0.8rem;
	padding: 0.78rem 0.92rem;
	border: 1px solid rgba(181, 155, 104, 0.24);
	border-radius: 0.7rem;
	background: rgba(252, 251, 248, 0.64);
	color: var(--olil-ink);
}

.site-footer__newsletter-status-title,
.site-footer__newsletter-status-message {
	margin: 0;
}

.site-footer__newsletter-status-title {
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 0.98rem;
	line-height: 1.3;
}

.site-footer__newsletter-status-message {
	margin-top: 0.2rem;
	line-height: 1.55;
	color: var(--olil-muted);
}

.site-footer__newsletter-status--success {
	border-color: rgba(181, 155, 104, 0.34);
	background: rgba(252, 251, 248, 0.84);
}

.site-footer__newsletter-status--error {
	border-color: rgba(177, 129, 116, 0.3);
	background: rgba(248, 238, 235, 0.72);
	color: #6f4d45;
}

.site-footer__newsletter-status--error .site-footer__newsletter-status-message {
	color: #6f4d45;
}

.site-footer__newsletter-note {
	max-width: 34ch;
	margin: 0.65rem 0 0;
}

.site-footer__newsletter-note a,
.site-footer__contact-line a {
	color: var(--olil-ink);
	text-decoration: none;
}

.site-footer__newsletter-note a:hover,
.site-footer__newsletter-note a:focus-visible,
.site-footer__contact-line a:hover,
.site-footer__contact-line a:focus-visible {
	color: var(--olil-ink);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.site-footer__newsletter-honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

.site-footer__contact {
	display: grid;
	gap: 0.45rem;
	margin-top: 0.25rem;
}

.site-footer__contact-line {
	margin: 0;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(181, 155, 104, 0.28);
	border-radius: 999px;
	color: var(--olil-muted);
	text-decoration: none;
	transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.site-footer__social-link svg {
	width: 1.05rem;
	height: 1.05rem;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	border-color: rgba(181, 155, 104, 0.56);
	color: var(--olil-ink);
	background: rgba(252, 251, 248, 0.72);
}

.site-footer__social-link--placeholder {
	opacity: 0.55;
	cursor: default;
}

.site-footer__meta {
	grid-area: meta;
	padding-top: 1.5rem;
	border-top: 1px solid var(--olil-border);
	color: var(--olil-muted);
	font-size: 0.9rem;
}

@media (max-width: 1120px) {
	.site-footer__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas:
			"brand links"
			"aside aside"
			"meta meta";
	}

	.site-footer__aside {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.site-footer__links-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 0.8rem;
	}

	.site-footer__nav {
		gap: 0.55rem;
	}
}

@media (max-width: 720px) {
	.site-footer__inner {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"brand"
			"links"
			"aside"
			"meta";
	}

	.site-footer__brand,
	.site-footer__aside {
		grid-template-columns: minmax(0, 1fr);
		max-width: none;
	}

	.site-footer__links-grid,
	.site-footer__newsletter-form {
		grid-template-columns: minmax(0, 1fr);
	}
}

.yoga-nidra-page {
	background: var(--olil-cream);
}

.yn-cover {
	position: relative;
	overflow: hidden;
	--yn-parallax-x: 0px;
	--yn-parallax-y: 0px;
	padding-block: clamp(2.7rem, 4.2vw, 3.75rem);
	min-height: clamp(21.5rem, 30.5vw, 27.5rem);
	border-bottom: 1px solid var(--olil-border);
	background-color: var(--olil-soft);
}

.yn-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--olil-soft);
	background-image: var(--yn-cover-background-image);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: translate3d(var(--yn-parallax-x), var(--yn-parallax-y), 0) scale(1.045);
	transform-origin: center center;
	will-change: transform;
	backface-visibility: hidden;
	pointer-events: none;
}

.yn-cover::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 26%;
	z-index: 0;
	background: transparent;
	pointer-events: none;
}

.yn-cover__inner,
.yn-section__inner {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 2rem), var(--olil-max));
	margin-inline: auto;
}

.yn-cover__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: inherit;
}

.yn-cover h1,
.yn-section h2 {
	margin: 0;
	line-height: 1.08;
	color: var(--olil-ink);
}

.yn-cover h1 {
	max-width: 13ch;
	font-size: clamp(2.45rem, 4.85vw, 3.65rem);
	text-align: center;
}

.yn-cover__intro {
	width: min(100%, 30rem);
	gap: 0.08rem;
}

.yn-cover__eyebrow {
	margin: 0;
	color: rgba(79, 71, 61, 0.84);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.yn-cover__intro h1 {
	max-width: 18ch;
	color: rgba(79, 71, 61, 0.88);
	font-size: clamp(1.28rem, 2.15vw, 1.68rem);
	line-height: 1.2;
}

.yn-cover--world-peace .yn-cover__content {
	width: min(100%, 64rem);
}

.yn-cover__intro--world-peace {
	width: 100%;
	max-width: min(100%, 60rem);
}

.yn-cover--world-peace .yn-cover__intro--world-peace h1 {
	width: 100%;
	max-width: none;
	font-size: clamp(1.7rem, 3vw, 2.55rem);
	text-align: center;
	color: rgba(64, 49, 31, 0.94);
	text-shadow: 0 1px 16px rgba(37, 28, 18, 0.18);
}

.yn-cover__headline-arc {
	line-height: 1;
	margin-top: -2.1rem;
	margin-bottom: -1.65rem;
}

.yn-cover__headline-plain {
	display: none;
	margin: 0 auto;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-weight: 300;
	letter-spacing: 0;
}

.yn-cover__headline-arc-svg {
	display: block;
	width: 100%;
	height: auto;
	color: inherit;
	overflow: visible;
	filter: drop-shadow(0 1px 16px rgba(37, 28, 18, 0.18));
}

.yn-cover__headline-arc-svg text {
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 50px;
	font-style: italic;
	font-weight: 300;
	letter-spacing: 0;
}

.yn-cover__content {
	position: relative;
	isolation: isolate;
	display: grid;
	justify-items: center;
	align-content: center;
	text-align: center;
	width: min(100%, 45rem);
	gap: 0.18rem;
	transform: translateY(0.1rem);
	margin-inline: auto;
}

.yn-cover__illustration {
	position: relative;
	width: min(100%, 40rem);
	margin: 0;
	transform: translateY(-2.25rem);
	justify-self: center;
	margin-inline: auto;
	pointer-events: none;
}

.yn-cover__illustration img {
	width: 100%;
	height: auto;
	transform: scale(1.12);
	transform-origin: center center;
	filter: drop-shadow(0 0.45rem 1.8rem rgba(63, 56, 47, 0.14));
}

.yn-cover__practice-info {
	display: none;
}

.yn-cover .button {
	position: relative;
	isolation: isolate;
	z-index: 2;
	margin-top: -1.65rem;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 1.3rem 2.4rem rgba(63, 56, 47, 0.17);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.yn-cover .button::before {
	content: "";
	position: absolute;
	inset: -0.42rem -0.8rem -0.9rem;
	z-index: -1;
	border-radius: 999px;
	background: radial-gradient(ellipse at 50% 58%, rgba(247, 243, 236, 0.62) 0%, rgba(247, 243, 236, 0.3) 42%, rgba(247, 243, 236, 0.1) 64%, rgba(247, 243, 236, 0) 84%);
	filter: blur(18px);
	transform: none;
	pointer-events: none;
}

.yn-cover .button:hover,
.yn-cover .button:focus-visible {
	background: var(--olil-gold);
	border-color: var(--olil-gold);
	color: var(--olil-ink);
	transform: translateY(-2px);
	box-shadow: 0 1.35rem 2.5rem rgba(63, 56, 47, 0.18);
}

.yn-section {
	padding-block: clamp(5.65rem, 6.6vw, 6.6rem);
	border-bottom: 1px solid var(--olil-border);
}

.yn-section--soft {
	background: var(--olil-soft);
}

.yn-section.yn-section--structure {
	padding-top: clamp(3.9rem, 4.7vw, 4.6rem);
	padding-bottom: clamp(1.45rem, 2.2vw, 2.1rem);
}

.yn-section.yn-section--contribution {
	padding-top: clamp(3.25rem, 4.1vw, 3.95rem);
	padding-bottom: clamp(1.1rem, 1.8vw, 1.55rem);
}

.yn-two-column {
	display: grid;
	grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.9fr);
	gap: 5rem;
	align-items: start;
}

.yn-copy-block {
	max-width: 520px;
}

.yn-copy-block p,
.yn-text-flow p,
.yn-section-note,
.yn-closing p {
	color: var(--olil-muted);
}

.yn-section h2 {
	max-width: 720px;
	font-size: 2.45rem;
}

.yn-reading {
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
}

.yn-contribution {
	max-width: min(calc(100% - 2rem), 58rem);
	gap: 0.6rem;
}

.yn-contribution--practice {
	gap: 1.2rem;
}

.yn-contribution--spacious {
	gap: 1.2rem;
}

.yn-contribution > .yn-text-flow {
	max-width: min(100%, 48rem);
}

.yn-text-flow {
	display: grid;
	gap: var(--olil-copy-stack-gap);
}

.yn-text-flow p {
	margin: 0;
}

.yn-field-figure {
	width: min(100%, 31rem);
	margin: clamp(0.35rem, 1.2vw, 0.85rem) 0 0;
}

.yn-field-figure img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--olil-image-radius);
}

.yn-contribution-figure {
	position: relative;
	width: min(100%, 44rem);
	margin: clamp(-0.95rem, -1.1vw, -0.35rem) auto 0;
}

.yn-contribution-figure__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--olil-image-radius);
}

.yn-contribution-hotspot {
	position: absolute;
	left: var(--hotspot-x);
	top: var(--hotspot-y);
	z-index: 2;
	display: grid;
	place-items: center;
	inline-size: 2.9rem;
	block-size: 2.9rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--olil-ink);
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: transform 240ms ease, opacity 240ms ease;
}

.yn-contribution-hotspot__pulse,
.yn-contribution-hotspot__ring,
.yn-contribution-hotspot__dot {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	transition: transform 240ms ease, opacity 240ms ease, border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.yn-contribution-hotspot__pulse {
	inline-size: 1.95rem;
	block-size: 1.95rem;
	border: 1px solid rgba(181, 155, 104, 0.18);
	background: radial-gradient(circle, rgba(243, 238, 229, 0.22) 0%, rgba(243, 238, 229, 0.08) 48%, rgba(243, 238, 229, 0) 72%);
	opacity: 0.9;
	animation: olil-hotspot-pulse 3.4s cubic-bezier(0.33, 0, 0.2, 1) infinite;
}

.yn-contribution-hotspot__ring {
	inline-size: 1.32rem;
	block-size: 1.32rem;
	border: 1px solid rgba(181, 155, 104, 0.34);
	background: rgba(247, 243, 236, 0.14);
}

.yn-contribution-hotspot__dot {
	inline-size: 0.42rem;
	block-size: 0.42rem;
	background: var(--olil-gold);
	box-shadow: 0 0 0 0.12rem rgba(247, 243, 236, 0.88);
}

.yn-contribution-hotspot:hover,
.yn-contribution-hotspot:focus-visible {
	transform: translate(-50%, -50%) scale(1.06);
}

.yn-contribution-hotspot:hover .yn-contribution-hotspot__pulse,
.yn-contribution-hotspot:focus-visible .yn-contribution-hotspot__pulse {
	opacity: 1;
	border-color: rgba(212, 175, 55, 0.32);
}

.yn-contribution-hotspot:hover .yn-contribution-hotspot__ring,
.yn-contribution-hotspot:focus-visible .yn-contribution-hotspot__ring {
	border-color: rgba(212, 175, 55, 0.62);
	background: rgba(247, 243, 236, 0.28);
	transform: scale(1.06);
}

.yn-contribution-hotspot:hover .yn-contribution-hotspot__dot,
.yn-contribution-hotspot:focus-visible .yn-contribution-hotspot__dot {
	background: #d4af37;
	transform: scale(1.08);
}

.yn-contribution-hotspot.is-active {
	transform: translate(-50%, -50%) scale(1.1);
}

.yn-contribution-hotspot.is-active .yn-contribution-hotspot__pulse {
	border-color: rgba(212, 175, 55, 0.48);
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(243, 238, 229, 0.14) 46%, rgba(243, 238, 229, 0) 74%);
}

.yn-contribution-hotspot.is-active .yn-contribution-hotspot__ring {
	border-color: rgba(212, 175, 55, 0.82);
	background: rgba(212, 175, 55, 0.12);
	box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.12);
	transform: scale(1.12);
}

.yn-contribution-hotspot.is-active .yn-contribution-hotspot__dot {
	background: #d4af37;
	box-shadow: 0 0 0 0.14rem rgba(247, 243, 236, 0.94), 0 0 0 0.34rem rgba(212, 175, 55, 0.12);
	transform: scale(1.16);
}

.yn-contribution-hotspot-card {
	position: absolute;
	left: var(--hotspot-x);
	top: var(--hotspot-y);
	z-index: 3;
	width: max-content;
	max-width: min(19rem, 70vw);
	padding: 0.5rem 0.82rem 0.56rem;
	border: 1px solid rgba(181, 155, 104, 0.28);
	border-radius: 0.55rem;
	background: rgba(247, 243, 236, 0.94);
	box-shadow: 0 0.7rem 1.5rem rgba(63, 56, 47, 0.08);
	color: var(--olil-gold);
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, calc(-100% - 1.82rem));
	transition: opacity 220ms ease, transform 220ms ease;
}

.yn-contribution-hotspot-card::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -0.4rem;
	width: 0.72rem;
	height: 0.72rem;
	border-right: 1px solid rgba(181, 155, 104, 0.24);
	border-bottom: 1px solid rgba(181, 155, 104, 0.24);
	background: rgba(247, 243, 236, 0.94);
	box-shadow: 0 0.45rem 1rem rgba(63, 56, 47, 0.04);
	transform: translateX(-50%) rotate(45deg);
}

.yn-contribution-hotspot-card p {
	margin: 0;
}

.yn-contribution-hotspot:hover + .yn-contribution-hotspot-card,
.yn-contribution-hotspot:focus-visible + .yn-contribution-hotspot-card,
.yn-contribution-hotspot.is-active + .yn-contribution-hotspot-card {
	opacity: 1;
	transform: translate(-50%, calc(-100% - 2.05rem));
}

.yn-quote,
.yn-highlight {
	margin: 1.2rem 0 0;
	padding-top: 1.3rem;
	border-top: 1px solid var(--olil-gold);
}

.yn-quote p,
.yn-highlight {
	max-width: 620px;
	color: var(--olil-ink);
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	line-height: 1.38;
}

.yn-structured {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: auto;
	gap: 0;
	align-items: start;
	min-height: clamp(28.5rem, 34vw, 33rem);
}

.yn-step-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	color: var(--olil-muted);
}

.yn-structured > .yn-copy-block {
	max-width: 23rem;
	padding-top: 0.65rem;
	padding-left: 0.2rem;
	grid-column: 1;
	grid-row: 1;
	align-self: start;
	justify-self: start;
	position: relative;
	z-index: 2;
}

.yn-step-list li {
	border-top: 1px solid var(--olil-border);
}

.yn-step-list li:last-child {
	border-bottom: 1px solid var(--olil-border);
}

.yn-structure-side {
	position: absolute;
	inset: 0;
	display: block;
	grid-column: 1;
	grid-row: 1;
	width: 100%;
	padding-top: 0;
}

.yn-structure-map-shell {
	position: absolute;
	inset: 0 0 4.2rem 0;
}

.yn-structure-map {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
	overflow: visible;
}

.yn-structure-field {
	position: absolute;
	top: 0;
	left: -12%;
	width: 124%;
	height: 100%;
}

.yn-structure-coordinate-layer {
	position: absolute;
	left: 15.99%;
	top: 27.98%;
	width: 68.96%;
	aspect-ratio: 1082.83 / 356.04;
}

.yn-structure-wave {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.52;
	pointer-events: none;
}

.yn-structure-stop {
	position: absolute;
	left: var(--structure-x);
	top: var(--structure-y);
}

.yn-structure-stop__button {
	position: relative;
	display: grid;
	place-items: center;
	inline-size: 2.9rem;
	block-size: 2.9rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transform: translate(-50%, -50%) scale(var(--structure-scale, 1));
	transition: transform 240ms ease;
}

.yn-structure-stop__pulse,
.yn-structure-stop__ring,
.yn-structure-stop__dot {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	transition: transform 240ms ease, opacity 240ms ease, border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.yn-structure-stop__pulse {
	inline-size: 1.95rem;
	block-size: 1.95rem;
	border: 1px solid rgba(181, 155, 104, 0.18);
	background: radial-gradient(circle, rgba(243, 238, 229, 0.22) 0%, rgba(243, 238, 229, 0.08) 48%, rgba(243, 238, 229, 0) 72%);
	opacity: 0.9;
	animation: olil-hotspot-pulse 3.4s cubic-bezier(0.33, 0, 0.2, 1) infinite;
}

.yn-structure-stop__ring {
	inline-size: 1.32rem;
	block-size: 1.32rem;
	border: 1px solid rgba(181, 155, 104, 0.34);
	background: rgba(247, 243, 236, 0.14);
}

.yn-structure-stop__dot {
	inline-size: 0.42rem;
	block-size: 0.42rem;
	background: var(--olil-gold);
	box-shadow: 0 0 0 0.12rem rgba(247, 243, 236, 0.88);
}

.yn-structure-stop__button:hover,
.yn-structure-stop__button:focus-visible {
	transform: translate(-50%, -50%) scale(calc(var(--structure-scale, 1) * 1.05));
}

.yn-structure-stop__button:hover .yn-structure-stop__pulse,
.yn-structure-stop__button:focus-visible .yn-structure-stop__pulse {
	opacity: 1;
	border-color: rgba(212, 175, 55, 0.32);
}

.yn-structure-stop__button:hover .yn-structure-stop__ring,
.yn-structure-stop__button:focus-visible .yn-structure-stop__ring {
	border-color: rgba(212, 175, 55, 0.62);
	background: rgba(247, 243, 236, 0.28);
	transform: scale(1.06);
}

.yn-structure-stop__button:hover .yn-structure-stop__dot,
.yn-structure-stop__button:focus-visible .yn-structure-stop__dot {
	background: #d4af37;
	transform: scale(1.08);
}

.yn-structure-stop.is-locked .yn-structure-stop__button {
	transform: translate(-50%, -50%) scale(calc(var(--structure-scale, 1) * 1.1));
}

.yn-structure-stop.is-locked .yn-structure-stop__pulse {
	border-color: rgba(212, 175, 55, 0.48);
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(243, 238, 229, 0.14) 46%, rgba(243, 238, 229, 0) 74%);
}

.yn-structure-stop.is-locked .yn-structure-stop__ring {
	border-color: rgba(212, 175, 55, 0.82);
	background: rgba(212, 175, 55, 0.12);
	box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.12);
	transform: scale(1.12);
}

.yn-structure-stop.is-locked .yn-structure-stop__dot {
	background: #d4af37;
	box-shadow: 0 0 0 0.14rem rgba(247, 243, 236, 0.94), 0 0 0 0.34rem rgba(212, 175, 55, 0.12);
	transform: scale(1.16);
}

.yn-structure-stop__card {
	position: absolute;
	left: 0;
	top: var(--structure-label-offset-y);
	margin: 0;
	width: max-content;
	max-width: min(22rem, 46vw);
	padding: 0.5rem 0.82rem 0.56rem;
	border: 1px solid rgba(181, 155, 104, 0.28);
	border-radius: 0.55rem;
	background: rgba(247, 243, 236, 0.94);
	box-shadow: 0 0.7rem 1.5rem rgba(63, 56, 47, 0.08);
	color: var(--olil-ink);
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 220ms ease, transform 220ms ease;
	transform: translateX(calc(-50% + var(--structure-label-offset-x))) translateY(0.28rem);
}

.yn-structure-stop__card::before {
	content: "";
	position: absolute;
	left: 50%;
	width: 0.72rem;
	height: 0.72rem;
	background: rgba(247, 243, 236, 0.94);
	box-shadow: 0 0.45rem 1rem rgba(63, 56, 47, 0.04);
	transform: translateX(-50%) rotate(45deg);
}

.yn-structure-stop__card p {
	margin: 0;
}

.yn-structure-stop__card--above::before {
	bottom: -0.4rem;
	border-right: 1px solid rgba(181, 155, 104, 0.24);
	border-bottom: 1px solid rgba(181, 155, 104, 0.24);
}

.yn-structure-stop__card--below::before {
	top: -0.4rem;
	border-top: 1px solid rgba(181, 155, 104, 0.24);
	border-left: 1px solid rgba(181, 155, 104, 0.24);
}

.yn-structure-stop__card--above {
	transform: translateX(calc(-50% + var(--structure-label-offset-x))) translateY(0.28rem);
}

.yn-structure-stop__card--below {
	transform: translateX(calc(-50% + var(--structure-label-offset-x))) translateY(-0.28rem);
}

.yn-structure-stop__button:hover + .yn-structure-stop__card,
.yn-structure-stop__button:focus-visible + .yn-structure-stop__card,
.yn-structure-stop.is-locked .yn-structure-stop__card {
	opacity: 1;
}

.yn-structure-stop__button:hover + .yn-structure-stop__card--above,
.yn-structure-stop__button:focus-visible + .yn-structure-stop__card--above,
.yn-structure-stop.is-locked .yn-structure-stop__card--above {
	transform: translateX(calc(-50% + var(--structure-label-offset-x))) translateY(0);
}

.yn-structure-stop__button:hover + .yn-structure-stop__card--below,
.yn-structure-stop__button:focus-visible + .yn-structure-stop__card--below,
.yn-structure-stop.is-locked .yn-structure-stop__card--below {
	transform: translateX(calc(-50% + var(--structure-label-offset-x))) translateY(0);
}

.yn-structure-note {
	position: absolute;
	right: 3.8%;
	bottom: clamp(3.4rem, 4.4vw, 4.5rem);
	margin: 0;
	width: min(29rem, 32%);
	max-width: none;
	color: var(--olil-ink);
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: clamp(1.85rem, 2.55vw, 2.55rem);
	line-height: 1.28;
	padding-right: 0;
}

.yn-structure-note.yn-section-note {
	grid-column: auto;
}

.yn-join-intro {
	max-width: 100%;
}

.yn-join-guide__figure {
	position: relative;
	margin: 0;
	padding: 0.85rem 0 0;
}

.yn-join-guide__image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-inline: auto;
	border-radius: var(--olil-image-radius);
}

.yn-join-guide__hotspots {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.yn-join-hotspot {
	position: absolute;
	left: var(--hotspot-x);
	top: var(--hotspot-y);
	display: grid;
	place-items: center;
	inline-size: 2.9rem;
	block-size: 2.9rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--olil-ink);
	cursor: pointer;
	text-decoration: none;
	touch-action: manipulation;
	transform: translate(-50%, -50%);
	transition: transform 240ms ease, opacity 240ms ease;
}

.yn-join-hotspot__pulse,
.yn-join-hotspot__ring,
.yn-join-hotspot__dot {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	transition: transform 240ms ease, opacity 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.yn-join-hotspot__pulse {
	inline-size: 1.95rem;
	block-size: 1.95rem;
	border: 1px solid rgba(181, 155, 104, 0.18);
	background: radial-gradient(circle, rgba(243, 238, 229, 0.22) 0%, rgba(243, 238, 229, 0.08) 48%, rgba(243, 238, 229, 0) 72%);
	opacity: 0.9;
	animation: olil-hotspot-pulse 3.4s cubic-bezier(0.33, 0, 0.2, 1) infinite;
}

.yn-join-hotspot__ring {
	inline-size: 1.32rem;
	block-size: 1.32rem;
	border: 1px solid rgba(181, 155, 104, 0.34);
	background: rgba(247, 243, 236, 0.14);
}

.yn-join-hotspot__dot {
	inline-size: 0.42rem;
	block-size: 0.42rem;
	background: var(--olil-gold);
	box-shadow: 0 0 0 0.12rem rgba(247, 243, 236, 0.88);
}

.yn-join-hotspot:hover,
.yn-join-hotspot:focus-visible,
.yn-join-hotspot.is-active {
	transform: translate(-50%, -50%) scale(1.06);
}

.yn-join-hotspot:hover .yn-join-hotspot__pulse,
.yn-join-hotspot:focus-visible .yn-join-hotspot__pulse,
.yn-join-hotspot.is-active .yn-join-hotspot__pulse {
	opacity: 1;
	border-color: rgba(212, 175, 55, 0.32);
}

.yn-join-hotspot:hover .yn-join-hotspot__ring,
.yn-join-hotspot:focus-visible .yn-join-hotspot__ring,
.yn-join-hotspot.is-active .yn-join-hotspot__ring {
	border-color: rgba(212, 175, 55, 0.62);
	background: rgba(247, 243, 236, 0.28);
	transform: scale(1.06);
}

.yn-join-hotspot:hover .yn-join-hotspot__dot,
.yn-join-hotspot:focus-visible .yn-join-hotspot__dot,
.yn-join-hotspot.is-active .yn-join-hotspot__dot {
	background: #d4af37;
	transform: scale(1.08);
}

.yn-join-hotspot.is-active {
	transform: translate(-50%, -50%) scale(1.1);
}

.yn-join-hotspot.is-active .yn-join-hotspot__pulse {
	border-color: rgba(212, 175, 55, 0.48);
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(243, 238, 229, 0.14) 46%, rgba(243, 238, 229, 0) 74%);
}

.yn-join-hotspot.is-active .yn-join-hotspot__ring {
	border-color: rgba(212, 175, 55, 0.82);
	background: rgba(212, 175, 55, 0.12);
	box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.12);
	transform: scale(1.12);
}

.yn-join-hotspot.is-active .yn-join-hotspot__dot {
	box-shadow: 0 0 0 0.14rem rgba(247, 243, 236, 0.94), 0 0 0 0.34rem rgba(212, 175, 55, 0.12);
	transform: scale(1.16);
}

@media (max-width: 760px), (hover: none), (pointer: coarse) {
	.yn-join-hotspot::after,
	.yn-join-hotspot::before {
		position: absolute;
		left: 50%;
		pointer-events: none;
		opacity: 0;
		transition: opacity 220ms ease, transform 220ms ease;
	}

	.yn-join-hotspot::after {
		content: attr(data-hotspot-label);
		bottom: calc(100% + 0.8rem);
		width: max-content;
		max-width: 10.5rem;
		padding: 0.4rem 0.7rem 0.45rem;
		border: 1px solid rgba(181, 155, 104, 0.28);
		border-radius: 0.55rem;
		background: rgba(247, 243, 236, 0.94);
		color: var(--olil-ink);
		font-size: 0.8rem;
		font-weight: 500;
		line-height: 1.35;
		text-align: center;
		white-space: normal;
		box-shadow: 0 0.7rem 1.5rem rgba(63, 56, 47, 0.08);
		transform: translate(-50%, 0.28rem);
	}

	.yn-join-hotspot::before {
		content: "";
		bottom: calc(100% + 0.42rem);
		width: 0.72rem;
		height: 0.72rem;
		border-right: 1px solid rgba(181, 155, 104, 0.24);
		border-bottom: 1px solid rgba(181, 155, 104, 0.24);
		background: rgba(247, 243, 236, 0.94);
		box-shadow: 0 0.45rem 1rem rgba(63, 56, 47, 0.04);
		transform: translate(-50%, 0.28rem) rotate(45deg);
	}

	.yn-join-hotspot.is-active::after,
	.yn-join-hotspot.is-active::before,
	.yn-join-hotspot:focus-visible::after,
	.yn-join-hotspot:focus-visible::before {
		opacity: 1;
	}

	.yn-join-hotspot.is-active::after,
	.yn-join-hotspot:focus-visible::after {
		transform: translate(-50%, 0);
	}

	.yn-join-hotspot.is-active::before,
	.yn-join-hotspot:focus-visible::before {
		transform: translate(-50%, 0) rotate(45deg);
	}
}

.yn-join-intro .yn-join-guide__figure {
	margin-top: 0.6rem;
	width: 100%;
}

.yn-step-list {
	align-self: end;
	padding-left: 1.35rem;
	margin-top: 0;
	list-style: none;
}

.yn-step-list li {
	padding-left: 0;
}

.yn-step-list__item {
	position: relative;
	transition: border-color 240ms ease;
}

.yn-step-list__item::before {
	content: "";
	position: absolute;
	left: -0.62rem;
	top: 0.95rem;
	bottom: 0.95rem;
	width: 2px;
	border-radius: 999px;
	background: rgba(181, 155, 104, 0);
	transition: background-color 240ms ease, opacity 240ms ease;
}

.yn-step-list__button {
	display: block;
	width: 100%;
	padding: 1.25rem 0 1.25rem 0.2rem;
	border: 0;
	background: transparent;
	color: var(--olil-muted);
	font: inherit;
	line-height: 1.6;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: color 240ms ease, transform 240ms ease;
}

.yn-step-list__button:hover,
.yn-step-list__button:focus-visible,
.yn-step-list__item.is-active .yn-step-list__button {
	color: var(--olil-ink);
}

.yn-step-list__button:hover,
.yn-step-list__button:focus-visible {
	transform: translateX(0.08rem);
}

.yn-step-list__item.is-active::before,
.yn-step-list__item:hover::before,
.yn-step-list__item:focus-within::before {
	background: rgba(181, 155, 104, 0.65);
}

.yn-step-list__item.is-active .yn-step-list__button {
	color: #b59b68;
	font-weight: 600;
}

@keyframes olil-hotspot-pulse {
	0%,
	100% {
		transform: scale(0.92);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.08);
		opacity: 0.95;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yn-join-hotspot,
	.yn-join-hotspot__pulse,
	.yn-join-hotspot__ring,
	.yn-join-hotspot__dot,
	.yn-join-hotspot::after,
	.yn-join-hotspot::before,
	.yn-structure-stop__button,
	.yn-structure-stop__pulse,
	.yn-structure-stop__ring,
	.yn-structure-stop__dot,
	.yn-structure-stop__card,
	.yn-structure-stop__card::before,
	.yn-step-list__item,
	.yn-step-list__item::before,
	.yn-step-list__button {
		transition: none;
	}

	.yn-join-hotspot__pulse,
	.yn-structure-stop__pulse {
		animation: none;
		opacity: 0.6;
	}
}

.yn-section-note {
	max-width: 520px;
	margin: 0;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 1.28rem;
	line-height: 1.42;
}

.yn-closing {
	text-align: center;
}

.yn-section.yn-closing {
	padding-top: clamp(4rem, 4.8vw, 4.85rem);
	padding-bottom: clamp(2.25rem, 2.9vw, 3rem);
}

.yn-closing__inner {
	max-width: 780px;
}

.yn-closing__body {
	max-width: 560px;
	font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	line-height: 1.38;
	color: var(--olil-ink);
}

.yn-closing__details {
	display: grid;
	gap: 0.28rem;
	max-width: 480px;
	margin: 1.4rem auto 0;
	padding-block: 1rem;
	border-top: 1px solid var(--olil-border);
	border-bottom: 1px solid var(--olil-border);
}

.yn-closing__details p {
	margin: 0;
}

.yn-closing .button {
	margin-top: 1.35rem;
}

.yn-blessing {
	max-width: 560px;
	margin: 1.25rem auto 0;
	color: var(--olil-ink);
}

@media (max-width: 900px) {
	.site-main > .section-hero:first-child {
		padding-top: 7rem;
	}

	.site-header__inner {
		min-height: 4.75rem;
	}

	.site-brand img {
		width: clamp(6.5rem, 16vw, 7.5rem);
	}

	.section {
		padding-block: 4.65rem;
	}

	.section-hero {
		padding-block: 5rem 4.2rem;
	}

	.site-main.home-page > .section:not(.section-home-header):not(.section-home-honesty),
	.site-main.contact-page > .section {
		padding-block: 4.1rem;
	}

	.site-main.home-page > .section-home-header {
		padding-top: 7.35rem;
		padding-bottom: 4.65rem;
	}

	.site-main.home-page > .section-home-honesty {
		padding-block: 3.75rem;
	}

	.site-main.philosophy-page > .page-band,
	.site-main.contact-page > .page-band {
		padding-block: 4rem;
	}

	.site-main.contact-page > .section-hero:first-child {
		padding-top: 7.1rem;
		padding-bottom: 4.1rem;
	}

	.site-main.philosophy-page > .section:not(.section-hero) {
		padding-block: 4rem;
	}

	.site-main.reflections-page > .reflections-section {
		padding-block: 3.95rem;
	}

	.site-main.reflections-page > .reflections-section--intro {
		padding-block: 7.35rem 3.85rem;
	}

	.site-main.reflections-page > .reflections-section--stream {
		padding-block: 2.55rem 3.35rem;
	}

	.site-main.about-page > .about-page__section {
		padding-block: 3.9rem;
	}

	.site-main.path-page > .section-hero:first-child {
		padding-bottom: 3.95rem;
	}

	.site-main.path-page > .path-section:not(.path-section--testimonials) {
		padding-block: 3.25rem;
	}

	.site-main.path-page > .path-section.path-section--testimonials {
		padding-block: 2.7rem;
	}

	.yn-cover--world-peace .yn-cover__content {
		width: min(100%, 37rem);
		gap: 1.15rem;
		padding: 1.75rem clamp(1rem, 3.5vw, 1.65rem) 1.9rem;
		border: 1px solid rgba(252, 249, 243, 0.012);
		border-radius: 1.4rem;
		background: linear-gradient(180deg, rgba(251, 248, 242, 0.0012) 0%, rgba(247, 243, 236, 0.0005) 100%);
		box-shadow: none;
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
	}

	.yn-cover--world-peace .yn-cover__intro--world-peace {
		width: 100%;
		max-width: none;
		gap: 0.48rem;
	}

	.yn-cover--world-peace .yn-cover__eyebrow {
		color: var(--olil-gold);
	}

	.yn-cover--world-peace .yn-cover__headline-arc {
		margin: 0;
	}

	.yn-cover--world-peace .yn-cover__headline-plain {
		display: block;
		width: 100%;
		max-width: none;
		font-size: clamp(1.6rem, 3.7vw, 2rem);
		line-height: 1.12;
		color: rgba(58, 42, 24, 0.94);
	}

	.yn-cover--world-peace .yn-cover__headline-arc-svg {
		display: none;
	}

	.yn-cover--world-peace .yn-cover__intro--world-peace h1 {
		width: 100%;
		font-size: inherit;
		line-height: 1.12;
		color: rgba(58, 42, 24, 0.94);
		text-shadow: none;
	}

	.yn-cover--world-peace .yn-cover__illustration {
		width: min(100%, 11rem);
		margin-top: 0.1rem;
		transform: none;
	}

	.yn-cover--world-peace .yn-cover__illustration img {
		transform: none;
		filter: drop-shadow(0 0.7rem 1.8rem rgba(63, 56, 47, 0.14));
	}

	.yn-cover--world-peace .yn-cover__practice-info {
		display: grid;
		gap: 0.55rem;
		width: 100%;
		justify-items: center;
		text-align: center;
		color: rgba(64, 49, 31, 0.92);
	}

	.yn-cover__practice-info-title {
		margin: 0;
		font-family: Cormorant Garamond, Georgia, "Times New Roman", serif;
		font-size: 1.22rem;
		line-height: 1.18;
		color: rgba(58, 42, 24, 0.94);
	}

	.yn-cover__practice-info-list {
		display: grid;
		gap: 0.26rem;
		margin: 0;
		padding: 0;
		list-style: none;
		font-size: 0.96rem;
		line-height: 1.45;
		color: rgba(79, 71, 61, 0.92);
	}

	.yn-cover--world-peace .button {
		margin-top: 0.2rem;
		background: rgba(255, 255, 255, 0.68);
	}

	.site-main.yoga-nidra-page > .yn-cover {
		padding-block: 3.45rem 3.55rem;
		min-height: 26.5rem;
	}

	.site-main.yoga-nidra-page > .yn-section {
		padding-block: 3.75rem;
	}

	.site-main.yoga-nidra-page > .yn-section.yn-section--structure {
		padding-block: 3.35rem 1.25rem;
	}

	.site-main.yoga-nidra-page > .yn-section.yn-section--contribution {
		padding-block: 3rem 0.95rem;
	}

	.section-hero__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.section-hero--path-statement .section-hero__grid {
		grid-template-columns: 1fr;
		gap: 2.7rem;
	}

	.section-hero__media {
		justify-self: start;
		width: min(100%, 23rem);
	}

	.section-hero--path-statement .section-hero__content {
		padding-top: 0;
		align-self: start;
	}

	.section-hero--path-statement .section-hero__media {
		align-self: start;
		justify-self: start;
		width: min(100%, 32rem);
		padding-top: 1.15rem;
	}

	.section-hero--path-statement .section-hero__statement {
		max-width: 20rem;
	}

	.page-side-motif {
		--page-side-motif-left: 1rem;
		--page-side-motif-width: 1px;
		--page-side-motif-gap: 0;
	}

	.page-side-motif.path-page > .section-hero::before,
	.page-side-motif.path-page > .path-section::before,
	.page-side-motif.reflections-page > .reflections-section:not(.reflections-section--library)::before,
	.page-side-motif.about-page > .about-page__intro::before,
	.page-side-motif.about-page > .about-page__section:not(.about-page__closing)::before,
	.page-side-motif.philosophy-page > .section-hero::before,
	.page-side-motif.philosophy-page > .section-philosophy::before,
	.page-side-motif.philosophy-page > .page-band::before,
	.page-side-motif.reflections-page > .reflections-section--library::before,
	.page-side-motif.about-page > .about-page__closing::before,
	.page-side-motif.philosophy-page > .section-closing::before {
		background-image: linear-gradient(var(--page-side-motif-color), var(--page-side-motif-color));
		background-position: var(--page-side-motif-left) 0;
		background-size: var(--page-side-motif-width) 100%;
	}

	.page-side-motif.path-page > .section-hero::after,
	.page-side-motif.path-page > .path-section::after,
	.page-side-motif.reflections-page > .reflections-section::after,
	.page-side-motif.about-page > .about-page__intro::after,
	.page-side-motif.about-page > .about-page__section::after,
	.page-side-motif.philosophy-page > .section-hero::after,
	.page-side-motif.philosophy-page > .section-philosophy::after,
	.page-side-motif.philosophy-page > .page-band::after,
	.page-side-motif.philosophy-page > .section-closing::after {
		display: none;
	}

	.section-home-honesty__grid {
		grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.78fr);
		gap: 1.85rem 2rem;
	}

	.orientation-board {
		gap: 1.1rem;
	}

	.orientation-board__center {
		max-width: 22rem;
	}

	.orientation-board__center h2 {
		font-size: 1.75rem;
	}

	.orientation-board__card,
	.orientation-board__card--featured {
		width: min(100%, 18.5rem);
		padding: 1.35rem 1.2rem;
	}

	.orientation-board__card h3,
	.orientation-board__card--featured h3 {
		font-size: clamp(1.56rem, 3.35vw, 1.8rem);
	}

	.section-home-honesty__statement,
	.section-home-honesty__practice {
		max-width: 22rem;
	}

	.section-home-honesty__foundation-title {
		font-size: clamp(1.65rem, 3.15vw, 2rem);
	}

	.section h1,
	.about-page h1,
	.page-band h1 {
		font-size: 2.65rem;
	}

	.section-home-header h1 {
		font-size: 2.2rem;
	}

	.section-home-header__inner {
		gap: 2rem;
	}

	.section-hero--home .section-hero__title-line--wide {
		width: auto;
		font-size: inherit;
		line-height: inherit;
		white-space: normal;
	}

	.section h2,
	.page-band h2 {
		font-size: 2rem;
	}

	.section-home-header .orientation-board__center h2 {
		font-size: 1.55rem;
	}

	.section-philosophy__grid,
	.section-path-preview__grid,
	.section-offering__grid,
	.section-about__grid,
	.about-page__intro-grid,
	.contact-layout,
	.section-home-honesty__stacked,
	.path-opening__layout,
	.path-split,
	.path-offer-layout,
	.path-hold-layout,
	.yn-cover__inner,
	.yn-two-column {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.section-home-honesty__stacked {
		grid-template-areas:
			"intro"
			"feature";
	}

	.yn-structured {
		min-height: auto;
	}

	.section-about__side {
		width: min(100%, 21rem);
	}

	.about-page__copy,
	.about-page__copy--lead,
	.about-page__reading,
	.about-page__section-heading {
		max-width: min(100%, 42rem);
	}

	.about-page__portrait {
		justify-self: start;
		width: min(100%, 26rem);
	}

	.about-page__portrait--wrapped {
		float: none;
		clear: none;
		width: min(100%, 26rem);
		margin: 0 auto 1.65rem;
	}

	.reflections-header {
		grid-template-columns: 1fr;
		gap: 2.35rem;
	}

	.reflections-feed {
		margin-inline: auto;
		width: min(100%, 34rem);
	}

	.reflections-header__stream {
		max-width: min(100%, 24rem);
		padding-top: 0;
	}

	.reflections-library__list,
	.reflection-entry__content,
	.reflection-entry__figure {
		width: min(100%, 44rem);
	}

	.about-page__guide-grid {
		grid-template-columns: 1fr;
		gap: 2.2rem;
	}

	.section-offering__actions {
		width: min(100%, 21rem);
	}

	.section-philosophy__media {
		justify-self: center;
		width: min(100%, 22rem);
	}

	.section-offering__media {
		width: min(100%, 28rem);
		min-height: auto;
	}

	.section-path-preview__media {
		justify-self: center;
		width: min(100%, 28rem);
	}

	.principle-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	.path-card-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.path-testimonials__carousel {
		--path-testimonials-visible: 2;
		width: min(100%, 60rem);
	}

	.path-copy-block,
	.path-reading {
		max-width: min(100%, 42rem);
	}

	.path-opening__feature {
		justify-self: start;
		width: min(100%, 30rem);
	}

	.path-opening__feature p {
		font-size: 1.65rem;
	}

	.path-opening__feature--video {
		width: min(100%, 36rem);
	}

	.section-home-honesty__feature {
		justify-self: start;
		width: min(100%, 30rem);
	}

	.section-home-honesty__lead {
		font-size: 1.65rem;
	}

	.path-hold-layout {
		justify-items: center;
	}

	.path-hold-layout__copy {
		text-align: center;
	}

	.path-hold-list {
		width: min(100%, 30rem);
		margin-inline: auto;
		text-align: left;
	}

	.path-hold-layout__figure {
		justify-self: center;
		width: min(100%, 24rem);
	}

	.yn-cover {
		padding-block: 3.7rem 3.9rem;
		min-height: 27.75rem;
	}

	.path-offer-panel {
		justify-self: start;
		width: min(100%, 28rem);
	}

	.yn-cover h1 {
		font-size: 2.65rem;
	}

	.yn-cover__intro {
		width: min(100%, 28rem);
		gap: 0.08rem;
	}

	.yn-cover__intro h1 {
		font-size: 1.45rem;
	}

	.yn-cover--world-peace .yn-cover__content {
		width: 100%;
	}

	.yn-cover--world-peace .yn-cover__intro--world-peace {
		width: min(100%, 42rem);
		max-width: none;
	}

	.yn-cover--world-peace .yn-cover__intro--world-peace h1 {
		font-size: clamp(1.6rem, 4.2vw, 2.2rem);
	}

	.yn-cover__content {
		width: min(100%, 39rem);
		gap: 1rem;
		transform: none;
	}

	.yn-cover__illustration {
		width: min(calc(100vw - 2.5rem), 44rem);
		transform: translateY(-0.4rem);
	}

	.yn-cover__illustration img {
		transform: scale(1.12);
		filter: drop-shadow(0 0.8rem 2.45rem rgba(63, 56, 47, 0.2)) brightness(1.02);
	}

	.yn-cover .button {
		min-width: min(100%, 19.5rem);
		min-height: 2.95rem;
		padding: 0.68rem 1.08rem;
		font-size: 0.98rem;
		margin-top: 0.05rem;
	}

	.yn-join-guide__figure {
		padding-top: 0.72rem;
	}

	.yn-join-intro .yn-join-guide__figure {
		width: 100%;
	}

	.yn-step-list {
		align-self: start;
		margin-top: 1.45rem;
	}

	.yn-structured > .yn-copy-block {
		max-width: min(100%, 25.5rem);
		padding-top: 0;
		padding-left: 0;
		grid-column: auto;
		grid-row: auto;
	}

	.yn-structure-side {
		position: static;
		display: grid;
		gap: 1rem;
		grid-column: auto;
		grid-row: auto;
		padding-top: 0;
	}

	.yn-structure-map-shell {
		position: relative;
		inset: auto;
		min-height: clamp(17.5rem, 42vw, 21.5rem);
		overflow: visible;
	}

	.yn-structure-map {
		width: 100%;
		height: 100%;
		min-height: inherit;
		aspect-ratio: auto;
	}

	.yn-structure-field {
		left: -4%;
		width: 108%;
		height: 100%;
	}

	.yn-structure-stop__card {
		max-width: min(17rem, 38vw);
		font-size: 0.84rem;
	}

	.yn-structure-note {
		position: static;
		width: min(24rem, 72%);
		max-width: 24rem;
		margin-left: auto;
		padding-right: 0;
		font-size: clamp(1.55rem, 4.1vw, 2rem);
	}

	.yn-section {
		padding-block: 4.2rem;
	}

	.yn-section h2 {
		font-size: 2rem;
	}

	.yn-section-note {
		grid-column: auto;
	}

}

@media (min-width: 761px) and (max-width: 900px) {
	.section-hero--home .section-hero__title-line--wide {
		white-space: nowrap;
	}

	.home-page .section-home-honesty__stacked,
	.home-page .section-path-preview__grid,
	.home-page .section-offering__grid,
	.home-page .section-about__grid,
	.home-page .section-philosophy__grid {
		justify-items: center;
	}

	.home-page .section-home-honesty__intro,
	.home-page .section-home-honesty__feature,
	.home-page .section-path-preview__content,
	.home-page .section-offering__content,
	.home-page .section-about__grid > .section-stack,
	.home-page .section-philosophy__grid > .section-stack {
		justify-self: center;
		justify-items: center;
		text-align: center;
	}

	.home-page .section-home-honesty__intro {
		width: min(100%, 42rem);
	}

	.home-page .section-home-honesty__feature {
		justify-self: center;
	}

	.home-page .section-home-honesty__body,
	.home-page .section-home-honesty__lead {
		text-align: center;
	}

	.home-page .section-path-preview__actions {
		justify-content: center;
		justify-self: center;
		margin-inline: auto;
		width: min(100%, 16rem);
	}

	.home-page .section-path-preview__content,
	.home-page .section-offering__content {
		justify-self: center;
	}

	.home-page .section-offering__actions {
		justify-self: center;
		justify-items: center;
		margin-inline: auto;
		width: min(100%, 16rem);
	}

	.home-page .section-path-preview__actions .button,
	.home-page .section-offering__actions .button {
		width: min(100%, 16rem);
		min-width: min(100%, 16rem);
	}

	.home-page .section-about__side {
		justify-self: center;
		justify-items: center;
	}

	.home-page .section-about__media {
		margin-inline: auto;
	}

	.home-page .section-about__side .quiet-list {
		text-align: center;
	}

	.home-page .section-offering__media,
	.home-page .section-philosophy__media {
		justify-self: center;
	}

	.home-page .section-about__grid > .section-stack,
	.home-page .section-philosophy__grid > .section-stack {
		width: min(100%, 35rem);
	}

	.home-page .section-path-preview__content .path-preview-list {
		width: min(100%, 30rem);
		text-align: center;
		justify-items: center;
	}

	.home-page .section-philosophy__title,
	.home-page .section-path-preview__text,
	.home-page .section-offering__text,
	.home-page .section-about__text,
	.home-page .section-link {
		margin-inline: auto;
	}
}

@media (max-width: 760px) {
	body.nav-open {
		overflow: hidden;
	}

	.page-side-motif.path-page > .section-hero::before,
	.page-side-motif.path-page > .path-section::before,
	.page-side-motif.reflections-page > .reflections-section::before,
	.page-side-motif.about-page > .about-page__intro::before,
	.page-side-motif.about-page > .about-page__section::before,
	.page-side-motif.philosophy-page > .section-hero::before,
	.page-side-motif.philosophy-page > .section-philosophy::before,
	.page-side-motif.philosophy-page > .page-band::before,
	.page-side-motif.philosophy-page > .section-closing::before,
	.page-side-motif.path-page > .section-hero::after,
	.page-side-motif.path-page > .path-section::after,
	.page-side-motif.reflections-page > .reflections-section::after,
	.page-side-motif.about-page > .about-page__intro::after,
	.page-side-motif.about-page > .about-page__section::after,
	.page-side-motif.philosophy-page > .section-hero::after,
	.page-side-motif.philosophy-page > .section-philosophy::after,
	.page-side-motif.philosophy-page > .page-band::after,
	.page-side-motif.philosophy-page > .section-closing::after {
		display: none;
	}

	.site-main > .section-hero:first-child {
		padding-top: 6.5rem;
	}

	.reflections-feed,
	.reflections-library__list,
	.reflection-entry__content,
	.reflection-entry__figure {
		width: 100%;
	}

	.reflections-library__filters {
		width: 100%;
		justify-content: flex-start;
	}

	.reflections-library__list {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.reflections-library__entry {
		padding-bottom: 1.5rem;
	}

	.reflection-entry__content {
		font-size: 1rem;
	}

	.reflections-feed__date,
	.reflection-entry__date,
	.reflections-feed__eyebrow {
		font-size: 0.92rem;
	}

	.reflections-library__categories {
		font-size: 0.92rem;
		line-height: 1.6;
		color: var(--olil-gold);
	}

	.reflection-entry__categories {
		font-size: 0.92rem;
		line-height: 1.6;
		color: var(--olil-gold);
	}

	.site-header__inner {
		flex-wrap: wrap;
		gap: 1rem;
		padding-block: 0.85rem;
	}

	.site-brand img {
		width: 6.25rem;
	}

	.nav-toggle {
		display: inline-flex;
	}

	body:not(.header-is-scrolled):not(.nav-open) .site-header--global-practice .nav-toggle {
		color: var(--olil-gold);
		border-color: rgba(181, 155, 104, 0.48);
	}

	.site-navigation {
		display: none;
		width: 100%;
		padding-bottom: 1rem;
	}

	.site-navigation.is-open {
		display: block;
	}

	.site-navigation__list {
		display: grid;
		gap: 0.32rem;
	}

	.site-navigation__list > .site-navigation__item > a,
	.site-navigation__trigger {
		width: 100%;
		min-height: 2.95rem;
		padding-inline: 0.12rem;
		text-align: left;
	}

	.site-navigation__trigger {
		justify-content: space-between;
	}

	.site-navigation__submenu {
		position: static;
		min-width: 0;
		margin-top: 0.28rem;
		padding: 0.15rem 0 0.2rem 1rem;
		border: 0;
		border-left: 1px solid rgba(181, 155, 104, 0.26);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
	}

	.site-navigation__submenu-link {
		min-height: 2.55rem;
		padding: 0.28rem 0.75rem;
		white-space: normal;
	}

	.section h1,
	.about-page h1,
	.page-band h1 {
		font-size: 2.05rem;
	}

	.section-home-header h1 {
		font-size: 1.72rem;
	}

	.section-home-header__inner {
		gap: 1.55rem;
	}

	.section-hero--home h1 {
		max-width: 8.25em;
	}

	.section h2,
	.page-band h2 {
		font-size: 1.75rem;
	}

	.site-main.home-page > .section:not(.section-home-header):not(.section-home-honesty),
	.site-main.contact-page > .section {
		padding-block: 3.3rem;
	}

	.site-main.home-page > .section-home-header {
		padding-top: 7rem;
		padding-bottom: 3.95rem;
	}

	.section-home-honesty,
	.site-main.home-page > .section-home-honesty {
		padding-block: 3.15rem;
	}

	.site-main.philosophy-page > .page-band,
	.site-main.contact-page > .page-band {
		padding-block: 3.25rem;
	}

	.site-main.contact-page > .section-hero:first-child {
		padding-top: 6.85rem;
		padding-bottom: 3.3rem;
	}

	.site-main.philosophy-page > .section:not(.section-hero) {
		padding-block: 3.25rem;
	}

	.site-main.reflections-page > .reflections-section {
		padding-block: 3.2rem;
	}

	.site-main.reflections-page > .reflections-section--intro {
		padding-block: 6.15rem 3.1rem;
	}

	.site-main.reflections-page > .reflections-section--stream {
		padding-block: 2.15rem 2.9rem;
	}

	.orientation-board {
		grid-template-columns: 1fr;
		grid-template-areas:
			"center"
			"top-left"
			"top-right"
			"bottom-left"
			"bottom-center"
			"bottom-right";
		gap: 0.95rem;
	}

	.orientation-board__center {
		max-width: 18rem;
		padding-bottom: 0.1rem;
	}

	.orientation-board__center h2 {
		font-size: 1.44rem;
	}

	.section-home-header .orientation-board__center h2 {
		font-size: 1.38rem;
	}

	.orientation-board__card,
	.orientation-board__card--featured {
		width: 100%;
		max-width: 24rem;
		padding: 1.35rem 1.25rem;
		border-radius: 4px;
	}

	.orientation-board__card h3,
	.orientation-board__card--featured h3 {
		font-size: 1.46rem;
	}

	.orientation-board__text,
	.orientation-board__card--featured .orientation-board__text {
		max-width: 100%;
		font-size: 1rem;
	}

	.section-home-honesty__grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"intro"
			"statement"
			"foundation"
			"practice";
		gap: 1.9rem;
	}

	.section-home-honesty__intro,
	.section-home-honesty__statement,
	.section-home-honesty__foundation,
	.section-home-honesty__practice {
		max-width: min(100%, 38rem);
		margin-inline: auto;
		text-align: center;
	}

	.section-home-honesty__statement,
	.section-home-honesty__practice {
		justify-self: stretch;
	}

	.section-home-honesty__body {
		margin-top: 1.15rem;
	}

	.section-home-honesty__lead {
		font-size: 1.18rem;
	}

	.section-home-honesty__feature {
		width: 100%;
	}

	.section-home-honesty--stacked .section-home-honesty__intro {
		max-width: 100%;
	}

	.section-home-honesty--stacked .section-home-honesty__body {
		margin-top: 1.15rem;
	}

	.section-home-honesty--stacked .section-home-honesty__closing span {
		display: block;
	}

	.section-home-honesty--stacked .section-home-honesty__closing span + span::before {
		content: none;
	}

	.section-home-honesty__foundation-text {
		max-width: 34rem;
		margin-inline: auto;
	}

	.site-main.about-page > .about-page__intro,
	.site-main.about-page > .about-page__section {
		padding-block: 3.35rem;
	}

	.about-page h2 {
		font-size: 1.9rem;
	}

	.path-section {
		padding-block: 2.85rem;
	}

	.path-page h2 {
		font-size: 1.85rem;
	}

	.site-main.path-page > .section-hero:first-child {
		padding-bottom: 3.55rem;
	}

	.site-main.path-page > .path-section:not(.path-section--testimonials) {
		padding-block: 2.65rem;
	}

	.site-main.path-page > .path-section.path-section--testimonials {
		padding-block: 2.4rem;
	}

	.yn-cover--world-peace .yn-cover__content {
		width: min(100%, 22rem);
		gap: 0.95rem;
		padding: 1.2rem 0.95rem 1.3rem;
		border: 1px solid rgba(252, 249, 243, 0.01);
		border-radius: 1.15rem;
		background: linear-gradient(180deg, rgba(251, 248, 242, 0.0014) 0%, rgba(247, 243, 236, 0.0006) 100%);
		box-shadow: none;
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
	}

	.yn-cover--world-peace .yn-cover__intro {
		width: 100%;
		max-width: none;
		gap: 0.34rem;
	}

	.yn-cover--world-peace .yn-cover__headline-plain,
	.yn-cover--world-peace .yn-cover__intro--world-peace h1 {
		max-width: none;
		font-size: clamp(1.38rem, 5.3vw, 1.72rem);
		line-height: 1.16;
	}

	.yn-cover--world-peace .yn-cover__illustration {
		width: min(100%, 8rem);
	}

	.yn-cover--world-peace .yn-cover__practice-info {
		gap: 0.48rem;
	}

	.yn-cover__practice-info-title {
		font-size: 1.12rem;
	}

	.yn-cover__practice-info-list {
		gap: 0.22rem;
		font-size: 0.9rem;
	}

	.yn-cover--world-peace .button {
		width: min(100%, 16.5rem);
		margin-top: 0.12rem;
	}

	.site-main.yoga-nidra-page > .yn-cover {
		padding-block: 1.25rem 1.35rem;
	}

	.site-main.yoga-nidra-page > .yn-section {
		padding-block: 3.25rem;
	}

	.site-main.yoga-nidra-page > .yn-section.yn-section--structure {
		padding-block: 2.95rem 1rem;
	}

	.site-main.yoga-nidra-page > .yn-section.yn-section--contribution {
		padding-block: 2.65rem 0.85rem;
	}

	.path-card-grid--two,
	.path-card-grid--three,
	.path-card-grid--four {
		grid-template-columns: 1fr;
	}

	.path-check-list--columns {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.path-check-list--columns::before {
		display: none;
	}

	.path-check-list--editorial li:nth-child(odd) {
		justify-content: flex-start;
		text-align: left;
	}

	.path-check-list--editorial li:nth-child(odd)::before {
		left: 0;
		right: auto;
		transform: none;
	}

	.path-card-grid--three > .path-card:nth-child(1),
	.path-card-grid--three > .path-card:nth-child(2),
	.path-card-grid--three > .path-card:nth-child(3) {
		grid-column: auto;
		grid-row: auto;
	}

	.path-card-grid--three > .path-method__figure {
		grid-column: auto;
		grid-row: auto;
		margin-top: 2.4rem;
		justify-self: center;
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.path-method {
		justify-items: center;
	}

	.path-testimonials__carousel {
		--path-testimonials-visible: 1;
		--path-testimonials-gap: 0.9rem;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"viewport viewport"
			"prev next"
			"dots dots";
	}

	.path-method__figure {
		width: min(100%, 22rem);
		margin-top: 2.4rem;
	}

	.path-method__figure img {
		margin-inline: auto;
	}

	.path-method .path-closing-text {
		text-align: center;
	}

	.path-testimonial {
		grid-template-rows: auto auto;
		min-height: 0;
		padding: 1.2rem 1.05rem;
	}

	.path-testimonial__body p {
		font-size: 1.04rem;
		line-height: 1.62;
	}

	.path-testimonial__meta {
		gap: 0.68rem;
	}

	.path-testimonial__profile {
		width: 2.35rem;
	}

	.path-testimonials__controls {
		display: contents;
	}

	.path-testimonials__control {
		width: 2rem;
		height: 2rem;
	}

	.path-hold-layout__figure {
		justify-self: center;
		width: min(100%, 23.5rem);
	}

		.path-offer-panel,
		.path-closing-text--offer {
			width: 100%;
		}

		.path-closing-text {
			text-align: left;
		}

	.about-page__portrait {
		justify-self: center;
		width: min(100%, 23rem);
	}

	.section-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.section-about__side {
		justify-items: center;
	}

	.section-about__side .quiet-list {
		width: 100%;
	}

	.section-offering__actions {
		width: 100%;
	}

	.section-offering__media {
		width: 100%;
		padding: 1.25rem;
	}

	.button {
		width: 100%;
	}

	.one-life-contact-form .wpcf7 input[type="text"],
	.one-life-contact-form .wpcf7 input[type="email"],
	.one-life-contact-form .wpcf7 input[type="url"],
	.one-life-contact-form .wpcf7 input[type="tel"],
	.one-life-contact-form .wpcf7 textarea,
	.one-life-contact-form .wpcf7 select {
		font-size: 16px;
	}

	.one-life-contact-form .wpcf7 .wpcf7-submit {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.one-life-contact-form .contact-form__booking-actions .button {
		width: 100%;
	}

	.yn-cover {
		padding-block: 1.35rem 1.5rem;
		min-height: calc(100svh - 5.5rem);
	}

	body.admin-bar .yn-cover {
		min-height: calc(100svh - 5.5rem - 46px);
	}

	.yn-cover__content {
		width: min(100%, 23.5rem);
		gap: 0.8rem;
		transform: none;
	}

	.yn-cover__intro {
		width: min(100%, 21rem);
		gap: 0.42rem;
	}

	.yn-cover__eyebrow {
		font-size: 0.76rem;
		letter-spacing: 0.08em;
	}

	.yn-cover__intro h1 {
		font-size: 1.28rem;
		line-height: 1.24;
	}

	.yn-cover--world-peace .yn-cover__content {
		width: 100%;
	}

	.yn-cover--world-peace .yn-cover__intro--world-peace {
		width: 100%;
		max-width: 28rem;
	}

	.yn-cover--world-peace .yn-cover__intro--world-peace h1 {
		font-size: clamp(1.45rem, 6vw, 1.9rem);
		line-height: 1.2;
	}

	.yn-cover::before {
		transform: none;
		will-change: auto;
	}

	.yn-cover .button::before {
		inset: -0.32rem -0.55rem -0.72rem;
		filter: blur(14px);
		transform: none;
	}

	.yn-cover__illustration {
		width: min(calc(100vw - 2rem), 25rem);
		transform: none;
	}

	.yn-cover__illustration img {
		width: 100%;
		max-width: 100%;
		height: auto;
		max-height: none;
		transform: scale(1.08);
	}

	.yn-cover .button {
		width: auto;
		min-width: min(100%, 15.75rem);
		min-height: 2.7rem;
		padding: 0.62rem 0.95rem;
		font-size: 0.92rem;
		margin-top: -0.05rem;
	}

	.yn-section h2 {
		font-size: 1.78rem;
	}

	.yn-join-guide__figure {
		padding-top: 0.6rem;
	}

	.yn-join-intro .yn-join-guide__figure {
		width: 100%;
	}

	.yn-join-hotspot {
		inline-size: 2.6rem;
		block-size: 2.6rem;
	}

	.yn-join-hotspot__pulse {
		inline-size: 1.8rem;
		block-size: 1.8rem;
	}

	.yn-join-hotspot__ring {
		inline-size: 1.2rem;
		block-size: 1.2rem;
	}

	.yn-step-list {
		align-self: start;
		margin-top: 1rem;
	}

	.yn-step-list__button {
		padding-block: 1.1rem;
	}

	.yn-structure-side {
		gap: 1.1rem;
	}

	.yn-structure-map-shell {
		overflow: visible;
		padding-bottom: 0;
		min-height: clamp(18.5rem, 74vw, 22rem);
	}

	.yn-structure-map {
		min-width: 0;
		width: 100%;
		height: 100%;
		min-height: inherit;
		aspect-ratio: auto;
	}

	.yn-structure-field {
		left: -2%;
		width: 104%;
		height: 100%;
	}

	.yn-structure-stop__button {
		inline-size: 2.55rem;
		block-size: 2.55rem;
	}

	.yn-structure-stop__pulse {
		inline-size: 1.7rem;
		block-size: 1.7rem;
	}

	.yn-structure-stop__ring {
		inline-size: 1.15rem;
		block-size: 1.15rem;
	}

	.yn-structure-stop__dot {
		inline-size: 0.38rem;
		block-size: 0.38rem;
	}

	.yn-structure-stop__card {
		max-width: min(12.25rem, 58vw);
		padding: 0.42rem 0.68rem 0.48rem;
		font-size: 0.78rem;
		line-height: 1.32;
	}

	.yn-structure-note {
		width: 100%;
		max-width: 18rem;
		margin-left: 0;
		font-size: 1.35rem;
	}

	.yn-quote p,
	.yn-highlight,
	.yn-closing__body {
		font-size: 1.24rem;
	}

		.site-footer__inner {
			grid-template-columns: 1fr;
			gap: 2.45rem;
			padding-block: 3rem;
		}

		.site-footer__brand {
			gap: 1.35rem;
		}

		.site-footer__links,
		.site-footer__aside {
			gap: 1.25rem;
		}

		.site-footer__links-grid {
			gap: 1.15rem;
		}

		.site-footer__links-stack {
			gap: 1.2rem;
		}

		.site-footer__elsewhere {
			gap: 0.6rem;
			padding-top: 0.1rem;
		}

		.site-footer__newsletter {
			max-width: none;
		}

	.site-footer__nav--legal,
	.site-footer__nav--elsewhere,
	.site-footer__newsletter-status,
	.site-footer__newsletter-note,
	.site-footer__contact-line {
		font-size: 0.9rem;
		line-height: 1.5;
	}

		.site-footer__newsletter-field label {
			font-size: 0.92rem;
		}

		.site-footer__newsletter-form {
			gap: 0.92rem;
			margin-top: 1.15rem;
		}

		.site-footer__newsletter-field {
			gap: 0.4rem;
		}

		.site-footer__newsletter-consent label,
		.site-footer__newsletter-error {
			font-size: 0.9rem;
			line-height: 1.5;
		}

		.site-footer__newsletter-consent {
			gap: 0.68rem;
			margin-top: 0.18rem;
		}

		.site-footer__newsletter-actions {
			margin-top: 0.25rem;
		}

		.site-footer__newsletter-note {
			margin-top: 0.95rem;
			max-width: 36ch;
		}

		.site-footer__newsletter-button {
			width: 100%;
		}

	.site-footer__links {
		justify-items: start;
	}

	.site-footer__nav {
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.yn-structured {
		gap: 1rem;
	}

	.yn-structured > .yn-copy-block {
		justify-self: center;
		justify-items: center;
		text-align: center;
		max-width: min(100%, 28rem);
		margin-inline: auto;
	}

	.yn-structure-side {
		justify-items: center;
		gap: 0.75rem;
		margin-top: 0;
	}

	.yn-structure-map-shell {
		width: min(100%, 33rem);
		margin-inline: auto;
		min-height: clamp(16.5rem, 46vw, 19rem);
	}

	.yn-structure-map {
		height: auto;
		min-height: 0;
	}

	.yn-structure-field {
		--structure-track-width: 20.5rem;
		position: relative;
		left: 0;
		width: 100%;
		height: auto;
		display: grid;
		justify-items: center;
		gap: 1rem;
		padding-block: 0.35rem 0.2rem;
	}

	.yn-structure-field::before {
		content: "";
		position: absolute;
		left: calc(50% - 10.25rem + 1.4rem);
		top: 0.8rem;
		bottom: 0.8rem;
		width: 1px;
		background: rgba(181, 155, 104, 0.44);
	}

	.yn-structure-coordinate-layer {
		position: relative;
		left: auto;
		top: auto;
		display: grid;
		width: 100%;
		aspect-ratio: auto;
		justify-items: center;
		gap: 1rem;
	}

	.yn-structure-wave {
		display: none;
	}

	.yn-structure-stop {
		position: relative;
		left: auto;
		top: auto;
		display: grid;
		grid-template-columns: 2.8rem minmax(0, 1fr);
		align-items: center;
		column-gap: 1rem;
		min-height: 3.45rem;
		width: min(100%, var(--structure-track-width));
		margin-inline: auto;
	}

	.yn-structure-stop__button {
		inline-size: 2.8rem;
		block-size: 2.8rem;
		justify-self: center;
		transform: none;
	}

	.yn-structure-stop__button:hover,
	.yn-structure-stop__button:focus-visible,
	.yn-structure-stop.is-locked .yn-structure-stop__button {
		transform: none;
	}

	.yn-structure-stop__card {
		position: relative;
		left: auto;
		top: auto;
		width: auto;
		max-width: min(15rem, 48vw);
		padding: 0.48rem 0.78rem 0.54rem;
		font-size: 0.84rem;
		line-height: 1.34;
		text-align: center;
		opacity: 1;
		transform: none;
	}

	.yn-structure-stop__card::before {
		left: -0.38rem;
		top: 50%;
		bottom: auto;
		transform: translateY(-50%) rotate(45deg);
	}

	.yn-structure-stop__card--above,
	.yn-structure-stop__card--below,
	.yn-structure-stop__button:hover + .yn-structure-stop__card--above,
	.yn-structure-stop__button:focus-visible + .yn-structure-stop__card--above,
	.yn-structure-stop.is-locked .yn-structure-stop__card--above,
	.yn-structure-stop__button:hover + .yn-structure-stop__card--below,
	.yn-structure-stop__button:focus-visible + .yn-structure-stop__card--below,
	.yn-structure-stop.is-locked .yn-structure-stop__card--below {
		transform: none;
	}

	.yn-structure-stop__card--above::before,
	.yn-structure-stop__card--below::before {
		top: 50%;
		bottom: auto;
		border-top: 1px solid rgba(181, 155, 104, 0.24);
		border-left: 1px solid rgba(181, 155, 104, 0.24);
		border-right: 0;
		border-bottom: 0;
	}

	.yn-structure-stop__button:hover + .yn-structure-stop__card,
	.yn-structure-stop__button:focus-visible + .yn-structure-stop__card,
	.yn-structure-stop.is-locked .yn-structure-stop__card {
		opacity: 1;
	}

	.yn-structure-note {
		justify-self: center;
		width: auto;
		max-width: 20rem;
		margin-inline: auto;
		margin-top: 0.2rem;
		transform: none;
		text-align: center;
		font-size: clamp(1.35rem, 2.6vw, 1.55rem);
	}
}

@media (max-width: 620px) {
	.section-hero--path-statement .section-hero__grid {
		gap: 2.15rem;
	}

	.section-hero--path-statement .section-hero__media {
		width: min(100%, 22rem);
		padding-top: 0.95rem;
	}

	.section-hero--path-statement .section-hero__statement {
		max-width: 17rem;
		font-size: clamp(1.7rem, 8vw, 2rem);
		line-height: 1.18;
	}

	.path-opening__feature--video {
		width: 100%;
	}

	.yn-structured > .yn-copy-block {
		max-width: min(100%, 22rem);
	}

	.yn-structure-map-shell {
		width: min(100%, 21.5rem);
	}

	.yn-structure-field {
		--structure-track-width: 18rem;
		transform: translateX(-0.55rem);
	}

	.yn-structure-field::before {
		left: calc(50% - 9rem + 1.275rem);
	}

	.yn-structure-stop {
		grid-template-columns: 2.55rem minmax(0, 1fr);
		column-gap: 0.95rem;
		min-height: 3.2rem;
	}

	.yn-structure-stop__button {
		inline-size: 2.55rem;
		block-size: 2.55rem;
	}

	.yn-structure-stop__card {
		max-width: none;
		padding: 0.44rem 0.72rem 0.5rem;
		font-size: 0.8rem;
	}

	.yn-structure-note {
		max-width: 19rem;
		font-size: 1.3rem;
	}
}

@media (min-width: 621px) and (max-width: 760px) {
	.section-home-header h1 {
		font-size: 2rem;
	}

	.section-hero--home h1 {
		max-width: none;
	}

	.section-hero--home .section-hero__title-line--wide {
		white-space: nowrap;
	}

	.home-page .section-path-preview__grid,
	.home-page .section-offering__grid,
	.home-page .section-about__grid,
	.home-page .section-philosophy__grid {
		justify-items: center;
	}

	.home-page .section-path-preview__content,
	.home-page .section-offering__content,
	.home-page .section-about__grid > .section-stack,
	.home-page .section-philosophy__grid > .section-stack {
		justify-self: center;
		justify-items: center;
		text-align: center;
	}

	.home-page .section-path-preview__actions {
		justify-content: center;
		justify-self: center;
		margin-inline: auto;
		width: min(100%, 34rem);
	}

	.home-page .section-offering__actions {
		justify-self: center;
		justify-items: center;
		margin-inline: auto;
		width: min(100%, 34rem);
	}

	.home-page .section-path-preview__actions .button,
	.home-page .section-offering__actions .button {
		width: 100%;
		min-width: 0;
	}

	.home-page .section-about__side {
		justify-self: center;
		justify-items: center;
	}

	.home-page .section-about__media {
		margin-inline: auto;
	}

	.home-page .section-about__side .quiet-list {
		text-align: center;
	}

	.home-page .section-offering__media,
	.home-page .section-philosophy__media {
		justify-self: center;
	}

	.home-page .section-path-preview__content .path-preview-list {
		width: min(100%, 30rem);
		text-align: center;
		justify-items: center;
	}
}

@media (min-width: 621px) and (max-width: 900px) {
	.yn-structure-map-shell {
		width: min(100%, 35rem);
	}

	.yn-structure-field {
		--structure-track-width: 23rem;
		transform: translateX(0.7rem);
	}

	.yn-structure-field::before {
		left: calc(50% - 11.5rem + 1.4rem);
	}

	.yn-structure-stop__card {
		max-width: min(16.5rem, 44vw);
		opacity: 0;
		transform: translateX(-0.2rem);
	}

	.yn-structure-stop__button:hover + .yn-structure-stop__card,
	.yn-structure-stop__button:focus-visible + .yn-structure-stop__card,
	.yn-structure-stop.is-locked .yn-structure-stop__card {
		opacity: 1;
		transform: none;
	}
}

@media (min-width: 620px) and (max-width: 760px) {
	.yn-cover {
		padding-block: 2.95rem 3.2rem;
		min-height: calc(100svh - 4.35rem);
	}

	body.admin-bar .yn-cover {
		min-height: calc(100svh - 4.35rem - 46px);
	}

	.yn-cover__content {
		width: min(100%, 29.5rem);
		gap: 1rem;
	}

	.yn-cover__intro {
		width: min(100%, 22rem);
	}

	.yn-cover__intro h1 {
		font-size: 1.22rem;
	}

	.yn-cover--world-peace .yn-cover__intro--world-peace {
		width: 100%;
		max-width: none;
	}

	.yn-cover--world-peace .yn-cover__headline-plain,
	.yn-cover--world-peace .yn-cover__intro--world-peace h1 {
		max-width: none;
		font-size: clamp(1.24rem, 4.7vw, 1.48rem);
		line-height: 1.16;
	}

	.yn-cover__practice-info-title {
		font-size: 1.28rem;
	}

	.yn-cover__practice-info-list {
		font-size: 1rem;
		line-height: 1.44;
	}

	.yn-cover__illustration {
		width: min(calc(100vw - 2rem), 32rem);
		transform: translateY(-0.42rem);
	}

	.yn-cover .button {
		min-width: min(100%, 17.8rem);
		min-height: 2.82rem;
		padding: 0.66rem 1rem;
		font-size: 0.95rem;
		margin-top: -0.12rem;
	}
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
	.yn-cover::before {
		transform: none;
		will-change: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.olil-scroll-fade {
		opacity: 1;
		transform: none;
		transition: none;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
