
:root {
	--r75-ivory: #f5f2ec;
	--r75-parchment: #efe7d9;
	--r75-sand: #e4d9c7;
	--r75-olive: #535136;
	--r75-olive-dark: #3f3d2c;
	--r75-brown: #655143;
	--r75-taupe: #8f8a79;
	--r75-ink: #29291d;
	--r75-white: #fffdfa;
	--r75-border: rgba(83, 81, 54, 0.22);
	--r75-shadow: 0 24px 60px rgba(47, 45, 31, 0.12);
	--r75-shadow-soft: 0 12px 36px rgba(47, 45, 31, 0.08);
	--r75-radius: 18px;
	--r75-radius-lg: 32px;
	--r75-container: 1180px;
	--r75-reading: 760px;
	--r75-serif: "Cormorant Garamond", Georgia, serif;
	--r75-sans: "DM Sans", Arial, sans-serif;
	--r75-script: "Allura", cursive;
}

html {
	scroll-behavior: smooth;
}

body.rooted75-site {
	margin: 0;
	background: var(--r75-ivory);
	color: var(--r75-ink);
	font-family: var(--r75-sans);
	font-size: 17px;
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

.rooted75-site a {
	color: var(--r75-olive-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.rooted75-site a:hover {
	color: var(--r75-brown);
}

.rooted75-site img {
	max-width: 100%;
	height: auto;
}

.rooted75-site h1,
.rooted75-site h2,
.rooted75-site h3,
.rooted75-site h4,
.rooted75-site h5,
.rooted75-site h6 {
	margin-top: 0;
	color: var(--r75-ink);
	font-family: var(--r75-serif);
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.02em;
}

.rooted75-site h1 {
	font-size: clamp(3.6rem, 7vw, 6.8rem);
}

.rooted75-site h2 {
	font-size: clamp(2.55rem, 5vw, 4.45rem);
}

.rooted75-site h3 {
	font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.rooted75-site p {
	margin-top: 0;
}

.rooted75-site ::selection {
	background: var(--r75-sand);
	color: var(--r75-ink);
}

.r75-container {
	width: min(92%, var(--r75-container));
	margin-inline: auto;
}

.r75-reading-width {
	width: min(92%, var(--r75-reading));
	margin-inline: auto;
}

.r75-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99999;
	padding: 10px 16px;
	background: var(--r75-ink);
	color: white !important;
	transform: translateY(-140%);
}

.r75-skip-link:focus {
	transform: translateY(0);
}

.r75-announcement {
	position: relative;
	z-index: 1002;
	background: var(--r75-olive-dark);
	color: var(--r75-white);
	font-size: .84rem;
	letter-spacing: .03em;
}

.r75-announcement .r75-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	min-height: 36px;
}

.r75-announcement a {
	color: var(--r75-white);
	font-weight: 700;
	text-decoration: none;
}

.r75-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(245, 242, 236, .94);
	border-bottom: 1px solid var(--r75-border);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

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

.r75-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 94px;
}

.r75-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--r75-ink) !important;
	text-decoration: none !important;
	flex-shrink: 0;
}

.r75-brand-symbol {
	width: 46px;
	height: 54px;
	display: block;
}

.r75-brand-symbol svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.r75-brand-symbol .r75-cross-v,
.r75-brand-symbol .r75-cross-h {
	fill: var(--r75-brown);
}

.r75-brand-symbol .r75-root {
	fill: none;
	stroke: var(--r75-olive);
	stroke-width: 2.4;
	stroke-linecap: round;
}

.r75-brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.r75-brand-name {
	font-family: var(--r75-serif);
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: .025em;
	white-space: nowrap;
}

.r75-brand-name em {
	position: relative;
	top: .06em;
	margin-left: .12em;
	color: var(--r75-olive);
	font-family: var(--r75-script);
	font-size: 1.25em;
	font-style: normal;
}

.r75-brand-tagline {
	margin-top: 4px;
	color: var(--r75-olive-dark);
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .23em;
	text-transform: uppercase;
	white-space: nowrap;
}

.r75-primary-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.r75-menu {
	display: flex;
	align-items: center;
	gap: 27px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.r75-menu li {
	margin: 0;
	padding: 0;
}

.r75-menu a {
	position: relative;
	color: var(--r75-ink);
	font-size: .92rem;
	font-weight: 600;
	text-decoration: none;
}

.r75-menu a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	background: var(--r75-olive);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.r75-menu a:hover::after,
.r75-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.r75-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	padding: 0 22px;
	border: 1px solid var(--r75-olive);
	border-radius: 999px;
	background: var(--r75-olive);
	color: white !important;
	font-size: .88rem;
	font-weight: 700;
	text-decoration: none !important;
}

.r75-header-cta:hover {
	background: var(--r75-olive-dark);
	transform: translateY(-1px);
}

.r75-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	border: 0;
	background: transparent;
	color: var(--r75-ink);
	font: 700 .85rem var(--r75-sans);
	cursor: pointer;
}

.r75-menu-bars {
	display: grid;
	gap: 4px;
	width: 24px;
}

.r75-menu-bars i {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.r75-menu-toggle[aria-expanded="true"] .r75-menu-bars i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.r75-menu-toggle[aria-expanded="true"] .r75-menu-bars i:nth-child(2) {
	opacity: 0;
}

.r75-menu-toggle[aria-expanded="true"] .r75-menu-bars i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.r75-main {
	min-height: 60vh;
	background: var(--r75-ivory);
}

.rooted75-site #main-content {
	background: var(--r75-ivory);
}

.rooted75-site .et_pb_section {
	padding: 0;
	background: transparent;
}

.rooted75-site .et_pb_row {
	width: min(92%, var(--r75-container));
	max-width: var(--r75-container);
	padding: 0;
}

.rooted75-site .et_pb_column,
.rooted75-site .et_pb_module {
	margin-bottom: 0;
}

.r75-section {
	position: relative;
	padding: clamp(78px, 9vw, 132px) 0 !important;
	overflow: hidden;
}

.r75-section-tight {
	padding: clamp(56px, 7vw, 92px) 0 !important;
}

.r75-section-parchment {
	background: var(--r75-parchment) !important;
}

.r75-section-sand {
	background: var(--r75-sand) !important;
}

.r75-section-white {
	background: var(--r75-white) !important;
}

.r75-section-dark {
	background: var(--r75-olive-dark) !important;
	color: var(--r75-white);
}

.r75-section-dark h1,
.r75-section-dark h2,
.r75-section-dark h3,
.r75-section-dark h4,
.r75-section-dark p,
.r75-section-dark li {
	color: var(--r75-white);
}

.r75-section::before {
	pointer-events: none;
}

.r75-kicker {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--r75-olive);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .21em;
	line-height: 1.3;
	text-transform: uppercase;
}

.r75-section-dark .r75-kicker {
	color: var(--r75-sand);
}

.r75-script {
	color: var(--r75-olive);
	font-family: var(--r75-script);
	font-size: 1.2em;
	font-weight: 400;
	letter-spacing: normal;
}

.r75-lede {
	max-width: 720px;
	color: rgba(41, 41, 29, .82);
	font-size: clamp(1.08rem, 1.6vw, 1.28rem);
	line-height: 1.75;
}

.r75-section-dark .r75-lede {
	color: rgba(255, 253, 250, .82);
}

.r75-center {
	text-align: center;
}

.r75-center .r75-lede {
	margin-inline: auto;
}

.r75-section-heading {
	margin-bottom: 52px;
}

.r75-section-heading h2 {
	margin-bottom: 18px;
}

.r75-botanical-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 20px auto 0;
	color: var(--r75-olive);
}

.r75-botanical-divider::before,
.r75-botanical-divider::after {
	content: "";
	width: 86px;
	height: 1px;
	background: currentColor;
	opacity: .45;
}

.r75-botanical-divider span {
	font-size: 1.1rem;
	transform: rotate(-8deg);
}

.r75-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 30px;
}

.r75-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--r75-sans);
	font-size: .92rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
}

.r75-btn-primary {
	border-color: var(--r75-olive);
	background: var(--r75-olive);
	color: white !important;
	box-shadow: 0 10px 24px rgba(83, 81, 54, .16);
}

.r75-btn-primary:hover {
	border-color: var(--r75-olive-dark);
	background: var(--r75-olive-dark);
	color: white !important;
	transform: translateY(-2px);
	box-shadow: 0 15px 32px rgba(83, 81, 54, .22);
}

.r75-btn-secondary {
	border-color: var(--r75-olive);
	background: transparent;
	color: var(--r75-olive-dark) !important;
}

.r75-btn-secondary:hover {
	background: var(--r75-parchment);
	transform: translateY(-2px);
}

.r75-btn-light {
	border-color: var(--r75-white);
	background: var(--r75-white);
	color: var(--r75-olive-dark) !important;
}

.r75-btn-outline-light {
	border-color: rgba(255, 255, 255, .55);
	background: transparent;
	color: var(--r75-white) !important;
}

.r75-btn-outline-light:hover {
	border-color: white;
	background: rgba(255, 255, 255, .08);
	color: white !important;
}

.r75-text-link,
.r75-download-link {
	font-size: .84rem;
	font-weight: 700;
	text-decoration: none !important;
}

.r75-download-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.r75-download-link::before {
	content: "↓";
}

.r75-hero {
	position: relative;
	padding: clamp(76px, 8vw, 120px) 0 clamp(88px, 10vw, 150px) !important;
	background:
		radial-gradient(circle at 11% 18%, rgba(228, 217, 199, .72), transparent 29%),
		radial-gradient(circle at 89% 32%, rgba(83, 81, 54, .08), transparent 30%),
		var(--r75-ivory) !important;
}

.r75-hero::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -160px;
	width: 430px;
	height: 430px;
	border: 1px solid rgba(83, 81, 54, .12);
	border-radius: 50%;
	box-shadow:
		0 0 0 45px rgba(83, 81, 54, .025),
		0 0 0 90px rgba(83, 81, 54, .018);
}

.r75-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
	align-items: center;
	gap: clamp(46px, 7vw, 92px);
}

.r75-hero h1 {
	max-width: 780px;
	margin-bottom: 24px;
}

.r75-hero h1 .r75-script {
	display: inline-block;
	white-space: nowrap;
}

.r75-hero .r75-lede {
	max-width: 670px;
}

.r75-hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.r75-hero-proof li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid var(--r75-border);
	border-radius: 999px;
	background: rgba(255, 253, 250, .62);
	color: var(--r75-olive-dark);
	font-size: .78rem;
	font-weight: 700;
}

.r75-hero-proof li::before {
	content: "✓";
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--r75-olive);
	color: white;
	font-size: .68rem;
}

.r75-hero-art {
	position: relative;
	z-index: 1;
}

.r75-hero-art img {
	display: block;
	width: 100%;
	border: 1px solid rgba(83, 81, 54, .14);
	border-radius: var(--r75-radius-lg);
	box-shadow: var(--r75-shadow);
	transform: rotate(1.1deg);
}

.r75-hero-note {
	position: absolute;
	right: -14px;
	bottom: 38px;
	max-width: 250px;
	padding: 18px 20px;
	border: 1px solid var(--r75-border);
	border-radius: 15px;
	background: rgba(255, 253, 250, .96);
	box-shadow: var(--r75-shadow-soft);
	font-family: var(--r75-serif);
	font-size: 1.2rem;
	line-height: 1.22;
	transform: rotate(-2deg);
}

.r75-hero-note strong {
	display: block;
	margin-top: 6px;
	color: var(--r75-olive);
	font-family: var(--r75-script);
	font-size: 1.5rem;
	font-weight: 400;
}

.r75-pillar-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.r75-card,
.r75-pillar-card,
.r75-step-card,
.r75-habit-card,
.r75-info-card {
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius);
	background: rgba(255, 253, 250, .72);
	box-shadow: var(--r75-shadow-soft);
}

.r75-pillar-card {
	padding: 32px 28px;
}

.r75-icon-circle {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: var(--r75-olive);
	color: white;
	font-family: var(--r75-serif);
	font-size: 1.55rem;
}

.r75-pillar-card h3 {
	margin-bottom: 12px;
	font-size: 1.8rem;
}

.r75-pillar-card p {
	margin-bottom: 0;
	color: rgba(41, 41, 29, .72);
	font-size: .94rem;
}

.r75-habit-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	counter-reset: habits;
}

.r75-habit-card {
	position: relative;
	display: grid;
	grid-template-columns: 66px 1fr;
	align-items: start;
	gap: 20px;
	padding: 24px;
	box-shadow: none;
	counter-increment: habits;
}

.r75-habit-number {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--r75-olive);
	color: white;
	font-family: var(--r75-serif);
	font-size: 1.45rem;
}

.r75-habit-number::before {
	content: counter(habits);
}

.r75-habit-card h3 {
	margin-bottom: 6px;
	font-size: 1.6rem;
}

.r75-habit-card p {
	margin-bottom: 0;
	color: rgba(41, 41, 29, .72);
	font-size: .93rem;
	line-height: 1.58;
}

.r75-step-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	counter-reset: steps;
}

.r75-step-card {
	position: relative;
	padding: 28px 22px;
	box-shadow: none;
	counter-increment: steps;
}

.r75-step-card::before {
	content: counter(steps, decimal-leading-zero);
	display: block;
	margin-bottom: 24px;
	color: var(--r75-olive);
	font-family: var(--r75-serif);
	font-size: 2.2rem;
}

.r75-step-card h3 {
	margin-bottom: 10px;
	font-size: 1.55rem;
}

.r75-step-card p {
	margin-bottom: 0;
	color: rgba(41, 41, 29, .72);
	font-size: .9rem;
}

.r75-resource-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.r75-resource-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius);
	background: var(--r75-white);
	box-shadow: var(--r75-shadow-soft);
	transition: transform .24s ease, box-shadow .24s ease;
}

.r75-resource-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--r75-shadow);
}

.r75-resource-preview {
	display: block;
	position: relative;
	overflow: hidden;
	height: 340px;
	background: var(--r75-parchment);
}

.r75-resource-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform .4s ease;
}

.r75-resource-card:hover .r75-resource-preview img {
	transform: scale(1.025);
}

.r75-resource-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 27px;
}

.r75-resource-card h3 {
	margin-bottom: 10px;
	font-size: 1.95rem;
}

.r75-resource-card h3 a {
	color: var(--r75-ink);
	text-decoration: none;
}

.r75-resource-card p {
	color: rgba(41, 41, 29, .7);
	font-size: .92rem;
}

.r75-card-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--r75-border);
}

.r75-feature-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(38px, 7vw, 86px);
	padding: clamp(30px, 5vw, 62px);
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius-lg);
	background: var(--r75-white);
	box-shadow: var(--r75-shadow);
}

.r75-feature-panel img {
	display: block;
	width: 100%;
	max-height: 620px;
	object-fit: contain;
	border-radius: 14px;
	background: var(--r75-parchment);
}

.r75-feature-panel h2 {
	margin-bottom: 18px;
}

.r75-check-list,
.r75-rule-list,
.r75-simple-list {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.r75-check-list li,
.r75-simple-list li {
	position: relative;
	margin-bottom: 11px;
	padding-left: 30px;
}

.r75-check-list li::before,
.r75-simple-list li::before {
	content: "✓";
	position: absolute;
	top: .08em;
	left: 0;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--r75-olive);
	color: white;
	font-size: .7rem;
	font-weight: 700;
}

.r75-quote-panel {
	position: relative;
	padding: clamp(42px, 7vw, 82px);
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius-lg);
	background:
		linear-gradient(135deg, rgba(255, 253, 250, .95), rgba(239, 231, 217, .88));
	text-align: center;
}

.r75-quote-panel blockquote {
	max-width: 900px;
	margin: 0 auto;
	color: var(--r75-ink);
	font-family: var(--r75-serif);
	font-size: clamp(2rem, 4vw, 3.55rem);
	font-style: normal;
	line-height: 1.25;
}

.r75-quote-panel cite {
	display: block;
	margin-top: 24px;
	color: var(--r75-olive);
	font-family: var(--r75-sans);
	font-size: .76rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.r75-about-grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	align-items: center;
	gap: clamp(44px, 8vw, 100px);
}

.r75-about-mark {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 500px;
	border: 1px solid var(--r75-border);
	border-radius: 50% 50% 44% 56% / 48% 45% 55% 52%;
	background: var(--r75-parchment);
	box-shadow: var(--r75-shadow);
}

.r75-about-mark img {
	width: min(72%, 420px);
	mix-blend-mode: multiply;
}

.r75-about-mark::after {
	content: "T";
	position: absolute;
	right: 10%;
	bottom: 8%;
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: var(--r75-olive);
	color: white;
	font-family: var(--r75-serif);
	font-size: 3rem;
	box-shadow: var(--r75-shadow-soft);
}

.r75-about-copy h2 {
	margin-bottom: 22px;
}

.r75-about-copy .r75-signature {
	margin: 22px 0 0;
	color: var(--r75-olive);
	font-family: var(--r75-script);
	font-size: 3.2rem;
	line-height: 1;
}

.r75-page-hero {
	padding: clamp(70px, 9vw, 120px) 0 !important;
	background:
		radial-gradient(circle at 80% 5%, rgba(228, 217, 199, .75), transparent 35%),
		var(--r75-ivory) !important;
	text-align: center;
}

.r75-page-hero h1 {
	max-width: 980px;
	margin-inline: auto;
	margin-bottom: 20px;
	font-size: clamp(3.5rem, 7vw, 6.3rem);
}

.r75-page-hero .r75-lede {
	margin-inline: auto;
}

.r75-page-hero .r75-btn-row {
	justify-content: center;
}

.r75-two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(38px, 7vw, 86px);
}

.r75-three-column {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.r75-info-card {
	padding: 32px;
	box-shadow: none;
}

.r75-info-card h3 {
	margin-bottom: 12px;
	font-size: 1.85rem;
}

.r75-info-card p:last-child {
	margin-bottom: 0;
}

.r75-numbered-list {
	display: grid;
	gap: 18px;
	counter-reset: item;
	margin: 0;
	padding: 0;
	list-style: none;
}

.r75-numbered-list li {
	position: relative;
	padding: 22px 24px 22px 82px;
	border: 1px solid var(--r75-border);
	border-radius: 14px;
	background: var(--r75-white);
	counter-increment: item;
}

.r75-numbered-list li::before {
	content: counter(item);
	position: absolute;
	top: 19px;
	left: 20px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--r75-olive);
	color: white;
	font-family: var(--r75-serif);
	font-size: 1.35rem;
}

.r75-numbered-list strong {
	display: block;
	margin-bottom: 4px;
	font-family: var(--r75-serif);
	font-size: 1.35rem;
	font-weight: 600;
}

.r75-rule-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px;
	counter-reset: rules;
}

.r75-rule-list li {
	position: relative;
	padding: 24px 24px 24px 76px;
	border: 1px solid var(--r75-border);
	border-radius: 14px;
	background: rgba(255, 253, 250, .72);
	counter-increment: rules;
}

.r75-rule-list li::before {
	content: counter(rules);
	position: absolute;
	top: 22px;
	left: 20px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--r75-olive);
	color: white;
	font-family: var(--r75-serif);
	font-size: 1.25rem;
}

.r75-rule-list strong {
	display: block;
	margin-bottom: 4px;
	color: var(--r75-ink);
	font-family: var(--r75-serif);
	font-size: 1.35rem;
	font-weight: 600;
}

.r75-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.r75-timeline::before {
	content: "";
	position: absolute;
	top: 37px;
	right: 9%;
	left: 9%;
	height: 2px;
	background: var(--r75-border);
}

.r75-milestone {
	position: relative;
	z-index: 1;
	text-align: center;
}

.r75-milestone-number {
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	margin: 0 auto 20px;
	border: 7px solid var(--r75-ivory);
	border-radius: 50%;
	background: var(--r75-olive);
	color: white;
	font-family: var(--r75-serif);
	font-size: 1.65rem;
	box-shadow: 0 0 0 1px var(--r75-border);
}

.r75-milestone h3 {
	margin-bottom: 8px;
	font-size: 1.55rem;
}

.r75-milestone p {
	color: rgba(41, 41, 29, .7);
	font-size: .9rem;
}

.r75-faq {
	display: grid;
	gap: 12px;
	max-width: 900px;
	margin-inline: auto;
}

.r75-faq details {
	border: 1px solid var(--r75-border);
	border-radius: 13px;
	background: var(--r75-white);
}

.r75-faq summary {
	position: relative;
	padding: 21px 58px 21px 24px;
	color: var(--r75-ink);
	font-family: var(--r75-serif);
	font-size: 1.42rem;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
	list-style: none;
}

.r75-faq summary::-webkit-details-marker {
	display: none;
}

.r75-faq summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 23px;
	color: var(--r75-olive);
	font-family: var(--r75-sans);
	font-size: 1.5rem;
	transform: translateY(-50%);
}

.r75-faq details[open] summary::after {
	content: "−";
}

.r75-faq details > div {
	padding: 0 24px 22px;
	color: rgba(41, 41, 29, .76);
}

.r75-form {
	display: grid;
	gap: 18px;
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius);
	background: var(--r75-white);
	box-shadow: var(--r75-shadow-soft);
}

.r75-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.r75-form label {
	display: grid;
	gap: 7px;
	margin: 0;
	color: var(--r75-ink);
	font-size: .86rem;
	font-weight: 700;
}

.r75-form input[type="text"],
.r75-form input[type="email"],
.r75-form input[type="url"],
.r75-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid rgba(83, 81, 54, .28);
	border-radius: 9px;
	outline: none;
	background: #fff;
	color: var(--r75-ink);
	font: 400 1rem/1.5 var(--r75-sans);
}

.r75-form textarea {
	resize: vertical;
}

.r75-form input:focus,
.r75-form textarea:focus {
	border-color: var(--r75-olive);
	box-shadow: 0 0 0 3px rgba(83, 81, 54, .12);
}

.r75-checkbox {
	display: grid !important;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 10px !important;
	font-size: .8rem !important;
	font-weight: 500 !important;
}

.r75-checkbox input {
	margin-top: 5px;
}

.r75-form .r75-btn {
	justify-self: start;
	border: 0;
}

.r75-form-note {
	margin: -5px 0 0;
	color: rgba(41, 41, 29, .62);
	font-size: .76rem;
}

.r75-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.r75-form-success,
.r75-form-error {
	margin-bottom: 18px;
	padding: 16px 18px;
	border-radius: 10px;
}

.r75-form-success {
	border: 1px solid rgba(83, 81, 54, .28);
	background: rgba(228, 217, 199, .58);
	color: var(--r75-olive-dark);
}

.r75-form-error {
	border: 1px solid rgba(135, 52, 42, .24);
	background: rgba(180, 75, 60, .08);
	color: #6f2f27;
}

.r75-community-ready {
	padding: 30px;
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius);
	background: var(--r75-white);
}

.r75-community-ready p {
	max-width: 650px;
}

.r75-legal {
	max-width: 860px;
	margin-inline: auto;
}

.r75-legal h2 {
	margin: 48px 0 14px;
	font-size: 2.3rem;
}

.r75-legal h3 {
	margin: 30px 0 10px;
	font-size: 1.75rem;
}

.r75-legal p,
.r75-legal li {
	color: rgba(41, 41, 29, .8);
}

.r75-legal .r75-last-updated {
	color: var(--r75-olive);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.r75-resource-single {
	padding: clamp(70px, 8vw, 120px) 0;
}

.r75-resource-single-grid {
	display: grid;
	grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
	align-items: start;
	gap: clamp(42px, 7vw, 88px);
}

.r75-resource-single-preview {
	position: sticky;
	top: 145px;
	overflow: hidden;
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius);
	background: var(--r75-parchment);
	box-shadow: var(--r75-shadow);
}

.r75-resource-single-preview img {
	display: block;
	width: 100%;
}

.r75-resource-single-copy h1 {
	margin-bottom: 20px;
	font-size: clamp(3.2rem, 6vw, 5.3rem);
}

.r75-resource-single-copy .r75-resource-description {
	font-size: 1.12rem;
}

.r75-resource-download-panel {
	margin: 32px 0;
	padding: 24px;
	border: 1px solid var(--r75-border);
	border-radius: 14px;
	background: var(--r75-parchment);
}

.r75-resource-download-panel p {
	margin-bottom: 14px;
}

.r75-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.r75-post-card {
	padding: 28px;
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius);
	background: var(--r75-white);
}

.r75-post-card .r75-post-date {
	margin-bottom: 12px;
	color: var(--r75-olive);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.r75-post-card h2,
.r75-post-card h3 {
	margin-bottom: 13px;
	font-size: 2rem;
}

.r75-post-card h2 a,
.r75-post-card h3 a {
	color: var(--r75-ink);
	text-decoration: none;
}

.r75-empty-state {
	padding: 24px;
	border: 1px solid var(--r75-border);
	border-radius: 12px;
	background: var(--r75-white);
}

.r75-footer {
	padding: 72px 0 24px;
	background: var(--r75-olive-dark);
	color: rgba(255, 253, 250, .75);
}

.r75-footer a {
	color: rgba(255, 253, 250, .84);
	text-decoration: none;
}

.r75-footer a:hover {
	color: white;
}

.r75-footer-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	padding-bottom: 54px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.r75-footer-cta .r75-kicker {
	margin-bottom: 8px;
	color: var(--r75-sand);
}

.r75-footer-cta h2 {
	max-width: 670px;
	margin-bottom: 0;
	color: white;
	font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.r75-footer-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.r75-footer-grid {
	display: grid;
	grid-template-columns: 1.65fr .8fr .8fr .8fr;
	gap: 48px;
	padding: 54px 0;
}

.r75-footer .r75-brand {
	color: white !important;
}

.r75-footer .r75-brand-symbol .r75-cross-v,
.r75-footer .r75-brand-symbol .r75-cross-h {
	fill: var(--r75-sand);
}

.r75-footer .r75-brand-symbol .r75-root {
	stroke: var(--r75-sand);
}

.r75-footer .r75-brand-tagline,
.r75-footer .r75-brand-name em {
	color: var(--r75-sand);
}

.r75-footer-brand p {
	max-width: 410px;
	margin: 22px 0 0;
}

.r75-footer h3 {
	margin-bottom: 16px;
	color: white;
	font-family: var(--r75-sans);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.r75-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.r75-footer li {
	margin-bottom: 8px;
}

.r75-footer-small {
	font-size: .83rem;
	line-height: 1.55;
}

.r75-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	font-size: .77rem;
}

.r75-footer-bottom p {
	margin: 0;
}

.r75-footer-bottom div {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

/* WordPress and Divi cleanup */
.rooted75-site .entry-content {
	padding: 0;
}

.rooted75-site .entry-content > p:empty {
	display: none;
}

.rooted75-site .et_pb_text_inner > :last-child {
	margin-bottom: 0;
}

.rooted75-site .et_pb_row::after,
.rooted75-site .et_pb_column::after {
	content: none;
}

.rooted75-site .et_pb_section .et_pb_row {
	margin-inline: auto;
}

.rooted75-site .et_pb_post {
	margin-bottom: 24px;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
	.r75-pillar-card,
	.r75-habit-card,
	.r75-info-card {
		transition: transform .25s ease, box-shadow .25s ease;
	}
	.r75-pillar-card:hover,
	.r75-habit-card:hover,
	.r75-info-card:hover {
		transform: translateY(-3px);
		box-shadow: var(--r75-shadow-soft);
	}
}

/* Tablet */
@media (max-width: 1080px) {
	.r75-menu-toggle {
		display: inline-flex;
	}

	.r75-primary-nav {
		position: fixed;
		top: 130px;
		right: 4%;
		left: 4%;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
		max-height: calc(100vh - 155px);
		padding: 28px;
		overflow-y: auto;
		border: 1px solid var(--r75-border);
		border-radius: var(--r75-radius);
		background: rgba(245, 242, 236, .99);
		box-shadow: var(--r75-shadow);
	}

	.admin-bar .r75-primary-nav {
		top: 162px;
	}

	.r75-primary-nav.is-open {
		display: flex;
	}

	.r75-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.r75-menu a {
		display: block;
		padding: 13px 0;
		border-bottom: 1px solid var(--r75-border);
		font-size: 1rem;
	}

	.r75-menu a::after {
		display: none;
	}

	.r75-header-cta {
		width: 100%;
	}

	.r75-hero-grid,
	.r75-feature-panel,
	.r75-about-grid,
	.r75-resource-single-grid {
		grid-template-columns: 1fr;
	}

	.r75-hero-copy {
		max-width: 780px;
	}

	.r75-hero-art {
		max-width: 760px;
		margin-inline: auto;
	}

	.r75-pillar-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.r75-step-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.r75-resource-grid,
	.r75-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.r75-about-mark {
		min-height: 410px;
	}

	.r75-resource-single-preview {
		position: static;
		max-width: 650px;
	}

	.r75-footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.r75-footer-grid > :last-child {
		grid-column: 2 / 4;
	}
}

/* Mobile */
@media (max-width: 782px) {
	.admin-bar .r75-header {
		top: 46px;
	}

	.admin-bar .r75-primary-nav {
		top: 176px;
	}

	.r75-announcement .r75-container {
		justify-content: flex-start;
		overflow-x: auto;
		white-space: nowrap;
	}

	.r75-header-inner {
		min-height: 84px;
	}

	.r75-brand-symbol {
		width: 39px;
		height: 46px;
	}

	.r75-brand-name {
		font-size: 1.7rem;
	}

	.r75-brand-tagline {
		font-size: .54rem;
		letter-spacing: .17em;
	}

	.r75-menu-toggle-label {
		display: none;
	}

	.r75-hero {
		padding-top: 62px !important;
	}

	.r75-hero-grid {
		gap: 46px;
	}

	.r75-hero-note {
		position: static;
		max-width: none;
		margin: -18px 18px 0;
		transform: rotate(-1deg);
	}

	.r75-two-column,
	.r75-three-column,
	.r75-habit-grid,
	.r75-rule-list,
	.r75-form-grid {
		grid-template-columns: 1fr;
	}

	.r75-step-grid,
	.r75-timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.r75-timeline::before {
		display: none;
	}

	.r75-resource-preview {
		height: 300px;
	}

	.r75-footer-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.r75-footer-cta-actions {
		justify-content: flex-start;
	}

	.r75-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.r75-footer-grid > :first-child,
	.r75-footer-grid > :last-child {
		grid-column: 1 / -1;
	}

	.r75-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 580px) {
	body.rooted75-site {
		font-size: 16px;
	}

	.r75-container,
	.rooted75-site .et_pb_row {
		width: min(91%, var(--r75-container));
	}

	.r75-section {
		padding: 68px 0 !important;
	}

	.r75-brand-tagline {
		display: none;
	}

	.r75-brand-name {
		font-size: 1.58rem;
	}

	.r75-primary-nav {
		top: 120px;
	}

	.admin-bar .r75-primary-nav {
		top: 166px;
	}

	.r75-btn-row,
	.r75-btn {
		width: 100%;
	}

	.r75-pillar-grid,
	.r75-resource-grid,
	.r75-post-grid,
	.r75-step-grid,
	.r75-timeline {
		grid-template-columns: 1fr;
	}

	.r75-habit-card {
		grid-template-columns: 54px 1fr;
		gap: 14px;
		padding: 20px;
	}

	.r75-habit-number {
		width: 48px;
		height: 48px;
	}

	.r75-feature-panel {
		padding: 24px;
	}

	.r75-about-mark {
		min-height: 330px;
	}

	.r75-about-mark::after {
		width: 72px;
		height: 72px;
		font-size: 2.4rem;
	}

	.r75-resource-preview {
		height: 360px;
	}

	.r75-footer-grid {
		grid-template-columns: 1fr;
	}

	.r75-footer-grid > * {
		grid-column: auto !important;
	}
}

/* Rooted 75 layout hotfix — prevent off-canvas horizontal drift */
html,
body.rooted75-site,
body.rooted75-site #page-container,
body.rooted75-site .r75-main {
	max-width: 100%;
	overflow-x: clip;
}

/* Safari fallback for browsers without overflow: clip support. */
@supports not (overflow: clip) {
	html,
	body.rooted75-site,
	body.rooted75-site #page-container,
	body.rooted75-site .r75-main {
		overflow-x: hidden;
	}
}

/* The decorative hero circle and note intentionally extend right; contain them. */
body.rooted75-site .r75-hero {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

/* Keep Divi 5 wrapper geometry centered and constrained. */
body.rooted75-site .et_pb_section,
body.rooted75-site .et_pb_row,
body.rooted75-site .et_pb_column,
body.rooted75-site .et_pb_module,
body.rooted75-site .r75-page-module,
body.rooted75-site .r75-page-module .et_pb_text_inner {
	max-width: 100%;
}

body.rooted75-site .et_pb_section .et_pb_row {
	margin-left: auto !important;
	margin-right: auto !important;
}

body.rooted75-site .r75-page-module,
body.rooted75-site .r75-page-module .et_pb_text_inner {
	width: 100%;
}

@media (max-width: 1080px) {
	body.rooted75-site .r75-hero-note {
		right: 0;
	}
}


/* --------------------------------------------------------------------------
   Rooted 75 article library v1.1
   -------------------------------------------------------------------------- */

.r75-section-heading-split {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, .7fr);
	align-items: end;
	gap: 48px;
	margin-bottom: 42px;
}

.r75-section-heading-split > p {
	max-width: 560px;
	margin: 0;
	color: var(--r75-brown);
}

.r75-articles-hero {
	overflow: hidden;
}

.r75-articles-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
	align-items: center;
	gap: clamp(48px, 7vw, 100px);
}

.r75-articles-hero h1 {
	max-width: 820px;
}

.r75-article-search-panel {
	padding: clamp(28px, 4vw, 44px);
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius-lg);
	background: rgba(255, 253, 250, .72);
	box-shadow: var(--r75-shadow-soft);
}

.r75-article-search-panel h2 {
	margin: 8px 0 20px;
	font-size: clamp(2rem, 3vw, 3rem);
}

.r75-article-search-panel > p {
	margin: 14px 0 0;
	color: var(--r75-taupe);
	font-size: .86rem;
}

.rooted75-site .search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	margin: 0;
}

.rooted75-site .search-form label {
	min-width: 0;
	margin: 0;
}

.rooted75-site .search-field {
	width: 100%;
	min-height: 50px;
	padding: 0 16px;
	border: 1px solid var(--r75-border);
	border-radius: 999px;
	background: var(--r75-white);
	color: var(--r75-ink);
	font: 500 .95rem var(--r75-sans);
}

.rooted75-site .search-field:focus {
	border-color: var(--r75-olive);
	outline: 3px solid rgba(83, 81, 54, .14);
}

.rooted75-site .search-submit {
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid var(--r75-olive);
	border-radius: 999px;
	background: var(--r75-olive);
	color: white;
	font: 700 .9rem var(--r75-sans);
	cursor: pointer;
}

.rooted75-site .search-submit:hover {
	background: var(--r75-olive-dark);
}

.r75-category-directory {
	position: relative;
}

.r75-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.r75-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--r75-border);
	border-radius: var(--r75-radius);
	background: var(--r75-white);
	box-shadow: var(--r75-shadow-soft);
	color: var(--r75-ink) !important;
	text-decoration: none !important;
}

.r75-category-card::before {
	content: "";
	position: absolute;
	top: -58px;
	right: -54px;
	width: 150px;
	height: 150px;
	border: 1px solid rgba(83, 81, 54, .14);
	border-radius: 50%;
}

.r75-category-card:hover {
	border-color: rgba(83, 81, 54, .45);
	box-shadow: var(--r75-shadow);
	transform: translateY(-4px);
}

.r75-category-card-count {
	margin-bottom: 28px;
	color: var(--r75-olive);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.r75-category-card h3 {
	margin-bottom: 12px;
	font-size: clamp(1.75rem, 2.4vw, 2.35rem);
}

.r75-category-card p {
	margin-bottom: 28px;
	color: var(--r75-brown);
	font-size: .95rem;
	line-height: 1.65;
}

.r75-category-card .r75-text-link {
	margin-top: auto;
}

.r75-article-grid {
	align-items: stretch;
}

.r75-article-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 30px;
}

.r75-article-card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-bottom: 22px;
	color: var(--r75-taupe);
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.r75-article-card-meta a {
	color: var(--r75-olive-dark);
	text-decoration: none;
}

.r75-article-card-meta span + span::before,
.r75-article-card-meta a + span::before {
	content: "•";
	margin-right: 16px;
	color: var(--r75-sand);
}

.r75-article-card h2,
.r75-article-card h3 {
	margin-bottom: 14px;
	font-size: clamp(1.85rem, 2.6vw, 2.45rem);
	line-height: 1.08;
}

.r75-article-card h2 a,
.r75-article-card h3 a {
	color: var(--r75-ink);
	text-decoration: none;
}

.r75-article-card h2 a:hover,
.r75-article-card h3 a:hover {
	color: var(--r75-olive);
}

.r75-article-card > p {
	color: var(--r75-brown);
}

.r75-article-card > .r75-text-link {
	margin-top: auto;
	padding-top: 8px;
}

.r75-pagination {
	margin-top: 52px;
}

.r75-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.r75-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid var(--r75-border);
	border-radius: 999px;
	background: var(--r75-white);
	color: var(--r75-ink);
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
}

.r75-pagination .page-numbers.current,
.r75-pagination a.page-numbers:hover {
	border-color: var(--r75-olive);
	background: var(--r75-olive);
	color: white;
}

.r75-category-hero .r75-container,
.r75-search-hero .r75-container {
	max-width: 920px;
}

.r75-category-hero h1,
.r75-search-hero h1 {
	max-width: 900px;
}

.r75-search-inline {
	max-width: 650px;
	margin-top: 28px;
}

/* Single article */

.r75-article-header {
	position: relative;
	padding: clamp(78px, 10vw, 138px) 0 clamp(60px, 8vw, 104px);
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 16%, rgba(228, 217, 199, .64), transparent 30%),
		linear-gradient(180deg, var(--r75-ivory), var(--r75-parchment));
	border-bottom: 1px solid var(--r75-border);
}

.r75-article-header::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -180px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(83, 81, 54, .12);
	border-radius: 50%;
	box-shadow:
		0 0 0 46px rgba(83, 81, 54, .025),
		0 0 0 92px rgba(83, 81, 54, .02);
	pointer-events: none;
}

.r75-article-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
	color: var(--r75-taupe);
	font-size: .82rem;
	font-weight: 600;
}

.r75-article-breadcrumbs a {
	color: var(--r75-brown);
	text-decoration: none;
}

.r75-article-category {
	display: inline-flex;
	margin-bottom: 20px;
	color: var(--r75-olive) !important;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.r75-article-header h1 {
	position: relative;
	z-index: 1;
	margin-bottom: 24px;
	font-size: clamp(3.15rem, 7vw, 6.25rem);
}

.r75-article-deck {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin-bottom: 28px;
	color: var(--r75-brown);
	font-family: var(--r75-serif);
	font-size: clamp(1.35rem, 2.4vw, 1.8rem);
	line-height: 1.42;
}

.r75-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	color: var(--r75-taupe);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.r75-article-meta span + span::before {
	content: "•";
	margin-right: 24px;
	color: var(--r75-sand);
}

.r75-article-shell {
	padding: clamp(68px, 9vw, 118px) 0;
	background: var(--r75-white);
}

.r75-article-content {
	color: #37372b;
	font-size: clamp(1.05rem, 1.5vw, 1.16rem);
	line-height: 1.86;
}

.r75-article-content > *:first-child {
	margin-top: 0;
}

.r75-article-content p,
.r75-article-content ul,
.r75-article-content ol {
	margin-bottom: 1.5em;
}

.r75-article-content h2 {
	margin: 2.15em 0 .65em;
	font-size: clamp(2.15rem, 4vw, 3.25rem);
	line-height: 1.08;
}

.r75-article-content h3 {
	margin: 1.8em 0 .55em;
	font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.r75-article-content ul,
.r75-article-content ol {
	padding-left: 1.35em;
}

.r75-article-content li {
	margin-bottom: .7em;
	padding-left: .25em;
}

.r75-article-intro {
	margin-bottom: 42px;
	padding-left: 24px;
	border-left: 3px solid var(--r75-olive);
	color: var(--r75-brown);
	font-family: var(--r75-serif);
	font-size: clamp(1.28rem, 2vw, 1.55rem);
	line-height: 1.55;
}

.r75-scripture-focus {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 24px;
	margin-bottom: 34px;
	padding: 18px 22px;
	border: 1px solid var(--r75-border);
	border-radius: 14px;
	background: var(--r75-parchment);
}

.r75-scripture-focus span {
	color: var(--r75-olive);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.r75-scripture-focus strong {
	font-family: var(--r75-serif);
	font-size: 1.25rem;
	font-weight: 600;
}

.r75-reflection-box,
.r75-prayer-box {
	margin: 54px 0;
	padding: clamp(28px, 5vw, 44px);
	border-radius: var(--r75-radius);
}

.r75-reflection-box {
	border: 1px solid var(--r75-border);
	background: var(--r75-parchment);
}

.r75-prayer-box {
	position: relative;
	overflow: hidden;
	background: var(--r75-olive-dark);
	color: var(--r75-white);
}

.r75-prayer-box::after {
	content: "“";
	position: absolute;
	top: -30px;
	right: 24px;
	color: rgba(255, 255, 255, .07);
	font-family: var(--r75-serif);
	font-size: 12rem;
	line-height: 1;
}

.r75-reflection-box h2,
.r75-reflection-box h3,
.r75-prayer-box h2,
.r75-prayer-box h3 {
	margin-bottom: 20px;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.r75-prayer-box h2,
.r75-prayer-box h3 {
	color: var(--r75-white);
}

.r75-prayer-box p {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	color: rgba(255, 255, 255, .9);
	font-family: var(--r75-serif);
	font-size: 1.25rem;
	font-style: italic;
	line-height: 1.65;
}

.r75-reflection-box ol {
	margin-bottom: 0;
}

.r75-next-step {
	margin: 54px 0 0;
	padding: 28px 30px;
	border-top: 1px solid var(--r75-border);
	border-bottom: 1px solid var(--r75-border);
}

.r75-next-step p {
	margin: 8px 0 0;
	color: var(--r75-brown);
	font-weight: 600;
}

.r75-article-note {
	margin: 44px 0;
	padding: 24px 26px;
	border: 1px solid rgba(101, 81, 67, .28);
	border-radius: 14px;
	background: #f4ede4;
	color: var(--r75-brown);
}

.r75-article-note strong {
	display: block;
	margin-bottom: 6px;
	color: var(--r75-ink);
}

.r75-article-note p {
	margin: 0;
}

.r75-article-cta {
	margin-top: clamp(64px, 10vw, 104px);
	padding: clamp(34px, 7vw, 58px);
	border-radius: var(--r75-radius-lg);
	background:
		linear-gradient(135deg, rgba(83, 81, 54, .97), rgba(63, 61, 44, .98));
	color: var(--r75-white);
	box-shadow: var(--r75-shadow);
}

.r75-article-cta .r75-kicker,
.r75-article-cta h2,
.r75-article-cta p {
	color: var(--r75-white);
}

.r75-article-cta h2 {
	max-width: 640px;
	margin: 10px 0 14px;
	font-size: clamp(2.35rem, 5vw, 4rem);
}

.r75-article-cta p {
	max-width: 650px;
	margin-bottom: 26px;
	color: rgba(255, 255, 255, .84);
}

.r75-article-cta .r75-btn {
	background: var(--r75-white);
	color: var(--r75-olive-dark) !important;
}

.r75-related-articles {
	background: var(--r75-ivory);
	border-top: 1px solid var(--r75-border);
}

.r75-related-grid .r75-article-card {
	background: var(--r75-white);
}

/* Desktop article dropdown */

@media (min-width: 1081px) {
	.r75-menu > .menu-item-has-children {
		position: relative;
		padding-right: 14px;
	}

	.r75-menu > .menu-item-has-children > a::before {
		content: "";
		position: absolute;
		top: 50%;
		right: -14px;
		width: 6px;
		height: 6px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: translateY(-70%) rotate(45deg);
	}

	.r75-menu .sub-menu {
		position: absolute;
		top: calc(100% + 20px);
		left: 50%;
		z-index: 100;
		display: grid;
		grid-template-columns: repeat(2, minmax(185px, 1fr));
		gap: 4px 18px;
		width: 470px;
		margin: 0;
		padding: 20px;
		visibility: hidden;
		opacity: 0;
		border: 1px solid var(--r75-border);
		border-radius: 16px;
		background: rgba(255, 253, 250, .99);
		box-shadow: var(--r75-shadow);
		list-style: none;
		transform: translate(-50%, 10px);
		transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
	}

	.r75-menu .sub-menu::before {
		content: "";
		position: absolute;
		top: -21px;
		right: 0;
		left: 0;
		height: 24px;
	}

	.r75-menu li:hover > .sub-menu,
	.r75-menu li:focus-within > .sub-menu {
		visibility: visible;
		opacity: 1;
		transform: translate(-50%, 0);
	}

	.r75-menu .sub-menu li {
		min-width: 0;
	}

	.r75-menu .sub-menu a {
		display: block;
		padding: 10px 12px;
		border-radius: 9px;
		font-size: .85rem;
		line-height: 1.3;
	}

	.r75-menu .sub-menu a::after {
		display: none;
	}

	.r75-menu .sub-menu a:hover,
	.r75-menu .sub-menu .current-menu-item > a {
		background: var(--r75-parchment);
		color: var(--r75-olive-dark);
	}
}

@media (max-width: 1080px) {
	.r75-menu .sub-menu {
		margin: 0 0 8px 18px;
		padding: 0 0 0 16px;
		border-left: 1px solid var(--r75-border);
		list-style: none;
	}

	.r75-menu .sub-menu a {
		padding: 10px 0;
		color: var(--r75-brown);
		font-size: .9rem;
	}

	.r75-articles-hero-grid,
	.r75-section-heading-split {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.r75-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.rooted75-site .search-form {
		grid-template-columns: 1fr;
	}

	.rooted75-site .search-submit {
		width: 100%;
	}

	.r75-category-grid {
		grid-template-columns: 1fr;
	}

	.r75-category-card {
		min-height: 0;
	}

	.r75-article-card-meta span + span::before,
	.r75-article-card-meta a + span::before {
		margin-right: 8px;
	}

	.r75-article-header h1 {
		font-size: clamp(2.85rem, 13vw, 4.25rem);
	}

	.r75-article-meta span + span::before {
		margin-right: 10px;
	}

	.r75-scripture-focus {
		align-items: flex-start;
		flex-direction: column;
	}

	.r75-article-intro {
		padding-left: 18px;
	}
}

/* Rooted 75 v1.1.1 — site-wide Divi page alignment repair
 * Applies the homepage containment rules to every standard page and removes
 * inherited Divi offsets/floats that can push full-page text modules right.
 */
html,
body.rooted75-site,
body.rooted75-site #page-container,
body.rooted75-site #main-content,
body.rooted75-site .r75-main,
body.rooted75-site article.page,
body.rooted75-site article.page > .entry-content {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

@supports not (overflow: clip) {
	html,
	body.rooted75-site,
	body.rooted75-site #page-container,
	body.rooted75-site #main-content,
	body.rooted75-site .r75-main,
	body.rooted75-site article.page,
	body.rooted75-site article.page > .entry-content {
		overflow-x: hidden;
	}
}

/* Reset Divi's generated outer geometry on standard pages. */
body.rooted75-site article.page .entry-content > .et-l,
body.rooted75-site article.page .entry-content > .et-l > .et_builder_inner_content,
body.rooted75-site article.page .et_builder_inner_content,
body.rooted75-site article.page .et_pb_section {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	transform: none !important;
}

/* Every page section uses one full-width Divi row. Keep that row centered. */
body.rooted75-site article.page .et_pb_section > .et_pb_row,
body.rooted75-site article.page .et_pb_section .et_pb_row {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	float: none !important;
	width: min(92%, var(--r75-container)) !important;
	max-width: var(--r75-container) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	transform: none !important;
}

/* Remove inherited right floats/offsets from the single Divi column/module. */
body.rooted75-site article.page .et_pb_column,
body.rooted75-site article.page .et_pb_text,
body.rooted75-site article.page .et_pb_text_inner,
body.rooted75-site article.page .r75-page-module {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	transform: none !important;
}

/* Contain decorative backgrounds and wide children on every page. */
body.rooted75-site article.page .r75-page-hero,
body.rooted75-site article.page .r75-section {
	width: 100% !important;
	max-width: 100% !important;
	overflow: hidden !important;
}

body.rooted75-site article.page .r75-two-column,
body.rooted75-site article.page .r75-three-column,
body.rooted75-site article.page .r75-feature-panel,
body.rooted75-site article.page .r75-habit-grid,
body.rooted75-site article.page .r75-resource-grid,
body.rooted75-site article.page .r75-timeline,
body.rooted75-site article.page .r75-rule-list,
body.rooted75-site article.page .r75-section-heading,
body.rooted75-site article.page .r75-info-card {
	min-width: 0;
	max-width: 100%;
}

@media (max-width: 580px) {
	body.rooted75-site article.page .et_pb_section > .et_pb_row,
	body.rooted75-site article.page .et_pb_section .et_pb_row {
		width: min(91%, var(--r75-container)) !important;
	}
}
