/* =========================================================
   One World AGI — Theme styles
   Palette: deep forest green + navy, vibrant green, warm gold
   ========================================================= */

:root {
	--green-950: #0a2e22;
	--green-900: #0e3b2c;
	--green-800: #14503b;
	--green: #1b8f4d;
	--green-soft: #e7f4ec;
	--navy: #10243e;
	--gold: #f6b93b;
	--gold-dark: #db9d1c;
	--red: #e2574c;
	--cream: #faf6ed;
	--white: #ffffff;
	--ink: #1c2b24;
	--muted: #5c6b63;
	--line: #e4e0d3;
	--radius: 18px;
	--radius-lg: 26px;
	--shadow: 0 10px 30px rgba(16, 36, 30, 0.08);
	--shadow-lg: 0 18px 50px rgba(16, 36, 30, 0.14);
	--font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
	--font-body: 'Nunito Sans', system-ui, sans-serif;
	--container: 1200px;
}

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	line-height: 1.2;
	color: var(--green-900);
	margin: 0 0 0.6em;
}

p {
	margin: 0 0 1em;
}

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

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

ul, ol {
	padding-left: 1.2em;
}

.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 !important;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--gold);
	color: var(--navy);
	padding: 0.6em 1em;
	z-index: 999;
}

.skip-link:focus {
	left: 8px;
	top: 8px;
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
}

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}

.container--narrow {
	max-width: 820px;
}

.center {
	text-align: center;
}

.section {
	padding: 84px 0;
}

.section--cream {
	background: var(--cream);
}

.section-gap {
	margin-top: 48px;
}

/* ---------- Icons ---------- */
.icon {
	display: inline-flex;
	width: 1.15em;
	height: 1.15em;
	vertical-align: -0.2em;
	flex: none;
}

.icon svg {
	width: 100%;
	height: 100%;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.98rem;
	padding: 0.85em 1.7em;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
	text-decoration: none;
	line-height: 1.2;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.btn--gold {
	background: var(--gold);
	color: var(--navy);
}

.btn--gold:hover {
	background: var(--gold-dark);
	color: var(--navy);
}

.btn--green {
	background: var(--green);
	color: var(--white);
}

.btn--green:hover {
	background: var(--green-800);
	color: var(--white);
}

.btn--ghost {
	background: transparent;
	color: var(--green-900);
	border-color: var(--green);
}

.btn--ghost:hover {
	background: var(--green-soft);
	color: var(--green-900);
}

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

.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
}

.btn--sm {
	padding: 0.55em 1.2em;
	font-size: 0.9rem;
}

.btn--lg {
	padding: 1em 2.1em;
	font-size: 1.05rem;
}

.btn--block {
	display: flex;
	width: 100%;
	margin-top: 10px;
}

.text-link {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--green);
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
}

.text-link:hover {
	color: var(--green-800);
	text-decoration: underline;
}

/* ---------- Topbar ---------- */
.topbar {
	background: var(--green-950);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
}

.topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	min-height: 40px;
	flex-wrap: wrap;
}

.topbar__contact {
	display: flex;
	gap: 20px;
}

.topbar a {
	color: rgba(255, 255, 255, 0.85);
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
}

.topbar a:hover {
	color: var(--gold);
}

.topbar__right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.topbar__tagline {
	color: var(--gold);
	font-weight: 600;
	letter-spacing: 0.06em;
}

.topbar__social {
	display: flex;
	gap: 4px;
}

.social-link {
	display: inline-flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.85);
}

.social-link svg {
	width: 15px;
	height: 15px;
}

.social-link:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--gold);
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.2s ease;
}

.site-header.is-stuck {
	box-shadow: var(--shadow);
}

/* Keep the sticky header below the WP admin bar when logged in. */
.admin-bar .site-header {
	top: 32px;
}

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

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
}

.site-brand__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--green-900);
}

.brand-mark {
	width: 46px;
	height: 46px;
	color: var(--green);
	flex: none;
}

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

.site-brand__name {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: 0.01em;
	color: var(--green-900);
	white-space: nowrap;
}

.site-brand__name em {
	font-style: normal;
	color: var(--green);
}

.site-brand__tag {
	font-size: 0.63rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
	white-space: nowrap;
}

.site-brand__link.is-light .site-brand__name,
.site-brand__link.is-light .site-brand__name em {
	color: var(--white);
}

.custom-logo {
	max-height: 60px;
	width: auto;
}

/* Nav */
.site-nav__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.site-nav__list li {
	position: relative;
}

.site-nav__list a {
	display: block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.94rem;
	color: var(--ink);
	padding: 0.6em 0.75em;
	border-radius: 10px;
	white-space: nowrap;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a,
.site-nav__list .current-menu-ancestor > a {
	color: var(--green);
	background: var(--green-soft);
}

.site-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: var(--white);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	list-style: none;
	margin: 6px 0 0;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.2s ease;
	z-index: 50;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-search-toggle {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--green-900);
	background: var(--green-soft);
}

.header-search-toggle:hover {
	background: var(--gold);
	color: var(--navy);
}

.header-search {
	border-top: 1px solid var(--line);
	background: var(--white);
	padding: 14px 0;
}

.header-search__form {
	display: flex;
	gap: 10px;
}

.header-search__form input[type='search'] {
	flex: 1;
	padding: 0.7em 1.1em;
	border: 2px solid var(--line);
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 1rem;
}

.header-search__form input[type='search']:focus {
	outline: none;
	border-color: var(--green);
}

.search-page-form {
	max-width: 560px;
	margin: 0 auto 48px;
}

/* Hamburger */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: var(--green-900);
	border: 0;
	border-radius: 12px;
	cursor: pointer;
	padding: 10px;
}

.nav-toggle__bar {
	display: block;
	height: 2.5px;
	width: 100%;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

/* ---------- Hero ---------- */
.hero {
	position: relative;
	background-size: cover;
	background-position: center;
	color: var(--white);
	overflow: hidden;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(10, 46, 34, 0.94) 20%, rgba(10, 46, 34, 0.72) 55%, rgba(16, 36, 62, 0.55) 100%);
}

.hero__inner {
	position: relative;
	padding: 110px 24px 90px;
	max-width: var(--container);
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	background: rgba(246, 185, 59, 0.15);
	border: 1px solid rgba(246, 185, 59, 0.45);
	color: var(--gold);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	padding: 0.45em 1.1em;
	border-radius: 999px;
	margin-bottom: 22px;
}

.hero__title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 800;
	color: var(--white);
	max-width: 15em;
	margin-bottom: 0.4em;
}

.hero__highlight {
	position: relative;
	color: var(--gold);
	white-space: nowrap;
}


.hero__text {
	max-width: 560px;
	font-size: 1.12rem;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 30px;
}

.hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 46px;
}

.hero__stats {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	padding-top: 26px;
	max-width: 640px;
}

.hero-stat strong {
	display: block;
	font-family: var(--font-head);
	font-size: 2rem;
	font-weight: 800;
	color: var(--gold);
}

.hero-stat span {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

/* ---------- Quick actions ---------- */
.quick-actions {
	position: relative;
	z-index: 5;
	margin-top: -46px;
	padding-bottom: 10px;
}

.quick-actions__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.action-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--ink);
	border-bottom: 4px solid transparent;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.action-card:hover {
	transform: translateY(-5px);
	border-bottom-color: var(--gold);
	color: var(--ink);
}

.action-card__icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	margin-bottom: 8px;
}

.action-card__icon .icon {
	width: 26px;
	height: 26px;
}

.action-card__icon.is-green { background: var(--green-soft); color: var(--green); }
.action-card__icon.is-gold { background: #fdf3dc; color: var(--gold-dark); }
.action-card__icon.is-navy { background: #e8edf5; color: var(--navy); }
.action-card__icon.is-red { background: #fdeae8; color: var(--red); }

.action-card__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.08rem;
	color: var(--green-900);
}

.action-card__text {
	font-size: 0.92rem;
	color: var(--muted);
}

/* ---------- Section headers ---------- */
.section-head {
	max-width: 640px;
	margin-bottom: 44px;
}

.section-head.is-center {
	margin-inline: auto;
	text-align: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	color: var(--green);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.86rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 12px;
}

.eyebrow .icon {
	color: var(--gold-dark);
}

.section-title {
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	font-weight: 800;
	margin-bottom: 0.35em;
}

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

.section-lead {
	color: var(--muted);
	font-size: 1.05rem;
}

/* ---------- Split layout ---------- */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.split__media {
	position: relative;
}

.split__media > img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	width: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3.4;
}

.split__media-inset {
	position: absolute;
	right: -18px;
	bottom: -30px;
	width: 46%;
	border-radius: var(--radius);
	border: 6px solid var(--white);
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.split__badge {
	position: absolute;
	left: -14px;
	top: 24px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--green-900);
	color: var(--white);
	border-radius: 14px;
	padding: 12px 18px;
	max-width: 270px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.85rem;
	line-height: 1.35;
	box-shadow: var(--shadow-lg);
}

.split__badge .icon {
	color: var(--gold);
	width: 1.6em;
	height: 1.6em;
}

.split__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 24px;
}

/* ---------- Check list ---------- */
.check-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	display: grid;
	gap: 14px;
}

.check-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.check-list .icon {
	color: var(--white);
	background: var(--green);
	border-radius: 50%;
	width: 22px;
	height: 22px;
	padding: 4px;
	margin-top: 3px;
}

/* ---------- Pillars ---------- */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-bottom: 40px;
}

.pillar-card {
	position: relative;
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 34px 26px 28px;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.pillar-card__num {
	position: absolute;
	top: 14px;
	right: 20px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 2.4rem;
	color: var(--green-soft);
}

.pillar-card__icon {
	display: inline-flex;
	width: 60px;
	height: 60px;
	align-items: center;
	justify-content: center;
	background: var(--green-soft);
	color: var(--green);
	border-radius: 50% 50% 50% 12px;
	margin-bottom: 16px;
}

.pillar-card__icon .icon {
	width: 28px;
	height: 28px;
}

.pillar-card__title {
	font-size: 1.15rem;
	font-weight: 700;
}

.pillar-card p {
	font-size: 0.95rem;
	color: var(--muted);
	margin: 0;
}

/* ---------- Generic card grids ---------- */
.card-grid {
	display: grid;
	gap: 24px;
	margin-bottom: 36px;
}

.card-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.chip {
	display: inline-block;
	background: var(--green-soft);
	color: var(--green-800);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.78rem;
	padding: 0.3em 0.95em;
	border-radius: 999px;
	margin-bottom: 6px;
}

/* ---------- Event cards ---------- */
.event-card,
.post-card,
.story-card,
.info-card,
.involve-card,
.donate-card,
.commodity-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover,
.post-card:hover,
.story-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.event-card__media,
.post-card__media {
	position: relative;
	display: block;
}

.event-card__media img,
.post-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.date-badge {
	position: absolute;
	left: 16px;
	top: 16px;
	background: var(--gold);
	color: var(--navy);
	border-radius: 12px;
	text-align: center;
	padding: 8px 12px;
	line-height: 1.1;
	font-family: var(--font-head);
	box-shadow: var(--shadow);
}

.date-badge__day {
	display: block;
	font-size: 1.3rem;
	font-weight: 800;
}

.date-badge__month {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.event-card__status {
	position: absolute;
	right: 14px;
	bottom: 14px;
	font-family: var(--font-head);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.35em 1em;
	border-radius: 999px;
}

.event-card__status.is-upcoming {
	background: var(--green);
	color: var(--white);
}

.event-card__status.is-past {
	background: rgba(16, 36, 62, 0.75);
	color: var(--white);
}

.page-hero .event-card__status {
	position: static;
	display: inline-block;
	margin-bottom: 12px;
}

.event-card__body,
.post-card__body,
.story-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.event-card__title,
.post-card__title {
	font-size: 1.18rem;
	margin: 0;
}

.event-card__title a,
.post-card__title a,
.story-card h3 a {
	color: var(--green-900);
}

.event-card__title a:hover,
.post-card__title a:hover,
.story-card h3 a:hover {
	color: var(--green);
}

.event-card__meta,
.post-card__meta,
.story-card__meta {
	font-size: 0.88rem;
	color: var(--muted);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.4em;
	flex-wrap: wrap;
}

.event-card__body > p:not(.event-card__meta),
.post-card__body > p:not(.post-card__meta) {
	font-size: 0.95rem;
	color: var(--muted);
	margin: 0;
	flex: 1;
}

.event-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 10px;
}

/* ---------- Impact ---------- */
.impact-band {
	position: relative;
	background-size: cover;
	background-position: center;
	color: var(--white);
	padding: 90px 0;
}

.impact-band__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(16, 36, 62, 0.94), rgba(10, 46, 34, 0.9));
}

.impact-band__inner {
	position: relative;
}

.impact-band .section-title,
.impact-band .eyebrow {
	color: var(--white);
}

.impact-band .eyebrow .icon {
	color: var(--gold);
}

.impact-band__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 30px 0 44px;
}

.impact-stat {
	text-align: center;
	padding: 28px 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
}

.impact-stat strong {
	display: block;
	font-family: var(--font-head);
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--gold);
	line-height: 1.1;
}

.impact-stat span {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
}

.impact-stat.is-card {
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.impact-stat.is-card strong {
	color: var(--green);
}

.impact-stat.is-card span {
	color: var(--muted);
}

.impact-dash {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 44px;
}

.coverage {
	background: var(--green-soft);
	border-radius: var(--radius-lg);
	padding: 30px 34px;
}

.coverage__title {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 1.15rem;
	margin-bottom: 14px;
}

.coverage__title .icon {
	color: var(--green);
}

.coverage__list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 34px;
}

.coverage__state strong {
	display: block;
	font-family: var(--font-head);
	color: var(--green-900);
}

.coverage__state span {
	font-size: 0.9rem;
	color: var(--muted);
}

/* ---------- Stories ---------- */
.story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}

.story-card {
	flex-direction: row;
}

.story-card__media {
	flex: 0 0 42%;
}

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

.story-card h3 {
	font-size: 1.2rem;
	margin-bottom: 2px;
}

/* ---------- Mandate / MV ---------- */
.mandate-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}

.mandate-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	padding: 38px 34px;
}

.mandate-card__icon {
	display: inline-flex;
	width: 62px;
	height: 62px;
	align-items: center;
	justify-content: center;
	border-radius: 50% 50% 50% 12px;
	margin-bottom: 18px;
}

.mandate-card__icon .icon {
	width: 30px;
	height: 30px;
}

.mandate-card__icon.is-green { background: var(--green-soft); color: var(--green); }
.mandate-card__icon.is-gold { background: #fdf3dc; color: var(--gold-dark); }

.mv-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 26px;
	align-items: stretch;
}

.mv-card {
	border-radius: var(--radius-lg);
	padding: 40px 36px;
}

.mv-card--mission {
	background: var(--cream);
	border: 1px solid var(--line);
}

.mv-card--vision {
	background: var(--green-900);
	color: rgba(255, 255, 255, 0.88);
}

.mv-card--vision h3,
.mv-card--vision h4 {
	color: var(--white);
}

.mv-card__intro {
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--green-900);
	margin-bottom: 6px;
}

.mv-card__big {
	font-family: var(--font-head);
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1.4;
}

.value-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mv-card--vision .chip {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
}

/* ---------- Timeline ---------- */
.timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	counter-reset: step;
}

.timeline__item {
	position: relative;
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	padding: 30px 24px 24px;
}

.timeline__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 24px;
	width: 44px;
	height: 5px;
	background: var(--gold);
	border-radius: 0 0 4px 4px;
}

.timeline__item h4 {
	font-size: 1.02rem;
	color: var(--green-900);
}

.timeline__item p {
	font-size: 0.93rem;
	color: var(--muted);
	margin: 0;
}

.timeline--compact {
	grid-template-columns: 1fr;
	gap: 16px;
}

/* ---------- Info cards ---------- */
.info-card {
	padding: 30px 26px;
}

.info-card h3 {
	font-size: 1.08rem;
	margin-bottom: 2px;
}

.info-card__meta {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--gold-dark);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.info-card p:last-child {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0;
}

.info-card.is-center {
	align-items: center;
	text-align: center;
}

.info-card.is-center .pillar-card__icon {
	margin-inline: auto;
}

/* ---------- Involve cards ---------- */
.involve-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}

.involve-card {
	padding: 40px 36px;
	align-items: flex-start;
}

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

.involve-card__icon {
	display: inline-flex;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	border-radius: 50% 50% 50% 14px;
	margin-bottom: 18px;
}

.involve-card__icon .icon {
	width: 30px;
	height: 30px;
}

.involve-card__icon.is-green { background: var(--green-soft); color: var(--green); }
.involve-card__icon.is-gold { background: #fdf3dc; color: var(--gold-dark); }
.involve-card__icon.is-navy { background: #e8edf5; color: var(--navy); }
.involve-card__icon.is-red { background: #fdeae8; color: var(--red); }

.involve-card h2 {
	font-size: 1.4rem;
}

.involve-card p {
	color: var(--muted);
	flex: 1;
}

/* ---------- Page hero ---------- */
.page-hero {
	position: relative;
	background: linear-gradient(115deg, var(--green-950), var(--green-800) 65%, var(--navy));
	color: var(--white);
	padding: 72px 0 64px;
	overflow: hidden;
}

.page-hero__blob {
	position: absolute;
	right: -120px;
	top: -120px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(246, 185, 59, 0.28), transparent 65%);
	pointer-events: none;
}

.page-hero__title {
	color: var(--white);
	font-size: clamp(2rem, 4.4vw, 3rem);
	font-weight: 800;
	margin: 8px 0 6px;
	max-width: 18em;
}

.page-hero__subtitle {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.08rem;
	max-width: 620px;
	margin: 0;
}

.breadcrumb {
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.65);
	flex-wrap: wrap;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
	color: var(--gold);
}

/* ---------- Forms ---------- */
.form-layout {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 60px;
	align-items: start;
}

.form-layout__form {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 40px 38px;
}

.form-title {
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.owa-form .field {
	margin: 0 0 18px;
}

.owa-form label,
.owa-form legend {
	display: block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--green-900);
	margin-bottom: 6px;
}

.req {
	color: var(--red);
}

.owa-form input[type='text'],
.owa-form input[type='email'],
.owa-form input[type='tel'],
.owa-form select,
.owa-form textarea {
	width: 100%;
	padding: 0.75em 1em;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-family: var(--font-body);
	font-size: 1rem;
	background: var(--white);
	color: var(--ink);
	transition: border-color 0.2s ease;
}

.owa-form input:focus,
.owa-form select:focus,
.owa-form textarea:focus {
	outline: none;
	border-color: var(--green);
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.fieldset {
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 14px 16px 10px;
	margin: 0 0 18px;
}

.fieldset legend {
	padding: 0 8px;
	margin: 0;
}

.checkbox {
	display: flex !important;
	align-items: center;
	gap: 8px;
	font-weight: 400 !important;
	font-family: var(--font-body) !important;
	margin-bottom: 8px !important;
}

.checkbox input {
	accent-color: var(--green);
	width: 17px;
	height: 17px;
}

.owa-hp {
	position: absolute !important;
	left: -9999px !important;
}

.form-notice {
	border-radius: 12px;
	padding: 14px 18px;
	margin-bottom: 20px;
	font-size: 0.97rem;
	background: var(--cream);
	border: 1px solid var(--line);
}

.form-notice.is-success {
	background: var(--green-soft);
	border-color: var(--green);
	color: var(--green-800);
}

.form-notice.is-error {
	background: #fdeae8;
	border-color: var(--red);
	color: #a33027;
}

.aside-note {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--cream);
	border-radius: var(--radius);
	padding: 18px 20px;
	margin-top: 22px;
}

.aside-note .icon {
	color: var(--green);
	width: 1.5em;
	height: 1.5em;
	margin-top: 2px;
}

.aside-note p {
	margin: 0;
	font-size: 0.93rem;
	color: var(--muted);
}

.aside-subhead {
	font-size: 1.1rem;
	margin-top: 28px;
}

/* ---------- FAQ ---------- */
.faq__item {
	border: 1px solid var(--line);
	border-radius: 14px;
	margin-bottom: 10px;
	background: var(--white);
	overflow: hidden;
}

.faq__item summary {
	cursor: pointer;
	font-family: var(--font-head);
	font-weight: 600;
	padding: 14px 18px;
	color: var(--green-900);
	list-style: none;
	position: relative;
	padding-right: 40px;
}

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

.faq__item summary::after {
	content: '+';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.3rem;
	color: var(--green);
}

.faq__item[open] summary::after {
	content: '–';
}

.faq__item p {
	padding: 0 18px 16px;
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
}

/* ---------- Donate ---------- */
.donate-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 26px;
	max-width: 1020px;
	margin-inline: auto;
}

.donate-card {
	padding: 34px 30px;
}

.donate-card h3 {
	font-size: 1.25rem;
}

.donate-card p {
	color: var(--muted);
}

.donate-card__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
}

.donate-card__note {
	font-size: 0.88rem;
	background: var(--cream);
	padding: 12px 14px;
	border-radius: 10px;
	margin-top: auto;
}

.donate-card--bank {
	background: var(--green-900);
}

.donate-card--bank h3 {
	color: var(--white);
}

.donate-card--bank p {
	color: rgba(255, 255, 255, 0.8);
}

.donate-card--bank a {
	color: var(--gold);
}

.donate-card--bank .donate-card__note {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.8);
}

.bank-details {
	margin: 0 0 14px;
}

.bank-details dt {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold);
	margin-top: 12px;
}

.bank-details dd {
	margin: 2px 0 0;
	color: var(--white);
	font-size: 1.05rem;
}

.amount-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 16px 0 22px;
}

.amount {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1rem;
	padding: 0.7em 0.4em;
	border-radius: 12px;
	border: 2px solid var(--line);
	background: var(--white);
	color: var(--green-900);
	cursor: pointer;
	transition: all 0.15s ease;
}

.amount:hover {
	border-color: var(--green);
}

.amount.is-active {
	background: var(--green);
	border-color: var(--green);
	color: var(--white);
}

.amount-custom {
	grid-column: 1 / -1;
	padding: 0.7em 1em;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-family: var(--font-body);
	font-size: 1rem;
}

.amount-custom:focus {
	outline: none;
	border-color: var(--green);
}

.commodity-card {
	padding: 30px 24px;
	align-items: center;
	text-align: center;
}

.commodity-card .pillar-card__icon {
	margin-inline: auto;
}

.commodity-card h3 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.commodity-card p {
	color: var(--muted);
	font-size: 0.92rem;
	margin: 0;
}

/* ---------- Gallery ---------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.gallery-grid figure {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
	transform: scale(1.04);
}

/* ---------- Event single ---------- */
.event-layout,
.article-layout {
	display: grid;
	grid-template-columns: 1.6fr 0.85fr;
	gap: 50px;
	align-items: start;
}

.event-hero-img {
	margin: 0 0 28px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.event-facts {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px 26px;
	margin-bottom: 24px;
}

.event-facts h3 {
	font-size: 1.15rem;
	margin-bottom: 16px;
}

.event-facts ul {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	gap: 14px;
}

.event-facts li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.event-facts li .icon {
	color: var(--green);
	width: 1.35em;
	height: 1.35em;
	margin-top: 3px;
}

.event-facts li strong {
	display: block;
	font-family: var(--font-head);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--muted);
}

.mini-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.mini-list a {
	font-family: var(--font-head);
	font-weight: 600;
	color: var(--green-900);
	display: block;
	line-height: 1.35;
}

.mini-list a:hover {
	color: var(--green);
}

.mini-list span {
	font-size: 0.82rem;
	color: var(--muted);
}

.cta-banner {
	background: linear-gradient(115deg, var(--green-900), var(--green-800));
	color: var(--white);
	border-radius: var(--radius-lg);
	padding: 44px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.cta-banner h2 {
	color: var(--white);
	margin-bottom: 4px;
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

/* ---------- Page content typographic defaults ---------- */
.page-content h2 {
	margin-top: 1.4em;
}

.page-content img {
	border-radius: var(--radius);
}

.page-content blockquote {
	border-left: 4px solid var(--gold);
	background: var(--cream);
	margin: 1.5em 0;
	padding: 1em 1.4em;
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
}

.article-tags {
	margin-top: 24px;
}

/* ---------- Pagination ---------- */
.pagination-wrap {
	display: flex;
	justify-content: center;
}

.pagination-wrap .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 2px solid var(--line);
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--green-900);
	padding: 0 12px;
}

.pagination-wrap .page-numbers.current {
	background: var(--green);
	border-color: var(--green);
	color: var(--white);
}

.pagination-wrap .page-numbers:hover:not(.current) {
	border-color: var(--green);
}

/* ---------- 404 ---------- */
.notfound-code {
	font-family: var(--font-head);
	font-size: 6rem;
	font-weight: 800;
	color: var(--green-soft);
	line-height: 1;
	margin: 0 0 10px;
}

.center-actions {
	justify-content: center;
	margin-top: 26px;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--green-950);
	color: rgba(255, 255, 255, 0.78);
	margin-top: 80px;
}

.footer-cta {
	background: linear-gradient(115deg, var(--green), var(--green-800));
	padding: 46px 0;
}

.footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.footer-cta__title {
	color: var(--white);
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	margin-bottom: 4px;
}

.footer-cta__text {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.footer-cta__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
	gap: 44px;
	padding-top: 64px;
	padding-bottom: 48px;
}

.footer-col--about p {
	font-size: 0.95rem;
	margin-top: 16px;
}

.footer-heading {
	color: var(--white);
	font-size: 1.02rem;
	margin-bottom: 18px;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
}

.footer-links a:hover {
	color: var(--gold);
}

.footer-contact {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.95rem;
	margin-bottom: 10px;
}

.footer-contact .icon {
	color: var(--gold);
	margin-top: 3px;
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
	color: var(--gold);
}

.footer-social {
	display: flex;
	gap: 6px;
	margin-top: 16px;
}

.newsletter-form__row {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}

.newsletter-form input[type='email'] {
	flex: 1;
	min-width: 0;
	padding: 0.65em 1em;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	font-family: var(--font-body);
}

.newsletter-form input[type='email']::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type='email']:focus {
	outline: none;
	border-color: var(--gold);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0;
	font-size: 0.88rem;
}

.footer-bottom__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom__menu {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.footer-bottom__menu a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-bottom__menu a:hover {
	color: var(--gold);
}

/* ---------- Comments (light styling) ---------- */
.comments-area {
	margin-top: 48px;
	border-top: 1px solid var(--line);
	padding-top: 32px;
}

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

.comment-list .comment-body {
	background: var(--cream);
	border-radius: var(--radius);
	padding: 18px 20px;
	margin-bottom: 16px;
}

.comment-form input[type='text'],
.comment-form input[type='email'],
.comment-form input[type='url'],
.comment-form textarea {
	width: 100%;
	padding: 0.7em 1em;
	border: 2px solid var(--line);
	border-radius: 12px;
	font-family: var(--font-body);
}

.comment-form .submit {
	background: var(--green);
	color: var(--white);
	border: 0;
	border-radius: 999px;
	padding: 0.8em 1.8em;
	font-family: var(--font-head);
	font-weight: 700;
	cursor: pointer;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1280px) {
	.site-brand__tag {
		display: none;
	}

	.site-header__inner {
		gap: 14px;
	}

	.site-nav__list {
		gap: 0;
	}
}

@media (max-width: 1100px) {
	.pillar-grid,
	.card-grid--4,
	.impact-band__grid,
	.impact-dash,
	.timeline {
		grid-template-columns: repeat(2, 1fr);
	}

	.card-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.quick-actions__grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 1100px) {
	.site-nav {
		position: fixed;
		inset: 0;
		top: 0;
		background: var(--green-950);
		padding: 100px 30px 40px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 90;
		overflow-y: auto;
	}

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

	.site-nav__list {
		flex-direction: column;
		gap: 6px;
	}

	.site-nav__list a {
		color: var(--white);
		font-size: 1.15rem;
		padding: 0.7em 0.4em;
	}

	.site-nav__list a:hover,
	.site-nav__list .current-menu-item > a {
		background: rgba(255, 255, 255, 0.08);
		color: var(--gold);
	}

	.site-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		box-shadow: none;
		padding-left: 18px;
	}

	.site-nav .sub-menu a {
		font-size: 1rem;
		color: rgba(255, 255, 255, 0.75);
	}

	.nav-toggle {
		display: flex;
		z-index: 95;
	}

	.split,
	.form-layout,
	.event-layout,
	.article-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.split__media {
		order: -1;
	}

	.mv-grid,
	.mandate-grid,
	.involve-grid,
	.story-grid {
		grid-template-columns: 1fr;
	}

	.story-card {
		flex-direction: column;
	}

	.story-card__media {
		flex: none;
	}

	.story-card__media img {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 680px) {
	.section {
		padding: 60px 0;
	}

	.hero__inner {
		padding: 80px 24px 70px;
	}

	.hero__stats {
		gap: 24px;
	}

	.quick-actions__grid,
	.card-grid--3,
	.card-grid--4,
	.pillar-grid,
	.impact-band__grid,
	.impact-dash,
	.timeline,
	.donate-grid,
	.gallery-grid,
	.field-row {
		grid-template-columns: 1fr;
	}

	.topbar__tagline {
		display: none;
	}

	.site-brand__tag {
		display: none;
	}

	.form-layout__form {
		padding: 28px 22px;
	}

	.cta-banner {
		padding: 34px 28px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.split__media-inset {
		right: 6px;
		bottom: -20px;
	}

	.split__badge {
		left: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition: none !important;
		animation: none !important;
	}
}
