:root {
	--green-950: #003f24;
	--green-900: #00562e;
	--green-800: #096b39;
	--green-600: #42b83f;
	--green-500: #64c947;
	--mint-50: #f3faf2;
	--ink: #0a2f1d;
	--muted: #547062;
	--line: #dfe9e2;
	--paper: #ffffff;
	--shadow: 0 18px 50px rgba(0, 45, 24, .14);
	--radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--ink);
	background: #fff;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link, .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}
.skip-link:focus {
	z-index: 100;
	width: auto;
	height: auto;
	clip: auto;
	top: 12px;
	left: 12px;
	padding: 10px 14px;
	background: #fff;
}

.topbar {
	background: var(--green-950);
	color: #fff;
	font-size: 13px;
}
.topbar-inner,
.mainbar-inner,
.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}
.topbar-inner { min-height: 42px; }
.top-nav ul,
.primary-nav ul,
.footer-nav ul {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.social-links { display: flex; gap: 17px; align-items: center; font-weight: 700; }
.mainbar {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 1px 0 var(--line);
	backdrop-filter: blur(14px);
}
.mainbar-inner { min-height: 104px; }
.site-branding {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 120px;
}
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 120px;
	max-width: min(280px, 36vw);
}
.custom-logo {
	display: block;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 72px;
	object-fit: contain;
}
.brand-mark,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--green-950);
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 900;
	letter-spacing: 0;
}
.brand-symbol {
	display: grid;
	place-items: center;
	width: 58px;
	aspect-ratio: 1;
	border-radius: 50%;
	color: #fff;
	background: conic-gradient(from 30deg, #48bd46, #89d23c, #0c9bb8, #48bd46);
	font-weight: 900;
}
.primary-nav { margin-left: auto; font-weight: 800; color: #153d28; }
.primary-nav a { white-space: nowrap; }
.icon-button {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}
.search-toggle span {
	width: 17px;
	height: 17px;
	border: 3px solid currentColor;
	border-radius: 50%;
	position: relative;
}
.search-toggle span::after {
	content: "";
	position: absolute;
	width: 9px;
	height: 3px;
	right: -8px;
	bottom: -5px;
	background: currentColor;
	transform: rotate(45deg);
	border-radius: 999px;
}
.menu-toggle { gap: 4px; display: none; }
.menu-toggle span { width: 24px; height: 3px; background: currentColor; border-radius: 999px; }
.header-search {
	padding: 0 0 22px;
	background: #fff;
}
.search-form { display: flex; gap: 10px; }
.search-form label { flex: 1; }
.search-field,
.newsletter-form input {
	width: 100%;
	min-height: 50px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0 18px;
	font: inherit;
}
button,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 24px;
	border: 0;
	border-radius: 5px;
	background: var(--green-500);
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 13px;
	cursor: pointer;
}
.button::after,
.read-more::after { content: " ->"; }
.button-soft { background: var(--green-600); }

.hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(0, 28, 18, .9), rgba(0, 38, 24, .45), rgba(0, 0, 0, .05)),
		var(--hero-image),
		linear-gradient(135deg, #0d4e2a, #2d7f4b 45%, #b9d77a);
	background-size: cover;
	background-position: center;
}
.hero h1 {
	max-width: 720px;
	margin: 8px 0 18px;
	font-size: clamp(44px, 6vw, 78px);
	line-height: .98;
	letter-spacing: 0;
}
.hero p { max-width: 620px; font-size: 20px; }
.section-kicker,
.term-link {
	color: var(--green-500);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0;
}
.topic-strip {
	background: linear-gradient(180deg, #fff, var(--mint-50));
	border-bottom: 1px solid var(--line);
}
.topic-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 16px;
	padding: 32px 0 28px;
}
.topic-item {
	display: grid;
	justify-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}
.topic-icon {
	display: grid;
	place-items: center;
	width: 58px;
	aspect-ratio: 1;
	border: 1px solid rgba(22, 122, 62, .35);
	border-radius: 50%;
	color: var(--green-800);
	font-size: 25px;
	font-weight: 900;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	grid-auto-rows: 260px;
	gap: 10px;
	padding: 28px 0;
}
.feature-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	background: #173724;
	color: #fff;
	min-height: 260px;
}
.feature-card-large { grid-row: span 2; }
.feature-image {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .14)),
		var(--card-image),
		linear-gradient(135deg, #14492b, #8fbf4d);
	background-size: cover;
	background-position: center;
	transition: transform .25s ease;
}
.feature-card:hover .feature-image { transform: scale(1.035); }
.feature-content {
	position: absolute;
	inset: auto 0 0;
	padding: 36px;
	z-index: 1;
}
.feature-content h2 {
	max-width: 650px;
	margin: 10px 0 14px;
	font-size: 34px;
	line-height: 1.08;
}
.feature-card:not(.feature-card-large) .feature-content h2 { font-size: 25px; }
.read-more {
	color: inherit;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 13px;
}

.focus-band {
	padding: 24px 0 42px;
	background: linear-gradient(90deg, var(--mint-50), #fff);
}
.focus-layout {
	display: grid;
	grid-template-columns: 270px 1fr;
	gap: 42px;
	align-items: start;
}
.focus-intro h2,
.lower-grid h2,
.archive-header h1 {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1.1;
}
.focus-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.compact-card h3,
.text-card h3,
.post-card h2 { line-height: 1.18; }
.compact-image,
.post-card-image {
	display: block;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--mint-50);
	aspect-ratio: 16 / 10;
}
.compact-image img,
.post-card-image img { width: 100%; height: 100%; object-fit: cover; }

.newsletter-band { padding: 28px 0; }
.newsletter-inner {
	display: grid;
	grid-template-columns: 1fr minmax(360px, 520px);
	gap: 32px;
	align-items: center;
	padding: 34px 48px;
	border-radius: var(--radius);
	color: #fff;
	background:
		linear-gradient(90deg, rgba(0, 57, 32, .98), rgba(0, 63, 36, .82)),
		radial-gradient(circle at 20% 20%, rgba(105, 202, 74, .7), transparent 35%),
		#003f24;
}
.newsletter-inner h2 { margin: 0 0 4px; }
.newsletter-inner p { margin: 0; color: rgba(255, 255, 255, .86); }
.newsletter-form { display: grid; grid-template-columns: 1fr 150px; gap: 10px; }

.lower-grid {
	display: grid;
	grid-template-columns: 1.35fr .9fr .9fr;
	gap: 38px;
	padding: 28px 0 54px;
}
.lower-grid > div + div { border-left: 1px solid var(--line); padding-left: 38px; }
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	padding-bottom: 44px;
}
.post-card {
	overflow: hidden;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}
.post-card-body { padding: 22px; }
.text-card {
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}
.partners-box {
	display: grid;
	place-items: center;
	gap: 26px;
	min-height: 260px;
	font-size: 22px;
	font-weight: 900;
	text-align: center;
}
.ad-slot {
	width: min(970px, calc(100% - 48px));
	margin: 20px auto;
	padding: 14px;
	border: 1px dashed #b9cfc0;
	border-radius: var(--radius);
	background: #f8fbf8;
	text-align: center;
	overflow: hidden;
}

.archive-header {
	padding: 56px 0 26px;
}
.archive-description { max-width: 720px; color: var(--muted); }
.load-more-wrap { display: flex; justify-content: center; padding: 0 0 54px; }

.article-hero {
	background: var(--green-950);
	color: #fff;
}
.article-hero-inner { padding: 58px 0 34px; }
.article-hero h1 {
	max-width: 920px;
	margin: 12px 0 18px;
	font-size: clamp(42px, 5.5vw, 72px);
	line-height: 1;
}
.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	color: rgba(255, 255, 255, .8);
}
.article-image img { width: 100%; max-height: 580px; object-fit: cover; }
.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) 300px;
	gap: 70px;
	padding: 54px 0 70px;
}
.article-content {
	font-size: 20px;
	line-height: 1.78;
}
.article-content a { color: var(--green-800); text-decoration: underline; text-underline-offset: 3px; }
.article-content h2,
.article-content h3 { line-height: 1.16; margin-top: 1.8em; }
.author-box {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 22px;
	margin-top: 42px;
	padding: 28px;
	border-radius: var(--radius);
	background: var(--mint-50);
}
.author-avatar img { border-radius: 50%; }
.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	font-weight: 900;
}
.article-sidebar .widget {
	padding: 22px;
	border-radius: var(--radius);
	background: var(--mint-50);
	margin-bottom: 20px;
}

.site-footer {
	background: var(--green-950);
	color: #fff;
	padding: 30px 0;
}
.footer-brand {
	color: #fff;
	font-size: 28px;
}
.footer-brand .brand-symbol { width: 42px; }
.footer-nav { font-size: 13px; }
.copyright { margin: 0; font-size: 13px; text-align: right; color: rgba(255, 255, 255, .78); }

@media (max-width: 980px) {
	.container { width: min(100% - 32px, 1180px); }
	.mainbar-inner { min-height: 82px; }
	.menu-toggle { display: grid; }
	.primary-nav {
		position: absolute;
		inset: 82px 0 auto;
		display: none;
		background: #fff;
		padding: 18px 24px 24px;
		box-shadow: var(--shadow);
	}
	.primary-nav.is-open { display: block; }
	.primary-nav ul { display: grid; gap: 12px; }
	.topic-grid { grid-template-columns: repeat(4, 1fr); }
	.feature-grid,
	.focus-layout,
	.lower-grid,
	.article-layout,
	.newsletter-inner { grid-template-columns: 1fr; }
	.feature-card-large { grid-row: auto; }
	.focus-list,
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.lower-grid > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 28px; }
}

@media (max-width: 640px) {
	.topbar { display: none; }
	.site-branding,
	.custom-logo-link { min-width: 96px; }
	.custom-logo-link { max-width: min(210px, 58vw); }
	.custom-logo { max-height: 56px; }
	.brand-mark { font-size: 25px; }
	.brand-symbol { width: 46px; }
	.hero { min-height: 500px; }
	.hero h1 { font-size: 44px; }
	.hero p { font-size: 17px; }
	.topic-grid { grid-template-columns: repeat(2, 1fr); }
	.feature-grid { display: block; padding-top: 16px; }
	.feature-card { margin-bottom: 12px; min-height: 320px; }
	.feature-content { padding: 24px; }
	.feature-content h2,
	.feature-card:not(.feature-card-large) .feature-content h2 { font-size: 27px; }
	.focus-list,
	.post-grid { grid-template-columns: 1fr; }
	.newsletter-inner { padding: 26px 20px; }
	.newsletter-form { grid-template-columns: 1fr; }
	.article-hero h1 { font-size: 40px; }
	.article-content { font-size: 18px; }
	.author-box { grid-template-columns: 1fr; }
	.footer-inner { display: grid; gap: 20px; }
	.footer-nav ul { flex-wrap: wrap; }
	.copyright { text-align: left; }
}
