:root {
	--bg: #ffffff;
	--bg-soft: #f4fbf5;
	--bg-accent: #eef8ef;
	--panel: rgba(255, 255, 255, 0.92);
	--panel-strong: #ffffff;
	--text: #173224;
	--heading: #0d2417;
	--muted: #617868;
	--line: rgba(76, 184, 74, 0.16);
	--green-1: #089d49;
	--green-2: #49b547;
	--green-3: #98c93d;
	--shadow: 0 18px 50px rgba(21, 45, 27, 0.08);
	--radius-lg: 28px;
	--radius-md: 20px;
	--container: min(1180px, calc(100vw - 48px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--text);
	line-height: 1.7;
	background:
		radial-gradient(circle at top left, rgba(9, 157, 73, 0.08), transparent 24%),
		radial-gradient(circle at 85% 10%, rgba(152, 201, 61, 0.1), transparent 20%),
		linear-gradient(180deg, #ffffff 0%, #fbfffb 45%, #f3faf4 100%);
}

a {
	color: inherit;
	text-decoration: none;
}

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

.container {
	width: var(--container);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(23, 50, 36, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}

.brand-mark img {
	width: min(320px, 48vw);
}

.site-nav__menu {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(23, 50, 36, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	padding: 0;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--heading);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.menu-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-nav__menu a,
.header-cta,
.button {
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-nav__menu a {
	color: var(--muted);
	font-size: 0.98rem;
	font-weight: 600;
}

.site-nav__menu a:hover,
.site-nav__menu .current-menu-item > a {
	color: var(--heading);
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 800;
}

.header-cta,
.button--primary {
	background: linear-gradient(135deg, var(--green-1), var(--green-3));
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(76, 184, 74, 0.22);
}

.button--ghost {
	border: 1px solid rgba(23, 50, 36, 0.1);
	background: rgba(255, 255, 255, 0.8);
	color: var(--heading);
}

.header-cta:hover,
.button:hover {
	transform: translateY(-2px);
}

.hero-section,
.page-hero {
	position: relative;
	overflow: hidden;
}

.hero-section {
	padding: 96px 0 76px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 42px;
	align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split-layout h2,
.cta-panel h2,
.site-footer h2,
.process-step h3,
.service-card h3,
.impact-card h3,
.prose-content h2,
.prose-content h3 {
	font-family: "Space Grotesk", sans-serif;
	letter-spacing: -0.03em;
	color: var(--heading);
}

.hero-copy h1 {
	font-size: clamp(3rem, 6vw, 5.2rem);
	line-height: 1.03;
	margin: 0 0 20px;
	max-width: 10.5ch;
}

.eyebrow,
.service-card__eyebrow,
.footer-kicker {
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.78rem;
	color: var(--green-1);
	margin-bottom: 16px;
	font-weight: 800;
}

.hero-lead,
.page-hero__lead,
.section-heading p,
.split-layout p,
.impact-card p,
.service-card p,
.site-footer p,
.prose-content p,
.prose-content li {
	color: var(--muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 30px 0 32px;
}

.hero-points {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 0;
	padding: 0;
}

.hero-points li,
.signal-card,
.service-card,
.impact-card,
.process-step,
.cta-panel,
.post-card {
	border: 1px solid rgba(23, 50, 36, 0.07);
	background: var(--panel);
	box-shadow: var(--shadow);
}

.hero-points li {
	padding: 18px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.86);
}

.signal-card {
	position: relative;
	padding: 34px;
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at top right, rgba(152, 201, 61, 0.18), transparent 36%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 242, 0.96));
}

.signal-card::after {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(76, 184, 74, 0.1);
	border-radius: calc(var(--radius-lg) - 10px);
	pointer-events: none;
}

.signal-card__label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--green-1);
	font-weight: 800;
}

.signal-card__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 26px 0;
}

.signal-card__stats strong {
	display: block;
	font-size: 2rem;
	margin-bottom: 8px;
	color: var(--heading);
}

.signal-card__stats span,
.signal-card__text,
.service-card a,
.footer-links a {
	color: var(--muted);
}

.hero-orb {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.28;
	pointer-events: none;
}

.hero-orb--one {
	background: rgba(9, 157, 73, 0.22);
	left: -120px;
	top: -50px;
}

.hero-orb--two {
	background: rgba(152, 201, 61, 0.22);
	right: -120px;
	bottom: -100px;
}

.section,
.page-content {
	padding: 88px 0;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.section-heading h2,
.split-layout h2,
.cta-panel h2,
.page-hero h1,
.site-footer h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.08;
	margin: 0 0 18px;
}

.service-grid,
.impact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card,
.impact-card,
.post-card {
	padding: 28px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.94);
}

.service-card a {
	display: inline-flex;
	margin-top: 16px;
	font-weight: 700;
	color: var(--green-1);
}

.split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: start;
}

.process-list {
	display: grid;
	gap: 18px;
}

.process-step {
	display: grid;
	grid-template-columns: 66px 1fr;
	gap: 18px;
	padding: 22px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.92);
}

.process-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 20px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.15rem;
	color: #ffffff;
	background: linear-gradient(135deg, var(--green-2), var(--green-3));
}

.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 36px;
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at top left, rgba(9, 157, 73, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 243, 0.98));
}

.page-hero {
	padding: 84px 0 26px;
}

.prose-content {
	max-width: 860px;
}

.prose-content h2,
.prose-content h3 {
	margin-top: 40px;
	margin-bottom: 12px;
}

.prose-content ul {
	padding-left: 22px;
}

.site-footer {
	padding: 72px 0 28px;
	border-top: 1px solid rgba(23, 50, 36, 0.06);
	background: linear-gradient(180deg, #f8fcf8 0%, #eef7ef 100%);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr;
	gap: 28px;
	padding-bottom: 28px;
}

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

.site-footer__bottom {
	padding-top: 22px;
	border-top: 1px solid rgba(23, 50, 36, 0.06);
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1100px) {
	.hero-grid,
	.split-layout,
	.site-footer__grid,
	.service-grid,
	.impact-grid {
		grid-template-columns: 1fr 1fr;
	}

	.hero-points {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 840px) {
	.cta-panel {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-header__inner {
		flex-wrap: wrap;
		align-items: center;
		gap: 10px 14px;
		padding: 12px 0;
	}

	.brand-mark img {
		width: min(190px, 48vw);
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.site-nav {
		width: 100%;
		display: none;
		padding-top: 4px;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 10px 14px;
		border: 1px solid rgba(23, 50, 36, 0.08);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--shadow);
	}

	.site-nav__menu a {
		display: block;
		width: 100%;
		padding: 10px 0;
		font-size: 0.92rem;
	}

	.header-cta {
		display: none;
	}

	.hero-grid,
	.split-layout,
	.site-footer__grid,
	.service-grid,
	.impact-grid {
		grid-template-columns: 1fr;
	}

	.signal-card__stats {
		grid-template-columns: 1fr;
	}

	.hero-section {
		padding: 58px 0 40px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 247, 0.92));
	}

	.section,
	.page-content {
		padding: 44px 0;
	}

	.service-grid,
	.impact-grid,
	.process-list {
		gap: 14px;
	}

	.service-card,
	.impact-card,
	.process-step,
	.cta-panel,
	.signal-card,
	.hero-points li {
		box-shadow: none;
		border-color: rgba(23, 50, 36, 0.04);
	}

	.signal-card {
		padding: 0;
		border: 0;
		background: transparent;
	}

	.signal-card::after {
		display: none;
	}

	.process-step {
		grid-template-columns: 46px 1fr;
		padding: 0;
		border: 0;
		background: transparent;
	}

	.process-step span {
		width: 38px;
		height: 38px;
		border-radius: 999px;
		font-size: 0.86rem;
		background: rgba(8, 157, 73, 0.1);
		color: var(--green-1);
	}

	.cta-panel {
		padding: 0;
		border: 0;
		background: transparent;
	}

	.hero-orb--one,
	.hero-orb--two {
		display: none;
	}

	.hero-copy,
	.section-heading,
	.split-layout > div:first-child,
	.page-hero .container,
	.cta-panel > div {
		max-width: 100%;
	}

	.hero-copy h1 {
		max-width: 100%;
		margin-bottom: 14px;
	}

	.hero-lead,
	.page-hero__lead {
		max-width: 34rem;
	}

	.hero-panel {
		margin-top: 4px;
	}

	.hero-points {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.hero-points li,
	.service-card,
	.impact-card,
	.post-card {
		background: transparent;
		padding: 0;
		border-radius: 0;
	}

	.service-card,
	.impact-card,
	.post-card {
		padding-bottom: 14px;
		border-bottom: 1px solid rgba(23, 50, 36, 0.08);
	}

	.service-card:last-child,
	.impact-card:last-child,
	.post-card:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.site-footer {
		background: #f8fbf8;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100vw - 32px, 1180px);
	}

	.site-header__inner {
		padding: 8px 0;
	}

	.brand-mark img {
		width: min(150px, 42vw);
	}

	.site-nav__menu a {
		font-size: 0.9rem;
	}

	.hero-copy h1 {
		font-size: 2.1rem;
		line-height: 1.08;
	}

	.button {
		width: 100%;
	}

	.hero-lead,
	.page-hero__lead,
	.section-heading p,
	.split-layout p,
	.impact-card p,
	.service-card p,
	.site-footer p,
	.prose-content p,
	.prose-content li {
		font-size: 0.98rem;
	}

	.section-heading h2,
	.split-layout h2,
	.cta-panel h2,
	.page-hero h1,
	.site-footer h2 {
		font-size: 1.7rem;
	}

	.service-card,
	.impact-card,
	.post-card {
		padding: 0 0 12px;
	}

	.signal-card {
		padding: 0;
	}

	.signal-card__stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		margin: 14px 0 0;
	}

	.signal-card__stats strong {
		font-size: 1.1rem;
		margin-bottom: 4px;
	}

	.hero-actions {
		margin: 20px 0 18px;
	}

	.hero-points {
		margin-top: 4px;
	}

	.site-footer {
		padding: 44px 0 24px;
	}
}
