/*
 * Bethel — main stylesheet
 * Forest Heritage default with Coral / Teal / Amber themes via [data-theme].
 */

:root {
	--bethel-radius-card: 1.25rem;
	--bethel-radius-pill: 999px;
	--bethel-transition: 220ms cubic-bezier(0.32, 0.72, 0, 1);
	--bethel-transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   THEME COLOR OVERRIDES — override theme.json brand tokens per [data-theme]
   ========================================================================= */

:root[data-theme="forest"], :root:not([data-theme]) {
	--wp--preset--color--brand:       #15803d;
	--wp--preset--color--brand-dark:  #14532d;
	--wp--preset--color--brand-light: #bbf7d0;
	--bethel-brand-rgb:               21, 128, 61;
}
:root[data-theme="coral"] {
	--wp--preset--color--brand:       #ef4444;
	--wp--preset--color--brand-dark:  #b91c1c;
	--wp--preset--color--brand-light: #fecaca;
	--bethel-brand-rgb:               239, 68, 68;
}
:root[data-theme="teal"] {
	--wp--preset--color--brand:       #0f766e;
	--wp--preset--color--brand-dark:  #115e59;
	--wp--preset--color--brand-light: #99f6e4;
	--bethel-brand-rgb:               15, 118, 110;
}
:root[data-theme="amber"] {
	--wp--preset--color--brand:       #d97706;
	--wp--preset--color--brand-dark:  #b45309;
	--wp--preset--color--brand-light: #fde68a;
	--bethel-brand-rgb:               217, 119, 6;
}

/* =========================================================================
   GLOBAL
   ========================================================================= */

html { scroll-behavior: smooth; }

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "ss01", "cv11";
	background-color: var(--wp--preset--color--base);
}

::selection { background-color: var(--wp--preset--color--brand); color: #fff; }

/* =========================================================================
   BUTTONS
   ========================================================================= */

.wp-block-button .wp-block-button__link {
	transition:
		background-color var(--bethel-transition),
		transform var(--bethel-transition),
		box-shadow var(--bethel-transition),
		color var(--bethel-transition);
	box-shadow: 0 6px 18px -6px rgba(var(--bethel-brand-rgb), 0.36);
}

.wp-block-button .wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -8px rgba(var(--bethel-brand-rgb), 0.5);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--wp--preset--color--border-dark);
	color: var(--wp--preset--color--contrast);
	box-shadow: none;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--contrast);
	color: #fff;
	border-color: var(--wp--preset--color--contrast);
	transform: translateY(-1px);
}

.wp-block-button.is-style-ghost-light .wp-block-button__link {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.32);
	color: #fff;
	backdrop-filter: blur(8px);
}

/* =========================================================================
   NAVIGATION + STICKY GLASS HEADER
   ========================================================================= */

.wp-block-navigation { gap: 2rem; }

/* Bethel logo lockup */
.bethel-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	text-decoration: none;
}
.bethel-logo__mark { display: inline-flex; flex-shrink: 0; }
.bethel-logo__mark svg { display: block; }
.bethel-logo__word {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--contrast);
	line-height: 1;
}

/* Static nav (.bethel-nav) used in header.html */
.bethel-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}
.bethel-nav a {
	position: relative;
	padding: 0.5rem 0;
	color: var(--wp--preset--color--contrast);
	font-weight: 500;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: color var(--bethel-transition);
}
.bethel-nav a:hover { color: var(--wp--preset--color--brand); }
.bethel-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -4px;
	height: 2px;
	background: var(--wp--preset--color--brand);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--bethel-transition);
}
.bethel-nav a:hover::after { transform: scaleX(1); }

@media (max-width: 880px) {
	.bethel-nav { display: none; }
}

/* Glass header, dark text, on every page (layered hero opens on a light background) */
.wp-site-blocks > header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 250, 247, 0.82);
	backdrop-filter: saturate(140%) blur(16px);
	-webkit-backdrop-filter: saturate(140%) blur(16px);
	border-bottom: 1px solid transparent;
	transition: border-color 240ms ease, box-shadow 240ms ease;
}
.wp-site-blocks > header.is-scrolled {
	border-bottom-color: rgba(15, 20, 16, 0.07);
	box-shadow: 0 8px 24px -18px rgba(15, 20, 16, 0.4);
}

/* =========================================================================
   CARDS / IMAGE ZOOM
   ========================================================================= */

.wp-block-post-template > li,
.bethel-card-frame {
	border-radius: var(--bethel-radius-card);
	overflow: hidden;
	transition: transform var(--bethel-transition), box-shadow var(--bethel-transition);
}

.wp-block-post-template > li:hover,
.bethel-card-frame:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px -16px rgba(15, 20, 16, 0.16);
}

.wp-block-post-featured-image { overflow: hidden; border-radius: var(--bethel-radius-card); }
.wp-block-post-featured-image img,
.bethel-zoom img { transition: transform var(--bethel-transition-slow); }

.wp-block-post-template > li:hover .wp-block-post-featured-image img,
.bethel-zoom:hover img { transform: scale(1.05); }

/* =========================================================================
   LISTS, QUOTES, FORMS, FAQ
   ========================================================================= */

.is-style-bethel-plain-list { list-style: none; padding-left: 0; }
.is-style-bethel-plain-list li { padding-left: 0; }
.is-style-bethel-plain-list a {
	color: var(--wp--preset--color--contrast-2);
	text-decoration: none;
	transition: color var(--bethel-transition);
}
.is-style-bethel-plain-list a:hover { color: var(--wp--preset--color--brand); }

.wp-block-pullquote { border: none; padding: var(--wp--preset--spacing--60) 0; position: relative; }
.wp-block-pullquote::before {
	content: "";
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 80px; height: 2px;
	background: linear-gradient(90deg, transparent, var(--wp--preset--color--brand), transparent);
}

input[type="text"], input[type="email"], input[type="url"], input[type="search"],
input[type="tel"], input[type="password"], input[type="number"], textarea, select {
	background-color: #fff;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 0.75rem;
	color: var(--wp--preset--color--contrast);
	padding: 0.875rem 1rem;
	font-family: inherit;
	font-size: 0.9375rem;
	transition: border-color var(--bethel-transition), box-shadow var(--bethel-transition);
}
input::placeholder, textarea::placeholder { color: var(--wp--preset--color--contrast-3); }
input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: var(--wp--preset--color--brand);
	box-shadow: 0 0 0 3px rgba(var(--bethel-brand-rgb), 0.16);
}
label { color: var(--wp--preset--color--contrast); font-weight: 500; }

.wp-block-details {
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	transition: border-color var(--bethel-transition), box-shadow var(--bethel-transition);
}
.wp-block-details:hover { border-color: var(--wp--preset--color--border-dark); box-shadow: 0 4px 16px -8px rgba(15,20,16,0.06); }
.wp-block-details summary { font-weight: 600; font-size: 1.0625rem; cursor: pointer; color: var(--wp--preset--color--contrast); }
.wp-block-details[open] { border-color: var(--wp--preset--color--brand); }

/* =========================================================================
   SKIP LINK + EYEBROW
   ========================================================================= */

.skip-link {
	position: absolute; top: -100px; left: 1rem; z-index: 100;
	padding: 0.75rem 1.25rem;
	background: var(--wp--preset--color--brand);
	color: #fff;
	border-radius: 999px;
	font-weight: 600;
	transition: top 220ms;
}
.skip-link:focus { top: 1rem; outline: 2px solid #fff; outline-offset: 2px; }

.bethel-eyebrow {
	display: inline-flex; align-items: center; gap: 0.625rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
	font-weight: 500;
	color: var(--wp--preset--color--brand);
}
.bethel-eyebrow::before {
	content: "";
	width: 28px; height: 1px;
	background: var(--wp--preset--color--brand);
}

/* =========================================================================
   SPLIT-DIAGONAL VIDEO HERO
   ========================================================================= */

.bethel-hero-split {
	position: relative;
	min-height: 100vh;
	background: var(--wp--preset--color--base);
	overflow: hidden;
	display: grid;
	align-items: center;
	padding-top: 80px; /* breathing room under the fixed transparent header */
}

.bethel-hero-split__inner {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 4rem 1.5rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 960px) {
	.bethel-hero-split__inner {
		grid-template-columns: 1.05fr 0.95fr;
		padding: 6rem 2rem;
	}
}

.bethel-hero-split__content { position: relative; z-index: 3; }

.bethel-hero-split__eyebrow {
	display: inline-flex; align-items: center; gap: 0.625rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
	font-weight: 500;
	color: var(--wp--preset--color--brand);
	margin-bottom: 1.5rem;
}
.bethel-hero-split__eyebrow::before {
	content: ""; width: 32px; height: 1px;
	background: var(--wp--preset--color--brand);
}

.bethel-hero-split__title {
	font-family: var(--wp--preset--font-family--inter);
	font-weight: 700;
	font-size: clamp(2.75rem, 7vw, 5.5rem);
	line-height: 0.98;
	letter-spacing: -0.045em;
	color: var(--wp--preset--color--contrast);
	margin: 0;
}
.bethel-hero-split__title em {
	font-style: normal;
	color: var(--wp--preset--color--brand);
}

.bethel-hero-split__lede {
	margin-top: 1.5rem;
	max-width: 32rem;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--wp--preset--color--contrast-2);
}

.bethel-hero-split__ctas {
	margin-top: 2.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.bethel-hero-split__cta-primary,
.bethel-hero-split__cta-outline {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.875rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: transform var(--bethel-transition), box-shadow var(--bethel-transition), background var(--bethel-transition), color var(--bethel-transition);
}

.bethel-hero-split__cta-primary {
	background: var(--wp--preset--color--brand);
	color: #fff;
	box-shadow: 0 8px 22px -8px rgba(var(--bethel-brand-rgb), 0.45);
}
.bethel-hero-split__cta-primary:hover {
	transform: translateY(-1px);
	background: var(--wp--preset--color--brand-dark);
	box-shadow: 0 14px 32px -10px rgba(var(--bethel-brand-rgb), 0.6);
}

.bethel-hero-split__cta-outline {
	background: transparent;
	color: var(--wp--preset--color--contrast);
	border: 1px solid var(--wp--preset--color--border-dark);
}
.bethel-hero-split__cta-outline:hover {
	background: var(--wp--preset--color--contrast);
	color: #fff;
	border-color: var(--wp--preset--color--contrast);
	transform: translateY(-1px);
}

.bethel-hero-split__meta {
	display: flex; flex-wrap: wrap; gap: 2.5rem;
	margin-top: 3.5rem;
	font-size: 0.8125rem; font-weight: 500;
	color: var(--wp--preset--color--contrast-3);
}

/* Right side: the diagonal video pane */
.bethel-hero-split__media {
	position: relative;
	aspect-ratio: 4/5;
	min-height: 380px;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 24px 56px -16px rgba(15, 20, 16, 0.18);
}

@media (min-width: 960px) {
	.bethel-hero-split__media {
		position: absolute;
		top: 0; right: 0; bottom: 0;
		width: 52%;
		min-height: 100%;
		height: 100%;
		aspect-ratio: auto;
		border-radius: 0;
		clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
		-webkit-clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
		box-shadow: none;
	}
}

.bethel-hero-split__media video,
.bethel-hero-split__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}

/* Ken Burns slow-pan animation on the photo (works when video is blocked) */
.bethel-hero-split__media-bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	animation: bethelKenBurns 22s ease-in-out infinite alternate;
}
@keyframes bethelKenBurns {
	from { transform: scale(1.0)   translate3d(0, 0, 0); }
	to   { transform: scale(1.12)  translate3d(-2%, -1%, 0); }
}

/* Soft overlay for cohesion + readability */
.bethel-hero-split__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(15, 20, 16, 0.22) 0%, transparent 60%);
	pointer-events: none;
}

/* Soft brand accent behind the text on the left */
.bethel-hero-split::before {
	content: "";
	position: absolute;
	left: -10%;
	top: 30%;
	width: 50%;
	height: 60%;
	background: radial-gradient(ellipse at center, rgba(var(--bethel-brand-rgb), 0.10) 0%, transparent 70%);
	z-index: 1;
	pointer-events: none;
}

/* Floating "next service" card overlapping the hero media */
.bethel-hero-card {
	position: absolute;
	left: -2.5rem;
	bottom: 2.5rem;
	z-index: 4;
	background: #fff;
	border-radius: 1.25rem;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 24px 56px -16px rgba(15, 20, 16, 0.28);
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: 320px;
}
.bethel-hero-card__icon {
	flex-shrink: 0;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: var(--wp--preset--color--brand);
	color: #fff;
	display: grid; place-items: center;
	font-size: 1.25rem;
}
.bethel-hero-card__label {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--wp--preset--color--contrast-3);
}
.bethel-hero-card__value {
	font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.01em;
	color: var(--wp--preset--color--contrast);
	margin-top: 0.125rem;
}
@media (max-width: 960px) { .bethel-hero-card { display: none; } }

/* =========================================================================
   ARCH IMAGE MOTIF (modern sacred / non-profit signature shape)
   ========================================================================= */

.bethel-arch {
	border-radius: 14rem 14rem 1.5rem 1.5rem;
	overflow: hidden;
	position: relative;
}
.bethel-arch img,
.bethel-arch .bethel-hero-split__media-bg { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================================
   MARQUEE BAND (scrolling word strip)
   ========================================================================= */

.bethel-marquee {
	background: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--base);
	padding: 1.25rem 0;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}
.bethel-marquee__track {
	display: inline-flex;
	gap: 3rem;
	animation: bethelMarquee 28s linear infinite;
	will-change: transform;
}
.bethel-marquee__track span {
	font-family: var(--wp--preset--font-family--inter);
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	display: inline-flex;
	align-items: center;
	gap: 3rem;
}
.bethel-marquee__track span::after {
	content: "✦";
	color: var(--wp--preset--color--brand);
	font-size: 1rem;
}
@keyframes bethelMarquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* =========================================================================
   BENTO GRID (asymmetric "get involved")
   ========================================================================= */

.bethel-bento {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}
@media (min-width: 880px) {
	.bethel-bento {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 260px;
	}
	.bethel-bento__tall { grid-row: span 2; }
	.bethel-bento__wide { grid-column: span 2; }
}
.bethel-bento__cell {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 240px;
	transition: transform var(--bethel-transition), box-shadow var(--bethel-transition);
	text-decoration: none;
}
.bethel-bento__cell:hover { transform: translateY(-3px); box-shadow: 0 20px 48px -18px rgba(15,20,16,0.3); }
.bethel-bento__cell img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	transition: transform var(--bethel-transition-slow);
	z-index: 0;
}
.bethel-bento__cell:hover img { transform: scale(1.06); }
.bethel-bento__cell::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(15,20,16,0.85) 100%);
	z-index: 1;
}
.bethel-bento__cell > * { position: relative; z-index: 2; }
.bethel-bento__cell .num {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	margin-bottom: 0.5rem;
}
.bethel-bento__cell .title { color: #fff; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.bethel-bento__cell .desc { color: rgba(255,255,255,0.85); font-size: 0.9375rem; line-height: 1.5; margin-top: 0.5rem; max-width: 26rem; }
.bethel-bento__cell .arrow { color: #fff; font-weight: 600; margin-top: 1rem; font-size: 0.9375rem; }

/* Solid-color bento cell (no image) */
.bethel-bento__cell--brand { background: var(--wp--preset--color--brand); justify-content: center; }
.bethel-bento__cell--brand::after { display: none; }
.bethel-bento__cell--brand .num { color: rgba(255,255,255,0.6); }
.bethel-bento__cell--brand .stat { color: #fff; font-size: clamp(3rem,5vw,4.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.bethel-bento__cell--brand .stat-label { color: rgba(255,255,255,0.85); font-size: 0.9375rem; margin-top: 0.5rem; }

/* =========================================================================
   SERMON CARD GRID
   ========================================================================= */

.bethel-sermon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
}
.bethel-sermon-card {
	display: flex; flex-direction: column;
	border-radius: 1.25rem; overflow: hidden;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	text-decoration: none;
	transition: transform var(--bethel-transition), box-shadow var(--bethel-transition);
}
.bethel-sermon-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -18px rgba(15,20,16,0.22); }
.bethel-sermon-card .thumb {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	display: grid; place-items: center;
}
.bethel-sermon-card .thumb img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	transition: transform var(--bethel-transition-slow);
}
.bethel-sermon-card:hover .thumb img { transform: scale(1.06); }
.bethel-sermon-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,20,16,0.1), rgba(15,20,16,0.45)); }
.bethel-sermon-card .play {
	position: relative; z-index: 2;
	width: 56px; height: 56px; border-radius: 999px;
	background: rgba(255,255,255,0.92); color: var(--wp--preset--color--contrast);
	display: grid; place-items: center; font-size: 1.125rem;
	transition: transform var(--bethel-transition);
}
.bethel-sermon-card:hover .play { transform: scale(1.1); }
.bethel-sermon-card .badge {
	position: absolute; top: 0.875rem; right: 0.875rem; z-index: 2;
	background: rgba(255,255,255,0.92); color: var(--wp--preset--color--contrast);
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
	padding: 0.25rem 0.625rem; border-radius: 999px;
}
.bethel-sermon-card .body { padding: 1.5rem; }
.bethel-sermon-card .meta {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--wp--preset--color--brand); font-weight: 600;
}
.bethel-sermon-card strong { display: block; margin-top: 0.625rem; font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.02em; color: var(--wp--preset--color--contrast); line-height: 1.25; }
.bethel-sermon-card .speaker { display: block; margin-top: 0.625rem; font-size: 0.875rem; color: var(--wp--preset--color--contrast-3); }

/* =========================================================================
   EVENT LIST (date-block rows)
   ========================================================================= */

.bethel-event-list { display: flex; flex-direction: column; gap: 1rem; }
.bethel-event-row {
	display: flex; align-items: center; gap: 1.5rem;
	padding: 1.5rem;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 1.25rem;
	text-decoration: none;
	transition: transform var(--bethel-transition), box-shadow var(--bethel-transition), border-color var(--bethel-transition);
}
.bethel-event-row:hover { transform: translateY(-2px); border-color: var(--wp--preset--color--brand); box-shadow: 0 14px 36px -16px rgba(15,20,16,0.2); }
.bethel-event-row .date {
	flex-shrink: 0;
	width: 72px; height: 72px;
	border-radius: 1rem;
	background: var(--wp--preset--color--brand-light);
	display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.bethel-event-row .date b { font-size: 1.625rem; font-weight: 800; line-height: 1; color: var(--wp--preset--color--brand-dark); letter-spacing: -0.03em; }
.bethel-event-row .date i { font-style: normal; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wp--preset--color--brand); margin-top: 0.25rem; }
.bethel-event-row .info { flex: 1; }
.bethel-event-row .info strong { display: block; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--wp--preset--color--contrast); }
.bethel-event-row .info small { display: block; margin-top: 0.375rem; font-size: 0.9375rem; color: var(--wp--preset--color--contrast-3); }
.bethel-event-row .go { flex-shrink: 0; font-weight: 600; font-size: 0.9375rem; color: var(--wp--preset--color--brand); }
@media (max-width: 600px) {
	.bethel-event-row { flex-wrap: wrap; gap: 1rem; }
	.bethel-event-row .go { width: 100%; }
}

/* =========================================================================
   EDITORIAL SECTION NUMBER (oversized)
   ========================================================================= */

.bethel-section-num {
	font-family: var(--wp--preset--font-family--inter);
	font-size: clamp(4rem, 9vw, 7rem);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.05em;
	color: var(--wp--preset--color--muted);
	-webkit-text-stroke: 1px var(--wp--preset--color--border-dark);
}

/* =========================================================================
   LAYERED DEPTH HERO (headline left, stacked floating media right)
   ========================================================================= */

.bethel-hero-layered {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(4rem, 8vw, 7rem);
}
.bethel-hero-layered::before {
	content: "";
	position: absolute;
	right: -8%; top: 4%;
	width: 46%; height: 80%;
	background: radial-gradient(ellipse at center, rgba(var(--bethel-brand-rgb), 0.12) 0%, transparent 70%);
	z-index: 0; pointer-events: none;
}

.bethel-hero-layered__inner {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3.5rem;
	align-items: center;
}
@media (min-width: 980px) {
	.bethel-hero-layered__inner { grid-template-columns: 1.02fr 1fr; gap: 4.5rem; }
}

.bethel-hero-layered__eyebrow {
	display: inline-flex; align-items: center; gap: 0.625rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
	color: var(--wp--preset--color--brand);
}
.bethel-hero-layered__eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--wp--preset--color--brand); opacity: 0.6; }

.bethel-hero-layered__title {
	font-family: var(--wp--preset--font-family--inter);
	font-weight: 700;
	font-size: clamp(2.75rem, 6.5vw, 5rem);
	line-height: 0.98;
	letter-spacing: -0.045em;
	color: var(--wp--preset--color--contrast);
	margin: 1.5rem 0 0;
}
.bethel-hero-layered__title em { font-style: normal; color: var(--wp--preset--color--brand); }
.bethel-hero-layered__lede {
	margin: 1.5rem 0 0; max-width: 32rem;
	font-size: 1.1875rem; line-height: 1.55;
	color: var(--wp--preset--color--contrast-2);
}
.bethel-hero-layered__ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.bethel-hero-layered__cta-primary,
.bethel-hero-layered__cta-outline {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 1rem 1.875rem; border-radius: 999px; font-weight: 600; font-size: 0.9375rem; text-decoration: none;
	transition: transform var(--bethel-transition), background var(--bethel-transition), color var(--bethel-transition), box-shadow var(--bethel-transition);
}
.bethel-hero-layered__cta-primary { background: var(--wp--preset--color--brand); color: #fff; box-shadow: 0 8px 22px -8px rgba(var(--bethel-brand-rgb), 0.45); }
.bethel-hero-layered__cta-primary:hover { transform: translateY(-1px); background: var(--wp--preset--color--brand-dark); }
.bethel-hero-layered__cta-outline { background: transparent; color: var(--wp--preset--color--contrast); border: 1px solid var(--wp--preset--color--border-dark); }
.bethel-hero-layered__cta-outline:hover { background: var(--wp--preset--color--contrast); color: #fff; border-color: var(--wp--preset--color--contrast); transform: translateY(-1px); }

/* trust row under CTAs */
.bethel-hero-layered__trust {
	margin-top: 2.5rem; display: flex; align-items: center; gap: 0.875rem;
	font-size: 0.875rem; color: var(--wp--preset--color--contrast-3);
}
.bethel-hero-layered__avatars { display: inline-flex; }
.bethel-hero-layered__avatars span {
	width: 34px; height: 34px; border-radius: 999px;
	border: 2px solid var(--wp--preset--color--base);
	margin-left: -10px;
	display: grid; place-items: center;
	font-size: 0.75rem; font-weight: 700; color: #fff;
}
.bethel-hero-layered__avatars span:first-child { margin-left: 0; }

/* ---- right side media stack ---- */
.bethel-hero-layered__media {
	position: relative;
	min-height: 460px;
}
.bethel-hero-layered__img-main {
	position: relative;
	width: 82%;
	margin-left: auto;
	aspect-ratio: 4/5;
	border-radius: 1.75rem;
	overflow: hidden;
	box-shadow: 0 30px 70px -28px rgba(15, 20, 16, 0.4);
}
.bethel-hero-layered__img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bethel-hero-layered__img-sub {
	position: absolute;
	left: 0; bottom: 8%;
	width: 44%;
	aspect-ratio: 1/1;
	border-radius: 1.25rem;
	overflow: hidden;
	border: 5px solid var(--wp--preset--color--base);
	box-shadow: 0 24px 48px -20px rgba(15, 20, 16, 0.4);
	z-index: 3;
}
.bethel-hero-layered__img-sub img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* play button on main image */
.bethel-hero-layered__play {
	position: absolute;
	top: 28%; left: 50%;
	transform: translate(-10%, -50%);
	z-index: 4;
	width: 64px; height: 64px;
	border-radius: 999px;
	background: rgba(255,255,255,0.92);
	color: var(--wp--preset--color--contrast);
	display: grid; place-items: center;
	font-size: 1.25rem;
	box-shadow: 0 16px 36px -12px rgba(15,20,16,0.5);
	transition: transform var(--bethel-transition);
	border: none; cursor: pointer; text-decoration: none;
}
.bethel-hero-layered__play:hover { transform: translate(-10%, -50%) scale(1.08); }

/* members chip — floating top-left */
.bethel-hero-layered__chip-members {
	position: absolute;
	left: -4%; top: 6%;
	z-index: 4;
	background: #fff;
	border-radius: 1rem;
	padding: 0.875rem 1.125rem;
	box-shadow: 0 20px 48px -18px rgba(15,20,16,0.3);
	display: flex; align-items: center; gap: 0.75rem;
}
.bethel-hero-layered__chip-members .stack { display: inline-flex; }
.bethel-hero-layered__chip-members .stack span {
	width: 28px; height: 28px; border-radius: 999px; border: 2px solid #fff; margin-left: -8px;
	display: grid; place-items: center; font-size: 0.625rem; font-weight: 700; color: #fff;
}
.bethel-hero-layered__chip-members .stack span:first-child { margin-left: 0; }
.bethel-hero-layered__chip-members b { font-size: 0.9375rem; font-weight: 700; color: var(--wp--preset--color--contrast); display: block; line-height: 1.1; }
.bethel-hero-layered__chip-members small { font-size: 0.75rem; color: var(--wp--preset--color--contrast-3); }

/* service pill — floating bottom-right */
.bethel-hero-layered__chip-service {
	position: absolute;
	right: 2%; bottom: 2%;
	z-index: 4;
	background: var(--wp--preset--color--contrast);
	color: #fff;
	border-radius: 999px;
	padding: 0.75rem 1.25rem;
	box-shadow: 0 20px 48px -18px rgba(15,20,16,0.5);
	display: inline-flex; align-items: center; gap: 0.625rem;
	font-size: 0.875rem; font-weight: 600;
}
.bethel-hero-layered__chip-service .dot {
	width: 8px; height: 8px; border-radius: 999px; background: var(--wp--preset--color--brand-light);
	box-shadow: 0 0 0 4px rgba(var(--bethel-brand-rgb), 0.3);
}

@media (max-width: 600px) {
	.bethel-hero-layered__chip-members { left: 0; }
	.bethel-hero-layered__img-main { width: 100%; }
}

/* =========================================================================
   FULL-BLEED CINEMATIC HERO
   ========================================================================= */

.bethel-hero-cine {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--wp--preset--color--contrast);
}

.bethel-hero-cine__bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	animation: bethelKenBurns 24s ease-in-out infinite alternate;
	z-index: 0;
}

/* dark cinematic gradient — strong at bottom, light at top for header legibility */
.bethel-hero-cine::before {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(15,20,16,0.55) 0%, rgba(15,20,16,0) 26%),
		linear-gradient(0deg, rgba(15,20,16,0.92) 0%, rgba(15,20,16,0.35) 38%, transparent 70%);
	z-index: 1;
}

.bethel-hero-cine__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 1.5rem clamp(3rem, 7vh, 6rem);
}
@media (min-width: 768px) { .bethel-hero-cine__inner { padding-left: 2rem; padding-right: 2rem; } }

.bethel-hero-cine__eyebrow {
	display: inline-flex; align-items: center; gap: 0.625rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
	color: var(--wp--preset--color--brand-light);
}
.bethel-hero-cine__eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: 0.7; }

.bethel-hero-cine__title {
	font-family: var(--wp--preset--font-family--inter);
	font-weight: 700;
	font-size: clamp(3rem, 8.5vw, 6.5rem);
	line-height: 0.95;
	letter-spacing: -0.045em;
	color: #fff;
	margin: 1.5rem 0 0;
	max-width: 16ch;
}
.bethel-hero-cine__lede {
	margin: 1.75rem 0 0;
	max-width: 34rem;
	font-size: 1.1875rem;
	line-height: 1.55;
	color: rgba(255,255,255,0.85);
}
.bethel-hero-cine__ctas {
	margin-top: 2.25rem;
	display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.bethel-hero-cine__cta-primary,
.bethel-hero-cine__cta-ghost {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 1.0625rem 2rem;
	border-radius: 999px;
	font-weight: 600; font-size: 1rem;
	text-decoration: none;
	transition: transform var(--bethel-transition), background var(--bethel-transition), color var(--bethel-transition), box-shadow var(--bethel-transition);
}
.bethel-hero-cine__cta-primary {
	background: var(--wp--preset--color--brand); color: #fff;
	box-shadow: 0 10px 28px -8px rgba(var(--bethel-brand-rgb), 0.6);
}
.bethel-hero-cine__cta-primary:hover { transform: translateY(-1px); background: var(--wp--preset--color--brand-dark); }
.bethel-hero-cine__cta-ghost {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.28);
	color: #fff;
	backdrop-filter: blur(8px);
}
.bethel-hero-cine__cta-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-1px); }

/* glass service bar across the bottom */
.bethel-hero-cine__bar {
	margin-top: 3rem;
	display: flex; flex-wrap: wrap; align-items: center;
	gap: 1.25rem 2rem;
	padding: 1.125rem 1.75rem;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 1rem;
	backdrop-filter: saturate(150%) blur(16px);
	-webkit-backdrop-filter: saturate(150%) blur(16px);
	width: fit-content;
}
.bethel-hero-cine__bar-item {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 0.875rem; color: rgba(255,255,255,0.88); white-space: nowrap;
}
.bethel-hero-cine__bar-item strong { color: #fff; font-weight: 700; }
.bethel-hero-cine__bar-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.25); }
@media (max-width: 600px) { .bethel-hero-cine__bar-sep { display: none; } }

/* scroll cue */
.bethel-hero-cine__scroll {
	position: absolute;
	right: 2rem; bottom: 2.5rem;
	z-index: 2;
	display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase;
	color: rgba(255,255,255,0.6);
	writing-mode: vertical-rl;
}
@media (max-width: 1100px) { .bethel-hero-cine__scroll { display: none; } }

/* =========================================================================
   ARCH PORTAL HERO (centered headline + cathedral-arch media doorway)
   ========================================================================= */

.bethel-hero-arch {
	position: relative;
	text-align: center;
	padding: clamp(3rem, 7vw, 5.5rem) 1.5rem 0;
	overflow: hidden;
}

/* decorative radial glow behind the headline */
.bethel-hero-arch::before {
	content: "";
	position: absolute;
	top: -10%; left: 50%;
	transform: translateX(-50%);
	width: 900px; height: 520px;
	max-width: 120vw;
	background: radial-gradient(ellipse at center, rgba(var(--bethel-brand-rgb), 0.12) 0%, transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.bethel-hero-arch__head {
	position: relative;
	z-index: 2;
	max-width: 880px;
	margin: 0 auto;
}

.bethel-hero-arch__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
	font-weight: 500;
	color: var(--wp--preset--color--brand);
}
.bethel-hero-arch__eyebrow::before,
.bethel-hero-arch__eyebrow::after {
	content: ""; width: 28px; height: 1px;
	background: var(--wp--preset--color--brand);
	opacity: 0.6;
}

.bethel-hero-arch__title {
	font-family: var(--wp--preset--font-family--inter);
	font-weight: 700;
	font-size: clamp(2.75rem, 7vw, 5.25rem);
	line-height: 0.98;
	letter-spacing: -0.045em;
	color: var(--wp--preset--color--contrast);
	margin: 1.5rem 0 0;
}
.bethel-hero-arch__title em {
	font-style: normal;
	color: var(--wp--preset--color--brand);
}

.bethel-hero-arch__lede {
	margin: 1.5rem auto 0;
	max-width: 34rem;
	font-size: 1.1875rem;
	line-height: 1.55;
	color: var(--wp--preset--color--contrast-2);
}

.bethel-hero-arch__ctas {
	margin-top: 2.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}
.bethel-hero-arch__cta-primary,
.bethel-hero-arch__cta-outline {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 1rem 1.875rem;
	border-radius: 999px;
	font-weight: 600; font-size: 0.9375rem;
	text-decoration: none;
	transition: transform var(--bethel-transition), box-shadow var(--bethel-transition), background var(--bethel-transition), color var(--bethel-transition);
}
.bethel-hero-arch__cta-primary {
	background: var(--wp--preset--color--brand);
	color: #fff;
	box-shadow: 0 8px 22px -8px rgba(var(--bethel-brand-rgb), 0.45);
}
.bethel-hero-arch__cta-primary:hover { transform: translateY(-1px); background: var(--wp--preset--color--brand-dark); }
.bethel-hero-arch__cta-outline {
	background: transparent;
	color: var(--wp--preset--color--contrast);
	border: 1px solid var(--wp--preset--color--border-dark);
}
.bethel-hero-arch__cta-outline:hover { background: var(--wp--preset--color--contrast); color: #fff; border-color: var(--wp--preset--color--contrast); transform: translateY(-1px); }

/* The arch doorway */
.bethel-hero-arch__portal {
	position: relative;
	z-index: 1;
	max-width: 1080px;
	margin: clamp(2.5rem, 5vw, 4rem) auto 0;
	height: clamp(380px, 58vh, 620px);
	border-radius: 50% 50% 1.75rem 1.75rem / 32% 32% 1.75rem 1.75rem;
	overflow: hidden;
	box-shadow: 0 40px 80px -32px rgba(15, 20, 16, 0.4);
}
.bethel-hero-arch__portal .bethel-hero-split__media-bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	animation: bethelKenBurns 22s ease-in-out infinite alternate;
}
.bethel-hero-arch__portal video,
.bethel-hero-arch__portal img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
/* gradient fade at the bottom of the arch for the pill bar */
.bethel-hero-arch__portal::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(15,20,16,0.55) 100%);
	pointer-events: none;
}

/* Floating glass service bar overlapping the bottom of the arch */
.bethel-hero-arch__bar {
	position: relative;
	z-index: 3;
	margin: -2.75rem auto 0;
	max-width: 720px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 999px;
	box-shadow: 0 24px 56px -20px rgba(15, 20, 16, 0.3);
	padding: 0.875rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.5rem 2rem;
}
.bethel-hero-arch__bar-item {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 0.875rem; font-weight: 500;
	color: var(--wp--preset--color--contrast-2);
	white-space: nowrap;
}
.bethel-hero-arch__bar-item strong { color: var(--wp--preset--color--contrast); font-weight: 700; }
.bethel-hero-arch__bar-sep { width: 1px; height: 20px; background: var(--wp--preset--color--border-dark); }
@media (max-width: 600px) {
	.bethel-hero-arch__bar { border-radius: 1.25rem; }
	.bethel-hero-arch__bar-sep { display: none; }
}

/* =========================================================================
   THEME SWITCHER (floating bottom-right)
   ========================================================================= */

.bethel-theme-switcher {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 60;
	font-family: var(--wp--preset--font-family--inter);
}

.bethel-theme-switcher__trigger {
	width: 48px; height: 48px;
	border-radius: 999px;
	background: var(--wp--preset--color--contrast);
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 10px 30px -8px rgba(15, 20, 16, 0.3);
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform var(--bethel-transition), box-shadow var(--bethel-transition);
}
.bethel-theme-switcher__trigger:hover {
	transform: translateY(-2px) rotate(15deg);
	box-shadow: 0 16px 40px -8px rgba(15, 20, 16, 0.4);
}
.bethel-theme-switcher__trigger svg { width: 20px; height: 20px; }

.bethel-theme-switcher__panel {
	position: absolute;
	right: 0; bottom: calc(100% + 0.75rem);
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 1rem;
	box-shadow: 0 24px 56px -16px rgba(15, 20, 16, 0.22);
	padding: 1.25rem;
	width: 240px;
	transform-origin: bottom right;
	animation: bethelFadeIn 180ms cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes bethelFadeIn {
	from { opacity: 0; transform: translateY(8px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.bethel-theme-switcher__label {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--contrast-3);
	margin: 0 0 0.875rem 0;
}

.bethel-theme-switcher__swatches {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.625rem;
}

.bethel-theme-switcher__swatches button {
	position: relative;
	aspect-ratio: 1;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform var(--bethel-transition), border-color var(--bethel-transition);
}
.bethel-theme-switcher__swatches button:hover { transform: scale(1.08); }
.bethel-theme-switcher__swatches button[aria-checked="true"] {
	border-color: var(--wp--preset--color--contrast);
	transform: scale(1.08);
}
.bethel-theme-switcher__swatches button[aria-checked="true"]::after {
	content: "✓";
	position: absolute; inset: 0;
	display: grid; place-items: center;
	color: #fff;
	font-size: 0.875rem; font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bethel-theme-switcher__names {
	margin-top: 0.875rem;
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 0.625rem;
}
.bethel-theme-switcher__names span {
	font-size: 0.625rem;
	color: var(--wp--preset--color--contrast-3);
	text-align: center;
	letter-spacing: -0.005em;
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
