/**
 * 23 Project Theme — Stylesheet
 *
 * Design tokens (colors, fonts, spacing) are defined in theme.json
 * and available as CSS custom properties: var(--wp--preset--color--*)
 */

/* ==============================
   Base
   ============================== */

html {
	scroll-behavior: smooth;
}

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

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--wp--preset--color--body-text, #1A1A2E);
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 600;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	line-height: 1.2;
	margin-top: 0;
}

a {
	color: var(--wp--preset--color--primary, #5D7992);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--wp--preset--color--primary-mid, #4A5F72);
}

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

ul, ol {
	padding-left: 1.25rem;
}

/* ==============================
   Layout
   ============================== */

.container {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.container-wide {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.container-narrow {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* ==============================
   Sections
   ============================== */

.section {
	padding: 5rem 1.5rem;
}

.section.hero {
	padding-top: 0;
	padding-bottom: 0;
}

.section--dark {
	background-color: var(--wp--preset--color--primary-dark, #2A2F42);
	color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
	color: #fff;
}

.section--dark a {
	color: #fff;
}

.section--dark a:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* Auto-style eyebrows, titles, subtitles on dark sections */
.section--dark .section__eyebrow {
	color: var(--wp--preset--color--accent, #DD9F33);
}

.section--dark .section__title {
	color: #fff;
}

.section--dark .section__title::after {
	background: var(--wp--preset--color--accent, #DD9F33);
}

.section--dark .section__subtitle {
	color: rgba(255, 255, 255, 0.85);
}

/* ===== Glass card treatment on dark sections ===== */
/* Converts opaque cards to frosted-glass style matching homepage */

.section--dark .cp-feature,
.section--dark .sab-feature,
.section--dark .pc-step,
.section--dark .pc-action,
.section--dark .pc-secondary__card,
.section--dark .pray-next__card,
.section--dark .process-glance__track {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: none;
}

.section--dark .cp-feature:hover,
.section--dark .sab-feature:hover,
.section--dark .pc-step:hover,
.section--dark .pc-action:hover,
.section--dark .pc-secondary__card:hover,
.section--dark .pray-next__card:hover,
.section--dark .process-glance__track:hover {
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Glass card text → white */
.section--dark .cp-feature h3,
.section--dark .sab-feature h3,
.section--dark .pc-step h3,
.section--dark .pc-action h3,
.section--dark .pc-secondary__card h3,
.section--dark .pray-next__card h3,
.section--dark .process-glance__track h3 {
	color: #fff;
}

.section--dark .cp-feature p,
.section--dark .sab-feature p,
.section--dark .pc-step p,
.section--dark .pc-action p,
.section--dark .pc-secondary__card p,
.section--dark .pray-next__card p,
.section--dark .process-glance__track p {
	color: rgba(255, 255, 255, 0.75);
}

/* Glass card icons → brighter on dark */
.section--dark .cp-feature__icon,
.section--dark .sab-feature__icon,
.section--dark .pc-step__icon,
.section--dark .pc-action__icon,
.section--dark .pray-next__icon {
	background: rgba(221, 159, 51, 0.15);
	color: var(--wp--preset--color--accent, #DD9F33);
}

/* Glass card accent elements */
.section--dark .sab-feature__stat {
	color: var(--wp--preset--color--accent, #DD9F33);
	border-top-color: rgba(255, 255, 255, 0.1);
}

.section--dark .cp-feature__icon--teal {
	background: rgba(47, 173, 193, 0.2);
	color: #2FADC1;
}

/* Glance cards — border accents pop on dark */
.section--dark .process-glance__track {
	border-top-width: 4px;
	border-top-style: solid;
}

.section--dark .process-glance__details li {
	color: rgba(255, 255, 255, 0.8);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Process step cards keep white bg for readability on dark timeline */
.section--dark .process-step__card {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.section--dark .process-step__card:hover {
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* Timeline line is brighter on dark sections */
.section--dark .process-steps::before {
	background: rgba(255, 255, 255, 0.15);
}

/* Step number badges on dark */
.section--dark .pc-step__number {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
}

/* Milestone border accent still pops */
.section--dark .process-step--milestone .process-step__card {
	background: rgba(255, 255, 255, 0.97);
	border-color: var(--wp--preset--color--accent, #DD9F33);
	box-shadow: 0 4px 24px rgba(221, 159, 51, 0.15);
}

/* Milestone badges + icons use gold globally — intentional accent pop */

/* Audience banner on dark */
.section--dark .pc-audience {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-left-color: #FF5454;
}

.section--neutral {
	background-color: #F7F8FA;
}

.section--warm {
	background-color: #F7F8FA;
}

.section--white {
	background-color: #fff;
}

/* Full-bleed background image sections */
.has-bg-image {
	position: relative;
	overflow: hidden;
}

.has-bg-image > .parallax-bg {
	position: absolute;
	inset: -20% 0;
	background-image: var(--section-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform;
	z-index: 0;
}

.has-bg-image > .parallax-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(42, 47, 66, 0.55);
}

.has-bg-image > * {
	position: relative;
	z-index: 1;
}

.has-bg-image > .parallax-bg {
	z-index: 0;
}

.section__eyebrow {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--wp--preset--color--accent, #DD9F33);
	text-align: center;
	margin: 0 0 0.75rem;
}

.section__eyebrow--light {
	color: var(--wp--preset--color--accent, #DD9F33);
}

.section__title {
	text-align: center;
	margin-bottom: 1.5rem;
}

.section__title--light {
	color: #fff;
}

.section__title--light::after {
	background: var(--wp--preset--color--accent, #DD9F33);
}

.section__title::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background: var(--wp--preset--color--accent, #DD9F33);
	margin: 0.75rem auto 0;
	border-radius: 2px;
}

.section__subtitle {
	text-align: center;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2.5rem;
}

.section__subtitle--light {
	color: rgba(255, 255, 255, 0.9);
}

/* ==============================
   Buttons
   ============================== */

.btn {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	font-family: inherit;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--accent {
	background-color: var(--wp--preset--color--accent, #DD9F33);
	color: #fff;
}

.btn--accent:hover {
	background-color: #e8ad4a;
	color: #fff;
}

.btn--primary {
	background-color: var(--wp--preset--color--primary, #5D7992);
	color: #fff;
}

.btn--primary:hover {
	background-color: var(--wp--preset--color--primary-mid, #4A5F72);
	color: #fff;
}

.btn--partnership {
	background-color: #557A94;
	color: #fff;
}

.btn--partnership:hover {
	background-color: #6a8da6;
	color: #fff;
}

.btn--white,
.section--dark .btn--white {
	background-color: #fff;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.btn--white:hover,
.section--dark .btn--white:hover {
	background-color: #F7F8FA;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.btn--outline {
	background: transparent;
	border: 2px solid currentColor;
}

.btn--outline-primary {
	background: transparent;
	border: 2px solid var(--wp--preset--color--primary, #5D7992);
	color: var(--wp--preset--color--primary, #5D7992);
}

.btn--outline-primary:hover {
	background: var(--wp--preset--color--primary, #5D7992);
	color: #fff;
}

.btn--light-primary {
	background: rgba(93, 121, 146, 0.12);
	color: var(--wp--preset--color--primary, #5D7992);
	border: 1px solid rgba(93, 121, 146, 0.25);
}

.btn--light-primary:hover {
	background: var(--wp--preset--color--primary, #5D7992);
	color: #fff;
}

.btn--light-accent {
	background: rgba(221, 159, 51, 0.1);
	color: var(--wp--preset--color--accent, #DD9F33);
	border: 1px solid rgba(221, 159, 51, 0.35);
}

.btn--light-accent:hover {
	background: var(--wp--preset--color--accent, #DD9F33);
	color: #fff;
}

.btn--sm {
	padding: 0.5rem 1.25rem;
	font-size: 0.9375rem;
}

.btn--lg {
	padding: 0.9rem 2.25rem;
	font-size: 1.1rem;
}

/* ==============================
   Header
   ============================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	border-bottom: none;
	box-shadow: none;
	transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

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

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

.site-header.is-scrolled {
	background: rgba(30, 33, 48, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Push content below fixed header on pages WITHOUT a hero section */
.site-main {
	padding-top: 0;
}

/* Pages without a dark hero need the header offset and dark header */
.single-post .site-main,
.single-partner .site-main {
	padding-top: 70px;
}

.single-partner .site-header,
.single-post .site-header {
	background: rgba(30, 33, 48, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.site-logo img {
	height: 36px;
	width: auto;
}

.site-header__ctas {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}

/* Primary Navigation */

.primary-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.primary-nav .menu-item a {
	font-size: 0.9375rem;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	padding: 0.35rem 0;
	transition: color 0.2s ease;
}

.primary-nav .menu-item a:hover {
	color: rgba(255, 255, 255, 0.7);
}

/* Submenus */

.primary-nav .menu-item-has-children {
	position: relative;
}

.primary-nav .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.35rem;
	vertical-align: middle;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentColor;
}

.primary-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 50%;
	transform: translateX(-50%);
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	padding: 0.5rem 0;
	min-width: 200px;
	z-index: 200;
	flex-direction: column;
	gap: 0;
	border-top: 3px solid var(--wp--preset--color--accent, #DD9F33);
}

.primary-nav .sub-menu::before {
	content: '';
	position: absolute;
	top: calc(-0.5rem - 3px);
	left: 0;
	right: 0;
	height: calc(0.5rem + 3px);
}

.primary-nav .menu-item-has-children:hover > .sub-menu {
	display: flex;
}

.primary-nav .sub-menu .menu-item a {
	display: block;
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.85);
}

.primary-nav .sub-menu .menu-item a:hover {
	background-color: rgba(255, 255, 255, 0.08);
	color: #fff;
}

/* Hamburger toggle */

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 28px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ==============================
   Hero — Scrolling Arch Carousel
   ============================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #2A2F42;
	overflow: hidden;
	padding: 0;
}

/* ---- Carousel layer (behind text) ---- */

.hero__carousel {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero__carousel-track {
	display: flex;
	gap: 1.5rem;
	will-change: transform;
	animation: heroScroll 60s linear infinite;
}

.hero__carousel-slide {
	flex: 0 0 auto;
	width: calc(25vw - 1.5rem);
}

.hero__carousel-slide img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 50% 50% 0 0 / 40% 40% 0 0;
}

/* Gradient vignette — dark edges, brighter center */
.hero__carousel-gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(
			to right,
			rgba(42, 47, 66, 1) 0%,
			rgba(42, 47, 66, 0.7) 20%,
			rgba(42, 47, 66, 0) 50%,
			rgba(42, 47, 66, 0.7) 80%,
			rgba(42, 47, 66, 1) 100%
		);
}

@keyframes heroScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(calc(-100% / 3)); }
}

/* ---- Text content (on top) ---- */

.hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem 1.5rem;
	max-width: 1140px;
	margin: 0 auto;
}

/* Scroll-down indicator */
.hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.3s ease;
}

.hero__scroll:hover {
	color: rgba(255, 255, 255, 0.9);
}

.hero__scroll-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.hero__scroll-arrow {
	width: 24px;
	height: 24px;
	animation: scrollBounce 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scrollBounce {
	0%, 100% { transform: translateY(0); opacity: 0.6; }
	50% { transform: translateY(8px); opacity: 1; }
}

.hero__eyebrow {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #fff;
	margin-bottom: 1rem;
	font-family: 'Inter', sans-serif;
}

.hero__title {
	font-family: 'Source Serif 4', serif;
	font-size: 3.3rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 1.25rem;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* Italic emphasis + animated double-stroke underline */
.hero__title em {
	font-style: italic;
	text-decoration: none;
	position: relative;
	display: inline;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 10' preserveAspectRatio='none'%3E%3Cpath d='M2 4 C60 7, 140 2, 210 5 C280 8, 340 3, 398 5' fill='none' stroke='%23DD9F33' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 10' preserveAspectRatio='none'%3E%3Cpath d='M398 6 C320 3, 270 8, 190 4 C130 1, 70 7, 2 5' fill='none' stroke='%23DD9F33' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: repeat-x;
	background-size: 100% 0.16em;
	background-position: bottom 0.02em left, bottom -0.01em left;
	padding-bottom: 0.1em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* scribble keyframes removed — underline now uses background-image with box-decoration-break for multiline support */

.hero__desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #fff;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
	text-align: center;
}

.hero__buttons {
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero__buttons .btn {
	border-radius: 50px;
	padding: 0.9rem 2.25rem;
	font-size: 1rem;
	font-weight: 600;
	border: none;
}

.hero__buttons .btn--accent {
	background-color: #DD9F33;
	color: #fff;
	border: none;
}

.hero__buttons .btn--accent:hover {
	background-color: #e8ad4a;
}

/* Outline-white button variant */
.btn--outline-white {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50px;
}

.btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.7);
	color: #fff;
}

/* ==============================
   Angled Section Dividers
   ============================== */

/* Section angles — hidden */
.section-angle {
	display: none;
}

/* ==============================
   Problem Section
   ============================== */

.problem-section {
	text-align: center;
	position: relative;
	overflow: visible;
	background: #fff;
	padding-top: 8rem;
	padding-bottom: 8rem;
}


.problem-section > .container-wide {
	position: relative;
	z-index: 2;
}

.problem__title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 600;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	line-height: 1.2;
	margin-bottom: 1.5rem;
	text-align: center;
}

.problem__title em {
	font-style: italic;
	text-decoration: none;
}

.problem__title::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background: var(--wp--preset--color--accent, #DD9F33);
	margin: 0.75rem auto 0;
	border-radius: 2px;
}

.problem__lead {
	font-size: var(--wp--preset--font-size--medium, 1.0625rem);
	line-height: 1.75;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	max-width: 700px;
	margin: 0 auto 1rem;
}

.problem__bridge {
	margin-top: 2rem;
}

.problem__bridge p {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	font-style: italic;
	margin: 0;
}

/* Bottom divider — hidden */

/* ==============================
   Section Navy (shared)
   ============================== */

.section--navy {
	background-color: var(--wp--preset--color--primary-dark, #2A2F42);
	color: #fff;
}

.section--navy h2,
.section--navy h3 {
	color: #fff;
}

/* ==============================
   Guide Section (How We Help)
   ============================== */

.guide-section {
	position: relative;
	overflow: hidden;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.guide-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.guide-cards--two-col {
	grid-template-columns: repeat(2, 1fr);
}

.guide-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	backdrop-filter: blur(8px);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.4s ease;
}

.guide-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.1);
}

.guide-card__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: transform 0.3s ease;
}

.guide-card:hover .guide-card__icon {
	transform: scale(1.1);
}

.guide-card__icon--pray,
.guide-card__icon--fund,
.guide-card__icon--support {
	background: rgba(221, 159, 51, 0.15);
	color: var(--wp--preset--color--accent, #DD9F33);
}

.guide-card h3 {
	font-size: 1.35rem;
	margin-bottom: 0.75rem;
}

.guide-card p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.7;
}

.guide-card__link {
	color: var(--wp--preset--color--accent, #DD9F33);
	font-weight: 600;
	font-size: 0.9375rem;
	transition: color 0.2s ease;
}

.guide-card__link:hover {
	color: #e8ad4a;
}

/* ==============================
   Cards (legacy)
   ============================== */

.cards-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.card {
	background: #fff;
	border-radius: 8px;
	padding: 2rem 1.5rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card__title {
	font-size: 1.3125rem;
	margin-bottom: 0.75rem;
}

.card__text {
	color: var(--wp--preset--color--body-text, #1A1A2E);
	margin-bottom: 1rem;
}

.card__link {
	font-weight: 500;
}

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

/* ==============================
   Programs
   ============================== */

.programs-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.programs-section {
	background: #F7F8FA;
	padding-top: 6rem;
	padding-bottom: 6rem;
	position: relative;
}

.programs-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232A2F42' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
}

.programs-section > * {
	position: relative;
	z-index: 1;
}

.program-card {
	background: #fff;
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.program-card:hover {
	transform: translateY(-6px);
}

.program-card--planting:hover {
	box-shadow: 0 16px 48px rgba(47, 173, 193, 0.18);
}

.program-card--sabbatical:hover {
	box-shadow: 0 16px 48px rgba(126, 114, 175, 0.18);
}

.program-card__header {
	padding: 2rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.program-card__header--planting {
	background: linear-gradient(135deg, #2FADC1, #248fa0);
	color: #fff;
}

.program-card__header--sabbatical {
	background: linear-gradient(135deg, #7E72AF, #665a97);
	color: #fff;
}

.program-card__header .program-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.program-card__header h3 {
	color: #fff;
	font-size: 1.35rem;
	margin-bottom: 0.25rem;
}

.program-card__stat {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.2;
}

.program-card__stat span {
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	opacity: 0.8;
}

.program-card__body {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.program-card__body p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin-bottom: 1rem;
}

.program-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	flex: 1;
}

.program-card__features li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	color: var(--wp--preset--color--body-text, #1A1A2E);
}

.program-card__features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.program-card--planting .program-card__features li::before {
	background: var(--wp--preset--color--church-plant, #2FADC1);
}

.program-card--sabbatical .program-card__features li::before {
	background: var(--wp--preset--color--sabbatical, #7E72AF);
}

/* Color-coded program buttons */
.btn--planting {
	background-color: var(--wp--preset--color--church-plant, #2FADC1);
	color: #fff;
}

.btn--planting:hover {
	background-color: #3cc0d4;
	color: #fff;
}

.btn--sabbatical {
	background-color: var(--wp--preset--color--sabbatical, #7E72AF);
	color: #fff;
}

.btn--sabbatical:hover {
	background-color: #9488c0;
	color: #fff;
}

.btn--care {
	background-color: #FF5454;
	color: #fff;
}

.btn--care:hover {
	background-color: #ff7070;
	color: #fff;
}

/* Outline variants for program pages */
.btn--outline-planting {
	background: transparent;
	border: 2px solid #2FADC1;
	color: #2FADC1;
}

.btn--outline-planting:hover {
	background: #2FADC1;
	color: #fff;
}

.btn--outline-sabbatical {
	background: transparent;
	border: 2px solid #7E72AF;
	color: #7E72AF;
}

.btn--outline-sabbatical:hover {
	background: #7E72AF;
	color: #fff;
}

.btn--outline-care {
	background: transparent;
	border: 2px solid #FF5454;
	color: #FF5454;
}

.btn--outline-care:hover {
	background: #FF5454;
	color: #fff;
}

/* Light variants for program pages */
.btn--light-care {
	background: rgba(255, 84, 84, 0.1);
	color: #FF5454;
	border: 1px solid rgba(255, 84, 84, 0.35);
}

.btn--light-care:hover {
	background: #FF5454;
	color: #fff;
}

/* ==============================
   Versus Cards — Shared Side-by-Side Comparison
   ============================== */

.sab-versus {
	max-width: 1000px;
	margin: 0 auto;
}

.sab-versus__cards {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0;
	align-items: stretch;
}

/* --- "Ours" Card — Elevated & Bold --- */
.sab-versus__card--ours {
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	position: relative;
	z-index: 1;
	box-shadow: 0 20px 60px rgba(42, 47, 66, 0.3);
	transform: scale(1.02);
}

/* --- "Typical" Card — Faded & Flat --- */
.sab-versus__card--typical {
	background: #F7F8FA;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	opacity: 0.85;
}

/* --- Badge / Card Header --- */
.sab-versus__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #7E72AF;
	color: #fff;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 2rem;
}

.sab-versus__badge svg {
	width: 16px;
	height: 16px;
}

.sab-versus__badge--typical {
	background: rgba(0, 0, 0, 0.06);
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

/* --- List Items --- */
.sab-versus__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sab-versus__list li {
	display: flex;
	gap: 0.875rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	align-items: flex-start;
}

.sab-versus__card--typical .sab-versus__list li {
	border-bottom-color: rgba(0, 0, 0, 0.06);
}

.sab-versus__list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.sab-versus__list li:first-child {
	padding-top: 0;
}

.sab-versus__list li svg {
	flex-shrink: 0;
	margin-top: 0.2rem;
}

/* "Ours" list — white text, colored checks */
.sab-versus__card--ours .sab-versus__list li svg {
	color: #7E72AF;
}

.sab-versus__card--ours .sab-versus__list strong {
	display: block;
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.sab-versus__card--ours .sab-versus__list span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	line-height: 1.5;
}

/* "Typical" list — muted text, grey X's */
.sab-versus__card--typical .sab-versus__list li svg {
	color: #d1d1d1;
}

.sab-versus__card--typical .sab-versus__list strong {
	display: block;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	font-size: 0.9375rem;
	font-weight: 600;
	margin-bottom: 0.2rem;
	opacity: 0.6;
}

.sab-versus__card--typical .sab-versus__list span {
	color: var(--wp--preset--color--secondary-text, #6B7280);
	font-size: 0.875rem;
	line-height: 1.5;
	opacity: 0.7;
}

/* --- VS Divider --- */
.sab-versus__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.sab-versus__divider span {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #7E72AF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 0.875rem;
	font-weight: 700;
	font-style: italic;
	color: #7E72AF;
	margin: 0 -1rem;
	position: relative;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* --- Versus Cards Responsive (768px) --- */
@media (max-width: 768px) {
	.sab-versus__cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.sab-versus__card--ours {
		transform: none;
	}

	.sab-versus__divider {
		order: -1;
		display: none;
	}

	.sab-versus__card--ours,
	.sab-versus__card--typical {
		padding: 2rem 1.5rem;
	}
}

/* --- Versus Card Page Color Overrides --- */
body.page-church-planting .sab-versus__card--ours .sab-versus__badge {
	background: #2FADC1;
}

body.page-church-planting .sab-versus__card--ours .sab-versus__list li svg {
	color: #2FADC1;
}

body.page-church-planting .sab-versus__divider span {
	border-color: #2FADC1;
	color: #2FADC1;
}

.program-card__detail {
	color: var(--wp--preset--color--secondary-text, #6B7280);
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
}

/* ==============================
   Impact / Stats
   ============================== */

.impact-section {
	text-align: center;
	position: relative;
	overflow: hidden;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

/* Decorative globe removed — background image provides the visual depth now */

.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	text-align: center;
}

.stat__icon {
	color: var(--wp--preset--color--accent, #DD9F33);
}

.stat__number {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--wp--preset--color--accent, #DD9F33);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.stat__label {
	font-size: 0.775rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.7);
}

/* ==============================
   Testimonial — Rotating Story Slider
   ============================== */

.testimonial-section {
	background: #fff;
	overflow: hidden;
}

.story-slider__stage {
	position: relative;
	height: 480px;
	border-radius: 16px;
	overflow: hidden;
}

.story-slide {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.story-slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	height: 100%;
}

.story-slide__photo {
	position: relative;
	overflow: hidden;
	background: #EEF1F5;
}

.story-slide__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-slide.is-active .story-slide__photo img {
	transform: scale(1.04);
}

.story-slide__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3.5rem 3.5rem;
	position: relative;
	background: var(--wp--preset--color--primary-dark, #2A2F42);
}

.story-slide__content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 80% 20%, rgba(221, 159, 51, 0.06) 0%, transparent 60%);
	pointer-events: none;
}

.story-slide__mark {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 6rem;
	line-height: 0.8;
	color: var(--wp--preset--color--accent, #DD9F33);
	opacity: 0.2;
	position: absolute;
	top: 2rem;
	left: 2.5rem;
}

.story-slide__quote {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.1875rem;
	font-style: italic;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 2rem;
	border: none;
	padding: 0;
	position: relative;
	z-index: 1;
}

.story-slide__attribution {
	border-left: 3px solid var(--wp--preset--color--accent, #DD9F33);
	padding-left: 1rem;
	position: relative;
	z-index: 1;
}

.story-slide__name {
	font-weight: 600;
	font-size: 0.9375rem;
	color: #fff;
	margin: 0;
}

.story-slide__church {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

.story-slide__grant {
	font-size: 0.8125rem;
	font-style: italic;
	color: var(--wp--preset--color--accent, #DD9F33);
	margin: 0.125rem 0 0;
}

/* Color-code by program type */
.story-slide--planting .story-slide__attribution {
	border-left-color: var(--wp--preset--color--church-plant, #2FADC1);
}

.story-slide--planting .story-slide__grant {
	color: var(--wp--preset--color--church-plant, #2FADC1);
}

.story-slide--planting .story-slide__mark {
	color: var(--wp--preset--color--church-plant, #2FADC1);
}

.story-slide--sabbatical .story-slide__attribution {
	border-left-color: var(--wp--preset--color--sabbatical, #7E72AF);
}

.story-slide--sabbatical .story-slide__grant {
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

.story-slide--sabbatical .story-slide__mark {
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

/* Slider controls */
.story-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 1.75rem;
}

.story-slider__btn {
	background: none;
	border: 1px solid #D1D5DB;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.story-slider__btn:hover {
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	border-color: var(--wp--preset--color--primary-dark, #2A2F42);
	color: #fff;
}

.story-slider__progress {
	display: flex;
	gap: 0.5rem;
}

.story-slider__pip {
	width: 32px;
	height: 4px;
	border-radius: 2px;
	border: none;
	background: #D1D5DB;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s ease, width 0.3s ease;
}

.story-slider__pip.is-active {
	background: var(--wp--preset--color--accent, #DD9F33);
	width: 48px;
}

/* ==============================
   Partner Grid
   ============================== */

.partner-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.partner-section {
	background: #F0F3F6;
	position: relative;
	overflow: hidden;
}

.partner-section::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	right: -200px;
	top: -200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(93, 121, 146, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.partner-section > * {
	position: relative;
	z-index: 1;
}

.section__eyebrow--muted {
	color: var(--wp--preset--color--primary, #5D7992);
}

.partner-section .section__title::after {
	background: var(--wp--preset--color--primary, #5D7992);
}

.partner-section .partner-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.partner-section .partner-grid .partner-card {
	width: calc(33.333% - 1rem);
}

.partner-card {
	background: #fff;
	border: 1px solid rgba(93, 121, 146, 0.15);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-color: transparent;
}

.partner-card__image {
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.partner-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.partner-card__info {
	padding: 1rem 1.5rem 1.25rem;
}

.partner-card__name {
	font-size: 1.1rem;
	margin: 0;
}

.partner-card__name a {
	color: inherit;
	text-decoration: none;
}

.partner-card__name a:hover {
	color: var(--wp--preset--color--primary, #5D7992);
}

.partner-card__church {
	font-weight: 500;
	font-size: 0.9375rem;
	margin: 0;
}

.partner-card__church a {
	color: inherit;
	text-decoration: none;
}

.partner-card__church a:hover {
	color: var(--wp--preset--color--primary, #5D7992);
}

.partner-card__church svg {
	vertical-align: middle;
	margin-left: 0.125rem;
	opacity: 0.5;
}

.partner-card__location {
	color: var(--wp--preset--color--secondary-text, #6B7280);
	font-size: 0.9375rem;
	margin: 0;
}

.partner-card__grant {
	font-size: 0.8125rem;
	font-style: italic;
	color: var(--wp--preset--color--primary, #5D7992);
	margin: 0.375rem 0 0;
}

/* Partner type tag badge */
.partner-card__tag {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.partner-card__tag--church-planting {
	background: var(--wp--preset--color--church-plant, #2FADC1);
	color: #fff;
}

.partner-card__tag--sabbatical {
	background: var(--wp--preset--color--sabbatical, #7E72AF);
	color: #fff;
}

/* Partner grid responsive */
@media (max-width: 992px) {
	.partner-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.partner-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.partner-grid {
		grid-template-columns: 1fr;
	}
}

/* ==============================
   CTA Join Section — Vertical Stacked Cards
   ============================== */

.cta-join {
	position: relative;
	overflow: hidden;
}

.cta-join__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.cta-join__header {
	text-align: left;
}

.cta-join__header .section__eyebrow {
	text-align: left;
}

.cta-join__header .section__title {
	text-align: left;
}

.cta-join__header .section__title::after {
	margin-left: 0;
}

.cta-join__header .section__subtitle {
	text-align: left;
	max-width: none;
	margin-left: 0;
}

.cta-join__cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cta-card {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 60px;
	border-left: 4px solid;
	text-decoration: none;
	color: #fff;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
}

.cta-card:hover {
	transform: translateX(8px);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.cta-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cta-card__body {
	flex: 1;
	min-width: 0;
}

.cta-card__body h3 {
	color: #fff;
	font-size: 1.125rem;
	margin: 0 0 0.25rem;
}

.cta-card__body p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	line-height: 1.6;
}

.cta-card__arrow {
	font-size: 1.25rem;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	flex-shrink: 0;
}

.cta-card:hover .cta-card__arrow {
	opacity: 1;
	transform: translateX(0);
}

/* Apply — partnership grey */
.cta-card--apply {
	border-left-color: var(--wp--preset--color--primary, #5D7992);
}

.cta-card--apply .cta-card__icon {
	background: rgba(93, 121, 146, 0.2);
	color: var(--wp--preset--color--primary, #5D7992);
}

/* Give — gold */
.cta-card--give {
	border-left-color: var(--wp--preset--color--accent, #DD9F33);
}

.cta-card--give .cta-card__icon {
	background: rgba(221, 159, 51, 0.2);
	color: var(--wp--preset--color--accent, #DD9F33);
}

/* Pray — red */
.cta-card--pray {
	border-left-color: #FF5454;
}

.cta-card--pray .cta-card__icon {
	background: rgba(255, 84, 84, 0.2);
	color: #FF5454;
}

/* ==============================
   Timeline
   ============================== */

.timeline {
	position: relative;
	padding-left: 0;
}

.timeline__step {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	margin-bottom: 2rem;
	position: relative;
}

.timeline__step:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 1.5rem;
	top: 3.25rem;
	bottom: -0.5rem;
	width: 2px;
	background: rgba(93, 121, 146, 0.2);
	transform: translateX(-50%);
}

.timeline__marker {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--wp--preset--color--primary, #5D7992);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.1rem;
}

.timeline__marker--accent {
	background: var(--wp--preset--color--accent, #DD9F33);
}

.timeline__content h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.timeline__content p {
	margin: 0;
	line-height: 1.7;
}

/* ==============================
   CTA Sections (legacy)
   ============================== */

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

.cta-section h2 {
	color: #fff;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}

.cta-section__secondary {
	margin-top: 1rem;
	font-size: 0.9375rem;
}

.cta-section__secondary a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
}

/* ==============================
   Newsletter
   ============================== */

.newsletter {
	text-align: center;
}

.newsletter--dark {
	background-color: var(--wp--preset--color--primary-dark, #2A2F42);
	color: #fff;
}

.newsletter .section__subtitle {
	margin-bottom: 1.5rem;
}

/* WPForms within newsletter */
.newsletter div.wpforms-container-full {
	max-width: 480px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	margin-bottom: 0 !important;
}

.newsletter div.wpforms-container-full .wpforms-form {
	text-align: left;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field {
	margin-bottom: 1.25rem !important;
	padding: 0 !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field-label {
	font-family: 'Inter', sans-serif !important;
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	color: var(--wp--preset--color--primary-dark, #2A2F42) !important;
	margin-bottom: 0.5rem !important;
}

.newsletter--dark div.wpforms-container-full .wpforms-form .wpforms-field-label {
	color: #fff !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field-sublabel {
	font-family: 'Inter', sans-serif !important;
	font-size: 0.8125rem !important;
	color: var(--wp--preset--color--secondary-text, #6B7280) !important;
}

.newsletter--dark div.wpforms-container-full .wpforms-form .wpforms-field-sublabel {
	color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter div.wpforms-container-full .wpforms-form input[type="text"],
.newsletter div.wpforms-container-full .wpforms-form input[type="email"] {
	width: 100% !important;
	max-width: 100% !important;
	border: 1px solid #C8D5E0 !important;
	border-radius: 50px !important;
	padding: 0.7rem 1.25rem !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 1rem !important;
	color: var(--wp--preset--color--body-text, #1A1A2E) !important;
	background: #fff !important;
	box-sizing: border-box !important;
	height: auto !important;
	line-height: 1.5 !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter--dark div.wpforms-container-full .wpforms-form input[type="text"],
.newsletter--dark div.wpforms-container-full .wpforms-form input[type="email"] {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
	color: #fff !important;
}

.newsletter div.wpforms-container-full .wpforms-form input[type="text"]:focus,
.newsletter div.wpforms-container-full .wpforms-form input[type="email"]:focus {
	border-color: var(--wp--preset--color--primary, #5D7992) !important;
	box-shadow: 0 0 0 3px rgba(93, 121, 146, 0.15) !important;
	outline: none !important;
}

.newsletter--dark div.wpforms-container-full .wpforms-form input[type="text"]:focus,
.newsletter--dark div.wpforms-container-full .wpforms-form input[type="email"]:focus {
	border-color: var(--wp--preset--color--accent, #DD9F33) !important;
	box-shadow: 0 0 0 3px rgba(221, 159, 51, 0.2) !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-medium,
.newsletter .wpforms-container .wpforms-field-row.wpforms-field-medium,
.newsletter .wp-core-ui div.wpforms-container .wpforms-field-row.wpforms-field-medium {
	max-width: 100% !important;
	width: 100% !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field-row {
	display: flex !important;
	gap: 0 !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field-row .wpforms-field-row-block,
.newsletter div.wpforms-container-full .wpforms-form .wpforms-field-row .wpforms-one-half {
	flex: 1 !important;
	width: auto !important;
	max-width: none !important;
	float: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field-row .wpforms-field-row-block:first-child {
	margin-right: 0.5rem !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field-row .wpforms-field-row-block:last-child {
	margin-left: 0.5rem !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-field-required {
	color: var(--wp--preset--color--accent, #DD9F33) !important;
}

.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit-container {
	text-align: center !important;
	margin-top: 0.5rem !important;
	padding: 0 !important;
}

.newsletter div.wpforms-container-full .wpforms-form button[type="submit"],
.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit {
	display: inline-block !important;
	padding: 1.33rem 2.25rem !important;
	border-radius: 50px !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	line-height: 0 !important;
	letter-spacing: 0.01em !important;
	text-decoration: none !important;
	border: none !important;
	cursor: pointer !important;
	background-color: var(--wp--preset--color--accent, #DD9F33) !important;
	color: #fff !important;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.newsletter div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit:hover {
	background-color: #e8ad4a !important;
	transform: translateY(-1px);
}

/* ==============================
   Footer
   ============================== */

.site-footer {
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	color: #fff;
	border-top: 3px solid var(--wp--preset--color--accent, #DD9F33);
}

.site-footer__inner {
	padding-top: 4rem;
	padding-bottom: 2rem;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 2.5rem;
}

.site-footer__logo img {
	height: 28px;
	width: auto;
	margin-bottom: 1rem;
}

.site-footer__col--brand p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.site-footer__social {
	display: flex;
	gap: 1rem;
	margin-top: 1.25rem;
}

.site-footer__social a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s ease;
}

.site-footer__social a:hover {
	color: #fff;
}

.site-footer__col h4 {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--wp--preset--color--accent, #DD9F33);
	margin-bottom: 1rem;
}

.site-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer__col li {
	margin-bottom: 0.5rem;
}

.site-footer__col a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
	text-decoration: none;
}

.site-footer__col a:hover {
	color: var(--wp--preset--color--accent, #DD9F33);
	text-decoration: none;
}

.site-footer__col p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
}

.site-footer__address {
	font-style: normal;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.site-footer__bottom {
	border-top: 1px solid var(--wp--preset--color--primary-mid, #4A5F72);
	padding: 1.25rem 0;
}

.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

.site-footer__legal p {
	margin: 0;
	line-height: 1.5;
}

.site-footer__legal-links {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	flex-wrap: wrap;
	white-space: nowrap;
}

.site-footer__legal-links span {
	color: rgba(255, 255, 255, 0.25);
}

.site-footer__bottom a {
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

.site-footer__bottom a:hover {
	color: #fff;
}

/* ==============================
   Interior Page Hero
   ============================== */

.interior-hero {
	position: relative;
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	color: #fff;
	text-align: center;
	padding: 140px 1.5rem 100px;
	overflow: hidden;
}

.interior-hero .parallax-bg {
	position: absolute;
	inset: -20% 0;
	background-image: var(--section-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform;
	z-index: 0;
}

.interior-hero .parallax-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(42, 47, 66, 0.55);
}

.interior-hero > *:not(.parallax-bg) {
	position: relative;
	z-index: 1;
}

.interior-hero .section__eyebrow {
	color: var(--wp--preset--color--accent, #DD9F33);
}

.interior-hero__title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.3rem);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
	margin-bottom: 1.25rem;
}

.interior-hero__subtitle {
	color: rgba(255, 255, 255, 0.85);
	max-width: 640px;
	margin: 0 auto;
	font-size: 1.0625rem;
	line-height: 1.7;
}

.interior-hero__actions {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Interior hero entrance animation */
.interior-hero .section__eyebrow,
.interior-hero__title,
.interior-hero__subtitle,
.interior-hero__actions {
	opacity: 0;
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.interior-hero .section__eyebrow  { animation-delay: 0.15s; }
.interior-hero__title              { animation-delay: 0.35s; }
.interior-hero__subtitle           { animation-delay: 0.55s; }
.interior-hero__actions            { animation-delay: 0.75s; }

/* Convert ALL interior page heroes to dark navy with parallax bg support */
.about-hero,
.cp-hero,
.sab-hero,
.give-hero,
.apply-hero,
.pray-hero,
.pc-hero,
.blog-hero,
.process-hero,
.interior-hero {
	background: var(--wp--preset--color--primary-dark, #2A2F42) !important;
	color: #fff;
	position: relative;
	overflow: hidden;
	padding-top: 140px !important;
	padding-bottom: 100px !important;
}

.about-hero > .parallax-bg,
.cp-hero > .parallax-bg,
.sab-hero > .parallax-bg,
.give-hero > .parallax-bg,
.apply-hero > .parallax-bg,
.pray-hero > .parallax-bg,
.pc-hero > .parallax-bg,
.blog-hero > .parallax-bg,
.process-hero > .parallax-bg,
.interior-hero > .parallax-bg {
	position: absolute;
	inset: -20% 0;
	background-image: var(--section-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform;
	z-index: 0;
}

.about-hero > .parallax-bg::after,
.cp-hero > .parallax-bg::after,
.sab-hero > .parallax-bg::after,
.give-hero > .parallax-bg::after,
.apply-hero > .parallax-bg::after,
.pray-hero > .parallax-bg::after,
.pc-hero > .parallax-bg::after,
.blog-hero > .parallax-bg::after,
.process-hero > .parallax-bg::after,
.interior-hero > .parallax-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(42, 47, 66, 0.55);
}

.about-hero > *:not(.parallax-bg),
.cp-hero > *:not(.parallax-bg),
.sab-hero > *:not(.parallax-bg),
.give-hero > *:not(.parallax-bg),
.apply-hero > *:not(.parallax-bg),
.pray-hero > *:not(.parallax-bg),
.pc-hero > *:not(.parallax-bg),
.blog-hero > *:not(.parallax-bg),
.process-hero > *:not(.parallax-bg),
.interior-hero > *:not(.parallax-bg) {
	position: relative;
	z-index: 1;
}

/* Hero subtitles: inherit container width, no fixed pixel max */
.about-hero__subtitle,
.cp-hero__subtitle,
.sab-hero__subtitle,
.give-hero__subtitle,
.apply-hero__subtitle,
.pray-hero__subtitle,
.pc-hero__subtitle,
.process-hero__subtitle,
.interior-hero__subtitle {
	margin-left: auto;
	margin-right: auto;
}

/* Override title + subtitle colors on dark heroes */
.about-hero__title,
.cp-hero__title,
.sab-hero__title,
.give-hero__title,
.apply-hero__title,
.pray-hero__title,
.pc-hero__title,
.blog-hero__title,
.process-hero__title {
	color: #fff !important;
}

.about-hero__subtitle,
.cp-hero__subtitle,
.sab-hero__subtitle,
.give-hero__subtitle,
.apply-hero__subtitle,
.pray-hero__subtitle,
.pc-hero__subtitle,
.blog-hero__subtitle,
.process-hero__subtitle {
	color: rgba(255, 255, 255, 0.85) !important;
}

/* Eyebrows stay gold on dark heroes */
.about-hero .section__eyebrow,
.cp-hero .section__eyebrow,
.sab-hero .section__eyebrow,
.give-hero .section__eyebrow,
.apply-hero .section__eyebrow,
.pray-hero .section__eyebrow,
.pc-hero .section__eyebrow,
.blog-hero .section__eyebrow,
.blog-hero__eyebrow,
.process-hero .section__eyebrow {
	color: var(--wp--preset--color--accent, #DD9F33) !important;
}

/* ==============================
   Post & Page Content
   ============================== */

.page-header {
	padding: 3rem 0 1rem;
	text-align: center;
}

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

.page-content {
	padding-bottom: 4rem;
}

.page-content .entry-content {
	max-width: 720px;
	margin: 0 auto;
}

.post-entry {
	padding: 2rem 0;
	border-bottom: 1px solid #E5E7EB;
}

.post-entry:last-child {
	border-bottom: none;
}

.post-entry__title {
	margin-bottom: 0.25rem;
}

.post-entry__title a {
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.post-entry__title a:hover {
	color: var(--wp--preset--color--primary, #5D7992);
}

.post-entry__meta {
	font-size: 0.875rem;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin-bottom: 0.75rem;
}

.post-entry__excerpt p {
	margin: 0;
}

.pagination {
	padding: 2rem 0;
}

.pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.pagination .page-numbers {
	padding: 0.5rem 0.75rem;
	border-radius: 50px;
}

.pagination .page-numbers.current {
	background: var(--wp--preset--color--primary, #5D7992);
	color: #fff;
}

/* Apply page states */
.apply-checklist {
	background: #F7F8FA;
	border-radius: 8px;
	padding: 2rem;
	margin: 2rem 0;
}

.apply-checklist ul {
	margin: 0;
}

.apply-checklist li {
	margin-bottom: 0.5rem;
}

.apply-countdown {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--wp--preset--color--accent, #DD9F33);
	text-align: center;
	margin: 1rem 0;
}

.apply-notify {
	background: #F7F8FA;
	border-radius: 8px;
	padding: 2rem;
	margin-top: 2rem;
}

/* ==============================
   404 & Search
   ============================== */

.error-404,
.search-results-page {
	text-align: center;
	padding: 4rem 0;
}

.error-404 h1 {
	font-size: 5rem;
	color: var(--wp--preset--color--accent, #DD9F33);
	margin-bottom: 0.5rem;
}

.search-form {
	display: flex;
	gap: 0.5rem;
	max-width: 480px;
	margin: 2rem auto;
	align-items: stretch;
}

.search-form > label {
	flex: 1;
	display: flex;
	margin: 0;
}

.search-form .search-field {
	flex: 1;
	width: 100%;
	padding: 0.75rem 1.25rem;
	border: 1px solid #C8D5E0;
	border-radius: 999px;
	background: #fff;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.4;
	color: var(--wp--preset--color--body-text, #1A1A2E);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form .search-field:focus {
	outline: none;
	border-color: var(--wp--preset--color--primary, #5D7992);
	box-shadow: 0 0 0 3px rgba(93, 121, 146, 0.18);
}

.search-form .search-submit {
	padding: 0.75rem 1.75rem;
	background: var(--wp--preset--color--primary, #5D7992);
	color: #fff;
	border: none;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.search-form .search-submit:hover,
.search-form .search-submit:focus-visible {
	background: var(--wp--preset--color--primary-mid, #4A5F72);
	transform: translateY(-1px);
}

/* ==============================
   Utilities
   ============================== */

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

.no-margin {
	margin: 0 !important;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 992px) {
	/* Header */
	.site-header__ctas {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.primary-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
		padding: 1.5rem;
		z-index: 200;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		flex-direction: column;
		gap: 0;
		align-items: flex-start;
	}

	.primary-nav .menu-item {
		width: 100%;
	}

	.primary-nav .menu-item a {
		display: block;
		padding: 0.75rem 0;
		text-align: left;
		border-bottom: 1px solid #E5E7EB;
		color: var(--wp--preset--color--primary-dark, #2A2F42);
	}

	.primary-nav .menu-item a:hover {
		color: var(--wp--preset--color--primary, #5D7992);
	}

	.primary-nav .menu-item:last-child > a,
	.primary-nav .menu-item-has-children > a {
		border-bottom: none;
	}

	.primary-nav .sub-menu {
		position: static;
		display: block;
		transform: none;
		box-shadow: none;
		background: transparent;
		padding: 0 0 0.25rem 1.25rem;
		min-width: auto;
		border: none;
		border-left: none;
		border-radius: 0;
		margin-bottom: 0.25rem;
	}

	.primary-nav .sub-menu .menu-item a {
		font-size: 0.875rem;
		padding: 0.35rem 0;
		border-bottom: none;
		color: var(--wp--preset--color--primary-dark, #2A2F42);
	}

	.primary-nav .sub-menu .menu-item a:hover {
		background: transparent;
		color: var(--wp--preset--color--primary-mid, #4A5F72);
	}

	/* Guide Cards */
	.guide-cards {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}

	/* Partner Grid */
	.partner-section .partner-grid .partner-card {
		width: calc(50% - 0.75rem);
	}

	/* Programs */
	.programs-row {
		grid-template-columns: 1fr;
	}

	/* Stats */
	.stats-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	/* CTA Join */
	.cta-join__layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.cta-join__header,
	.cta-join__header .section__eyebrow,
	.cta-join__header .section__title,
	.cta-join__header .section__subtitle {
		text-align: center;
	}

	.cta-join__header .section__title::after {
		margin-left: auto;
	}

	/* Footer */
	.site-footer__columns {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 640px) {
	/* Keep some horizontal padding on containers */
	.site-main .container-narrow,
	.site-main .container-wide {
		padding-left: 0.25rem;
		padding-right: 0.25rem;
	}

	/* Hero */
	.hero__content {
		padding: 2rem 0;
	}

	.hero__eyebrow {
		font-size: 0.5rem;
	}

	.hero__title {
		font-size: 1.75rem;
	}

	.hero__buttons {
		flex-direction: column;
		align-items: center;
	}

	.hero__carousel-slide {
		width: calc(50vw - 1rem);
	}

	.hero__carousel-track {
		gap: 1rem;
	}

	.hero__content {
		padding: 2rem 0;
	}

	/* Problem */
	.problem__bridge p {
		font-size: 1.25rem;
	}

	/* Cards */
	.cards-row {
		grid-template-columns: 1fr;
	}

	/* Stats */
	.stats-row {
		grid-template-columns: 1fr 1fr;
	}

	/* Testimonial slider */
	.story-slide {
		grid-template-columns: 1fr;
	}

	.story-slider__stage {
		min-height: auto;
		height: auto;
	}

	.story-slide__photo {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.story-slide__content {
		padding: 2rem 1.5rem;
	}

	.story-slide__quote {
		font-size: 1rem;
		line-height: 1.7;
		margin-bottom: 1.5rem;
	}

	.story-slide__mark {
		font-size: 4rem;
		top: 1rem;
		left: 1.25rem;
	}

	.story-slider__controls {
		margin-top: 1.25rem;
	}

	/* CTA pill cards — tighter on mobile */
	.cta-card {
		border-radius: 20px;
		padding: 1.25rem 1.5rem;
		gap: 1rem;
	}

	.cta-card__body p {
		font-size: 0.8125rem;
	}

	.cta-card__icon {
		width: 40px;
		height: 40px;
	}

	.cta-card__icon svg {
		width: 18px;
		height: 18px;
	}

	/* Problem section — less vertical padding on mobile */
	.problem-section {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}

	/* Guide section — less padding on mobile */
	.guide-section {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	/* Partners */
	.partner-section .partner-grid .partner-card {
		width: 100%;
	}

	/* Footer */
	.site-footer__columns {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		text-align: left;
		gap: 0.75rem;
	}

	/* Sections */
	.section {
		padding: 3.5rem 1.25rem;
	}

	.section .container {
		padding-left: 0;
		padding-right: 0;
	}

	.page-header h1 {
		font-size: 2rem;
	}
}

/* ==============================
   Scroll-Reveal Animations (Global)
   ============================== */

/* Default: fade up */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Slide from left */
.reveal-left {
	opacity: 0;
	transform: translateX(-48px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Slide from right */
.reveal-right {
	opacity: 0;
	transform: translateX(48px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Scale in */
.reveal-scale {
	opacity: 0;
	transform: scale(0.7);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* Respect reduced motion globally */
@media (prefers-reduced-motion: reduce) {
	.reveal,
	.reveal-left,
	.reveal-right,
	.reveal-scale {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==============================
   Homepage Animations
   ============================== */

/* Hero entrance */
.hero__eyebrow,
.hero__title,
.hero__desc,
.hero__buttons {
	opacity: 0;
	transform: translateY(30px);
}

.hero--loaded .hero__eyebrow,
.hero--loaded .hero__title,
.hero--loaded .hero__desc,
.hero--loaded .hero__buttons {
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero--loaded .hero__eyebrow  { animation-delay: 0.15s; }
.hero--loaded .hero__title    { animation-delay: 0.35s; }
.hero--loaded .hero__desc     { animation-delay: 0.55s; }
.hero--loaded .hero__buttons  { animation-delay: 0.75s; }

/* Homepage section stagger delays */
.guide-cards .reveal:nth-child(2) { transition-delay: 0.12s; }
.guide-cards .reveal:nth-child(3) { transition-delay: 0.24s; }

.programs-row .reveal:nth-child(2) { transition-delay: 0.15s; }

.cta-join__cards .reveal:nth-child(2) { transition-delay: 0.12s; }
.cta-join__cards .reveal:nth-child(3) { transition-delay: 0.24s; }

.stats-row .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-row .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-row .reveal:nth-child(4) { transition-delay: 0.3s; }

.partner-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.partner-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.partner-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* Section title accent bar grow-in */
.reveal .section__title::after {
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.reveal.is-visible .section__title::after {
	transform: scaleX(1);
}

/* Icon hover enhancements — guide card icons handled inline above */

.program-card__icon {
	transition: transform 0.3s ease;
}

.program-card:hover .program-card__icon {
	transform: scale(1.1);
}

/* Partner card image zoom on hover */
.partner-card__image img {
	transition: transform 0.4s ease;
}

.partner-card:hover .partner-card__image img {
	transform: scale(1.05);
}

/* Stat icon subtle lift on hover */
.stat__icon {
	transition: transform 0.3s ease;
}

.stat:hover .stat__icon {
	transform: translateY(-3px);
}

/* Story slider — Ken Burns slow zoom handled in CSS above */

@keyframes cardFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Card link arrow nudge on hover */
.card__link {
	display: inline-block;
	transition: transform 0.2s ease;
}

.guide-card:hover .card__link,
.card:hover .card__link {
	transform: translateY(-2px);
}

/* Reduced motion — homepage */
@media (prefers-reduced-motion: reduce) {
	.hero__eyebrow,
	.hero__title,
	.hero__desc,
	.hero__buttons {
		opacity: 1;
		transform: none;
		animation: none !important;
	}

	.hero__carousel-track {
		animation: none !important;
	}

	.story-slide.is-active .story-slide__photo img {
		transform: none;
	}

	.reveal .section__title::after {
		transform: scaleX(1);
		transition: none;
	}
}

/* ==============================
   Process Page — Keyframes
   ============================== */

@keyframes heroFadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes trackFadeIn {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ==============================
   Process Page
   ============================== */

/* --- Hero (Light Interior) --- */

.process-hero {
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	padding: 8rem 1.5rem 5rem;
	text-align: center;
}

.process-hero__content {
	position: relative;
}

.process-hero .section__eyebrow,
.process-hero__title,
.process-hero__subtitle {
	opacity: 0;
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.process-hero .section__eyebrow { animation-delay: 0.15s; }
.process-hero__title            { animation-delay: 0.35s; }
.process-hero__subtitle         { animation-delay: 0.55s; }

.process-hero__title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.3rem);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
	margin-bottom: 1.25rem;
}

.process-hero__subtitle {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	max-width: 640px;
	margin: 0 auto;
}

/* --- Narrative Section (Why This Matters) --- */

.process-narrative__lead {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--wp--preset--color--body-text, #1A1A2E);
	margin-bottom: 1.5rem;
	text-align: center;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.process-narrative__body {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin-bottom: 2rem;
}

.process-narrative__bridge {
	text-align: center;
	padding: 2rem 0;
}

.process-narrative__bridge p {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.375rem;
	font-style: italic;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin: 0;
}

/* --- At a Glance --- */

.process-glance {
	display: flex;
	align-items: stretch;
	gap: 2rem;
	justify-content: center;
}

.process-glance__track {
	flex: 1;
	max-width: 420px;
	background: #fff;
	border-radius: 16px;
	padding: 2.75rem 2.25rem;
	border-top: 5px solid rgba(93, 121, 146, 0.15);
	text-align: center;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.process-glance__track:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.process-glance__track--church-plant {
	border-top-color: var(--wp--preset--color--church-plant, #2FADC1);
}

.process-glance__track--sabbatical {
	border-top-color: var(--wp--preset--color--sabbatical, #7E72AF);
}

.process-glance__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(93, 121, 146, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	color: var(--wp--preset--color--primary, #5D7992);
}

.process-glance__icon--church-plant {
	background: rgba(47, 173, 193, 0.12);
	color: var(--wp--preset--color--church-plant, #2FADC1);
}

.process-glance__icon--sabbatical {
	background: rgba(126, 114, 175, 0.12);
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

.process-glance__track h3 {
	margin-bottom: 0.75rem;
}

.process-glance__track p {
	color: var(--wp--preset--color--secondary-text, #6B7280);
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.process-glance__details {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.process-glance__details li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 0.9375rem;
	color: var(--wp--preset--color--body-text, #1A1A2E);
}

.process-glance__details li:last-child {
	border-bottom: none;
}

.process-glance__divider {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.process-glance__divider span {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.process-glance__divider-line {
	width: 2px;
	flex: 1;
	background: rgba(93, 121, 146, 0.15);
}

/* --- Tab Switcher (Simple, Centered) --- */

.process-tabs {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2.5rem;
}

.process-tabs__btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: 2px solid rgba(93, 121, 146, 0.15);
	border-radius: 50px;
	background: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-tabs__btn:hover {
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	border-color: var(--wp--preset--color--primary, #5D7992);
}

.process-tabs__btn.is-active {
	background: var(--wp--preset--color--church-plant, #2FADC1);
	border-color: var(--wp--preset--color--church-plant, #2FADC1);
	color: #fff;
	box-shadow: 0 2px 8px rgba(47, 173, 193, 0.25);
}

.process-tabs__btn.is-active[data-track="sabbatical"] {
	background: var(--wp--preset--color--sabbatical, #7E72AF);
	border-color: var(--wp--preset--color--sabbatical, #7E72AF);
	box-shadow: 0 2px 8px rgba(126, 114, 175, 0.25);
}

.process-tabs__btn small {
	font-size: 0.75rem;
	font-weight: 500;
	opacity: 0.8;
}

/* --- Track Visibility --- */

.process-track {
	display: none;
}

.process-track.is-active {
	display: block;
	animation: trackFadeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Step Timeline Container --- */

.process-steps {
	position: relative;
	padding: 2rem 0 1rem;
}

/* Vertical connecting line */
.process-steps::before {
	content: '';
	position: absolute;
	left: 1rem;
	top: 2rem;
	bottom: 1rem;
	width: 2px;
	background: rgba(93, 121, 146, 0.15);
	z-index: 0;
}

/* --- Step (each card) --- */

.process-step {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0;
	align-items: start;
	margin-bottom: 0.5rem;
	z-index: 1;
}

/* --- Step Marker --- */

.process-step__marker {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--wp--preset--color--primary, #5D7992);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin: 0.75rem 0.75rem 0 0;
	flex-shrink: 0;
}

.process-track[data-color="church-plant"] .process-step__marker {
	background: var(--wp--preset--color--church-plant, #2FADC1);
}

.process-track[data-color="sabbatical"] .process-step__marker {
	background: var(--wp--preset--color--sabbatical, #7E72AF);
}

.process-step__number {
	color: #fff;
	font-weight: 700;
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 0.8rem;
}

/* --- Step Card --- */

.process-step__card {
	background: #fff;
	border-radius: 12px;
	padding: 1rem 1.25rem;
	position: relative;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.process-step__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Milestone special treatment */
.process-step--milestone .process-step__card {
	background: #fff;
	border-left: 3px solid var(--wp--preset--color--accent, #DD9F33);
	box-shadow: 0 2px 12px rgba(221, 159, 51, 0.1);
}

.process-step__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(93, 121, 146, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--wp--preset--color--primary, #5D7992);
	margin: 0;
}

.process-step__icon svg {
	width: 20px;
	height: 20px;
}

.process-step__icon--sabbatical {
	background: rgba(126, 114, 175, 0.1);
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

.process-step--milestone .process-step__icon {
	background: rgba(221, 159, 51, 0.12);
	color: var(--wp--preset--color--accent, #DD9F33);
}

.process-step__body h3 {
	font-size: 1.05rem;
	margin-bottom: 0.25rem;
	line-height: 1.3;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.process-step__body p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

/* Key moment badge */
.process-step__badge {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.25rem 0.75rem;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 50px;
	background: rgba(221, 159, 51, 0.1);
	color: var(--wp--preset--color--accent, #DD9F33);
}

/* Per-track milestone accent — church planting (teal) */
.process-track[data-color="church-plant"] .process-step--milestone .process-step__card {
	border-left-color: var(--wp--preset--color--church-plant, #2FADC1);
	box-shadow: 0 2px 12px rgba(47, 173, 193, 0.1);
}

.process-track[data-color="church-plant"] .process-step--milestone .process-step__icon {
	background: rgba(47, 173, 193, 0.12);
	color: var(--wp--preset--color--church-plant, #2FADC1);
}

.process-track[data-color="church-plant"] .process-step--milestone .process-step__badge {
	background: rgba(47, 173, 193, 0.1);
	color: var(--wp--preset--color--church-plant, #2FADC1);
}

/* Per-track milestone accent — sabbatical (purple) */
.process-track[data-color="sabbatical"] .process-step--milestone .process-step__card {
	border-left-color: var(--wp--preset--color--sabbatical, #7E72AF);
	box-shadow: 0 2px 12px rgba(126, 114, 175, 0.1);
}

.process-track[data-color="sabbatical"] .process-step--milestone .process-step__icon {
	background: rgba(126, 114, 175, 0.12);
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

.process-track[data-color="sabbatical"] .process-step--milestone .process-step__badge {
	background: rgba(126, 114, 175, 0.1);
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

/* --- Steps End Marker --- */

.process-steps__end {
	text-align: center;
	padding: 2rem 0 1rem;
	position: relative;
	z-index: 1;
}

.process-steps__end-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(93, 121, 146, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.75rem;
	color: var(--wp--preset--color--primary, #5D7992);
}

.process-steps__end-icon--sabbatical {
	background: rgba(126, 114, 175, 0.1);
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

.process-steps__end span {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.125rem;
	font-style: italic;
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

/* --- Callout (Application Window CTA) --- */

.process-callout {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.process-callout__content {
	position: relative;
	z-index: 1;
}

.process-callout__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(221, 159, 51, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--wp--preset--color--accent, #DD9F33);
}

.process-callout h2 {
	color: #fff;
	margin-bottom: 1rem;
}

.process-callout p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 560px;
	margin: 0 auto 2rem;
	font-size: 1.0625rem;
	line-height: 1.7;
}

.process-callout__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* --- Process stagger children --- */

.process-glance .reveal-left  { transition-delay: 0s; }
.process-glance .reveal-scale { transition-delay: 0.15s; }
.process-glance .reveal-right { transition-delay: 0.3s; }

/* --- Process Page Reduced Motion --- */

@media (prefers-reduced-motion: reduce) {
	.process-hero .section__eyebrow,
	.process-hero__title,
	.process-hero__subtitle {
		animation: none;
		opacity: 1;
	}

	.process-step,
	.process-steps__end {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.process-callout__icon {
		animation: none;
	}
}

/* --- Process Page Responsive --- */

@media (max-width: 992px) {
	.process-glance {
		flex-direction: column;
		align-items: center;
	}

	.process-glance__track {
		max-width: 100%;
		width: 100%;
	}

	.process-glance__divider {
		flex-direction: row;
		gap: 1rem;
		padding: 0.5rem 0;
	}

	.process-glance__divider-line {
		width: auto;
		height: 2px;
		flex: 1;
	}

	.process-glance .reveal-left,
	.process-glance .reveal-right {
		transform: translateY(28px);
	}

	.process-glance .reveal-left.is-visible,
	.process-glance .reveal-right.is-visible {
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.process-tabs {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.process-tabs__btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.process-hero {
		padding: 4rem 1.25rem 3.5rem;
	}

	.process-step__card {
		padding: 1.25rem;
	}

	.process-step__body h3 {
		font-size: 1rem;
	}

	.process-callout__actions {
		flex-direction: column;
		align-items: center;
	}
}

/* ==============================
   About Page
   ============================== */

/* --- Hero (clean neutral-light, like process page) --- */

.about-hero {
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	padding: 8rem 1.5rem 5rem;
	text-align: center;
}

.about-hero__content {
	position: relative;
}

.about-hero__title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.3rem);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
	margin-bottom: 1.5rem;
}

.about-hero__subtitle {
	color: rgba(255, 255, 255, 0.85);
	max-width: 640px;
	margin: 0 auto;
	font-size: 1.0625rem;
	line-height: 1.7;
}

.about-hero .section__eyebrow,
.about-hero__title,
.about-hero__subtitle {
	opacity: 0;
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-hero .section__eyebrow { animation-delay: 0.15s; }
.about-hero__title             { animation-delay: 0.35s; }
.about-hero__subtitle          { animation-delay: 0.55s; }

/* --- Story narrative (reuses .problem__lead / .problem__bridge from homepage) --- */

/* --- Our Story: text + photo side by side --- */

.about-story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-story__title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 600;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin-bottom: 1.5rem;
	text-align: left;
}

.about-story__title::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	margin-top: 1rem;
	background: var(--wp--preset--color--accent, #DD9F33);
	border-radius: 2px;
}

.about-story__lead {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--wp--preset--color--body-text, #1A1A2E);
	margin-bottom: 1.25rem;
}

.about-story__body {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: var(--wp--preset--color--body-text, #1A1A2E);
	margin-bottom: 1.25rem;
}

.about-story__photo img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-story__caption {
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin-top: 1rem;
	letter-spacing: 0.02em;
}

/* --- Psalm 23 — narrative journey section --- */

.psalm-section {
	overflow: hidden;
}

/* Scripture card — hero element for the section */
.psalm-scripture {
	max-width: 720px;
	margin: 0 auto 3.5rem;
}

.psalm-scripture__inner {
	position: relative;
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	border-radius: 16px;
	padding: 3rem 3rem 2.5rem;
	text-align: center;
	overflow: hidden;
}

.psalm-scripture__number {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 14rem;
	font-weight: 700;
	line-height: 1;
	color: rgba(255, 255, 255, 0.04);
	pointer-events: none;
}

.psalm-scripture__quote {
	border: none;
	padding: 0;
	margin: 0 0 1.25rem;
}

.psalm-scripture__quote p {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.375rem;
	font-style: italic;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
}

.psalm-scripture__cite {
	font-style: normal;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--accent, #DD9F33);
}

/* Story beats — timeline-inspired narrative cards */
.psalm-story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto;
}

.psalm-story__beat {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}

.psalm-story__marker {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(93, 121, 146, 0.1);
	color: var(--wp--preset--color--primary, #5D7992);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.psalm-story__beat:hover .psalm-story__marker {
	transform: scale(1.08);
	background: rgba(93, 121, 146, 0.15);
}

.psalm-story__marker--accent {
	background: rgba(196, 136, 58, 0.12);
	color: var(--wp--preset--color--accent, #C4883A);
}

.psalm-story__beat:hover .psalm-story__marker--accent {
	background: rgba(196, 136, 58, 0.18);
}

.psalm-story__card {
	flex: 1;
	min-width: 0;
}

.psalm-story__card h3 {
	font-size: 1.0625rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.psalm-story__card p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin: 0;
}


/* --- Vision — stacked statement rows on dark bg --- */

.about-vision-section {
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	color: #fff;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.about-vision__statements {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.about-vision__item {
	display: flex;
	align-items: baseline;
	gap: 2rem;
	padding: 2.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: left;
}

.about-vision__item:last-child {
	border-bottom: none;
}

.about-vision__number {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--wp--preset--color--accent, #DD9F33);
	opacity: 0.35;
	flex-shrink: 0;
	line-height: 1;
	min-width: 3.5rem;
}

.about-vision__body {
	flex: 1;
}

.about-vision__label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--accent, #DD9F33);
	margin-bottom: 0.75rem;
}

.about-vision__statement {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
}

/* --- Commitments — white bg cards with colored top border --- */

.about-commitments-section {
	text-align: center;
}

.about-commitments__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.about-commitment {
	background: var(--wp--preset--color--neutral-light, #F5F1EC);
	border-radius: 12px;
	padding: 2.5rem 2rem;
	text-align: center;
	border-top: 3px solid var(--wp--preset--color--accent, #DD9F33);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-commitment:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-commitment__icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: rgba(93, 121, 146, 0.1);
	color: var(--wp--preset--color--primary, #5D7992);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
}

.about-commitment h3 {
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.about-commitment p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin: 0;
}

/* --- Guiding Values — card grid with icons --- */

.about-values-section {
	text-align: center;
}

.about-values__wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	max-width: 960px;
	margin: 0 auto;
}

.about-values__item {
	text-align: center;
	background: #fff;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-values__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-values__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(196, 136, 58, 0.1);
	color: var(--wp--preset--color--accent, #C4883A);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.about-values__word {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin-bottom: 0.5rem;
}

.about-values__item p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

.about-values__divider {
	width: 3rem;
	height: 3px;
	background: var(--wp--preset--color--accent, #DD9F33);
	border-radius: 2px;
	margin: 3.5rem auto;
}

/* --- Stewardship Quote --- */

.about-quote__block {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	border: none;
	padding: 0;
}

.about-quote__block p {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(1.1875rem, 2.5vw, 1.5rem);
	font-style: italic;
	line-height: 1.65;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin: 0;
}

/* --- Leadership --- */

.about-leaders {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 960px;
	margin: 0 auto;
}

.about-leader {
	background: #F7F8FA;
	border-radius: 12px;
	overflow: hidden;
}

.about-leader__photo {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.about-leader__placeholder {
	width: 100%;
	height: 100%;
	background: rgba(93, 121, 146, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wp--preset--color--primary, #5D7992);
	opacity: 0.5;
}

.about-leader__info {
	padding: 1.75rem;
}

.about-leader__info h3 {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.about-leader__title {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--accent, #DD9F33);
}

.about-leader__info p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin: 0;
}

/* --- CTA --- */

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

.about-cta__content {
	position: relative;
}

.about-cta h2 {
	color: #fff;
	margin-bottom: 1rem;
}

.about-cta p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 560px;
	margin: 0 auto 2rem;
	font-size: 1.0625rem;
	line-height: 1.7;
}

.about-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* --- Stagger reveal delays for about page card grids --- */

.about-vision__statements .reveal:nth-child(2) { transition-delay: 0.12s; }
.about-vision__statements .reveal:nth-child(3) { transition-delay: 0.24s; }

.about-commitments__cards .reveal:nth-child(2) { transition-delay: 0.12s; }
.about-commitments__cards .reveal:nth-child(3) { transition-delay: 0.24s; }

.about-values__wrap .reveal:nth-child(2) { transition-delay: 0.08s; }
.about-values__wrap .reveal:nth-child(3) { transition-delay: 0.16s; }
.about-values__wrap .reveal:nth-child(4) { transition-delay: 0.24s; }
.about-values__wrap .reveal:nth-child(5) { transition-delay: 0.32s; }
.about-values__wrap .reveal:nth-child(6) { transition-delay: 0.4s; }

.about-leaders .reveal:nth-child(2) { transition-delay: 0.15s; }

/* --- About Page Responsive --- */

@media (max-width: 992px) {
	.about-story {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.about-story__title,
	.about-story .section__eyebrow {
		text-align: center !important;
	}

	.about-story__title::after {
		margin-left: auto;
		margin-right: auto;
	}

	.about-story__lead,
	.about-story__body {
		text-align: center;
	}

	.about-story__photo {
		max-width: 480px;
		margin: 0 auto;
	}

	.psalm-scripture__inner {
		padding: 2.25rem 1.75rem 2rem;
	}

	.psalm-scripture__quote p {
		font-size: 1.1875rem;
	}

	.psalm-scripture__number {
		font-size: 10rem;
	}

	.psalm-story {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.about-vision__item {
		gap: 1.25rem;
		padding: 2rem 0;
	}

	.about-vision__number {
		font-size: 2rem;
		min-width: 2.5rem;
	}

	.about-commitments__cards {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}

	.about-leaders {
		grid-template-columns: 1fr;
		max-width: 520px;
	}

	.about-values__wrap {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}

	.about-values__item {
		padding: 1.5rem 1.25rem;
	}
}

@media (max-width: 640px) {
	.about-hero {
		padding: 4rem 1rem 3.5rem;
	}

	.about-hero__title {
		font-size: clamp(1.75rem, 5vw, 2.25rem);
	}

	.about-cta__actions {
		flex-direction: column;
		align-items: center;
	}
}

/* Reduced motion — About page */
@media (prefers-reduced-motion: reduce) {
	.about-hero .section__eyebrow,
	.about-hero__title,
	.about-hero__subtitle {
		animation: none;
		opacity: 1;
	}
}
