/* =============================================================
   BGMTFA Theme — main.css
   ============================================================= */

/* SF Compact fallback stack — SF Compact Text is Apple proprietary.
   When the user's device has it (Apple devices), it'll be used; otherwise
   the stack falls back to similarly humanist sans fonts. */

:root {
	--brand-navy: #1a3a8f;
	--brand-navy-deep: #142e72;
	--brand-navy-soft: #2a4ea3;
	--bg-navy-light: #EEF1F9;
	--brand-green: #10a36a;
	--brand-green-2: #329632;
	--brand-green-3: #9DB624;
	--brand-green-deep: #0a7d50;
	--brand-yellow: #fdd835;
	--brand-yellow-deep: #f4c200;
	--brand-black: #0a0a0a;
	--brand-mint: #d8efe2;

	--text-1: #0d1426;
	--text-2: #3b4661;
	--text-3: #6b7691;
	--text-4: #555555;
	--text-on-dark: #ffffff;

	--surface-0: #ffffff;
	--surface-1: #f6f7f9;
	--surface-2: #ecf0f3;
	--surface-3: #FAF8F4;
	--surface-mint: #e6f3eb;

	--border-1: #e5e9ef;
	--border-2: #d4dae3;

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-xl: 32px;

	--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
	--shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.14), 0 8px 16px rgba(15, 23, 42, 0.06);

	--font-display: "SF Compact Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--container: 1200px;
	--container-narrow: 980px;
	--gutter: clamp(20px, 4vw, 40px);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--header-height: 76px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-2);
	background: var(--surface-0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

a {
	color: var(--brand-navy);
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

a:hover {
	color: var(--brand-green);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	color: var(--text-1);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
	/* color: var(--text-4) !important; */
}

strong {
	color: var(--text-1);
	font-weight: 700;
}

button {
	font: inherit;
	cursor: pointer;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container-narrow {
	max-width: var(--container-narrow);
}

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

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 9999;
	background: var(--brand-navy);
	color: #fff;
	padding: 10px 18px;
	border-radius: 6px;
}

.skip-link:focus {
	top: 16px;
	color: #fff;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 24px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	border-radius: 14px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
	white-space: nowrap;
	line-height: 1;
}

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

.btn:active {
	transform: translateY(0);
}

.btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.btn--primary {
	background: var(--brand-yellow);
	color: var(--brand-black);
	border-color: var(--brand-yellow);
}

.btn--primary:hover {
	background: var(--brand-yellow-deep);
	color: var(--brand-black);
	box-shadow: 0 8px 20px rgba(253, 216, 53, 0.4);
}

.btn--secondary {
	background: var(--brand-navy);
	color: #fff;
	border-color: var(--brand-navy);
}

.btn--secondary:hover {
	background: var(--brand-navy-deep);
	color: #fff;
	/* box-shadow: 0 8px 20px rgba(26, 58, 143, 0.3); */
}

.btn--green {
	background: var(--brand-green);
	color: #fff;
	border-color: var(--brand-green);
}

.btn--green:hover {
	background: var(--brand-green-deep);
	color: #fff;
	box-shadow: 0 8px 20px rgba(16, 163, 106, 0.35);
}

.btn--ghost {
	background: transparent;
	color: var(--brand-navy);
	border-color: rgba(26, 58, 143, 0.25);
}

.btn--ghost:hover {
	background: var(--surface-1);
	color: var(--brand-navy);
	border-color: var(--brand-navy);
}

.btn--ghost-light {
	background: var(--bg-navy-light);
	color: var(--brand-navy);
	border-color: var(--bg-navy-light);
}

.btn--ghost-light:hover {
	color: var(--brand-navy);
}

.btn--white {
	background: #fff;
	color: var(--brand-navy);
	border-color: #fff;
}

.btn--white:hover {
	background: var(--surface-1);
	color: var(--brand-navy);
}

.btn--dark {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.btn--dark:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: #fff;
}

.btn--link {
	background: transparent;
	color: var(--brand-green);
	border: none;
	padding: 6px 0;
	border-radius: 0;
	font-weight: 600;
}

.btn--link:hover {
	color: var(--brand-green-deep);
}

.btn--link svg {
	transition: transform 0.2s var(--ease);
}

.btn--link:hover svg {
	transform: translateX(4px);
}

/* =============================================================
   SITE HEADER
   ============================================================= */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease);
}

.site-header__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: #ffffffeb;
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	transition: background 0.3s var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: var(--border-1);
}

.site-header.is-scrolled .site-header__bg {
	background: #fffffff5;
}

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	min-height: var(--header-height);
}

.site-branding__link {
	display: flex;
	align-items: center;
	gap: 1px;
	color: var(--brand-navy);
	text-decoration: none;
}

.site-branding__link:hover {
	color: var(--brand-navy);
}

.site-branding__logo {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.brand-mark {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}

.site-branding__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.site-branding__name {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--brand-navy);
	font-size: 14px;
	letter-spacing: -0.01em;
	width: 80%;
	max-width: 200px;
}

.site-branding__desc {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--brand-navy);
	font-size: 12px;
	max-width: 200px;
	opacity: 0.85;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: end;
	grid-column: 3;
}

.site-header__cta {
	display: block;
}

.site-header__partner {
	display: inline-flex;
}

.site-header__partner img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	border-radius: 8px;
}

/* Nav sits in the auto (center) column */
.site-nav {
	display: flex;
	align-items: center;
	justify-self: center;
}

/* Right side: CTA + partner push to the end of the 3rd column */
.site-header__inner>.site-nav {
	grid-column: 2;
	/* explicit center column */
}

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

.nav-menu>li>a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	color: var(--text-1);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 14px;
	border-radius: 999px;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-menu>li>a:hover {
	background: var(--surface-1);
	color: var(--brand-navy);
}

.nav-menu>li.current-menu-item>a,
.nav-menu>li.current_page_item>a,
.nav-menu>li.current-menu-parent>a,
.nav-menu>li.current_page_parent>a {
	color: var(--brand-navy);
	font-weight: 600;
}

.nav-menu .caret svg {
	width: 12px;
	height: 12px;
	transition: transform 0.2s var(--ease);
}

.nav-menu>li.menu-item-has-children:hover>a .caret svg,
.nav-menu>li.is-open>a .caret svg {
	transform: rotate(180deg);
}

.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	padding: 8px;
	margin: 8px 0 0;
	background: #fff;
	border: 1px solid var(--border-1);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
}

.nav-menu>li {
	position: relative;
}

.nav-menu>li:hover>.sub-menu,
.nav-menu>li.is-open>.sub-menu,
.nav-menu>li:focus-within>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s;
}

.nav-menu .sub-menu li a {
	display: block;
	padding: 10px 14px;
	color: var(--text-1);
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.nav-menu .sub-menu li a:hover {
	background: var(--surface-1);
	color: var(--brand-navy);
}

.site-nav__cta {
	display: none;
}

.nav-toggle {
	margin-left: auto;
	display: none;
	width: 40px;
	height: 40px;
	background: var(--bg-navy-light);
	border: none;
	border-radius: 50%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-toggle:hover {
	background: var(--brand-mint);
}

.nav-toggle:active {
	transform: scale(0.95);
}

.nav-toggle__bar {
	height: 2px;
	background: var(--brand-navy);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), width 0.25s var(--ease);
}

.nav-toggle__bar:nth-child(1) {
	width: 18px;
}

.nav-toggle__bar:nth-child(2) {
	width: 12px;
}

.nav-toggle__bar:nth-child(3) {
	width: 18px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
	width: 18px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
	width: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
	width: 18px;
}

/* =============================================================
   SECTIONS — shared
   ============================================================= */
.section {
	padding-block: clamp(60px, 8vw, 110px);
}

.section--alt {
	background: var(--surface-1);
}

.section-title {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.1;
	color: var(--brand-navy);
}

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

.accent-green {
	color: var(--brand-green);
}

/* =============================================================
   FRONT PAGE — HERO
   ============================================================= */
.hp-hero {
	background: var(--surface-3);
	padding-block: clamp(40px, 6vw, 80px);
}

.hp-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	grid-template-rows: auto auto;
	gap: clamp(8px, 2vw, 16px) clamp(32px, 5vw, 80px);
	align-items: start;
}

/* Text spans col 1 row 1, buttons col 1 row 2, media col 2 rows 1–2 */
.hp-hero__text {
	grid-column: 1;
	grid-row: 1;
}

.hp-hero__buttons {
	grid-column: 1;
	grid-row: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 8px;
}

.hp-hero__media {
	grid-column: 2;
	grid-row: 1 / 3;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: var(--shadow-md);
	background: var(--surface-2);
	align-self: center;
}

.hp-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hp-hero__title {
	font-size: clamp(32px, 4.6vw, 56px);
	color: var(--brand-navy);
	font-weight: 800;
	line-height: 1.06;
	margin-bottom: 24px;
}

.hp-hero__body {
	font-size: clamp(15px, 1.4vw, 16px);
	color: var(--text-2);
	margin-bottom: 0;
	max-width: 520px;
}

.hp-hero__body p:last-child {
	margin-bottom: 0;
}

/* =============================================================
   FRONT PAGE — INTRO (image grid + text)
   ============================================================= */
.hp-intro {
	background: #fff;
}

.hp-intro__grid {
	display: grid;
	grid-template-columns: 1.2fr .9fr;
	gap: clamp(26px, 5vw, 30px);
	align-items: center;
}

.hp-intro__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
}

.hp-intro__gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.hp-intro__gallery>*:first-child {
	grid-column: span 2;
	grid-row: span 2;
	aspect-ratio: 1 / 1;
}

.hp-intro__gallery>*:nth-child(2),
.hp-intro__gallery>*:nth-child(3) {
	aspect-ratio: 1 / 1;
}

.hp-intro__title {
	font-size: clamp(26px, 3.4vw, 38px);
	color: var(--brand-navy);
	margin-bottom: 18px;
}

.hp-intro__title span {
	color: var(--brand-green);
}

.hp-intro__body p {
	margin-bottom: 1em;
}

/* =============================================================
   FRONT PAGE — PILLARS (navy strip with 4 cards)
   ============================================================= */
.hp-pillars {
	background: var(--brand-navy);
	color: #fff;
	padding-block: clamp(60px, 8vw, 100px);
	position: relative;
	overflow: hidden;
}

.hp-pillars::before,
.hp-pillars::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.hp-pillars::before {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
	top: -200px;
	right: -100px;
}

.hp-pillars__title {
	color: #fff;
	font-size: clamp(28px, 4vw, 44px);
	text-align: center;
	margin-bottom: 12px;
	position: relative;
}

.hp-pillars__subtitle {
	text-align: center;
	color: rgba(255, 255, 255, 0.78);
	max-width: 720px;
	margin: 0 auto 48px;
	position: relative;
}

.hp-pillars__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	position: relative;
}

.pillar-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.06);
	border: 0.45px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: 26px 22px;
	transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pillar-card:hover {
	transform: translateY(-4px);
	background: #ffffff17;
	border-color: #ffffff2e;
}

.pillar-card__icon {
	width: 50px;
	height: 50px;
	background: #10a36a2e;
	border-radius: 8px;
	display: grid;
	place-items: center;
	margin-bottom: 1.5rem;
}

.pillar-card:nth-of-type(1) .pillar-card__icon {
	background: #FEF2F2;
	color: var(--brand-green);
}

.pillar-card:nth-of-type(2) .pillar-card__icon {
	background: #F5F3FF;
	color: #7C3AED;
}

.pillar-card:nth-of-type(3) .pillar-card__icon {
	background: #EEF1F9;
	color: var(--brand-green);
}

.pillar-card:nth-of-type(4) .pillar-card__icon {
	background: #F2F6E2;
	color: var(--brand-navy);
}

.pillar-card__icon svg {
	width: 24px;
	height: 24px;
}

.pillar-card__title {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 1rem;
}

.pillar-card__body {
	color: #ffffff94;
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

/* =============================================================
   IMPACT STORIES — carousel
   ============================================================= */
.impact-stories {
	padding-block: clamp(50px, 7vw, 90px);
	position: relative;
}

.impact-stories--yellow {
	background: var(--brand-yellow);
}

.impact-stories--mint {
	background: var(--brand-mint);
}

.impact-stories .section-title {
	color: var(--brand-black);
}

.impact-carousel {
	position: relative;
	margin-top: 36px;
}

.impact-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc(50% - 9px);
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 8px;
}

.impact-carousel__track::-webkit-scrollbar {
	display: none;
}

.impact-card {
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.impact-card__link {
	display: block;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.impact-card__media {
	position: relative;
	aspect-ratio: 16 / 11;
	background: linear-gradient(135deg, #2c3e50 0%, #4a6580 100%);
	background-size: cover;
	background-position: center;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.impact-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.05) 75%, transparent 100%);
}

.impact-card__content {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 22px;
	color: #fff;
}

.impact-card__quote {
	font-style: italic;
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.45;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.96);
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.impact-card__author {
	border-left: 3px solid var(--brand-yellow);
	padding-left: 12px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.impact-card__name {
	font-weight: 700;
	font-size: 14px;
}

.impact-card__role {
	font-size: 12px;
	opacity: 0.78;
}

.impact-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 28px;
}

.impact-carousel__dot {
	width: 8px;
	height: 8px;
	background: rgba(0, 0, 0, 0.25);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.2s var(--ease), transform 0.2s var(--ease);
	padding: 0;
}

.impact-carousel__dot.is-active {
	background: var(--brand-black);
	transform: scale(1.4);
}

/* =============================================================
   FRONT PAGE — PROGRAMS (alternating layout)
   ============================================================= */
.hp-programs {
	padding-top: clamp(60px, 8vw, 100px);
}

.hp-programs__header {
	text-align: center;
	margin-bottom: clamp(40px, 6vw, 70px);
}

.program-row-wrapper {
	padding-block: clamp(50px, 7vw, 90px);
}

.program-row-wrapper--white {
	background: #fff;
}

.program-row-wrapper--cream {
	background: #FAF7F2;
}

.program-row__number {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.program-row__num {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 800;
	color: rgba(16, 163, 106, 0.4);
	letter-spacing: 0.05em;
}

.program-row__line {
	height: 1px;
	width: 50px;
	background: rgba(16, 163, 106, 0.25);
}

.hp-programs__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 900 !important;
	color: var(--brand-green-2);
	margin-bottom: 8px;
}

.hp-programs__title span {
	color: var(--brand-navy);
}

.hp-programs__subtitle {
	color: var(--text-4);
	font-size: clamp(20px, 2.4vw, 26px);
	font-family: var(--font-display);
	font-weight: 700;
	margin-bottom: 18px;
}

.hp-programs__intro {
	color: var(--text-4);
	line-height: 2;
	max-width: 720px;
	margin: 0 auto;
}

.hp-programs__list {
	display: block;
}

.program-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.program-row__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--surface-2);
	box-shadow: var(--shadow-md);
}

.program-row__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.program-row__title {
	font-size: clamp(24px, 2.8vw, 32px);
	color: var(--brand-navy);
	margin-bottom: 16px;
}

.program-row__body {
	margin-bottom: 18px;
}

.program-row__body p {
	margin-bottom: 0.8em;
}

.program-row--reverse .program-row__media {
	order: 2;
}

.program-row--reverse .program-row__text {
	order: 1;
}

/* =============================================================
   FRONT PAGE — ACCOUNTABILITY
   ============================================================= */
.hp-acc {
	background: #fff;
	padding-block: clamp(60px, 8vw, 100px);
}

.hp-acc__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.hp-acc__media {
	position: relative;
	border-radius: var(--radius-lg);
	aspect-ratio: 4 / 3;
	background: var(--surface-2);
	box-shadow: var(--shadow-md);
}

.hp-acc__media img,
.hp-acc__media>div:first-child {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.hp-acc__badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--brand-green-2);
	color: #fff;
	padding: 14px 22px;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	display: flex;
	gap: 3px;
	flex-direction: column;
	line-height: 1;
	z-index: 2;
}

.hp-acc__badge span:first-child {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.85;
}

.hp-acc__badge-year {
	font-family: var(--font-display);
	font-size: 2.65rem;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.hp-acc__badge-label {
	font-size: 10px;
	font-weight: 600;
	margin-top: 3px;
	opacity: 0.9;
	letter-spacing: 0.04em;
}

.hp-acc__title {
	font-size: clamp(26px, 3.4vw, 38px);
	margin-bottom: 18px;
}

.hp-acc__title span {
	color: var(--brand-green);
}

.hp-acc__body {
	margin-bottom: 28px;
}

.hp-acc__items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.acc-item {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 16px;
}

.acc-item__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin-top: 2px;
}

/* Specific styling for item 1 (shield) */
.acc-item--1 .acc-item__icon {
	background: rgba(26, 58, 143, 0.08);
	color: var(--brand-navy);
}

/* Specific styling for items 2 & 3 (users) */
.acc-item--2 .acc-item__icon,
.acc-item--3 .acc-item__icon {
	background: rgba(16, 163, 106, 0.08);
	color: var(--brand-green);
}

.acc-item__icon svg {
	width: 18px;
	height: 18px;
}

.acc-item__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-1);
	margin-bottom: 4px;
	font-family: var(--font-display);
}

.acc-item__body {
	font-size: 14px;
	color: var(--text-4);
	margin: 0;
}

/* =============================================================
   FRONT PAGE — MISSION QUOTE
   ============================================================= */
.hp-mission {
	position: relative;
	color: #fff;
	text-align: center;
	padding-block: clamp(70px, 9vw, 120px);
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
	overflow: hidden;
}

.hp-mission__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.18;
}

.hp-mission__inner {
	position: relative;
	z-index: 1;
}

.hp-mission__icon {
	color: var(--brand-green);
	margin-bottom: 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.hp-mission__icon svg {
	width: 32px;
	height: 32px;
}

.hp-mission__quote {
	font-family: var(--font-body);
	font-size: clamp(14px, 2vw, 18px);
	line-height: 2;
	color: #fff;
	max-width: 820px;
	margin: 0 auto 28px;
	font-style: italic;
	font-weight: 400;
}

.hp-mission__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hp-mission__attribution {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 6px;
}

.hp-mission__line {
	height: 1.5px;
	background: rgba(255, 255, 255, 0.25);
	width: 70px;
}

.hp-mission__author {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	color: var(--brand-yellow);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.hp-mission__sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.02em;
	font-weight: 500;
}

/* =============================================================
   INITIATIVE PAGE — HERO with background image
   ============================================================= */
.ini-hero {
	position: relative;
	height: 80vh;
	min-height: 460px;
	color: #fff;
	display: flex;
	align-items: center;
	background: var(--brand-navy);
	overflow: hidden;
}

.ini-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.ini-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, #183a89cf 0%, #183a89da 60%, #183a89cf 100%);
}

.ini-hero__inner {
	position: relative;
	z-index: 1;
	padding-block: clamp(60px, 8vw, 100px);
	max-width: 600px;
}

.ini-hero__title {
	font-size: clamp(32px, 4.8vw, 56px);
	color: #fff;
	font-weight: 800;
	margin-bottom: 18px;
	line-height: 1.05;
}

.ini-hero__body {
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	max-width: 520px;
	margin-bottom: 28px;
}

/* =============================================================
   INITIATIVE PAGE — PROBLEM SECTION
   ============================================================= */
.ini-problem {
	background: #fff;
	padding-block: clamp(60px, 8vw, 100px);
}

.ini-problem__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.ini-problem__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--surface-2);
}

.ini-problem__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ini-problem__title {
	font-size: clamp(26px, 3.4vw, 38px);
	margin-bottom: 18px;
	color: var(--brand-navy);
}

.ini-problem__title span {
	color: var(--brand-green);
}

.ini-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--border-1);
}

.stat {
	padding-inline: clamp(16px, 2.5vw, 36px);
}

.stat:first-child {
	padding-left: 0;
}

.stat:last-child {
	padding-right: 0;
}

.stat:not(:first-child) {
	border-left: 1px solid var(--border-1);
}

.stat__value {
	font-family: var(--font-display);
	color: var(--brand-navy);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
	line-height: 1;
}

.stat:first-child .stat__value {
	color: var(--brand-green);
}

.stat__label {
	color: var(--text-3);
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

/* =============================================================
   INITIATIVE PAGE — SOLUTION (feature cards)
   ============================================================= */
.ini-solution {
	background: var(--surface-1);
	padding-block: clamp(60px, 8vw, 100px);
}

.ini-solution__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.ini-solution__title {
	font-size: clamp(28px, 4vw, 40px);
	color: var(--brand-navy);
	margin-bottom: 14px;
}

.ini-solution__title span {
	color: var(--brand-green);
}

.ini-solution__intro {
	color: var(--text-4);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.feature-grid--single {
	grid-template-columns: 1fr;
}

.feature-card {
	background: #fff;
	border: 1px solid var(--brand-green-3);
	border-radius: var(--radius-lg);
	padding: clamp(22px, 2.4vw, 32px);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.feature-card__icon {
	width: 40px;
	height: 40px;
	background: var(--brand-green-3);
	color: #fff;
	border-radius: 10px;
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.feature-card__icon svg {
	width: 19px;
	height: 19px;
}

.feature-card__title {
	font-size: 18px;
	color: var(--text-1);
	margin-bottom: 10px;
}

.feature-card__body {
	color: var(--text-4);
	font-size: 14px;
	margin-bottom: 16px;
}

.feature-card__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.feature-card__list li {
	display: flex;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text-4);
}

.feature-card__list li::before {
	content: "";
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239DB624' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.feature-grid>.feature-card:nth-child(3):last-child {
	grid-column: 1 / -1;
}

/* =============================================================
   INITIATIVE PAGE — PROCESS / HOW IT WORKS
   ============================================================= */
.ini-process {
	background: #fff;
	padding-block: clamp(60px, 8vw, 100px);
}

.ini-process__title {
	text-align: center;
	font-size: clamp(26px, 3.4vw, 36px);
	color: var(--brand-navy);
	margin-bottom: 48px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 3vw, 40px);
	counter-reset: process-step;
	position: relative;
}



.process-step {
	text-align: center;
	counter-increment: process-step;
	position: relative;
	z-index: 1;
}



.process-step__icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 12px;
	position: relative;
}

/* Odd steps (1, 3) — sage green */
.process-step:nth-child(odd) .process-step__icon {
	background: #eaf2dc;
	color: #4a8a3c;
}

/* Even steps (2, 4) — lavender */
.process-step:nth-child(even) .process-step__icon {
	background: #e0dbf5;
	color: var(--brand-navy);
}



/* SVG size — only on the svg element, not its children */
.process-step__icon svg {
	width: 26px;
	height: 26px;
}

/* All SVG children: stroke-only, inheriting the parent's color */
.process-step__icon svg * {
	fill: none;
	stroke: currentColor;
}

/* Step number badge — top-right corner of the icon circle */
.process-step__icon::after {
	content: counter(process-step, decimal-leading-zero);
	position: absolute;
	top: -11px;
	right: -18px;
	width: 35px;
	height: 35px;
	background: var(--brand-navy);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid #fff;
	letter-spacing: 0;
}

.process-step__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-1);
	margin-bottom: 6px;
	margin-top: 20px;
}

.process-step__body {
	color: var(--text-3);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

/* =============================================================
   FOOTER CTA BLOCK
   ============================================================= */
.cta-block {
	background: var(--surface-1);
	padding-block: clamp(40px, 6vw, 80px);
}

.cta-block__panel {
	background: var(--brand-black);
	color: #fff;
	border-radius: var(--radius-xl);
	padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
	text-align: center;
}

.cta-block__title {
	color: #fff;
	font-size: clamp(24px, 3.4vw, 36px);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 14px;
}

.cta-block__title-accent {
	color: var(--brand-yellow);
}

.cta-block__description {
	color: rgba(255, 255, 255, 0.78);
	max-width: 640px;
	margin: 0 auto 28px;
	font-size: 14.5px;
}

.cta-block__buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

/* =============================================================
   STORY SINGLE
   ============================================================= */
.story-hero {
	background: var(--brand-yellow);
	padding-block: clamp(50px, 6vw, 80px);
}

.story-hero__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.story-hero__quote {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.1;
	color: var(--brand-black);
	font-weight: 800;
	margin-bottom: 24px;
	letter-spacing: -0.015em;
}

.story-hero__intro {
	font-size: 15px;
	color: var(--brand-black);
	opacity: 0.85;
	max-width: 540px;
}

.story-hero__media {
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: var(--shadow-lg);
	background: var(--surface-2);
}

.story-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-meta {
	background: var(--brand-yellow);
	padding-bottom: clamp(40px, 5vw, 64px);
}

.story-meta__inner {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	padding-top: 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.story-meta__col {
	color: var(--brand-black);
	padding-inline: clamp(16px, 2.5vw, 36px);
}

.story-meta__col:first-child {
	padding-left: 0;
}

.story-meta__col:last-child {
	padding-right: 0;
}

.story-meta__col:not(:first-child) {
	border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.story-meta__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.7;
	margin-bottom: 8px;
}

.story-meta__value {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--brand-navy);
	font-size: 15px;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.story-meta__note {
	font-size: 13px;
	opacity: 0.7;
	margin: 0;
}

.story-body {
	background: #fff;
	padding-block: clamp(40px, 6vw, 80px);
}

.story-body__inner {
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--text-4);
}

.story-body__inner p {
	margin-bottom: 1em;
}

.story-body__inner h2,
.story-body__inner h3 {
	margin-top: 1.8em;
}

.story-body__inner img {
	border-radius: var(--radius-md);
	margin: 1.5em 0;
}

/* =============================================================
   SITE FOOTER
   ============================================================= */
.site-footer {
	background: #0a0e1a;
	color: rgba(255, 255, 255, 0.7);
	padding-block: clamp(50px, 6vw, 80px) 24px;
	font-size: 14px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1.2fr 1fr 1.2fr;
	gap: clamp(28px, 4vw, 56px);
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.footer-brand .brand-mark,
.footer-brand__logo {
	width: 70px;
	height: 38px;
}

.footer-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.footer-brand__name {
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
}

.footer-brand__est {
	font-size: 10px;
	opacity: 0.6;
	margin-top: 2px;
	letter-spacing: 0.08em;
}

.site-footer__description {
	font-size: 13.5px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.site-footer__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.6);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.site-footer__badge-icon {
	width: 15px;
	height: 15px;
	color: var(--brand-green);
}

.site-footer__heading {
	color: var(--brand-green);
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.site-footer__text {
	font-size: 13.5px;
	line-height: 1.6;
	margin: 0;
}

.site-footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__menu a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13.5px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-footer__menu a::before {
	content: "›";
	font-size: 16px;
}

.site-footer__menu a:hover {
	color: #fff;
	transform: translateX(2px);
}

.site-footer__contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.site-footer__contact li {
	display: grid;
	grid-template-columns: 16px 1fr;
	gap: 12px;
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer__contact li svg {
	width: 16px;
	height: 16px;
	color: var(--brand-mint);
	margin-top: 4px;
}

.site-footer__contact a {
	color: inherit;
}

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

.site-footer__bottom {
	padding-top: 22px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
}

.site-footer__copy,
.site-footer__legal {
	margin: 0;
	font-size: 12px;
	opacity: 0.6;
}

/* =============================================================
   ARCHIVE / STORY LIST
   ============================================================= */
.archive-header {
	padding-block: clamp(50px, 7vw, 90px) clamp(30px, 4vw, 50px);
	background: var(--surface-1);
	text-align: center;
}

.archive-title {
	font-size: clamp(28px, 4vw, 44px);
	color: var(--brand-navy);
	margin-bottom: 12px;
}

.archive-subtitle {
	color: var(--text-2);
	max-width: 620px;
	margin: 0 auto;
}

.story-grid {
	padding-block: clamp(40px, 5vw, 70px);
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 22px;
}

/* =============================================================
   ARCHIVE — FILTERS
   ============================================================= */
.archive-filters {
	background: #fff;
	border-bottom: 1px solid var(--border-1);
	padding-block: 20px;
}

.archive-filters__form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	gap: 16px;
}

.archive-filters__group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.archive-filters__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-2);
}

.archive-filters__select {
	appearance: none;
	-webkit-appearance: none;
	background: var(--surface-1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a3a8f' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
	border: 1.5px solid var(--border-1);
	border-radius: var(--radius-sm);
	padding: 8px 36px 8px 12px;
	font-size: 14px;
	font-family: var(--font-body);
	color: var(--brand-navy);
	cursor: pointer;
	min-width: 180px;
	transition: border-color 0.2s var(--ease);
}

.archive-filters__select:focus {
	outline: none;
	border-color: var(--brand-green);
}

.archive-filters__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 18px;
}

.archive-filters__btn {
	padding: 9px 20px;
	font-size: 14px;
}

.archive-filters__clear {
	font-size: 13px;
	color: var(--text-2);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s;
}

.archive-filters__clear:hover {
	color: var(--brand-navy);
}

.archive-filters__active-label {
	margin-top: 12px;
	font-size: 13px;
	color: var(--text-2);
	text-alignz: center;
}

.archive-empty {
	padding-block: clamp(60px, 8vw, 100px);
	text-align: center;
	color: var(--text-2);
}

.archive-empty h2 {
	font-size: clamp(20px, 2.5vw, 28px);
	color: var(--brand-navy);
	margin-bottom: 12px;
}

/* =============================================================
   PAGE / SINGLE FALLBACK
   ============================================================= */
.page-fallback {
	padding-block: clamp(50px, 7vw, 90px);
}

.page-fallback__title {
	font-size: clamp(28px, 4vw, 44px);
	color: var(--brand-navy);
	margin-bottom: 24px;
}

.archive-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 12px;
	font-weight: 600;
	color: var(--brand-green);
	margin-bottom: 10px;
}

.archive-pagination {
	padding-block: 40px;
	text-align: center;
}

.archive-pagination .nav-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}

.archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--radius-sm);
	background: var(--surface-1);
	color: var(--brand-navy);
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.archive-pagination .page-numbers:hover {
	background: var(--brand-navy);
	color: #fff;
}

.archive-pagination .page-numbers.current {
	background: var(--brand-navy);
	color: #fff;
}

.archive-pagination .page-numbers.dots:hover {
	background: var(--surface-1);
	color: var(--brand-navy);
}

.archive-grid-wrap,
.archive-list-wrap {
	padding-block: clamp(40px, 5vw, 70px);
}

.archive-list {
	display: grid;
	gap: 28px;
}

.archive-list__item {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
	align-items: center;
	padding: 22px;
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.archive-list__media {
	display: block;
	overflow: hidden;
	border-radius: var(--radius-sm);
	aspect-ratio: 16 / 11;
}

.archive-list__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

.archive-list__media:hover img {
	transform: scale(1.04);
}

.archive-list__meta {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--brand-green);
	font-weight: 600;
	margin-bottom: 8px;
}

.archive-list__title {
	font-size: clamp(20px, 2.4vw, 28px);
	color: var(--brand-navy);
	margin-bottom: 10px;
	line-height: 1.25;
}

.archive-list__title a {
	color: inherit;
	text-decoration: none;
}

.archive-list__title a:hover {
	color: var(--brand-green);
}

.archive-list__excerpt {
	color: var(--text-2);
	margin-bottom: 14px;
}

.archive-list__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--brand-green);
	font-weight: 600;
	text-decoration: none;
}

.archive-list__more svg {
	width: 18px;
	height: 18px;
}

.archive-list__more:hover {
	gap: 12px;
}

.archive-empty {
	padding: 50px 0;
	text-align: center;
}

.archive-empty h2 {
	color: var(--brand-navy);
	margin-bottom: 8px;
}

.archive-empty p {
	color: var(--text-2);
	margin-bottom: 22px;
}

.story-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-navy);
	opacity: 0.7;
	margin-bottom: 14px;
}

.story-hero__media-placeholder {
	width: 100%;
	aspect-ratio: 3 / 4;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
	border-radius: var(--radius-md);
}

.section-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 10px;
}

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

/* =============================================================
   PAGE FALLBACK EXTRAS
   ============================================================= */
.page-fallback__header {
	margin-bottom: 28px;
}

.page-fallback__meta {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brand-green);
	margin-bottom: 10px;
}

.page-fallback__featured {
	margin-bottom: 30px;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.page-fallback__featured img {
	width: 100%;
	height: auto;
	display: block;
}

.page-fallback__content {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--text-1);
}

.page-fallback__content>*+* {
	margin-top: 1em;
}

.page-fallback__content h2,
.page-fallback__content h3 {
	margin-top: 1.8em;
	color: var(--brand-navy);
}

.page-fallback__content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
}

.page-fallback__footer {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--surface-2);
}

.page-fallback__terms {
	font-size: 14px;
	color: var(--text-2);
	margin-top: 6px;
}

/* =============================================================
   404
   ============================================================= */
.error-404 {
	padding-block: clamp(60px, 10vw, 130px);
	background: var(--surface-1);
}

.error-404__inner {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.error-404__code {
	font-size: clamp(80px, 16vw, 160px);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--brand-navy);
	opacity: 0.18;
	line-height: 1;
	margin-bottom: 0;
}

.error-404__title {
	font-size: clamp(28px, 4vw, 42px);
	color: var(--brand-navy);
	margin-bottom: 14px;
	margin-top: -10px;
}

.error-404__text {
	color: var(--text-2);
	margin-bottom: 28px;
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 32px;
}

.error-404__search {
	max-width: 420px;
	margin: 0 auto;
}

/* =============================================================
   SEARCH FORM
   ============================================================= */
.search-form {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	padding: 4px;
}

.search-form__field {
	flex: 1;
	border: 0;
	background: transparent;
	font: inherit;
	padding: 10px 16px;
	color: var(--text-1);
	outline: none;
	min-width: 0;
}

.search-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: var(--brand-navy);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s var(--ease);
	flex-shrink: 0;
}

.search-form__submit:hover {
	background: var(--brand-green);
}

.search-form__submit svg {
	width: 18px;
	height: 18px;
}

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

/* =============================================================
   COMMENTS
   ============================================================= */
.comments-area {
	max-width: 760px;
	margin: 50px auto 0;
}

.comments-title {
	font-size: clamp(20px, 2.4vw, 26px);
	color: var(--brand-navy);
	margin-bottom: 22px;
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.comment-list .comment {
	padding: 18px 0;
	border-bottom: 1px solid var(--surface-2);
}

.comment-list .children {
	list-style: none;
	padding-left: 28px;
}

.comment-author {
	font-weight: 600;
	color: var(--brand-navy);
}

.comment-meta {
	font-size: 12px;
	color: var(--text-2);
	margin-bottom: 8px;
}

.comment-respond {
	background: var(--surface-1);
	padding: 24px;
	border-radius: var(--radius-md);
}

.comment-respond label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--surface-2);
	border-radius: var(--radius-sm);
	background: #fff;
	font: inherit;
	margin-bottom: 14px;
}

.comment-respond textarea {
	min-height: 120px;
	resize: vertical;
}

.comment-respond .submit {
	display: inline-flex;
	align-items: center;
	background: var(--brand-navy);
	color: #fff;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
}

.comment-respond .submit:hover {
	background: var(--brand-green);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
	.hp-pillars__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.site-footer__grid {
		grid-template-columns: 1.4fr 1fr;
	}

	.archive-list__item {
		grid-template-columns: 220px 1fr;
		gap: 20px;
		padding: 18px;
	}
}

@media (max-width: 860px) {

	/* Revert to simple flex for the visible mobile header row */
	.site-header__inner {
		display: flex;
		grid-template-columns: none;
	}

	.site-nav {
		position: static;
		justify-self: unset;
	}

	.site-branding {
		margin-right: auto;
	}

	.nav-toggle {
		display: flex;
		order: 3;
		margin-left: 12px;
	}

	.site-header__actions {
		order: 2;
	}

	.site-header__cta {
		display: none;
	}

	.site-nav__panel {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: calc(100vh - 100%);
		background: #fff;
		padding: 24px var(--gutter) 40px;
		overflow-y: auto;
		overscroll-behavior: contain;
		transform: translateX(100%);
		transition: transform 0.3s var(--ease);
		box-shadow: var(--shadow-lg);
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	html.nav-open,
	body.nav-open {
		overflow: hidden;
		height: 100vh;
	}

	body.nav-open .site-nav__panel {
		transform: translateX(0);
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.nav-menu>li {
		width: 100%;
	}

	.nav-menu>li>a {
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding: 14px 16px;
		font-size: 16px;
		border-radius: 10px;
	}

	.nav-menu>li>a:hover {
		background: transparent;
	}

	.nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		background: var(--surface-1);
		margin: 0;
		padding: 0 6px;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s var(--ease), padding 0.25s var(--ease), margin 0.25s var(--ease);
	}

	.nav-menu>li.is-open>.sub-menu {
		max-height: 400px;
		padding: 6px;
		margin: 4px 0 8px;
	}

	.nav-menu .sub-menu li a {
		font-size: 15px;
		padding: 12px 14px;
	}

	.site-nav__cta {
		display: flex;
		margin-top: 10px;
	}

	.site-nav__cta .btn {
		width: 100%;
		justify-content: center;
	}

	.hp-hero__grid,
	.hp-intro__grid,
	.hp-acc__grid,
	.ini-problem__grid,
	.story-hero__grid {
		grid-template-columns: 1fr;
	}

	.hp-hero__media {
		order: 3;
		grid-column: 1;
		grid-row: auto;
	}

	.hp-hero__text {
		order: 1;
	}

	.hp-hero__buttons {
		order: 4;
	}

	.story-hero__media {
		order: -1;
		max-width: 360px;
		margin: 0 auto;
	}

	.program-row {
		grid-template-columns: 1fr;
	}

	.program-row--reverse .program-row__media,
	.program-row--reverse .program-row__text {
		order: initial;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.feature-grid>.feature-card:nth-child(3):last-child {
		grid-column: 1;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.ini-stats {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.ini-stats .stat {
		padding-inline: 0;
	}

	.ini-stats .stat:not(:first-child) {
		border-left: none;
		border-top: 1px solid var(--border-1);
		padding-top: 20px;
	}

	.story-meta__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.story-meta__inner .story-meta__col {
		padding-inline: 0;
	}

	.story-meta__inner .story-meta__col:not(:first-child) {
		border-left: none;
		border-top: 1px solid rgba(0, 0, 0, 0.15);
		padding-top: 20px;
	}

	.archive-list__item {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.archive-list__media {
		aspect-ratio: 16 / 9;
	}

	.error-404__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.error-404__actions .btn {
		justify-content: center;
	}

	.comment-list .children {
		padding-left: 14px;
	}
}

@media (max-width: 560px) {

	.hp-hero__title,
	.ini-hero__title {
		font-size: clamp(28px, 8vw, 40px);
	}

	.section-title {
		font-size: clamp(24px, 7vw, 32px);
	}

	.impact-carousel__track {
		grid-auto-columns: 88%;
		gap: 12px;
	}

	.impact-card__content {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.hp-pillars__grid {
		grid-template-columns: 1fr;
	}

	.process-grid {
		grid-template-columns: 1fr;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.hp-hero__buttons {
		flex-direction: column;
	}

	.hp-hero__buttons .btn {
		width: 100%;
		justify-content: center;
	}

	.cta-block__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-block__buttons .btn {
		width: 100%;
		justify-content: center;
	}

	.site-header__inner {
		gap: 12px;
	}

	.site-header__partner img {
		width: 44px;
		height: 44px;
	}

	.site-branding__name {
		font-size: 12px;
	}

	.site-branding__desc {
		font-size: 10px;
	}
}

/* =============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================= */
.section-title,
.program-row,
.pillar-card,
.feature-card,
.process-step,
.stat,
.acc-item {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.section-title.is-revealed,
.program-row.is-revealed,
.pillar-card.is-revealed,
.feature-card.is-revealed,
.process-step.is-revealed,
.stat.is-revealed,
.acc-item.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered load delays for grid lists */
.pillar-card:nth-child(2) {
	transition-delay: 0.1s;
}

.pillar-card:nth-child(3) {
	transition-delay: 0.2s;
}

.pillar-card:nth-child(4) {
	transition-delay: 0.3s;
}

.feature-card:nth-child(2) {
	transition-delay: 0.12s;
}

.feature-card:nth-child(3) {
	transition-delay: 0.24s;
}

.stat:nth-child(2) {
	transition-delay: 0.1s;
}

.stat:nth-child(3) {
	transition-delay: 0.2s;
}

.process-step:nth-child(2) {
	transition-delay: 0.12s;
}

.process-step:nth-child(3) {
	transition-delay: 0.24s;
}

.process-step:nth-child(4) {
	transition-delay: 0.36s;
}

.acc-item:nth-child(2) {
	transition-delay: 0.1s;
}

.acc-item:nth-child(3) {
	transition-delay: 0.2s;
}

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

/* Print */
@media print {

	.site-header,
	.site-footer,
	.cta-block,
	.impact-stories,
	.nav-toggle {
		display: none !important;
	}

	body {
		color: #000;
		background: #fff;
	}
}