:root {
	--ink: #263238;
	--muted: #5f6f73;
	--green: #5f7f2f;
	--green-dark: #3f5f22;
	--gold: #bd8b2c;
	--paper: #fffdf8;
	--wash: #eef3ea;
	--line: #d6ded1;
	--container: min(1120px, calc(100% - 32px));
	--radius: 6px;
	--soft-shadow: 0 8px 24px rgba(63, 95, 34, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Tenor Sans, Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.62;
}

@media (prefers-reduced-motion: no-preference) {
	body::before {
		position: fixed;
		inset: 0;
		z-index: 999;
		background: var(--wash);
		content: "";
		opacity: 0;
		pointer-events: none;
		transition: opacity 120ms ease;
	}

	html.is-page-exiting body::before {
		opacity: 0.58;
	}

	a {
		transition:
			background-color 180ms ease,
			border-color 180ms ease,
			color 180ms ease,
			opacity 160ms ease,
			transform 160ms ease;
	}

	a.is-link-activating {
		opacity: 0.82;
		transform: translateY(1px);
	}
}

a {
	color: var(--green-dark);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 253, 248, 0.96);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 10px 0;
}

.brand {
	display: block;
	flex: 0 0 auto;
}

.brand img {
	display: block;
	width: clamp(120px, 14vw, 165px);
	height: auto;
	max-height: 78px;
	object-fit: contain;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
}

.nav-toggle span {
	width: 20px;
	height: 2px;
	background: var(--green-dark);
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

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

nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 0.91rem;
}

nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 4px;
	color: var(--green-dark);
	font-weight: 700;
}

nav a:hover {
	background: var(--wash);
	text-decoration: none;
}

.hero {
	background:
		linear-gradient(90deg, rgba(20, 42, 31, 0.78), rgba(20, 42, 31, 0.44)),
		url("../images/bigtree_no_bg.png") center/cover;
	color: #fff;
}

.hero-inner {
	min-height: 520px;
	display: grid;
	align-content: center;
	justify-items: center;
	padding: 68px 0 76px;
}

.hero h1 {
	margin: 0 0 20px;
	font-size: clamp(2.7rem, 7vw, 5.6rem);
	line-height: 0.95;
	text-align: center;
	white-space: nowrap;
}

.hero p {
	max-width: 780px;
	margin: 12px 0;
	font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.hero strong {
	color: #f1c46a;
}

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

.header-inner,
.hero-inner,
.footer-inner {
	width: var(--container);
	margin: 0 auto;
}

.section {
	padding: 56px 0;
	border-bottom: 1px solid var(--line);
}

.section h2 {
	margin: 0 0 18px;
	color: var(--green-dark);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.05;
}

.section h3 {
	margin: 30px 0 8px;
	color: var(--gold);
	font-size: 1.35rem;
}

.lead {
	font-size: 1.16rem;
	color: var(--muted);
	max-width: 850px;
}

.section h2.lead {
	width: 100%;
	max-width: none;
}

.solutions-intro {
	font-size: 0.75rem;
	line-height: 1.5;
}

main p,
main li,
main h1,
main h2,
main h3,
.footer p {
	text-align: justify;
}

main p,
main li,
.footer p {
	text-wrap: pretty;
}

main h1,
main h2,
main h3,
.callout {
	text-wrap: balance;
}

.grid,
.contact-box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.grid {
	align-items: start;
}

.panel,
.accordion-item,
.board-carousel-viewport {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: var(--radius);
}

.panel {
	padding: 10px;
}

.panel h3 {
	margin-top: 0;
	margin-bottom: 0;
	justify-self: center;

}

.redirect-grid .panel {
	padding: 0;
	overflow: hidden;
}

.redirect-grid .panel:hover {
	background: var(--wash);
}

.redirect-grid h3 {
	height: 100%;
}

.redirect-grid a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 54px;
	padding: 10px;
	color: var(--gold);
	text-align: center;
}

.redirect-grid a:hover {
	text-decoration: none;
}

.fund-options {
	align-items: stretch;
}

.fund-options .panel {
	display: flex;
	flex-direction: column;
}

.fund-options .panel p {
	margin-bottom: 0;
}

.media-panel {
	min-height: 240px;
	background: var(--wash);
	overflow: hidden;
	padding: 0;
}

.media-panel img,
.solution img {
	display: block;
	width: 100%;
	object-fit: cover;
}

.media-panel img {
	height: 100%;
	min-height: 240px;
}

.solution-list {
	display: grid;
	gap: 20px;
	margin-top: 24px;
}

.solution {
	display: grid;
	grid-template-columns: 1fr minmax(160px, 280px);
	gap: 18px;
	align-items: center;
	border-top: 1px solid var(--line);
	padding-top: 20px;
}

.solution img {
	aspect-ratio: 4 / 3;
	border-radius: 4px;
}

.accordion {
	display: grid;
	gap: 14px;
	margin-top: 26px;
}

.accordion-item {
	overflow: hidden;
}

.accordion-item[open] {
	border-color: #bfcfaf;
	box-shadow: var(--soft-shadow);
}

.accordion-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 68px;
	padding: 18px 22px;
	color: var(--green-dark);
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: 700;
	list-style: none;
}

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

.accordion-item summary:hover,
.accordion-item[open] summary {
	background: var(--wash);
}

.accordion-icon {
	position: relative;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	border: 1px solid var(--gold);
	border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 2px;
	background: var(--gold);
	content: "";
	transform: translate(-50%, -50%);
}

.accordion-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item[open] .accordion-icon::after {
	display: none;
}

.accordion-content {
	padding: 22px;
	border-top: 1px solid var(--line);
}

.accordion-content p:first-child {
	margin-top: 0;
}

.section#board {
	text-align: center;
}

.section#board .lead {
	margin-right: auto;
	margin-left: auto;
}

.board-carousel {
	position: relative;
	max-width: 820px;
	margin: 34px auto 0;
}

.board-carousel-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.board-carousel-viewport {
	overflow: hidden;
	box-shadow: var(--soft-shadow);
}

.board-carousel-track {
	display: flex;
	transition: transform 240ms ease;
}

.board-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 0 0 100%;
	min-height: 330px;
	padding: 44px 86px;
	text-align: center;
}

.board-card h3 {
	margin-top: 6px;
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	line-height: 1.1;
}

.board-card p {
	max-width: 640px;
	text-align: justify;
}

.board-role {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	text-align: center;
	text-transform: uppercase;
}

.board-carousel-controls {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: calc(100% - 32px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
}

.board-control {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--paper);
	color: var(--green-dark);
	cursor: pointer;
	font-size: 2rem;
	line-height: 0;
	pointer-events: auto;
}

.board-control:hover {
	background: var(--wash);
}

.board-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.board-dot {
	width: 12px;
	height: 12px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	cursor: pointer;
}

#board-brent:checked ~ .board-carousel-viewport .board-carousel-track {
	transform: translateX(0);
}

#board-laurie:checked ~ .board-carousel-viewport .board-carousel-track {
	transform: translateX(-100%);
}

#board-nicole:checked ~ .board-carousel-viewport .board-carousel-track {
	transform: translateX(-200%);
}

#board-brent:checked ~ .board-carousel-controls .board-control-brent,
#board-laurie:checked ~ .board-carousel-controls .board-control-laurie,
#board-nicole:checked ~ .board-carousel-controls .board-control-nicole {
	display: flex;
}

#board-brent:checked ~ .board-carousel-dots label[for="board-brent"],
#board-laurie:checked ~ .board-carousel-dots label[for="board-laurie"],
#board-nicole:checked ~ .board-carousel-dots label[for="board-nicole"] {
	background: var(--gold);
}

ul.clean {
	padding-left: 1.2rem;
}

ul.clean li {
	margin: 14px 0;
}

.callout {
	width: min(720px, 100%);
	background: var(--wash);
	border-left: 5px solid var(--gold);
	padding: 20px 80px;
	margin: 28px auto;
	justify-self: center;
	text-align: center;
}

.footer {
	background: #2d3b2d;
	color: #eff5ef;
	font-family: inherit;
	font-size: 0.92rem;
}

.footer-inner {
	padding: 28px 0;
}

.copyright {
	margin-bottom: 0;
	color: #d7e3d7;
	font-size: 0.85rem;
	text-align: center;
}

@media (max-width: 760px) {
	.grid,
	.solution,
	.contact-box {
		grid-template-columns: 1fr;
	}

	.header-inner {
		position: relative;
		align-items: center;
		flex-wrap: wrap;
	}

	.nav-toggle {
		display: flex;
	}

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

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

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

	.primary-nav {
		display: none;
		flex: 0 0 100%;
	}

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

	nav ul {
		display: grid;
		gap: 8px;
		padding-top: 8px;
	}

	nav a {
		width: 100%;
	}

	.hero-inner {
		min-height: 460px;
	}

	.hero h1 {
		font-size: clamp(2rem, 10vw, 3.2rem);
	}

	.board-card {
		min-height: 380px;
		padding: 34px 54px;
	}

	.board-carousel-controls {
		padding: 0 10px;
	}

	.board-control {
		width: 36px;
		height: 36px;
	}

}
