
:root {
	--gh-forest: #102e24;
	--gh-forest-deep: #071d16;
	--gh-green: #39745b;
	--gh-moss: #85a66b;
	--gh-lime: #c7e36a;
	--gh-sand: #d7c6a5;
	--gh-cream: #f3f0e8;
	--gh-clay: #b86e4b;
	--gh-charcoal: #17201c;
	--gh-mist: #dde4de;
	--gh-white: #fff;
	--gh-border: rgba(16, 46, 36, .14);
	--gh-serif: "Instrument Serif", Georgia, serif;
	--gh-sans: "Manrope", Arial, sans-serif;
	--gh-shell: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.greenhearth-site {
	margin: 0;
	background: var(--gh-cream);
	color: var(--gh-charcoal);
	font-family: var(--gh-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.gh-shell { width: min(calc(100% - 48px), var(--gh-shell)); margin-inline: auto; }
.gh-section { padding: clamp(88px, 10vw, 160px) 0; }
.gh-eyebrow {
	margin: 0 0 18px;
	color: var(--gh-green);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .18em;
	line-height: 1.4;
	text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--gh-serif); font-weight: 400; letter-spacing: -.035em; }
h1 { font-size: clamp(60px, 7vw, 116px); line-height: .88; }
h2 { margin: 0; font-size: clamp(42px, 5vw, 78px); line-height: .98; }
h3 { font-size: clamp(28px, 2.4vw, 42px); line-height: 1; }

.gh-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100000;
	padding: 12px 18px;
	background: var(--gh-lime);
	color: var(--gh-forest);
	font-weight: 800;
	transform: translateY(-160%);
}
.gh-skip-link:focus { transform: translateY(0); }

.gh-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 9999;
	height: 96px;
	color: var(--gh-cream);
	transition: height .4s ease, background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
body:not(.home) .gh-header,
.gh-header.is-scrolled {
	height: 76px;
	background: rgba(7, 29, 22, .9);
	border-bottom: 1px solid rgba(255,255,255,.1);
	box-shadow: 0 18px 60px rgba(5, 20, 15, .22);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}
.gh-header__inner {
	width: min(calc(100% - 48px), var(--gh-shell));
	height: 100%;
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
	align-items: center;
	gap: 28px;
}
.gh-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	text-decoration: none;
}
.gh-brand__icon {
	width: 50px;
	height: 50px;
	object-fit: contain;
	filter: drop-shadow(0 8px 18px rgba(199, 227, 106, .12));
	transition: transform .35s ease;
}
.gh-brand:hover .gh-brand__icon { transform: rotate(-4deg) scale(1.04); }
.gh-brand__copy { display: grid; gap: 1px; min-width: 0; }
.gh-brand__name { font-family: var(--gh-serif); font-size: 28px; line-height: .95; letter-spacing: -.02em; }
.gh-brand__descriptor {
	max-width: 210px;
	font-size: 7.5px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .085em;
	text-transform: uppercase;
	opacity: .72;
}
.gh-menu, .gh-mobile-menu { list-style: none; margin: 0; padding: 0; }
.gh-menu { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); }
.gh-menu a {
	position: relative;
	display: block;
	padding: 12px 0;
	color: var(--gh-cream);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
.gh-menu a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	width: 0;
	height: 1px;
	margin: auto;
	content: "";
	background: var(--gh-lime);
	transition: width .25s ease;
}
.gh-menu a:hover, .gh-menu .current-menu-item > a { color: var(--gh-lime); }
.gh-menu a:hover::after, .gh-menu .current-menu-item > a::after { width: 100%; }

.gh-header__actions { display: flex; justify-content: flex-end; gap: 10px; }
.gh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 19px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gh-button:hover { transform: translateY(-2px); }
.gh-button--large { min-height: 54px; padding: 15px 24px; font-size: 13px; }
.gh-button--lime { background: var(--gh-lime); color: var(--gh-forest); box-shadow: 0 14px 34px rgba(199, 227, 106, .13); }
.gh-button--lime:hover { background: #d9ef8d; box-shadow: 0 16px 40px rgba(199, 227, 106, .22); }
.gh-button--ghost, .gh-button--glass {
	color: var(--gh-cream);
	border-color: rgba(243, 240, 232, .28);
	background: rgba(255,255,255,.025);
}
.gh-button--ghost:hover, .gh-button--glass:hover { background: var(--gh-cream); color: var(--gh-forest); border-color: var(--gh-cream); }
.gh-button--forest { background: var(--gh-forest); color: var(--gh-cream); }
.gh-button--forest:hover { background: var(--gh-green); }

.gh-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	color: white;
	cursor: pointer;
}
.gh-menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.gh-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.gh-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gh-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.gh-mobile-panel { position: fixed; inset: 76px 0 0; padding: 28px 24px 44px; background: rgba(7,29,22,.98); overflow-y: auto; }
.gh-mobile-panel[hidden] { display: none; }
.gh-mobile-menu a, .gh-mobile-panel nav > a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255,255,255,.1);
	color: var(--gh-cream);
	font-family: var(--gh-serif);
	font-size: 32px;
	line-height: 1.15;
	text-decoration: none;
}
.gh-mobile-panel__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }

.gh-hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	padding: 154px 0 48px;
	color: var(--gh-cream);
	background:
		radial-gradient(circle at 72% 35%, rgba(199,227,106,.17), transparent 28%),
		radial-gradient(circle at 55% 85%, rgba(57,116,91,.22), transparent 34%),
		linear-gradient(135deg, #061b14 0%, #102e24 52%, #0a241b 100%);
}
.gh-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	background-image:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.gh-hero__atmosphere {
	position: absolute;
	inset: -20%;
	background: conic-gradient(from 130deg at 70% 42%, transparent, rgba(199,227,106,.09), transparent 34%);
	filter: blur(20px);
	animation: gh-atmosphere 18s linear infinite;
}
.gh-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
	align-items: center;
	gap: clamp(32px, 6vw, 100px);
	min-height: calc(100svh - 260px);
}
.gh-hero__content { max-width: 760px; }
.gh-hero .gh-eyebrow { color: var(--gh-lime); }
.gh-hero h1 { margin: 0; }
.gh-hero h1 em { color: var(--gh-lime); font-weight: 400; }
.gh-hero__lead { max-width: 600px; margin: 28px 0 0; color: rgba(243,240,232,.75); font-size: clamp(16px, 1.5vw, 20px); }
.gh-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.gh-reveal { animation: gh-reveal .85s both; }
.gh-reveal:nth-child(2) { animation-delay: .08s; }
.gh-reveal:nth-child(3) { animation-delay: .16s; }
.gh-reveal:nth-child(4) { animation-delay: .24s; }

.gh-earth-stage {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	perspective: 1200px;
	transform-style: preserve-3d;
}
.gh-earth-stage img {
	position: relative;
	z-index: 4;
	width: min(92%, 620px);
	aspect-ratio: 1;
	object-fit: contain;
	filter: drop-shadow(0 40px 70px rgba(0,0,0,.38));
	animation: gh-float 7s ease-in-out infinite;
	transform: rotateY(var(--gh-rotate-y, 0deg)) rotateX(var(--gh-rotate-x, 0deg));
	transition: transform .2s ease-out;
}
.gh-earth-stage__halo {
	position: absolute;
	inset: 17%;
	border-radius: 50%;
	background: rgba(199,227,106,.16);
	filter: blur(56px);
	animation: gh-pulse 5s ease-in-out infinite;
}
.gh-earth-stage__ring {
	position: absolute;
	z-index: 2;
	inset: 8%;
	border: 1px solid rgba(199,227,106,.25);
	border-radius: 50%;
	transform: rotateX(70deg) rotateZ(12deg);
	animation: gh-spin 17s linear infinite;
}
.gh-earth-stage__ring--two { inset: 17%; transform: rotateY(72deg) rotateX(12deg); animation-duration: 13s; animation-direction: reverse; }
.gh-earth-stage__ring::after, .gh-earth-stage__ring--two::after {
	position: absolute;
	top: 7%;
	left: 21%;
	width: 11px;
	height: 11px;
	content: "";
	border-radius: 50%;
	background: var(--gh-lime);
	box-shadow: 0 0 22px var(--gh-lime);
}
.gh-earth-stage__orbit { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.gh-earth-stage__orbit span {
	position: absolute;
	padding: 7px 10px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 999px;
	background: rgba(7,29,22,.72);
	color: var(--gh-cream);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}
.gh-earth-stage__orbit span:nth-child(1) { top: 17%; left: 2%; }
.gh-earth-stage__orbit span:nth-child(2) { right: 1%; top: 45%; }
.gh-earth-stage__orbit span:nth-child(3) { bottom: 14%; left: 10%; }

.gh-hero__metrics {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 22px;
	border-top: 1px solid rgba(255,255,255,.13);
}
.gh-hero__metrics > div { display: flex; align-items: baseline; gap: 12px; padding: 22px 18px 0 0; }
.gh-hero__metrics span { color: var(--gh-lime); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.gh-hero__metrics p { margin: 0; color: rgba(243,240,232,.66); font-size: 12px; }

.gh-intro { background: var(--gh-cream); }
.gh-intro__grid { display: grid; grid-template-columns: .55fr 2fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.gh-intro__copy { margin: 8px 0 0; color: rgba(23,32,28,.68); }

.gh-programmes { background: #ece9df; }
.gh-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 60px; }
.gh-section-heading h2 { max-width: 800px; }
.gh-text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--gh-forest); font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.gh-text-link span { transition: transform .2s ease; }
.gh-text-link:hover span { transform: translate(3px,-3px); }
.gh-text-link--light { color: var(--gh-lime); }
.gh-programme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gh-programme-card {
	position: relative;
	min-height: 330px;
	overflow: hidden;
	padding: 28px;
	border: 1px solid rgba(16,46,36,.1);
	border-radius: 4px;
	background:
		radial-gradient(circle at 90% 100%, rgba(133,166,107,.22), transparent 40%),
		var(--gh-cream);
	text-decoration: none;
	transition: transform .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}
.gh-programme-card::before {
	position: absolute;
	inset: auto -10% -46% auto;
	width: 230px;
	height: 230px;
	content: "";
	border: 1px solid rgba(16,46,36,.12);
	border-radius: 50%;
	transition: transform .45s ease;
}
.gh-programme-card:hover { z-index: 2; color: var(--gh-cream); background: var(--gh-forest); box-shadow: 0 30px 70px rgba(16,46,36,.18); transform: translateY(-8px); }
.gh-programme-card:hover::before { border-color: rgba(199,227,106,.3); transform: scale(1.25); }
.gh-programme-card--featured { grid-row: span 2; min-height: 672px; color: var(--gh-cream); background: radial-gradient(circle at 60% 105%, rgba(199,227,106,.25), transparent 42%), var(--gh-forest); }
.gh-programme-card--wide { grid-column: span 2; }
.gh-programme-card__number { display: block; margin-bottom: 74px; color: var(--gh-green); font-family: var(--gh-serif); font-size: 54px; line-height: 1; }
.gh-programme-card--featured .gh-programme-card__number, .gh-programme-card:hover .gh-programme-card__number { color: var(--gh-lime); }
.gh-programme-card h3 { max-width: 460px; margin: 0 0 18px; }
.gh-programme-card p { max-width: 440px; margin: 0; color: rgba(23,32,28,.66); font-size: 14px; }
.gh-programme-card--featured p, .gh-programme-card:hover p { color: rgba(243,240,232,.68); }
.gh-programme-card__arrow { position: absolute; right: 24px; bottom: 20px; font-size: 24px; }

.gh-ecosystem { color: var(--gh-cream); background: var(--gh-forest-deep); }
.gh-ecosystem .gh-eyebrow { color: var(--gh-lime); }
.gh-ecosystem__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(52px, 8vw, 120px); }
.gh-ecosystem__visual { position: relative; display: grid; place-items: center; min-height: 600px; }
.gh-ecosystem__visual::before, .gh-ecosystem__visual::after { position: absolute; width: 78%; aspect-ratio: 1; content: ""; border: 1px solid rgba(199,227,106,.18); border-radius: 50%; animation: gh-spin 22s linear infinite; }
.gh-ecosystem__visual::after { width: 55%; animation-direction: reverse; animation-duration: 15s; }
.gh-ecosystem__visual img { position: relative; z-index: 2; width: 76%; filter: drop-shadow(0 40px 80px rgba(0,0,0,.45)); }
.gh-ecosystem__pulse { position: absolute; width: 45%; aspect-ratio: 1; border-radius: 50%; background: rgba(199,227,106,.16); filter: blur(48px); }
.gh-ecosystem__grid > div:last-child > p:not(.gh-eyebrow) { max-width: 620px; color: rgba(243,240,232,.65); font-size: 18px; }
.gh-ecosystem__steps { display: grid; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.12); }
.gh-ecosystem__steps div { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.gh-ecosystem__steps strong { color: var(--gh-lime); }
.gh-ecosystem__steps span { color: rgba(243,240,232,.62); font-size: 14px; }

.gh-impact { color: var(--gh-cream); background: var(--gh-green); }
.gh-impact .gh-eyebrow { color: var(--gh-lime); }
.gh-impact h2 { max-width: 920px; }
.gh-impact__note { max-width: 620px; color: rgba(243,240,232,.68); }
.gh-impact__grid { display: grid; grid-template-columns: repeat(4,1fr); margin: 72px 0 44px; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.gh-impact__grid div { min-height: 190px; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,.18); }
.gh-impact__grid div:last-child { border-right: 0; }
.gh-impact__grid strong { display: block; color: var(--gh-lime); font-family: var(--gh-serif); font-size: 76px; font-weight: 400; line-height: 1; }
.gh-impact__grid span { display: block; margin-top: 34px; color: rgba(243,240,232,.72); font-size: 13px; }

.gh-partners { background: var(--gh-sand); }
.gh-partners__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(48px, 8vw, 140px); align-items: end; }
.gh-partners__grid > div:last-child p { margin: 0 0 32px; color: rgba(23,32,28,.7); font-size: 18px; }

.gh-final-cta {
	position: relative;
	overflow: hidden;
	padding: clamp(100px, 13vw, 190px) 0;
	color: var(--gh-cream);
	background: radial-gradient(circle at 50% 140%, rgba(199,227,106,.28), transparent 45%), var(--gh-forest-deep);
}
.gh-final-cta::before { position: absolute; inset: -50% 25%; content: ""; border: 1px solid rgba(199,227,106,.18); border-radius: 50%; }
.gh-final-cta__inner { position: relative; z-index: 1; text-align: center; }
.gh-final-cta .gh-eyebrow { color: var(--gh-lime); }
.gh-final-cta h2 { max-width: 1000px; margin-inline: auto; }
.gh-final-cta__inner > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.gh-footer { position: relative; overflow: hidden; padding: 88px 0 26px; color: var(--gh-cream); background: #061812; }
.gh-footer__glow { position: absolute; right: -180px; bottom: -220px; width: 580px; height: 580px; border-radius: 50%; background: rgba(199,227,106,.08); filter: blur(40px); }
.gh-footer__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr .72fr .8fr .8fr 1.25fr; gap: 42px; padding-bottom: 64px; }
.gh-brand--footer { color: var(--gh-cream); }
.gh-brand--footer .gh-brand__icon { width: 58px; height: 58px; }
.gh-footer__brand > p { max-width: 320px; color: rgba(243,240,232,.58); font-size: 13px; }
.gh-footer__tagline { color: var(--gh-lime) !important; font-weight: 800; }
.gh-footer h2 { margin: 4px 0 18px; font-family: var(--gh-sans); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gh-footer__grid > div:not(.gh-footer__brand):not(.gh-footer__cta) > a { display: block; margin: 10px 0; color: rgba(243,240,232,.58); font-size: 13px; text-decoration: none; }
.gh-footer__grid a:hover { color: var(--gh-lime) !important; }
.gh-footer__cta { padding: 26px; border: 1px solid rgba(255,255,255,.11); border-radius: 4px; background: rgba(255,255,255,.03); }
.gh-footer__cta .gh-eyebrow { color: var(--gh-lime); }
.gh-footer__cta h2 { font-family: var(--gh-serif); font-size: 30px; line-height: 1; letter-spacing: -.02em; text-transform: none; }
.gh-footer__cta p { color: rgba(243,240,232,.58); font-size: 13px; }
.gh-footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(243,240,232,.5); font-size: 11px; }
.gh-footer__bottom p { margin: 0; }
.gh-footer__bottom a { margin-left: 18px; text-decoration: none; }

.gh-page { min-height: 70vh; background: var(--gh-cream); }
.gh-page-hero { padding: 180px 0 90px; color: var(--gh-cream); background: radial-gradient(circle at 80% 0, rgba(199,227,106,.18), transparent 36%), var(--gh-forest); }
.gh-page-hero .gh-eyebrow { color: var(--gh-lime); }
.gh-page-hero h1 { max-width: 1000px; margin: 0; font-size: clamp(60px,8vw,110px); }
.gh-page-content, .gh-article { max-width: 880px; padding-top: 80px; padding-bottom: 120px; }
.gh-page-content h2, .gh-article h2 { font-size: 46px; }
.gh-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding-top: 70px; padding-bottom: 120px; }
.gh-post-card { padding: 28px; border: 1px solid var(--gh-border); background: white; }
.gh-post-card h2 { font-size: 38px; }
.gh-post-card h2 a { text-decoration: none; }

:focus-visible { outline: 3px solid var(--gh-lime); outline-offset: 4px; }

@keyframes gh-reveal { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gh-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }
@keyframes gh-pulse { 0%,100% { opacity: .45; transform: scale(.92); } 50% { opacity: .85; transform: scale(1.08); } }
@keyframes gh-spin { to { rotate: 360deg; } }
@keyframes gh-atmosphere { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
	.gh-header__inner { grid-template-columns: 1fr auto auto; }
	.gh-desktop-nav { display: none; }
	.gh-menu-toggle { display: block; }
	.gh-hero__grid { grid-template-columns: 1fr .85fr; }
	.gh-brand__descriptor { display: none; }
	.gh-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.gh-footer__cta { grid-column: span 2; }
}

@media (max-width: 820px) {
	.gh-shell { width: min(calc(100% - 32px), var(--gh-shell)); }
	.gh-header { height: 76px; }
	.gh-header__inner { width: calc(100% - 32px); grid-template-columns: 1fr auto; }
	.gh-header__actions { display: none; }
	.gh-brand__name { font-size: 25px; }
	.gh-brand__icon { width: 42px; height: 42px; }
	.gh-hero { padding-top: 120px; }
	.gh-hero__grid { grid-template-columns: 1fr; }
	.gh-hero__content { position: relative; z-index: 4; }
	.gh-earth-stage { width: min(100%, 570px); margin: -30px auto 0; }
	.gh-hero__metrics { grid-template-columns: repeat(2,1fr); }
	.gh-intro__grid { grid-template-columns: 1fr; }
	.gh-programme-grid { grid-template-columns: 1fr 1fr; }
	.gh-programme-card--featured { grid-row: auto; min-height: 390px; }
	.gh-programme-card--wide { grid-column: span 2; }
	.gh-ecosystem__grid, .gh-partners__grid { grid-template-columns: 1fr; }
	.gh-ecosystem__visual { min-height: 440px; }
	.gh-impact__grid { grid-template-columns: 1fr 1fr; }
	.gh-impact__grid div:nth-child(2) { border-right: 0; }
	.gh-impact__grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
	.gh-footer__grid { grid-template-columns: 1fr 1fr; }
	.gh-footer__brand, .gh-footer__cta { grid-column: span 2; }
	.gh-post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
	.gh-section { padding: 84px 0; }
	h1 { font-size: clamp(55px, 17vw, 78px); }
	h2 { font-size: clamp(40px, 12vw, 58px); }
	.gh-header__inner { gap: 10px; }
	.gh-brand__icon { width: 38px; height: 38px; }
	.gh-brand__name { font-size: 23px; }
	.gh-hero { min-height: auto; padding-bottom: 36px; }
	.gh-hero__grid { min-height: 0; }
	.gh-earth-stage { margin-top: 0; }
	.gh-earth-stage__orbit span { display: none; }
	.gh-hero__metrics { grid-template-columns: 1fr 1fr; margin-top: 10px; }
	.gh-hero__metrics > div { display: block; padding-top: 14px; }
	.gh-programme-grid { grid-template-columns: 1fr; }
	.gh-programme-card, .gh-programme-card--featured, .gh-programme-card--wide { grid-column: auto; min-height: 330px; }
	.gh-programme-card__number { margin-bottom: 58px; }
	.gh-section-heading { align-items: start; flex-direction: column; }
	.gh-ecosystem__visual { min-height: 330px; }
	.gh-ecosystem__steps div { grid-template-columns: 1fr; gap: 3px; }
	.gh-impact__grid { grid-template-columns: 1fr; }
	.gh-impact__grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
	.gh-footer__grid { grid-template-columns: 1fr; }
	.gh-footer__brand, .gh-footer__cta { grid-column: auto; }
	.gh-footer__bottom { flex-direction: column; }
	.gh-footer__bottom a { margin: 0 18px 0 0; }
	.gh-post-grid { grid-template-columns: 1fr; }
}

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

/* =========================================================
   LEADERSHIP + OBJECTIVES — V1.1
   ========================================================= */
.gh-leadership {
    background:
        radial-gradient(circle at 92% 12%, rgba(199, 227, 106, .14), transparent 27%),
        var(--gh-cream);
}

.gh-leadership__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 30px);
}

.gh-leader-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 46, 36, .12);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(16, 46, 36, .07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.gh-leader-card:hover {
    border-color: rgba(57, 116, 91, .35);
    box-shadow: 0 32px 80px rgba(16, 46, 36, .14);
    transform: translateY(-8px);
}

.gh-leader-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 4.65;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 22%, rgba(199, 227, 106, .25), transparent 34%),
        #dfe6df;
}

.gh-leader-card__image::after {
    position: absolute;
    inset: auto 0 0;
    height: 24%;
    content: "";
    background: linear-gradient(to top, rgba(7, 29, 22, .2), transparent);
    pointer-events: none;
}

.gh-leader-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    transition: transform .65s cubic-bezier(.2, .75, .2, 1);
}

.gh-leader-card:hover .gh-leader-card__image img {
    transform: scale(1.035);
}

.gh-leader-card__body {
    min-height: 142px;
    padding: 25px 25px 28px;
    border-top: 3px solid var(--gh-lime);
}

.gh-leader-card__body h3 {
    margin: 0;
    font-size: clamp(27px, 2.4vw, 39px);
    line-height: 1;
}

.gh-leader-card__body h3 a {
    color: var(--gh-forest);
    text-decoration: none;
}

.gh-leader-card__body p {
    margin: 12px 0 0;
    color: var(--gh-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.gh-objectives {
    position: relative;
    overflow: hidden;
    background: var(--gh-sand);
}

.gh-objectives::before {
    position: absolute;
    top: -260px;
    right: -180px;
    width: 620px;
    height: 620px;
    content: "";
    border: 1px solid rgba(16, 46, 36, .12);
    border-radius: 50%;
}

.gh-objectives .gh-section-heading,
.gh-objectives__grid {
    position: relative;
    z-index: 1;
}

.gh-objectives__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 46, 36, .18);
    border-left: 1px solid rgba(16, 46, 36, .18);
}

.gh-objective-card {
    position: relative;
    min-height: 285px;
    padding: clamp(24px, 3vw, 38px);
    border-right: 1px solid rgba(16, 46, 36, .18);
    border-bottom: 1px solid rgba(16, 46, 36, .18);
    background: rgba(243, 240, 232, .28);
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.gh-objective-card:hover {
    z-index: 2;
    color: var(--gh-cream);
    background: var(--gh-forest);
    transform: translateY(-4px);
}

.gh-objective-card > span {
    display: block;
    margin-bottom: 56px;
    color: var(--gh-green);
    font-family: var(--gh-serif);
    font-size: 48px;
    line-height: 1;
}

.gh-objective-card:hover > span {
    color: var(--gh-lime);
}

.gh-objective-card h3 {
    margin: 0 0 15px;
    font-size: clamp(27px, 2.2vw, 37px);
    line-height: 1;
}

.gh-objective-card p {
    margin: 0;
    color: rgba(23, 32, 28, .68);
    font-size: 13px;
    line-height: 1.65;
}

.gh-objective-card:hover p {
    color: rgba(243, 240, 232, .72);
}

@media (max-width: 980px) {
    .gh-leadership__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gh-leader-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: min(100%, 560px);
        justify-self: center;
    }

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

@media (max-width: 620px) {
    .gh-leadership__grid,
    .gh-objectives__grid {
        grid-template-columns: 1fr;
    }

    .gh-leader-card:last-child:nth-child(odd) {
        grid-column: auto;
        width: 100%;
    }

    .gh-leader-card__image {
        aspect-ratio: 4 / 4.8;
    }

    .gh-objective-card {
        min-height: 0;
    }

    .gh-objective-card > span {
        margin-bottom: 38px;
    }
}
