:root {
	--hope-green: #869726;
	--hope-orange: #ef741d;
	--hope-steel: #174759;
	--hope-bright-orange: #f47721;
	--hope-ink: #092d3b;
	--hope-paper: #f8f6f0;
	--hope-sand: #eeeae1;
	--hope-line: #d8d3c8;
	--hope-focus: #153ec8;
	--hope-shadow: 0 22px 55px rgb(23 48 57 / 14%);
	--hope-wrap: min(100% - 40px, 1200px);
	--hope-font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--hope-font-sans: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--hope-paper);
	color: var(--hope-ink);
}

body.hope-menu-open {
	overflow: hidden;
}

* {
	box-sizing: border-box;
}

:where(a, button, input, select, textarea):focus-visible {
	outline: 3px solid var(--hope-focus) !important;
	outline-offset: 4px;
}

.hope-skip-link {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 9999;
	padding: 0.75rem 1rem;
	background: #fff;
	color: var(--hope-ink);
	font-weight: 700;
	transform: translateY(-150%);
	transition: transform 160ms ease;
}

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

/* WordPress wraps the header part in a short .wp-block-template-part element.
 * Stick that wrapper so the header can remain fixed for the whole page scroll. */
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 100;
}

.hope-site-header {
	position: relative;
	z-index: 1;
	margin: 0 !important;
	border-bottom: 1px solid rgb(23 48 57 / 12%);
	background: rgb(251 248 242 / 96%);
	backdrop-filter: blur(14px);
}

.hope-header-inner {
	position: relative;
	box-sizing: border-box;
	width: min(100%, 1600px);
	max-width: 1600px !important;
	min-height: 76px;
	margin: 0 auto;
	gap: 1rem;
	padding-inline: clamp(2rem, 4.5vw, 5rem);
}

.hope-brand {
	display: inline-block;
	line-height: 0;
	text-decoration: none;
}

.hope-brand-logo {
	display: block;
	width: 56px;
	height: auto;
	transition: opacity 160ms ease, transform 160ms ease;
}

.hope-brand:hover .hope-brand-logo {
	opacity: 0.86;
	transform: translateY(-1px);
}

.hope-brand--header {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	white-space: nowrap;
}

.hope-brand--header .hope-brand-logo {
	width: 52px;
}

.hope-brand-wordmark {
	display: grid;
	gap: 0.16rem;
	line-height: 1;
}

.hope-brand-wordmark-title {
	color: var(--hope-ink);
	font-family: var(--hope-font-sans);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 0.86;
	text-transform: uppercase;
}

.hope-brand-wordmark-subtitle {
	color: var(--hope-ink);
	font-family: var(--hope-font-sans);
	font-size: 0.42rem;
	font-weight: 800;
	letter-spacing: 0.115em;
	line-height: 1;
	text-transform: uppercase;
}

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

.hope-menu-toggle {
	display: none;
	align-items: center;
	gap: 0.55rem;
	border: 0;
	background: transparent;
	color: var(--hope-ink);
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.hope-menu-icon,
.hope-menu-icon::before,
.hope-menu-icon::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentcolor;
	content: "";
	transition: transform 160ms ease;
}

.hope-menu-icon {
	position: relative;
}

.hope-menu-icon::before {
	position: absolute;
	top: -6px;
}

.hope-menu-icon::after {
	position: absolute;
	top: 6px;
}

.hope-menu-toggle[aria-expanded="true"] .hope-menu-icon {
	background: transparent;
}

.hope-menu-toggle[aria-expanded="true"] .hope-menu-icon::before {
	top: 0;
	transform: rotate(45deg);
}

.hope-menu-toggle[aria-expanded="true"] .hope-menu-icon::after {
	top: 0;
	transform: rotate(-45deg);
}

.hope-primary-nav .wp-block-navigation {
	gap: clamp(0.7rem, 1.5vw, 1.3rem);
}

.hope-primary-nav .wp-block-navigation-item__content {
	padding: 0.45rem 0;
	color: var(--hope-ink) !important;
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.hope-primary-nav .wp-block-navigation-item__content:hover,
.hope-primary-nav .wp-block-navigation-item__content[aria-current="location"] {
	color: var(--hope-steel) !important;
	text-decoration: underline;
	text-decoration-color: var(--hope-orange);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.45rem;
}

.hope-header-actions .wp-block-buttons {
	gap: 0.5rem;
}

.hope-header-actions .wp-block-button__link {
	padding: 0.68rem 0.82rem;
	font-size: 0.66rem;
}

.hope-header-actions .is-style-outline .wp-block-button__link,
.hope-hero-actions .is-style-outline .wp-block-button__link,
.hope-mission-band .is-style-outline .wp-block-button__link {
	border: 1px solid currentcolor;
	background: transparent;
	color: var(--hope-ink);
}

.hope-header-actions .is-style-outline .wp-block-button__link:hover,
.hope-hero-actions .is-style-outline .wp-block-button__link:hover {
	background: var(--hope-ink);
	color: #fff;
}

.hope-main,
.hope-main > .wp-block-group {
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.hope-main > .wp-block-group > * {
	margin-block-start: 0;
}

.hope-hero,
.hope-section,
.hope-site-footer {
	scroll-margin-top: 92px;
}

.hope-anchor-target {
	position: absolute;
	top: -92px;
}

.hope-hero {
	position: relative;
	padding: 0 !important;
	background: var(--hope-paper);
}

.hope-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-areas: "copy media";
	max-width: 1440px;
	margin: 0 auto;
}

.hope-hero-copy {
	grid-area: copy;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	min-height: 630px;
	padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6.5vw, 7rem);
}

.hope-hero-media {
	grid-area: media;
	min-height: 630px !important;
	margin: 0 !important;
}

.hope-media-placeholder {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 24% 23%, rgb(167 174 71 / 68%) 0 5%, transparent 5.4%),
		radial-gradient(circle at 82% 79%, rgb(244 118 41 / 70%) 0 7%, transparent 7.4%),
		linear-gradient(145deg, #173039 0%, #446979 48%, #8a9a76 100%);
}

.hope-media-placeholder::before,
.hope-media-placeholder::after {
	position: absolute;
	inset: auto -12% -35% 28%;
	z-index: -1;
	width: 90%;
	height: 85%;
	border: 1px solid rgb(255 255 255 / 35%);
	border-radius: 50% 50% 0 0;
	content: "";
	transform: rotate(-18deg);
}

.hope-media-placeholder::after {
	inset: -26% 32% auto -18%;
	width: 76%;
	height: 68%;
	border-color: rgb(255 255 255 / 18%);
	transform: rotate(34deg);
}

.hope-placeholder-caption,
.hope-play-placeholder {
	position: relative;
	z-index: 2;
	margin: 1.5rem !important;
	padding: 0.9rem 1.1rem;
	border: 1px solid rgb(255 255 255 / 50%);
	background: rgb(23 48 57 / 58%);
	color: #fff;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.hope-placeholder-caption p,
.hope-play-placeholder p {
	margin: 0;
}

.hope-placeholder-caption strong {
	font-size: 0.63rem;
	font-weight: 700;
}

.hope-eyebrow,
.hope-eyebrow p {
	margin-bottom: 1.15rem !important;
	color: var(--hope-steel);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hope-display-heading {
	max-width: 8.3ch;
	margin: 0 0 1.4rem !important;
	font-size: clamp(3.4rem, 6.5vw, 6.4rem) !important;
	letter-spacing: -0.075em;
}

.hope-lead,
.hope-hero-copy > .hope-lead {
	max-width: 38rem;
	font-size: clamp(1.05rem, 1.35vw, 1.24rem);
	line-height: 1.65;
}

.hope-hero-actions {
	margin-top: 1.5rem !important;
}

.wp-block-button__link {
	transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
}

.hope-campus-band {
	display: grid;
	grid-template-columns: minmax(14rem, 0.78fr) minmax(0, 1.7fr);
	gap: clamp(2rem, 5vw, 6rem);
	align-items: start;
	max-width: 1440px;
	margin: 0 auto;
	padding: clamp(3rem, 6vw, 6rem) max(2rem, calc((100vw - 1200px) / 2));
	background: var(--hope-ink);
	color: #fff;
}

.hope-campus-band .hope-eyebrow {
	color: var(--hope-green);
}

.hope-campus-band h2 {
	margin: 0;
	font-size: clamp(2.3rem, 4vw, 4rem);
	letter-spacing: -0.06em;
}

.hope-campus-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: rgb(255 255 255 / 25%);
	border: 1px solid rgb(255 255 255 / 25%);
}

.hope-campus-card {
	min-height: 250px;
	padding: clamp(1.5rem, 3vw, 2.6rem);
	background: var(--hope-ink);
}

.hope-campus-card h3 {
	margin: 0.5rem 0 1rem;
	color: #fff;
	font-size: 2rem;
	letter-spacing: -0.06em;
}

.hope-campus-card > p:not(.hope-campus-number):not(.hope-card-status) {
	color: rgb(255 255 255 / 72%);
	font-size: 0.94rem;
}

.hope-campus-number {
	margin: 0;
	color: var(--hope-green);
	font-family: var(--hope-font-serif);
	font-size: 1.1rem;
}

.hope-card-status,
.hope-card-status p {
	margin-top: 1.45rem !important;
	color: var(--hope-orange) !important;
	font-size: 0.68rem !important;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hope-section {
	position: relative;
	padding: clamp(4.5rem, 9vw, 9rem) max(20px, calc((100vw - 1200px) / 2));
}

.hope-latest-message {
	background: #fff;
}

.hope-message-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 7vw, 8rem);
	align-items: center;
}

.hope-message-copy h2,
.hope-section-intro h2,
.hope-gallery-heading h2,
.hope-next-steps-intro h2 {
	max-width: 10ch;
	margin: 0 0 1.35rem;
	font-size: clamp(2.8rem, 5vw, 5.4rem);
	letter-spacing: -0.075em;
}

.hope-message-media {
	margin: 0 !important;
	min-height: 450px !important;
	background:
		linear-gradient(125deg, rgb(23 48 57 / 92%), rgb(68 105 121 / 72%)),
		radial-gradient(circle at 80% 18%, var(--hope-orange), transparent 27%),
		var(--hope-steel);
}

.hope-play-placeholder {
	display: grid;
	place-items: center;
	gap: 0.8rem;
	width: 210px;
	margin: 0 auto !important;
}

.hope-play-mark {
	display: grid;
	width: 3.5rem;
	height: 3.5rem;
	place-items: center;
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 1.05rem;
	padding-left: 0.15rem;
}

.hope-mission-band {
	overflow: hidden;
	background: var(--hope-steel);
	color: #fff;
}

.hope-mission-inner {
	position: relative;
	z-index: 1;
	max-width: 920px;
}

.hope-mission-band .hope-eyebrow {
	color: var(--hope-green);
}

.hope-mission-lines {
	margin: 0 0 1.8rem !important;
	font-size: clamp(3rem, 7vw, 7rem) !important;
	letter-spacing: -0.075em;
}

.hope-mission-lines em {
	color: var(--hope-orange);
	font-style: italic;
}

.hope-mission-band .hope-lead {
	color: rgb(255 255 255 / 84%);
}

.hope-mission-band .is-style-outline .wp-block-button__link {
	border-color: rgb(255 255 255 / 70%);
	color: #fff;
}

.hope-mission-band .is-style-outline .wp-block-button__link:hover {
	border-color: #fff;
	background: #fff;
	color: var(--hope-steel);
}

.hope-section-intro {
	max-width: 720px;
	margin-bottom: clamp(2.3rem, 5vw, 4rem);
}

.hope-journey {
	background: var(--hope-paper);
}

.hope-journey-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	counter-reset: none;
	border-top: 1px solid var(--hope-line);
	border-left: 1px solid var(--hope-line);
}

.hope-journey-list li {
	margin: 0 !important;
	padding: 0 !important;
}

.hope-journey-card {
	display: flex;
	min-height: 340px;
	flex-direction: column;
	padding: clamp(1.5rem, 2.5vw, 2.4rem);
	border-right: 1px solid var(--hope-line);
	border-bottom: 1px solid var(--hope-line);
}

.hope-stage-number {
	margin: 0 0 auto;
	color: var(--hope-orange);
	font-family: var(--hope-font-serif);
	font-size: 1.15rem;
}

.hope-journey-card h3 {
	margin: 2.4rem 0 0.75rem;
	font-size: clamp(1.8rem, 2.4vw, 2.5rem);
	letter-spacing: -0.06em;
}

.hope-journey-card > p:not(.hope-stage-number) {
	margin: 0 0 1.35rem;
	color: rgb(23 48 57 / 76%);
	font-size: 0.94rem;
}

.hope-journey-card a {
	margin-top: auto;
	color: var(--hope-steel);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.3rem;
	text-transform: uppercase;
}

.hope-journey-card a span {
	font-size: 1.1rem;
}

.hope-life-gallery {
	background: #fff;
}

.hope-gallery-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	column-gap: 5rem;
	align-items: end;
	margin-bottom: 3rem;
}

.hope-gallery-heading .hope-eyebrow,
.hope-gallery-heading h2 {
	grid-column: 1;
}

.hope-gallery-heading .hope-lead {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	margin: 0;
}

.hope-gallery-grid {
	display: grid !important;
	grid-template-columns: 1.25fr 0.85fr 1.05fr;
	gap: clamp(0.75rem, 1.5vw, 1.4rem) !important;
	margin: 0 !important;
}

.hope-gallery-grid .wp-block-image {
	width: 100% !important;
	margin: 0 !important;
}

.hope-gallery-placeholder {
	display: flex;
	min-height: clamp(220px, 34vw, 470px);
	align-items: flex-end;
	padding: 1.1rem;
	background:
		linear-gradient(150deg, rgb(23 48 57 / 22%), rgb(23 48 57 / 62%)),
		linear-gradient(135deg, #a7ae47, #446979);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.hope-gallery-placeholder--two {
	min-height: clamp(220px, 27vw, 360px);
	margin-top: clamp(2rem, 8vw, 8rem);
	background:
		linear-gradient(145deg, rgb(23 48 57 / 20%), rgb(23 48 57 / 70%)),
		linear-gradient(135deg, var(--hope-orange), var(--hope-steel));
}

.hope-gallery-placeholder--three {
	min-height: clamp(220px, 30vw, 410px);
	background:
		linear-gradient(145deg, rgb(23 48 57 / 25%), rgb(23 48 57 / 66%)),
		linear-gradient(135deg, var(--hope-steel), #d1a46c);
}

.hope-next-steps {
	background: var(--hope-sand);
}

.hope-next-steps-intro {
	max-width: 680px;
	margin-bottom: 3rem;
}

.hope-next-steps-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.hope-next-step-card {
	display: flex;
	min-height: 285px;
	flex-direction: column;
	padding: clamp(1.35rem, 2.4vw, 2.2rem);
	border: 1px solid rgb(23 48 57 / 14%);
	background: var(--hope-paper);
	box-shadow: 0 8px 25px rgb(23 48 57 / 5%);
}

.hope-next-step-card--give {
	background: var(--hope-ink);
	color: #fff;
}

.hope-step-icon {
	display: grid;
	width: 2.8rem;
	height: 2.8rem;
	place-items: center;
	border: 1px solid currentcolor;
	border-radius: 50%;
	color: var(--hope-orange);
	font-size: 1.25rem;
}

.hope-next-step-card h3 {
	margin: 1.7rem 0 0.7rem;
	font-size: 2rem;
	letter-spacing: -0.06em;
}

.hope-next-step-card > p:not(.hope-card-status) {
	margin: 0;
	color: rgb(23 48 57 / 74%);
	font-size: 0.92rem;
}

.hope-next-step-card--give > p:not(.hope-card-status) {
	color: rgb(255 255 255 / 78%);
}

.hope-next-step-card .hope-card-status {
	margin-top: auto !important;
}

.hope-site-footer {
	padding: clamp(3.5rem, 7vw, 6rem) max(20px, calc((100vw - 1200px) / 2)) 1.4rem;
	background: var(--hope-ink);
	color: #fff;
}

.hope-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: clamp(1.5rem, 3vw, 4rem);
	padding-bottom: 3.5rem;
}

.hope-brand--footer {
	margin-bottom: 1.2rem;
	padding: 0.2rem;
	border-radius: 0.25rem;
	background: #fff;
}

.hope-brand--footer .hope-brand-logo {
	width: 104px;
}

.hope-footer-intro > p:not(.hope-footer-preview) {
	max-width: 17rem;
	margin-right: 0 !important;
	margin-left: 0 !important;
	color: rgb(255 255 255 / 74%);
	font-size: 0.95rem;
}

.hope-footer-preview {
	max-width: 16rem;
	margin-right: 0 !important;
	margin-left: 0 !important;
	color: var(--hope-orange);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.hope-footer-social {
	display: flex;
	max-width: 17rem;
	gap: 0.65rem;
	margin: 1.35rem 0 0 !important;
}

.hope-footer-social a {
	display: inline-grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 48%);
	border-radius: 50%;
	color: #fff !important;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hope-footer-social a:hover,
.hope-footer-social a:focus-visible {
	border-color: var(--hope-gold);
	background: var(--hope-gold);
	color: var(--hope-ink) !important;
	transform: translateY(-2px);
}

.hope-footer-social a:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.hope-footer-social svg {
	width: 1rem;
	height: 1rem;
	fill: currentcolor;
}

.hope-campus-footer-card,
.hope-footer-links {
	border-top: 1px solid rgb(255 255 255 / 24%);
	padding-top: 1.1rem;
}

.hope-campus-footer-card .hope-eyebrow,
.hope-footer-links .hope-eyebrow {
	color: var(--hope-green);
}

.hope-campus-footer-card h3 {
	margin: 0.25rem 0 0.8rem;
	color: #fff;
	font-size: 1.65rem;
	letter-spacing: -0.055em;
}

.hope-campus-footer-card > p:not(.hope-eyebrow) {
	color: rgb(255 255 255 / 67%);
	font-size: 0.85rem;
}

.hope-plain-list {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.hope-plain-list li {
	margin: 0 0 0.7rem;
}

.hope-plain-list a {
	color: #fff !important;
	font-size: 0.86rem;
	text-decoration-color: var(--hope-orange);
	text-underline-offset: 0.28rem;
}

.hope-footer-base {
	gap: 0.75rem 2rem;
	border-top: 1px solid rgb(255 255 255 / 20%);
	padding-top: 1.25rem;
	color: rgb(255 255 255 / 58%);
	font-size: 0.7rem;
}

.hope-footer-base p {
	margin: 0;
}

.hope-generic-content {
	width: var(--hope-wrap);
	min-height: 60vh;
	margin: 0 auto !important;
	padding-block: 5rem;
}

/*
 * Phase 1 visual direction: compact editorial type, image-led hero, and
 * Hope's charcoal, teal, olive, and orange palette. These remain CSS-only
 * placeholders until reviewed photography is available.
 */
.hope-display-heading,
.hope-message-copy h2,
.hope-section-intro h2,
.hope-gallery-heading h2,
.hope-next-steps-intro h2,
.hope-mission-lines {
	font-family: var(--hope-font-serif) !important;
	font-weight: 600 !important;
	line-height: 0.88 !important;
	text-transform: none;
}

.hope-site-header {
	border-bottom-color: rgb(9 45 59 / 16%);
	background: rgb(255 254 250 / 97%);
}

.hope-header-inner {
	min-height: 64px;
}

.hope-header-actions .wp-block-button__link {
	padding: 0.58rem 0.86rem;
	border-radius: 3px;
}

.hope-header-actions .hope-give-button .wp-block-button__link {
	background: var(--hope-orange);
}

.hope-primary-nav .wp-block-navigation-item__content {
	font-size: 0.67rem;
	letter-spacing: 0.055em;
}

.hope-hero {
	background: #050b0e;
}

.hope-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 1600px;
	min-height: clamp(570px, 47vw, 700px);
}

.hope-hero-grid > .hope-hero-copy,
.hope-hero-grid > .hope-hero-media {
	grid-area: 1 / 1;
}

.hope-hero-media {
	min-height: clamp(570px, 47vw, 700px) !important;
	width: 100%;
	max-width: none !important;
	background:
		linear-gradient(90deg, rgb(1 6 8 / 91%) 0%, rgb(1 6 8 / 72%) 35%, rgb(1 6 8 / 30%) 66%, rgb(1 6 8 / 10%) 100%),
		linear-gradient(180deg, rgb(0 0 0 / 16%), rgb(0 0 0 / 48%)),
		url("/wp-content/themes/hope-church/assets/images/hope-sanctuary-hero.jpg") center / cover no-repeat !important;
}

.hope-hero-media::before,
.hope-hero-media::after {
	content: none !important;
}

.hope-media-placeholder::before {
	inset: 18% 5% 11% 49%;
	width: auto;
	height: auto;
	border: 1px solid rgb(8 16 18 / 86%);
	border-radius: 0;
	background:
		repeating-linear-gradient(90deg, rgb(8 16 18 / 82%) 0 10%, rgb(242 166 66 / 49%) 10.5% 14%, rgb(20 26 25 / 82%) 14.5% 19%),
		repeating-linear-gradient(180deg, transparent 0 17%, rgb(2 7 7 / 80%) 17.5% 19%);
	box-shadow: -25px 40px 0 rgb(4 10 10 / 46%);
	transform: skewY(-4deg);
}

.hope-media-placeholder::after {
	inset: 16% 14% auto auto;
	width: 6px;
	height: 42%;
	border: 0;
	border-radius: 0;
	background: #061013;
	box-shadow: -28px 94px 0 -12px #061013;
	transform: none;
}

.hope-placeholder-caption {
	position: absolute;
	right: 1.25rem;
	bottom: 0;
	left: auto;
	max-width: 15rem;
	margin: 0 !important;
	border: 0;
	background: rgb(5 11 14 / 70%);
	color: rgb(255 255 255 / 82%);
	font-size: 0.57rem;
	text-align: left;
}

.hope-hero-copy {
	position: relative;
	z-index: 2;
	width: min(100%, 760px);
	min-height: clamp(570px, 47vw, 700px);
	padding: clamp(3.25rem, 7vw, 6.6rem) max(20px, calc((100vw - 1320px) / 2));
	background: linear-gradient(90deg, rgb(3 8 10 / 20%) 0%, transparent 90%);
	color: #fff;
}

.hope-hero-copy .hope-eyebrow {
	position: relative;
	margin-bottom: 1rem !important;
	padding-left: 2.7rem;
	color: var(--hope-green);
}

.hope-hero-copy .hope-eyebrow::before,
.hope-section .hope-eyebrow::after {
	position: absolute;
	top: 50%;
	width: 2rem;
	height: 2px;
	background: currentcolor;
	content: "";
}

.hope-hero-copy .hope-eyebrow::before {
	left: 0;
}

.hope-display-heading {
	max-width: 7.1ch;
	font-size: clamp(3.75rem, 5.8vw, 6.3rem) !important;
	letter-spacing: -0.045em;
	text-shadow: 0 3px 14px rgb(0 0 0 / 34%);
}

.hope-display-heading em {
	color: var(--hope-orange);
	font-style: normal;
}

/* Approved hero copy is placed as a calm, left-aligned introduction. */
.hope-hero-copy {
	justify-content: flex-start;
	justify-self: start;
	width: min(100%, 720px);
	margin-inline: 0 !important;
	padding-top: clamp(3rem, 3.8vw, 4.75rem);
	padding-inline: clamp(2rem, 4.5vw, 5rem);
	padding-bottom: clamp(3.75rem, 6vw, 5.5rem);
}

.hope-display-heading {
	max-width: 9ch;
	margin-bottom: 1rem !important;
	font-size: clamp(3rem, 4.4vw, 5.25rem) !important;
	line-height: 0.9 !important;
}

.hope-hero-copy > .hope-lead {
	max-width: 29rem;
	margin-inline: 0 !important;
	color: rgb(255 255 255 / 91%);
	font-size: clamp(0.95rem, 1.1vw, 1.08rem);
	line-height: 1.55;
}

.hope-hero-actions {
	margin-inline: 0 !important;
}

.hope-hero-actions .is-style-outline .wp-block-button__link {
	border-color: rgb(255 255 255 / 92%);
	background: transparent;
	color: #fff;
}

.hope-hero-actions .is-style-outline .wp-block-button__link:hover {
	background: #fff;
	color: var(--hope-ink);
}

.hope-campus-rail {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 1.25rem clamp(2rem, 4.5vw, 5rem);
	background: linear-gradient(104deg, #090e10, #15282d 64%, #13282c);
	color: #fff;
	scroll-margin-top: 92px;
}

.hope-campus-rail > * {
	width: auto !important;
	max-width: none !important;
}

.hope-campus-rail-card {
	display: grid;
	grid-template-columns: 1.6rem minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
	margin: 0 !important;
	padding: 0.3rem clamp(1.4rem, 4vw, 4rem);
}

.hope-campus-rail-card:first-of-type {
	padding-left: 0;
}

.hope-campus-rail-card + .hope-campus-rail-card {
	border-left: 1px solid rgb(255 255 255 / 27%);
}

.hope-campus-rail-marker {
	position: relative;
	display: block;
	width: 1.05rem;
	height: 1.05rem;
	margin-top: 0.18rem;
	border: 2px solid var(--hope-green);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.hope-campus-rail-marker::after {
	position: absolute;
	inset: 50% auto auto 50%;
	width: 0.22rem;
	height: 0.22rem;
	border-radius: 50%;
	background: var(--hope-green);
	content: "";
	transform: translate(-50%, -50%);
}

.hope-campus-rail-copy {
	margin: 0 !important;
}

.hope-campus-rail-title {
	margin: 0 0 0.28rem !important;
	color: #fff;
	font-family: var(--hope-font-sans) !important;
	font-size: clamp(0.7rem, 0.86vw, 0.86rem) !important;
	font-weight: 800 !important;
	letter-spacing: 0.04em;
	line-height: 1.25 !important;
	text-transform: uppercase;
}

.hope-campus-rail-address,
.hope-campus-rail-service {
	margin: 0 !important;
	color: rgb(255 255 255 / 84%);
	font-size: clamp(0.7rem, 0.77vw, 0.8rem);
	line-height: 1.55;
}

.hope-campus-rail-service {
	margin-top: 0.25rem !important;
	color: var(--hope-green);
	font-weight: 800;
}

.hope-hero-actions .wp-block-button__link,
.hope-mission-band .wp-block-button__link {
	min-width: 9rem;
	border-radius: 3px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.hope-hero-actions .wp-block-button:not(.is-style-outline) .wp-block-button__link,
.hope-mission-band .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background: var(--hope-orange);
}

.hope-campus-band {
	grid-template-columns: minmax(12rem, 0.6fr) minmax(0, 2fr);
	gap: clamp(1.5rem, 4vw, 4.5rem);
	max-width: none;
	padding-top: clamp(1.7rem, 3vw, 2.6rem);
	padding-bottom: clamp(1.7rem, 3vw, 2.6rem);
	background: linear-gradient(104deg, #090e10, #15282d 64%, #13282c);
}

.hope-campus-band h2 {
	font-family: var(--hope-font-serif);
	font-size: clamp(2rem, 3.2vw, 3.4rem);
	font-weight: 600;
	line-height: 0.9;
	text-transform: none;
}

.hope-campus-cards {
	background: rgb(255 255 255 / 19%);
}

.hope-campus-card {
	min-height: 0;
	padding-block: clamp(1.35rem, 2.2vw, 2rem);
	background: transparent;
}

.hope-campus-card h3 {
	margin: 0.2rem 0 0.55rem;
	font-family: var(--hope-font-sans);
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.hope-campus-number {
	display: grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	border: 2px solid var(--hope-green);
	border-radius: 50%;
	font-family: var(--hope-font-sans);
	font-size: 0.59rem;
	font-weight: 800;
}

.hope-campus-card > p:not(.hope-campus-number):not(.hope-card-status) {
	font-size: 0.82rem;
	line-height: 1.5;
}

.hope-card-status,
.hope-card-status p {
	margin-top: 0.8rem !important;
	font-size: 0.62rem !important;
}

.hope-section {
	padding-top: clamp(3.5rem, 6vw, 6rem);
	padding-bottom: clamp(3.5rem, 6vw, 6rem);
}

.hope-section .hope-eyebrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 0.8rem !important;
	color: var(--hope-ink);
	letter-spacing: 0.08em;
}

.hope-section .hope-eyebrow::after {
	position: static;
	display: inline-block;
	flex: 0 0 2rem;
	background: var(--hope-green);
}

.hope-message-grid {
	gap: clamp(2rem, 5vw, 5rem);
}

.hope-message-copy h2,
.hope-section-intro h2,
.hope-gallery-heading h2,
.hope-next-steps-intro h2 {
	max-width: 9ch;
	font-size: clamp(2.7rem, 4.1vw, 4.4rem);
	letter-spacing: -0.03em;
}

.hope-message-media {
	min-height: 365px !important;
	border: 1px solid rgb(9 45 59 / 15%);
	background:
		linear-gradient(90deg, rgb(6 12 14 / 78%), rgb(6 12 14 / 12%)),
		radial-gradient(circle at 78% 42%, #d9d6c4 0 8%, transparent 8.4%),
		linear-gradient(130deg, #12191a, #0b4253 54%, #a8a668 100%) !important;
	box-shadow: 0 20px 35px rgb(9 45 59 / 15%);
}

.hope-play-placeholder {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	width: auto;
	margin: 0 !important;
	border: 0;
	background: transparent;
	text-align: left;
}

.hope-play-mark {
	width: 4.25rem;
	height: 4.25rem;
	border: 3px solid #fff;
	background: rgb(134 151 38 / 88%);
}

.hope-mission-band {
	background:
		linear-gradient(90deg, rgb(74 92 12 / 94%) 0%, rgb(92 111 17 / 86%) 48%, rgb(8 39 44 / 84%) 100%),
		radial-gradient(circle at 78% 38%, rgb(235 184 101 / 75%) 0 12%, transparent 33%),
		var(--hope-green);
}

.hope-mission-inner {
	max-width: 840px;
}

.hope-mission-lines {
	max-width: 11ch;
	font-size: clamp(2.85rem, 4.5vw, 4.65rem) !important;
	letter-spacing: -0.03em;
}

.hope-mission-lines em {
	color: #fff;
	font-style: normal;
}

.hope-section-intro {
	max-width: 810px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.hope-journey-list {
	border-top-color: rgb(9 45 59 / 15%);
	border-left: 0;
}

.hope-journey-card {
	min-height: 290px;
	padding: clamp(1.1rem, 2vw, 1.8rem);
	border-bottom-color: rgb(9 45 59 / 13%);
	border-right-color: rgb(9 45 59 / 13%);
}

.hope-journey-card h3 {
	margin-top: 1.35rem;
	font-family: var(--hope-font-sans);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.hope-stage-number {
	margin: 0;
	font-family: var(--hope-font-serif);
	font-size: 2.05rem;
	font-weight: 600;
}

.hope-journey-card > p:not(.hope-stage-number) {
	font-size: 0.83rem;
	line-height: 1.5;
}

.hope-journey-card a {
	color: var(--hope-orange);
	font-size: 0.64rem;
	text-decoration: none;
}

.hope-gallery-heading {
	margin-bottom: 2rem;
}

.hope-gallery-placeholder {
	min-height: clamp(180px, 26vw, 350px);
	background:
		linear-gradient(180deg, rgb(4 17 19 / 12%), rgb(4 17 19 / 76%)),
		radial-gradient(circle at 50% 18%, #f6c870 0 8%, transparent 8.5%),
		linear-gradient(135deg, #123746, #6d8b5c);
}

.hope-gallery-placeholder--two {
	min-height: clamp(180px, 20vw, 280px);
	margin-top: clamp(1.5rem, 5vw, 4rem);
	background:
		linear-gradient(180deg, rgb(4 17 19 / 12%), rgb(4 17 19 / 72%)),
		linear-gradient(135deg, #e29044, #294c51);
}

.hope-gallery-placeholder--three {
	min-height: clamp(180px, 23vw, 310px);
	background:
		linear-gradient(180deg, rgb(4 17 19 / 8%), rgb(4 17 19 / 68%)),
		linear-gradient(135deg, #4e743f, #173f4d);
}

.hope-next-steps {
	background: #f2efe8;
}

.hope-next-steps-grid {
	gap: 0;
	border: 1px solid rgb(9 45 59 / 13%);
}

.hope-next-step-card {
	min-height: 225px;
	padding: clamp(1.2rem, 2vw, 1.7rem);
	border: 0;
	border-right: 1px solid rgb(9 45 59 / 13%);
	box-shadow: none;
}

.hope-next-step-card--give {
	background: var(--hope-steel);
}

.hope-step-icon {
	width: 3.35rem;
	height: 3.35rem;
	border: 0;
	background: rgb(239 116 29 / 10%);
	color: var(--hope-orange);
	font-size: 1.45rem;
}

.hope-next-step-card h3 {
	margin: 1rem 0 0.55rem;
	font-family: var(--hope-font-sans);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hope-next-step-card > p:not(.hope-card-status) {
	font-size: 0.82rem;
	line-height: 1.45;
}

.hope-site-footer {
	background:
		linear-gradient(105deg, rgb(5 32 42 / 98%), rgb(14 68 82 / 93%)),
		var(--hope-steel);
}

.hope-footer-grid {
	grid-template-columns: 1.45fr repeat(3, 1fr);
	padding-bottom: 2.4rem;
}

@media (max-width: 1100px) {
	.hope-primary-nav .wp-block-navigation {
		gap: 0.7rem;
	}

	.hope-primary-nav .wp-block-navigation-item__content {
		font-size: 0.65rem;
	}

	.hope-header-actions .wp-block-button__link {
		padding-inline: 0.65rem;
	}

	.hope-journey-list,
	.hope-next-steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 860px) {
	.hope-site-header {
		min-height: 70px;
	}

	.hope-header-inner {
		min-height: 70px;
		width: 100%;
		padding-inline: 20px;
	}

	.hope-menu-toggle {
		display: inline-flex;
		margin-left: auto;
		min-height: 44px;
		padding: 0.5rem;
	}

	.hope-primary-nav,
	.hope-header-actions {
		display: none !important;
	}

	.hope-primary-nav[data-open="true"] {
		position: fixed;
		inset: 70px 0 0;
		display: block !important;
		padding: 2rem 20px 0;
		background: var(--hope-paper);
		overflow-y: auto;
	}

	.hope-primary-nav[data-open="true"] .wp-block-navigation__container {
		display: flex !important;
		width: min(100%, 480px);
		margin: 0 auto;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 0.3rem;
	}

	.hope-primary-nav[data-open="true"] .wp-block-navigation-item__content {
		display: block;
		padding: 0.8rem 0;
		font-family: var(--hope-font-serif);
		font-size: clamp(2rem, 7vw, 3.2rem);
		font-weight: 400;
		letter-spacing: -0.06em;
		line-height: 1;
		text-transform: none;
	}

	.hope-header-actions[data-open="true"] {
		position: fixed;
		right: 20px;
		bottom: 2rem;
		left: 20px;
		z-index: 102;
		display: block !important;
		width: auto;
	}

	.hope-header-actions[data-open="true"] .wp-block-buttons {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.65rem;
	}

	.hope-header-actions[data-open="true"] .wp-block-button,
	.hope-header-actions[data-open="true"] .wp-block-button__link {
		width: 100%;
	}

	.hope-header-actions[data-open="true"] .wp-block-button__link {
		padding-block: 1rem;
		text-align: center;
	}

	.hope-hero-grid {
		grid-template-columns: 1fr;
		grid-template-areas: "media" "copy";
	}

	.hope-hero-media {
		min-height: min(76vh, 620px) !important;
	}

	.hope-hero-copy {
		min-height: auto;
		padding: 4rem 20px 4.5rem;
	}

	.hope-campus-band {
		grid-template-columns: 1fr;
		padding: 3.5rem 20px;
	}

	.hope-message-grid,
	.hope-gallery-heading {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hope-gallery-heading .hope-eyebrow,
	.hope-gallery-heading h2,
	.hope-gallery-heading .hope-lead {
		grid-column: auto;
		grid-row: auto;
	}

	.hope-gallery-heading .hope-lead {
		margin: 0;
	}

	.hope-gallery-grid {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.hope-gallery-grid .wp-block-image:last-child {
		grid-column: 1 / -1;
	}

	.hope-gallery-placeholder--three {
		min-height: 270px;
	}
}

@media (max-width: 620px) {
	:root {
		--hope-wrap: min(100% - 40px, 1200px);
	}

	.hope-brand-logo {
		width: 48px;
	}

	.hope-brand--footer .hope-brand-logo {
		width: 94px;
	}

	.hope-hero-media {
		min-height: 430px !important;
	}

	.hope-display-heading {
		font-size: clamp(3.45rem, 16vw, 5rem) !important;
	}

	.hope-hero-actions,
	.hope-hero-actions .wp-block-button,
	.hope-hero-actions .wp-block-button__link {
		width: 100%;
	}

	.hope-hero-actions {
		display: grid;
		gap: 0.7rem;
	}

	.hope-hero-actions .wp-block-button__link {
		text-align: center;
	}

	.hope-campus-cards,
	.hope-journey-list,
	.hope-next-steps-grid,
	.hope-footer-grid {
		grid-template-columns: 1fr;
	}

	.hope-campus-card {
		min-height: 0;
	}

	.hope-section {
		padding: 4.5rem 20px;
	}

	.hope-message-copy h2,
	.hope-section-intro h2,
	.hope-gallery-heading h2,
	.hope-next-steps-intro h2 {
		font-size: clamp(2.8rem, 14vw, 4.5rem);
	}

	.hope-message-media {
		min-height: 330px !important;
	}

	.hope-mission-lines {
		font-size: clamp(3rem, 14vw, 5rem) !important;
	}

	.hope-journey-card {
		min-height: 280px;
	}

	.hope-gallery-grid {
		grid-template-columns: 1fr;
	}

	.hope-gallery-grid .wp-block-image:last-child {
		grid-column: auto;
	}

	.hope-gallery-placeholder,
	.hope-gallery-placeholder--two,
	.hope-gallery-placeholder--three {
		min-height: 280px;
		margin-top: 0;
	}

	.hope-next-step-card {
		min-height: 240px;
	}

	.hope-site-footer {
		padding: 3.5rem 20px 1.4rem;
	}
}

/* The approved mobile direction is a tall image-led arrival, then compact cards. */
@media (max-width: 860px) {
	.hope-header-inner {
		min-height: 64px;
	}

	.hope-primary-nav[data-open="true"] {
		inset-block-start: 64px;
		background: #fffefa;
	}

	.hope-hero-grid {
		min-height: 650px;
	}

	.hope-hero-grid > .hope-hero-copy,
	.hope-hero-grid > .hope-hero-media {
		grid-area: 1 / 1;
	}

	.hope-hero-media,
	.hope-hero-copy {
		min-height: 650px !important;
	}

	.hope-hero-copy {
		justify-content: flex-start;
		padding: 4.25rem 20px 3rem;
		background: linear-gradient(180deg, transparent 0%, rgb(1 7 9 / 7%) 30%, rgb(1 7 9 / 89%) 100%);
	}

	.hope-campus-rail {
		grid-template-columns: 1fr;
		padding: 0 20px;
	}

	.hope-campus-rail-card {
		padding: 1.2rem 0;
	}

	.hope-campus-rail-card + .hope-campus-rail-card {
		border-top: 1px solid rgb(255 255 255 / 27%);
		border-left: 0;
	}

	.hope-hero-copy .hope-eyebrow {
		font-size: 0.63rem;
	}

	.hope-campus-band h2 {
		max-width: 10ch;
	}

	.hope-campus-cards {
		gap: 1px;
	}

	.hope-campus-card {
		padding: 1.5rem;
	}

	.hope-message-copy,
	.hope-section-intro,
	.hope-gallery-heading,
	.hope-next-steps-intro {
		max-width: 35rem;
	}

	.hope-message-media {
		min-height: 390px !important;
	}

}

@media (max-width: 620px) {
	.hope-brand--header {
		gap: 0.5rem;
	}

	.hope-brand--header .hope-brand-logo {
		width: 44px;
	}

	.hope-brand-wordmark-title {
		font-size: 1.12rem;
	}

	.hope-brand-wordmark-subtitle {
		font-size: 0.35rem;
		letter-spacing: 0.1em;
	}

	.hope-menu-label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.hope-menu-icon,
	.hope-menu-icon::before,
	.hope-menu-icon::after {
		width: 25px;
	}

	.hope-hero-grid,
	.hope-hero-media,
	.hope-hero-copy {
		min-height: 760px !important;
	}

	.hope-display-heading {
		font-size: clamp(3.1rem, 13vw, 4.15rem) !important;
	}

	.hope-hero-copy > .hope-lead {
		font-size: 0.95rem;
	}

	.hope-hero-actions .wp-block-button__link {
		padding-block: 0.95rem;
	}

	.hope-placeholder-caption {
		display: none;
	}

	.hope-campus-band {
		padding-top: 2.3rem;
		padding-bottom: 2.3rem;
	}

	.hope-campus-card {
		padding: 1.35rem 0.35rem;
	}

	.hope-campus-card + .hope-campus-card {
		border-top: 1px solid rgb(255 255 255 / 24%);
	}

	.hope-campus-number {
		float: left;
		margin: 0.1rem 0.85rem 1.5rem 0;
	}

	.hope-message-copy h2,
	.hope-section-intro h2,
	.hope-gallery-heading h2,
	.hope-next-steps-intro h2 {
		font-size: clamp(3rem, 15vw, 4.35rem);
	}

	.hope-mission-lines {
		font-size: clamp(3.35rem, 15vw, 4.8rem) !important;
	}

	.hope-journey-card {
		min-height: 0;
		padding: 1.6rem 0.35rem;
		border-right: 0;
	}

	.hope-journey-card h3 {
		margin-top: 0.7rem;
	}

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

	.hope-gallery-grid .wp-block-image:first-child {
		grid-column: 1 / -1;
	}

	.hope-gallery-placeholder,
	.hope-gallery-placeholder--two,
	.hope-gallery-placeholder--three {
		min-height: 180px;
		margin-top: 0;
	}

	.hope-gallery-placeholder--one {
		min-height: 260px;
	}

	.hope-next-steps-grid {
		border: 0;
	}

	.hope-next-step-card {
		display: grid;
		min-height: 0;
		grid-template-columns: 3.4rem 1fr;
		column-gap: 1rem;
		padding: 1.5rem;
		border: 1px solid rgb(9 45 59 / 13%);
	}

	.hope-step-icon {
		grid-row: 1 / span 3;
	}

	.hope-next-step-card h3,
	.hope-next-step-card > p:not(.hope-card-status),
	.hope-next-step-card .hope-card-status {
		grid-column: 2;
	}

	.hope-next-step-card h3 {
		margin-top: 0.2rem;
	}

	.hope-next-step-card .hope-card-status {
		margin-top: 0.75rem !important;
	}

	.hope-footer-grid {
		gap: 2.2rem;
	}
}

/* Keep the mobile navigation in the viewport rather than the sticky header. */
@media (max-width: 860px) {
	body.hope-menu-open .hope-site-header {
		backdrop-filter: none;
	}

	.hope-menu-toggle {
		position: relative;
		z-index: 103;
		width: 44px;
		height: 44px;
		justify-content: center;
	}

	.hope-menu-icon::before,
	.hope-menu-icon::after {
		left: 0;
	}

	.hope-primary-nav[data-open="true"] {
		inset: 64px 0 0;
		z-index: 101;
		padding: 1.5rem 20px 7.5rem;
		background: var(--hope-paper);
	}

	.hope-primary-nav[data-open="true"] .wp-block-navigation__container {
		gap: 0.1rem;
	}

	.hope-primary-nav[data-open="true"] .wp-block-navigation-item__content {
		padding-block: 0.65rem;
	}

	.hope-header-actions[data-open="true"] {
		bottom: max(1.25rem, env(safe-area-inset-bottom));
		z-index: 102;
	}
}

/* The current-message panel uses the hero's alignment and a real video embed. */
.hope-main > .hope-latest-message {
	padding: clamp(5.5rem, 9vw, 8.5rem) clamp(2rem, 4.5vw, 5rem) !important;
}

.hope-latest-message .hope-message-grid {
	width: 100%;
	max-width: none;
	align-items: center;
}

.hope-message-copy {
	justify-self: start;
	width: 100%;
	margin-inline: 0 !important;
}

.hope-message-copy > * {
	margin-inline: 0 !important;
}

.hope-message-copy h2 {
	max-width: 11ch;
}

.hope-message-copy > .hope-lead {
	max-width: 31rem;
}

.hope-message-media {
	position: relative;
	display: block;
	width: 100%;
	min-height: 0 !important;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.hope-message-media iframe {
	display: block;
}

@media (max-width: 860px) {
	.hope-main > .hope-latest-message {
		padding: 5rem 20px !important;
	}

	.hope-latest-message .hope-message-grid {
		gap: 3rem;
	}

	.hope-message-media {
		min-height: 0 !important;
	}
}

/* Why We Exist follows the hero's left edge and reserves the right half for photography. */
.hope-main > .hope-mission-band {
	padding: clamp(5rem, 7vw, 6.75rem) clamp(2rem, 4.5vw, 5rem) !important;
	background: linear-gradient(90deg, #073527 0%, #0a4536 49%, #0b2f36 100%);
}

.hope-mission-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: stretch;
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
}

.hope-mission-layout > * {
	width: auto !important;
	max-width: none !important;
}

.hope-mission-inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	max-width: 36rem;
	margin: 0 !important;
}

.hope-mission-inner > * {
	margin-inline: 0 !important;
}

.hope-mission-band .hope-eyebrow {
	margin-bottom: 1rem !important;
	color: var(--hope-green);
}

.hope-mission-lines {
	max-width: none;
	margin-bottom: 1.35rem !important;
	font-size: clamp(2.35rem, 3.3vw, 3.75rem) !important;
	letter-spacing: -0.035em;
	line-height: 1.03 !important;
}

.hope-mission-band .hope-lead {
	max-width: 31rem;
	color: rgb(255 255 255 / 88%);
	font-size: clamp(0.95rem, 1.05vw, 1.08rem);
	line-height: 1.6;
}

.hope-mission-inner .wp-block-buttons {
	margin-top: 1.6rem !important;
}

.hope-mission-media {
	display: block;
	min-height: 420px !important;
	margin: 0 !important;
	border: 0;
	overflow: hidden;
	background: none !important;
	box-shadow: 0 20px 38px rgb(0 0 0 / 18%);
}

.hope-mission-media img {
	display: block;
	width: 100%;
	min-height: 420px;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 860px) {
	.hope-main > .hope-mission-band {
		padding: 4.75rem 20px !important;
	}

	.hope-mission-layout {
		grid-template-columns: 1fr;
		gap: 2.75rem;
	}

	.hope-mission-inner {
		max-width: 38rem;
	}

	.hope-mission-media {
		min-height: 300px !important;
	}

	.hope-mission-media img {
		min-height: 300px;
	}
}

@media (max-width: 620px) {
	.hope-mission-lines {
		font-size: clamp(2.2rem, 10.5vw, 3.4rem) !important;
	}
}

/* Hope Journey: retain the approved paper palette while opening the card rail edge to edge. */
.hope-main > .hope-journey {
  padding: clamp(4.5rem, 7vw, 6.25rem) 0 0 !important;
}

.hope-journey .hope-section-intro {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(2.75rem, 5vw, 4.5rem) !important;
  padding-inline: clamp(2rem, 4.5vw, 5rem);
  text-align: center;
}

.hope-journey .hope-section-intro > * {
  margin-right: auto !important;
  margin-left: auto !important;
}

.hope-journey .hope-section-intro .hope-eyebrow {
  margin-bottom: 0.8rem !important;
  color: var(--hope-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hope-journey .hope-section-intro h2 {
  max-width: 54rem;
  color: var(--hope-ink);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.hope-journey-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px solid var(--hope-line);
  border-left: 0;
}

.hope-journey-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  margin: 0 !important;
  padding: clamp(1.6rem, 3vw, 3rem) clamp(1.25rem, 3.2vw, 3.75rem);
  border-right: 1px solid var(--hope-line);
  border-bottom: 0;
}

.hope-journey-card > * {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.hope-journey-card .hope-stage-number {
  margin: 0 0 0.75rem !important;
  color: var(--hope-gold);
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
}

.hope-journey-card h3 {
  margin: 0 0 0.75rem !important;
  color: var(--hope-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hope-journey-card > p:not(.hope-stage-number):not(.hope-journey-link) {
  max-width: 17rem;
  margin: 0 !important;
  color: var(--hope-ink);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hope-journey-link {
  margin: auto 0 0 !important;
  padding-top: 1.35rem;
}

.hope-journey-link a {
  color: var(--hope-ink);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}

.hope-journey-link a:hover,
.hope-journey-link a:focus-visible {
  color: var(--hope-gold);
}

@media (max-width: 860px) {
  .hope-main > .hope-journey {
    padding-top: 4.75rem !important;
  }

  .hope-journey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hope-journey-card {
    min-height: 260px;
    border-bottom: 1px solid var(--hope-line);
  }
}

@media (max-width: 620px) {
  .hope-journey .hope-section-intro {
    padding-inline: 1.5rem;
  }

  .hope-journey-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .hope-journey-card {
    min-height: 0;
    padding: 2rem 1.5rem;
    border-right: 0;
  }
}

/* Life at Hope: editorial gallery using the supplied, approved photography. */
.hope-main > .hope-life-gallery {
  --hope-life-gallery-gutter: clamp(2rem, 4.5vw, 5rem);
  padding: clamp(5rem, 7vw, 6.5rem) var(--hope-life-gallery-gutter) 0 !important;
}

.hope-life-gallery .hope-gallery-heading {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(1.1rem, 2vw, 1.5rem) !important;
  text-align: center;
}

.hope-life-gallery .hope-gallery-heading .hope-eyebrow {
  margin: 0 0 0.8rem !important;
  color: var(--hope-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hope-life-gallery .hope-gallery-heading h2 {
  max-width: 54rem;
  margin: 0 auto !important;
  color: var(--hope-ink);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.hope-life-gallery .hope-gallery-instagram {
  margin: 0 0 clamp(0.7rem, 1vw, 1rem) !important;
  text-align: right;
}

.hope-gallery-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--hope-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.hope-gallery-instagram a:hover,
.hope-gallery-instagram a:focus-visible {
  color: var(--hope-gold);
}

.hope-instagram-mark {
  position: relative;
  display: inline-block;
  width: 0.94rem;
  height: 0.94rem;
  flex: 0 0 auto;
  border: 1.5px solid currentcolor;
  border-radius: 0.28rem;
}

.hope-instagram-mark::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.33rem;
  height: 0.33rem;
  border: 1.35px solid currentcolor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.hope-instagram-mark::after {
  position: absolute;
  top: 0.13rem;
  right: 0.13rem;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background: currentcolor;
  content: "";
}

.hope-life-gallery .hope-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: calc(100% + var(--hope-life-gallery-gutter) + var(--hope-life-gallery-gutter));
  max-width: none !important;
  gap: clamp(0.45rem, 1vw, 1rem) !important;
  margin-top: 0 !important;
  margin-right: calc(0px - var(--hope-life-gallery-gutter)) !important;
  margin-bottom: 0 !important;
  margin-left: calc(0px - var(--hope-life-gallery-gutter)) !important;
}

.hope-life-gallery .hope-gallery-grid > .wp-block-image {
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hope-life-gallery .hope-gallery-grid > .wp-block-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  object-fit: cover;
}

.hope-gallery-image--family img {
  object-position: center 31%;
}

.hope-gallery-image--anniversary img {
  object-position: center 27%;
}

.hope-gallery-image--student img {
  object-position: center 38%;
}

.hope-gallery-image--speaker img {
  object-position: center 35%;
}

.hope-gallery-image--minister img {
  object-position: center 28%;
}

@media (max-width: 980px) {
  .hope-life-gallery .hope-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hope-main > .hope-life-gallery {
    padding-top: 4.5rem !important;
    padding-bottom: 0 !important;
  }

  .hope-life-gallery .hope-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hope-life-gallery .hope-gallery-grid > .wp-block-image {
    aspect-ratio: 1 / 1;
  }
}

/* Take Your Next Step: one clear headline and an evenly aligned action row. */
.hope-main > .hope-next-steps {
  padding: clamp(4.5rem, 6vw, 6rem) clamp(2rem, 4.5vw, 5rem) !important;
}

.hope-next-steps .hope-next-steps-intro {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(2.25rem, 4vw, 3.5rem) !important;
  text-align: center;
}

.hope-next-steps .hope-next-steps-intro h2 {
  max-width: none;
  margin: 0 auto !important;
  color: var(--hope-ink);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1;
  white-space: nowrap;
}

.hope-next-steps-grid {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.hope-next-steps-grid > .hope-next-step-card {
  width: 100% !important;
  margin-top: 0 !important;
  align-self: stretch;
}

.hope-next-step-card {
  height: 100%;
  min-height: 264px;
  padding-top: clamp(1.6rem, 2.4vw, 2.25rem);
  padding-bottom: clamp(1.6rem, 2.4vw, 2.25rem);
}

.hope-next-step-card .hope-card-status,
.hope-next-step-card .hope-card-status a {
  color: currentcolor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.hope-next-step-card .hope-card-status a:hover,
.hope-next-step-card .hope-card-status a:focus-visible {
  color: var(--hope-gold);
}

@media (max-width: 520px) {
  .hope-next-steps .hope-next-steps-intro h2 {
    font-size: clamp(1.55rem, 7.1vw, 2rem);
  }
}

/* Watch Live page: a focused, responsive home for the BoxCast player. */
.hope-watch-live-main {
  background: var(--hope-paper);
}

.hope-watch-live {
  padding: clamp(5rem, 8vw, 7.5rem) clamp(2rem, 4.5vw, 5rem) clamp(5.5rem, 8vw, 8rem) !important;
}

.hope-watch-live-intro {
  max-width: 50rem;
  margin: 0 auto clamp(2.25rem, 4vw, 3.75rem) !important;
  text-align: center;
}

.hope-watch-live-intro .hope-eyebrow {
  margin: 0 0 0.85rem !important;
  color: var(--hope-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hope-watch-live-intro h1 {
  max-width: none;
  margin: 0 auto 1.15rem !important;
  color: var(--hope-ink);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
}

.hope-watch-live-intro .hope-lead {
  max-width: 39rem;
  margin: 0 auto !important;
}

.hope-boxcast-shell {
  width: 100%;
  max-width: 72rem;
  min-height: 28rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgb(9 45 59 / 15%);
  background: var(--hope-ink);
  box-shadow: 0 18px 42px rgb(9 45 59 / 15%);
}

.hope-boxcast-live {
  min-height: inherit;
}

.hope-boxcast-status {
  display: grid;
  min-height: inherit;
  margin: 0 !important;
  place-items: center;
  padding: 2rem;
  color: rgb(255 255 255 / 88%);
  text-align: center;
}

.hope-boxcast-status--error {
  max-width: 34rem;
  margin: 0 auto !important;
}

@media (max-width: 620px) {
  .hope-watch-live {
    padding: 4.5rem 1.5rem 5.5rem !important;
  }

  .hope-boxcast-shell {
    min-height: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
