:root {
	--forest-900: #10281d;
	--forest-800: #1b4d35;
	--forest-700: #2b6f4d;
	--forest-500: #6aa36e;
	--moss-300: #d7e6c8;
	--sand-100: #f4efdf;
	--cream-50: #fcfaf3;
	--earth-300: #caa874;
	--earth-500: #8f6430;
	--ink: #1d2a24;
	--muted: #57645d;
	--white: #ffffff;
	--shadow: 0 20px 60px rgba(16, 40, 29, 0.14);
	--radius-lg: 28px;
	--radius-md: 18px;
	--shell: min(1160px, calc(100vw - 40px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(202, 168, 116, 0.14), transparent 34%),
		linear-gradient(180deg, #f6f6ef 0%, #f8f4e7 45%, #eef4ea 100%);
	line-height: 1.65;
}

body.page-template-page-about {
	background:
		radial-gradient(circle at top left, rgba(202, 168, 116, 0.1), transparent 30%),
		radial-gradient(circle at right center, rgba(106, 163, 110, 0.12), transparent 24%),
		linear-gradient(180deg, #f8f5eb 0%, #fbf8ef 42%, #eef5ea 100%);
}

body.page-template-page-initiatives {
	background:
		radial-gradient(circle at top right, rgba(202, 168, 116, 0.1), transparent 28%),
		radial-gradient(circle at left center, rgba(106, 163, 110, 0.12), transparent 26%),
		linear-gradient(180deg, #f8f5eb 0%, #fbf8ef 42%, #eef5ea 100%);
}

body.page-template-page-contact {
	background:
		radial-gradient(circle at top left, rgba(202, 168, 116, 0.1), transparent 28%),
		radial-gradient(circle at right center, rgba(106, 163, 110, 0.12), transparent 24%),
		linear-gradient(180deg, #f8f5eb 0%, #fbf8ef 42%, #eef5ea 100%);
}

body.page-template-page-impact {
	background:
		radial-gradient(circle at top right, rgba(202, 168, 116, 0.1), transparent 28%),
		radial-gradient(circle at left center, rgba(106, 163, 110, 0.12), transparent 24%),
		linear-gradient(180deg, #f8f5eb 0%, #fbf8ef 42%, #eef5ea 100%);
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.shell {
	width: var(--shell);
	margin: 0 auto;
}

.section-kicker {
	margin: 0 0 10px;
	font-size: 0.83rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--forest-700);
}

h1,
h2,
h3,
.site-brand__name {
	font-family: "Cormorant Garamond", serif;
	line-height: 1.02;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(3.2rem, 7vw, 6rem);
	margin: 0;
}

h2 {
	font-size: clamp(2.2rem, 4.4vw, 3.5rem);
	margin: 0 0 18px;
}

h3 {
	font-size: 1.7rem;
	margin: 0 0 14px;
}

p {
	margin: 0 0 18px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(14px);
	background: rgba(252, 250, 243, 0.84);
	border-bottom: 1px solid rgba(27, 77, 53, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.site-brand__logo {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: linear-gradient(180deg, rgba(106, 163, 110, 0.16), rgba(27, 77, 53, 0.14));
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.site-brand__logo img {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.site-brand__eyebrow {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-weight: 700;
	color: var(--forest-700);
}

.site-brand__name {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Gallery mega menu */
@media (min-width: 961px) {
	.site-header__inner {
		position: relative;
	}

	.primary-menu > .menu-item-has-children {
		position: static;
	}

	.primary-menu > .menu-item-has-children > a::after {
		content: "";
		display: inline-block;
		width: 7px;
		height: 7px;
		margin: 0 0 3px 8px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
	}

	.primary-menu > .menu-item-has-children:hover > a::after,
	.primary-menu > .menu-item-has-children:focus-within > a::after {
		transform: rotate(225deg) translate(-2px, -2px);
	}

	.primary-menu > .menu-item-has-children > .sub-menu {
		top: calc(100% + 14px);
		right: 0;
		left: auto;
		display: grid;
		grid-template-columns: minmax(240px, 0.78fr) minmax(360px, 1.22fr);
		gap: 18px;
		width: min(760px, calc(100vw - 40px));
		min-width: 0;
		padding: 18px;
		border: 1px solid rgba(16, 40, 29, 0.12);
		border-radius: 14px;
		background: #fffdf7;
		box-shadow: 0 26px 70px rgba(16, 40, 29, 0.2);
		transform: translateY(10px);
	}

	.primary-menu > .menu-item-has-children > .sub-menu::before {
		position: static;
		display: flex;
		height: auto;
		padding: 26px;
		align-items: flex-end;
		border-radius: 10px;
		background:
			linear-gradient(145deg, rgba(22, 60, 43, 0.96), rgba(28, 83, 57, 0.9)),
			#163c2b;
		color: #f9f5ec;
		content: "Gallery\A Stories of people, culture, learning and conservation.";
		font-family: "Cormorant Garamond", Georgia, serif;
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1.15;
		white-space: pre-line;
	}

	.primary-menu > .menu-item-has-children > .sub-menu > li {
		min-width: 0;
	}

	.primary-menu > .menu-item-has-children > .sub-menu > li > a {
		position: relative;
		display: flex;
		min-height: 190px;
		padding: 24px;
		align-items: flex-end;
		overflow: hidden;
		border-radius: 10px;
		background:
			linear-gradient(0deg, rgba(7, 31, 20, 0.88), rgba(7, 31, 20, 0.04) 74%),
			url("../images/team-exposure-tour/team-exposure-tour-01.jpg") center / cover no-repeat;
		color: #fff;
		font-family: "Cormorant Garamond", Georgia, serif;
		font-size: 1.65rem;
		white-space: normal;
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
		transition: transform 0.25s ease, box-shadow 0.25s ease;
	}

	.primary-menu > .menu-item-has-children > .sub-menu > li > a::after {
		display: block;
		margin-left: auto;
		color: #f7d58e;
		content: "\2192";
		font-family: Arial, sans-serif;
		font-size: 1.5rem;
	}

	.primary-menu > .menu-item-has-children > .sub-menu > li > a:hover,
	.primary-menu > .menu-item-has-children > .sub-menu > li > a:focus-visible {
		background:
			linear-gradient(0deg, rgba(7, 31, 20, 0.9), rgba(7, 31, 20, 0.08) 74%),
			url("../images/team-exposure-tour/team-exposure-tour-01.jpg") center / cover no-repeat;
		color: #fff;
		transform: translateY(-2px);
		box-shadow: 0 16px 34px rgba(16, 40, 29, 0.2);
	}

	.primary-menu > .menu-item-has-children:hover > .sub-menu,
	.primary-menu > .menu-item-has-children:focus-within > .sub-menu {
		transform: translateY(0);
	}
}

.primary-menu > .menu-item {
	position: relative;
}

.primary-menu a {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--muted);
}

.primary-menu .current-menu-item a,
.primary-menu .current-menu-parent > a,
.primary-menu a:hover {
	color: var(--forest-800);
}

.primary-menu .sub-menu {
	position: absolute;
	z-index: 50;
	top: calc(100% + 14px);
	left: 50%;
	min-width: 220px;
	margin: 0;
	padding: 10px;
	list-style: none;
	border: 1px solid rgba(16, 40, 29, 0.1);
	border-radius: 8px;
	background: #fffdf7;
	box-shadow: 0 18px 42px rgba(16, 40, 29, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-menu .sub-menu::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: 16px;
}

.primary-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	white-space: nowrap;
	border-radius: 5px;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
	background: var(--sand-100);
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	border: 0;
	background: transparent;
	padding: 4px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--forest-900);
}

.hero,
.story-block,
.mission-band,
.focus-area,
.image-narrative,
.impact-ribbon,
.partners-showcase,
.partner-carousel,
.collaboration-note,
.contact-cta,
.front-page-editable,
.page-content {
	padding: 84px 0;
}

.home-slider {
	padding: 28px 0 18px;
}

.home-slider__frame {
	position: relative;
	width: min(1360px, calc(100vw - 32px));
	margin: 0 auto;
	min-height: 690px;
	border-radius: 34px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(16, 40, 29, 0.18);
}

.home-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.8s ease;
}

.home-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.home-slide__image,
.home-slide__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-slide__image {
	object-fit: cover;
	transform: scale(1.06);
	transition: transform 5s ease;
}

.home-slide.is-active .home-slide__image {
	transform: scale(1.13);
}

.home-slide__overlay {
	background:
		linear-gradient(90deg, rgba(14, 34, 27, 0.76) 0%, rgba(14, 34, 27, 0.56) 34%, rgba(14, 34, 27, 0.16) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
}

.home-slide__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 690px;
	max-width: 730px;
	padding: 92px 0 112px;
	color: var(--white);
}

.home-slide__subtitle {
	margin: 0 0 16px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #d8e9d2;
}

.home-slide__content h2 {
	margin: 0 0 18px;
	font-size: clamp(3rem, 6vw, 5.6rem);
	line-height: 0.95;
	color: var(--white);
}

.home-slide__content p {
	max-width: 54ch;
	font-size: 1.08rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}

.home-slide__content .button {
	width: fit-content;
	margin-top: 12px;
	background: rgba(255, 255, 255, 0.18);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.24);
	backdrop-filter: blur(10px);
}

.home-slide__content .button:hover {
	background: rgba(255, 255, 255, 0.26);
}

.home-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 18px;
}

.home-slider__dots {
	display: flex;
	align-items: center;
	gap: 10px;
}

.home-slider__dot {
	border: 0;
	cursor: pointer;
}

.home-slider__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(30, 58, 47, 0.22);
}

.home-slider__dot.is-active {
	background: var(--forest-800);
	box-shadow: 0 0 0 6px rgba(43, 111, 77, 0.12);
}

.hero {
	padding-top: 56px;
}

.hero__grid,
.image-narrative__grid,
.partners-showcase__grid,
.split-section,
.mission-band__grid,
.impact-ribbon__grid,
.contact-cta__box {
	display: grid;
	gap: 32px;
}

.hero__grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	align-items: center;
	column-gap: 56px;
}

.hero__lead {
	max-width: 60ch;
	font-size: 1.1rem;
	color: var(--muted);
}

.hero__content h1 {
	max-width: 10ch;
	font-size: clamp(2.4rem, 4.4vw, 4.4rem);
	line-height: 1;
}

.hero__actions,
.contact-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 32px 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--forest-800);
	color: var(--white);
}

.button--secondary,
.button--ghost {
	border: 1px solid rgba(16, 40, 29, 0.16);
	background: rgba(255, 255, 255, 0.55);
	color: var(--forest-900);
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}

.hero__stats li,
.mission-card,
.focus-card {
	padding: 20px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.62);
	box-shadow: var(--shadow);
}

.hero__stats li {
	position: relative;
	padding: 24px 22px 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(215, 230, 200, 0.5)),
		radial-gradient(circle at right top, rgba(106, 163, 110, 0.14), transparent 34%);
	border: 1px solid rgba(43, 111, 77, 0.08);
	overflow: hidden;
}

.hero__stats li::after {
	content: "";
	position: absolute;
	inset: auto -22px -22px auto;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(106, 163, 110, 0.18), transparent 68%);
}

.hero__stats strong {
	display: block;
	font-size: 2rem;
	color: var(--forest-800);
}

.hero__stats span {
	display: block;
	font-size: 0.92rem;
	color: var(--muted);
}

.hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__visual img,
.image-narrative__media img,
.partners-showcase__media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-portrait {
	width: min(640px, 100%);
	height: auto;
	min-height: 0;
	border-radius: 34px;
	overflow: hidden;
	box-shadow: var(--shadow);
	background: rgba(255, 255, 255, 0.76);
	padding: 18px;
}

.hero-portrait--full-image {
	border: 1px solid rgba(43, 111, 77, 0.08);
}

.hero-portrait img {
	width: 100%;
	height: auto;
	max-height: 720px;
	object-fit: contain;
	border-radius: 26px;
}

.hero-card {
	position: absolute;
	right: -10px;
	bottom: 22px;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(16, 40, 29, 0.86);
	color: var(--white);
	box-shadow: var(--shadow);
}

.hero-card__label {
	margin: 0 0 6px;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	opacity: 0.74;
}

.hero-card__value {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 800;
}

.hero-card--floating {
	right: -18px;
	bottom: 28px;
	max-width: 260px;
}

.hero-portrait__badge {
	position: absolute;
	right: 22px;
	bottom: 22px;
	max-width: 250px;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(16, 40, 29, 0.88);
	color: var(--white);
	box-shadow: var(--shadow);
}

.story-block {
	background: linear-gradient(180deg, rgba(215, 230, 200, 0.35), rgba(255, 255, 255, 0));
}

.split-section {
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	align-items: center;
	column-gap: 54px;
}

.story-block__content {
	max-width: 620px;
}

.story-block__content h2 {
	max-width: none;
	font-size: clamp(2.2rem, 3.6vw, 3.8rem);
	line-height: 1.02;
	margin-bottom: 24px;
}

.story-block__content h2 span {
	display: block;
}

.story-block__content p {
	max-width: 52ch;
}

.story-block__button {
	margin-top: 8px;
	min-width: 220px;
	background: rgba(30, 58, 47, 0.06);
}

.story-block__media {
	margin: 0;
	align-self: center;
	padding: 18px;
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--shadow);
}

.story-block__media img {
	width: 100%;
	height: auto;
	max-height: 720px;
	border-radius: 30px;
	object-fit: contain;
	box-shadow: none;
}

.mission-band__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.focus-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.focus-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(215, 230, 200, 0.54));
}

.image-narrative__grid,
.partners-showcase__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
}

.image-narrative__media {
	margin: 0;
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--forest-700);
	box-shadow: 0 0 0 5px rgba(106, 163, 110, 0.18);
}

.impact-ribbon {
	background: linear-gradient(135deg, var(--forest-900), #1f563c);
	color: var(--white);
}

.impact-ribbon .section-kicker {
	color: var(--moss-300);
}

.impact-ribbon__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	align-items: start;
}

.impact-ribbon__list p {
	padding: 0 0 18px;
	margin: 0 0 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.partners-showcase__content,
.contact-cta__box {
	padding: 34px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.68);
	box-shadow: var(--shadow);
}

.partner-carousel {
	padding-top: 12px;
}

.partner-carousel__viewport {
	overflow: hidden;
	border-radius: 28px;
}

.partner-carousel__track {
	display: flex;
	gap: 18px;
	width: max-content;
	animation: lsck-partner-scroll 28s linear infinite;
}

.partner-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 84px;
	padding: 0 28px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(43, 111, 77, 0.1);
	box-shadow: var(--shadow);
	font-weight: 800;
	color: var(--forest-800);
	white-space: nowrap;
}

.collaboration-note {
	padding-top: 14px;
}

.collaboration-note__box {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
	gap: 28px;
	padding: 38px 42px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(215, 230, 200, 0.5)),
		radial-gradient(circle at right top, rgba(106, 163, 110, 0.12), transparent 30%);
	border: 1px solid rgba(43, 111, 77, 0.08);
	box-shadow: var(--shadow);
}

.collaboration-note__content {
	max-width: 760px;
}

/* Final mobile stabilization for the home hero slider.
   Kept at the end so it wins over older responsive experiments. */
@media (max-width: 720px) {
	body {
		overflow-x: hidden;
	}

	.home-editorial-slider {
		width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		padding: 20px 18px 44px !important;
		margin: 0 !important;
		overflow: visible !important;
		background: var(--color-cream, #f5f1e8) !important;
	}

	.home-editorial-slider__frame {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: auto !important;
		border-radius: 30px !important;
		overflow: hidden !important;
		background: #123f31 !important;
		box-shadow: 0 24px 54px rgba(14, 58, 45, 0.18) !important;
		display: block !important;
	}

	.home-editorial-slider .home-slide {
		position: relative !important;
		inset: auto !important;
		display: none !important;
		grid-template-columns: 1fr !important;
		flex-direction: column !important;
		width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		opacity: 0 !important;
		transform: none !important;
		pointer-events: none !important;
		background: #123f31 !important;
	}

	.home-editorial-slider .home-slide.is-active {
		display: flex !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	.home-editorial-slide__media {
		position: relative !important;
		inset: auto !important;
		order: 1 !important;
		width: 100% !important;
		height: clamp(220px, 58vw, 320px) !important;
		min-height: 0 !important;
		max-height: none !important;
		display: block !important;
		overflow: hidden !important;
		border-radius: 0 !important;
		background: #123f31 !important;
		transform: none !important;
	}

	.home-editorial-slide__media img,
	.home-slide.is-active .home-editorial-slide__media img {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		transform: none !important;
		filter: saturate(0.96) brightness(0.88) contrast(1.04) !important;
		opacity: 1 !important;
	}

	.home-editorial-slide__overlay {
		position: absolute !important;
		inset: 0 !important;
		background: linear-gradient(180deg, rgba(13, 55, 42, 0.04) 0%, rgba(13, 55, 42, 0.48) 100%) !important;
		opacity: 1 !important;
	}

	.home-editorial-slide__panel {
		position: relative !important;
		inset: auto !important;
		order: 2 !important;
		width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		padding: 0 !important;
		margin: 0 !important;
		border-radius: 0 !important;
		background: #123f31 !important;
		color: #fffaf1 !important;
		display: block !important;
	}

	.home-editorial-slide__inner {
		width: 100% !important;
		max-width: 100% !important;
		min-height: 0 !important;
		padding: 28px 24px 34px !important;
		margin: 0 !important;
		box-sizing: border-box !important;
		display: block !important;
		text-align: left !important;
	}

	.home-editorial-eyebrow {
		margin: 0 0 16px !important;
		font-size: 0.72rem !important;
		letter-spacing: 0.18em !important;
		color: rgba(207, 229, 209, 0.88) !important;
		white-space: normal !important;
	}

	.home-editorial-slide__title {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 0 18px !important;
		font-size: clamp(2.15rem, 12vw, 3.65rem) !important;
		line-height: 0.96 !important;
		letter-spacing: -0.045em !important;
		color: #fffaf1 !important;
		overflow-wrap: break-word !important;
	}

	.home-editorial-slide__title em {
		color: #9fc7a5 !important;
	}

	.home-editorial-slide__text {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 0 24px !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
		color: rgba(255, 250, 241, 0.82) !important;
		opacity: 1 !important;
		transform: none !important;
		overflow-wrap: break-word !important;
	}

	.home-editorial-slide__actions {
		width: 100% !important;
		max-width: 100% !important;
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		margin: 0 !important;
		opacity: 1 !important;
		transform: none !important;
	}

	.home-editorial-slide__actions .button {
		width: 100% !important;
		min-width: 0 !important;
		min-height: 52px !important;
		justify-content: center !important;
		border-radius: 999px !important;
		font-size: 0.98rem !important;
		white-space: normal !important;
	}

	.home-editorial-slider__stats,
	.home-editorial-slider__cut {
		display: none !important;
	}

	.home-editorial-slider__dots {
		position: relative !important;
		inset: auto !important;
		width: 100% !important;
		display: flex !important;
		justify-content: center !important;
		gap: 10px !important;
		margin: 16px 0 0 !important;
		padding: 0 !important;
		transform: none !important;
	}

	.home-slider__dot {
		width: 32px !important;
		height: 4px !important;
		border-radius: 999px !important;
		background: rgba(18, 63, 49, 0.2) !important;
		border: 0 !important;
	}

	.home-slider__dot.is-active {
		background: #123f31 !important;
	}
}

@media (max-width: 420px) {
	.home-editorial-slider {
		padding-right: 14px !important;
		padding-left: 14px !important;
	}

	.home-editorial-slide__inner {
		padding: 24px 20px 30px !important;
	}

	.home-editorial-slide__media {
		height: 230px !important;
	}

	.home-editorial-slide__title {
		font-size: clamp(2rem, 11vw, 3.05rem) !important;
	}
}

/* Final inner-page image formatting pass.
   Presentation-only: image files and template sources remain unchanged. */
.about-editorial-who__image,
.about-editorial-stand__visual,
.initiatives-editorial-intro__image,
.initiatives-editorial-forest__visual,
.initiatives-editorial-livelihood__image,
.impact-editorial-why__images,
.contact-editorial-hero__right {
	position: relative !important;
}

.about-editorial-who__image img,
.about-editorial-stand__media-grid > img,
.initiatives-editorial-intro__image img,
.initiatives-editorial-forest__media-grid > img,
.initiatives-editorial-livelihood__image img,
.impact-editorial-why__images > img:first-child {
	width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
	object-position: center !important;
	padding: clamp(12px, 1.6vw, 20px) !important;
	background: rgba(255, 255, 255, 0.84) !important;
	border: 1px solid rgba(42, 90, 61, 0.1) !important;
	border-radius: 0 !important;
	box-shadow: 0 28px 70px rgba(16, 40, 29, 0.14) !important;
	transition: transform 0.45s ease, box-shadow 0.45s ease !important;
}

.about-editorial-who__image:hover img,
.about-editorial-stand__visual:hover .about-editorial-stand__media-grid > img,
.initiatives-editorial-intro__image:hover img,
.initiatives-editorial-forest__visual:hover .initiatives-editorial-forest__media-grid > img,
.initiatives-editorial-livelihood__image:hover img,
.impact-editorial-why__images:hover > img:first-child {
	transform: translateY(-6px) !important;
	box-shadow: 0 34px 86px rgba(16, 40, 29, 0.18) !important;
}

.about-editorial-stand__media-grid,
.initiatives-editorial-forest__media-grid,
.impact-editorial-why__images {
	position: relative !important;
	display: block !important;
}

.about-editorial-stand__caption,
.initiatives-editorial-forest__caption,
.impact-editorial-why__label {
	position: absolute !important;
	left: -24px !important;
	bottom: -24px !important;
	z-index: 3 !important;
	width: min(360px, 78%) !important;
	min-height: 0 !important;
	padding: 22px 24px !important;
	background: #123f31 !important;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.18) !important;
}

.about-editorial-stand__caption p,
.initiatives-editorial-forest__caption p,
.impact-editorial-why__label p {
	font-size: 1.04rem !important;
	line-height: 1.35 !important;
}

.about-editorial-stand__caption span,
.initiatives-editorial-forest__caption span,
.impact-editorial-why__label span {
	margin-top: 12px !important;
	letter-spacing: 0.16em !important;
	color: #a8c9b0 !important;
}

.about-editorial-who__image::after,
.initiatives-editorial-intro__image::after,
.initiatives-editorial-livelihood__image::after {
	position: absolute !important;
	left: -24px !important;
	bottom: -24px !important;
	z-index: 3 !important;
	display: block !important;
	width: min(360px, 78%) !important;
	padding: 22px 24px !important;
	background: #123f31 !important;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.18) !important;
	font-family: "Cormorant Garamond", serif !important;
	font-size: 1.04rem !important;
	font-style: italic !important;
	line-height: 1.35 !important;
	color: #f7f3ee !important;
	white-space: pre-line !important;
}

.about-editorial-who__image::after {
	content: "Community Focus\a Conservation rooted in local action";
}

.initiatives-editorial-intro__image::after {
	content: "Community Work\a Practical and community-owned";
}

.initiatives-editorial-livelihood__image::after {
	content: "Nature and Dignity\a Livelihoods growing together";
}

.impact-editorial-why__images > img:first-child {
	max-height: 720px !important;
}

@media (max-width: 900px) {
	.about-editorial-who__image::after,
	.initiatives-editorial-intro__image::after,
	.initiatives-editorial-livelihood__image::after,
	.about-editorial-stand__caption,
	.initiatives-editorial-forest__caption,
	.impact-editorial-why__label {
		left: 18px !important;
		right: 18px !important;
		bottom: 18px !important;
		width: auto !important;
	}
}

@media (max-width: 720px) {
	.about-editorial-who__image img,
	.about-editorial-stand__media-grid > img,
	.initiatives-editorial-intro__image img,
	.initiatives-editorial-forest__media-grid > img,
	.initiatives-editorial-livelihood__image img,
	.impact-editorial-why__images > img:first-child {
		padding: 10px !important;
		max-height: none !important;
	}

	.about-editorial-who__image::after,
	.initiatives-editorial-intro__image::after,
	.initiatives-editorial-livelihood__image::after,
	.about-editorial-stand__caption,
	.initiatives-editorial-forest__caption,
	.impact-editorial-why__label {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		width: auto !important;
		margin: -6px 16px 0 !important;
		padding: 18px 20px !important;
	}
}

/* Editorial image treatment shared across inner pages.
   This changes only the presentation, not the actual images. */
.about-editorial-who__image,
.about-editorial-stand__visual,
.initiatives-editorial-intro__image,
.initiatives-editorial-forest__visual,
.initiatives-editorial-livelihood__image,
.impact-editorial-why__images,
.contact-editorial-hero__right {
	position: relative;
}

.about-editorial-who__image img,
.about-editorial-stand__media-grid > img,
.initiatives-editorial-intro__image img,
.initiatives-editorial-forest__media-grid > img,
.initiatives-editorial-livelihood__image img,
.impact-editorial-why__images > img:first-child {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	padding: clamp(12px, 1.6vw, 20px);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(42, 90, 61, 0.1);
	border-radius: 0;
	box-shadow: 0 28px 70px rgba(16, 40, 29, 0.14);
	transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-editorial-who__image:hover img,
.about-editorial-stand__visual:hover .about-editorial-stand__media-grid > img,
.initiatives-editorial-intro__image:hover img,
.initiatives-editorial-forest__visual:hover .initiatives-editorial-forest__media-grid > img,
.initiatives-editorial-livelihood__image:hover img,
.impact-editorial-why__images:hover > img:first-child {
	transform: translateY(-6px);
	box-shadow: 0 34px 86px rgba(16, 40, 29, 0.18);
}

.about-editorial-who__image::after,
.initiatives-editorial-intro__image::after,
.initiatives-editorial-livelihood__image::after {
	position: absolute;
	left: -24px;
	bottom: -24px;
	z-index: 3;
	display: block;
	width: min(360px, 78%);
	padding: 22px 24px;
	background: #123f31;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.18);
	font-family: "Cormorant Garamond", serif;
	font-size: 1.04rem;
	font-style: italic;
	line-height: 1.35;
	color: #f7f3ee;
}

.about-editorial-who__image::after {
	content: "Community Focus\a Conservation rooted in local action";
	white-space: pre-line;
}

.initiatives-editorial-intro__image::after {
	content: "Community Work\a Practical and community-owned";
	white-space: pre-line;
}

.initiatives-editorial-livelihood__image::after {
	content: "Nature and Dignity\a Livelihoods growing together";
	white-space: pre-line;
}

.about-editorial-stand__media-grid,
.initiatives-editorial-forest__media-grid,
.impact-editorial-why__images {
	position: relative;
	display: block;
}

.about-editorial-stand__caption,
.initiatives-editorial-forest__caption,
.impact-editorial-why__label {
	position: absolute;
	left: -24px;
	bottom: -24px;
	z-index: 3;
	width: min(360px, 78%);
	min-height: 0;
	padding: 22px 24px;
	background: #123f31;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.18);
}

.about-editorial-stand__caption p,
.initiatives-editorial-forest__caption p,
.impact-editorial-why__label p {
	font-size: 1.04rem;
	line-height: 1.35;
}

.about-editorial-stand__caption span,
.initiatives-editorial-forest__caption span,
.impact-editorial-why__label span {
	margin-top: 12px;
	letter-spacing: 0.16em;
	color: #a8c9b0;
}

.impact-editorial-why__images > img:first-child {
	height: auto;
	max-height: 720px;
}

.contact-editorial-hero__right img {
	object-fit: cover;
	object-position: center;
	filter: saturate(0.95) contrast(1.04);
}

@media (max-width: 900px) {
	.about-editorial-who__image::after,
	.initiatives-editorial-intro__image::after,
	.initiatives-editorial-livelihood__image::after,
	.about-editorial-stand__caption,
	.initiatives-editorial-forest__caption,
	.impact-editorial-why__label {
		left: 18px;
		right: 18px;
		bottom: 18px;
		width: auto;
	}
}

@media (max-width: 720px) {
	.about-editorial-who__image img,
	.about-editorial-stand__media-grid > img,
	.initiatives-editorial-intro__image img,
	.initiatives-editorial-forest__media-grid > img,
	.initiatives-editorial-livelihood__image img,
	.impact-editorial-why__images > img:first-child {
		padding: 10px;
		max-height: none;
	}

	.about-editorial-who__image::after,
	.initiatives-editorial-intro__image::after,
	.initiatives-editorial-livelihood__image::after,
	.about-editorial-stand__caption,
	.initiatives-editorial-forest__caption,
	.impact-editorial-why__label {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		width: auto;
		margin: -6px 16px 0;
		padding: 18px 20px;
	}

	.contact-editorial-hero__right {
		min-height: 280px !important;
	}
}

/* Gallery */
.gallery-page {
	background: #f7f3ea;
	color: #173528;
}

.gallery-hero {
	padding: 112px 0 104px;
	background: #163c2b;
	color: #f9f5ec;
}

.gallery-hero__inner {
	max-width: 920px;
}

.gallery-kicker {
	margin: 0 0 18px;
	color: #d59b31;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.gallery-hero h1,
.gallery-showcase h2 {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(3.6rem, 7vw, 6.5rem);
	line-height: 0.94;
}

.gallery-hero h1 em,
.gallery-showcase h2 em {
	color: #7fbd8c;
	font-weight: 700;
}

.gallery-hero p:last-child {
	max-width: 680px;
	margin: 26px 0 0;
	color: rgba(249, 245, 236, 0.82);
	font-size: 1.08rem;
	line-height: 1.8;
}

.gallery-showcase {
	padding: 100px 0 112px;
}

.gallery-showcase__intro {
	max-width: 880px;
	margin-bottom: 42px;
}

.gallery-showcase h2 {
	font-size: clamp(2.8rem, 5.5vw, 5rem);
}

.gallery-showcase__intro > p:last-child {
	margin: 18px 0 0;
	color: #5d685f;
	line-height: 1.7;
}

.gallery-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 34px;
}

.gallery-tab {
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid rgba(23, 53, 40, 0.18);
	border-radius: 999px;
	background: #ffffff;
	color: #173528;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gallery-tab:hover,
.gallery-tab:focus-visible,
.gallery-tab.is-active {
	border-color: #173528;
	background: #173528;
	color: #ffffff;
}

.gallery-grid {
	columns: 4 250px;
	column-gap: 16px;
}

.gallery-card[hidden] {
	display: none;
}

.gallery-card {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 0 16px;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 6px;
	background: #dce4d8;
	box-shadow: 0 16px 32px rgba(21, 53, 40, 0.1);
	cursor: pointer;
	break-inside: avoid;
}

.gallery-card img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
	object-position: center center;
	transition: transform 0.45s ease;
}

.gallery-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 18px;
	background: linear-gradient(180deg, transparent 56%, rgba(11, 42, 29, 0.74));
	color: #fffaf0;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
	transform: none;
}

.gallery-card:hover .gallery-card__overlay,
.gallery-card:focus-visible .gallery-card__overlay {
	opacity: 1;
}

.gallery-lightbox[hidden] {
	display: none;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 24px;
}

.gallery-lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(7, 27, 19, 0.9);
}

.gallery-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	max-width: min(1180px, 94vw);
	max-height: 90vh;
}

.gallery-lightbox__dialog img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox__close {
	position: fixed;
	top: 18px;
	right: 22px;
	z-index: 2;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 720px) {
	.gallery-hero {
		padding: 72px 0 64px;
	}

	.gallery-hero h1 {
		font-size: 3.8rem;
	}

	.gallery-showcase {
		padding: 64px 0 76px;
	}

	.gallery-showcase h2 {
		font-size: 3rem;
	}

	.gallery-grid {
		columns: 1;
	}

	.gallery-card {
		margin-bottom: 14px;
	}
}

/* Mobile slider hardening: prevent cropped image strips and large blank gaps. */
@media (max-width: 720px) {
	body .home-editorial-slider {
		display: block !important;
		width: 100% !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 28px 18px 38px !important;
		overflow: visible !important;
		background: #f5f1e8 !important;
	}

	body .home-editorial-slider__frame {
		position: relative !important;
		display: block !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 0 auto !important;
		padding: 0 !important;
		overflow: hidden !important;
		border-radius: 28px !important;
		background: #123f2f !important;
		box-shadow: 0 24px 55px rgba(18, 42, 32, 0.18) !important;
	}

	body .home-editorial-slider .home-slide {
		position: relative !important;
		inset: auto !important;
		display: none !important;
		grid-template-columns: 1fr !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		opacity: 0 !important;
		transform: none !important;
		visibility: hidden !important;
	}

	body .home-editorial-slider .home-slide.is-active {
		display: flex !important;
		flex-direction: column !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	body .home-editorial-slider .home-editorial-slide__media {
		position: relative !important;
		inset: auto !important;
		order: 1 !important;
		display: block !important;
		width: 100% !important;
		height: 245px !important;
		min-height: 245px !important;
		max-height: 245px !important;
		overflow: hidden !important;
		border-radius: 28px 28px 0 0 !important;
		background: #123f2f !important;
	}

	body .home-editorial-slider .home-editorial-slide__media img,
	body .home-editorial-slider .home-slide.is-active .home-editorial-slide__media img {
		position: absolute !important;
		inset: 0 !important;
		display: block !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 100% !important;
		object-fit: cover !important;
		object-position: center center !important;
		filter: saturate(0.95) brightness(0.82) contrast(1.04) !important;
		transform: none !important;
	}

	body .home-editorial-slider .home-editorial-slide__overlay {
		position: absolute !important;
		inset: 0 !important;
		display: block !important;
		background: linear-gradient(180deg, rgba(14, 58, 45, 0.08), rgba(14, 58, 45, 0.6)) !important;
	}

	body .home-editorial-slider .home-editorial-slide__panel {
		position: relative !important;
		inset: auto !important;
		order: 2 !important;
		display: block !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		padding: 0 !important;
		overflow: visible !important;
		background: #123f2f !important;
	}

	body .home-editorial-slider .home-editorial-slide__inner {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 30px 24px 34px !important;
		box-sizing: border-box !important;
	}

	body .home-editorial-slider .home-editorial-eyebrow {
		margin: 0 0 16px !important;
		font-size: 0.74rem !important;
		line-height: 1.4 !important;
		letter-spacing: 0.2em !important;
		color: rgba(213, 232, 214, 0.82) !important;
	}

	body .home-editorial-slider .home-editorial-slide__title {
		max-width: 100% !important;
		margin: 0 !important;
		font-size: clamp(2.15rem, 11.5vw, 3.45rem) !important;
		line-height: 0.98 !important;
		letter-spacing: -0.045em !important;
		color: #fff8ee !important;
		overflow-wrap: normal !important;
		word-break: normal !important;
	}

	body .home-editorial-slider .home-editorial-slide__title em {
		color: #93cda4 !important;
	}

	body .home-editorial-slider .home-editorial-slide__text {
		display: block !important;
		max-width: 100% !important;
		margin: 22px 0 0 !important;
		font-size: 1rem !important;
		line-height: 1.72 !important;
		color: rgba(255, 255, 255, 0.82) !important;
		opacity: 1 !important;
		transform: none !important;
		overflow-wrap: break-word !important;
	}

	body .home-editorial-slider .home-editorial-slide__actions {
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
		width: 100% !important;
		margin-top: 26px !important;
		opacity: 1 !important;
		transform: none !important;
	}

	body .home-editorial-slider .home-editorial-slide__actions .button {
		width: 100% !important;
		min-width: 0 !important;
		min-height: 54px !important;
		justify-content: center !important;
		border-radius: 999px !important;
		font-size: 0.98rem !important;
		white-space: normal !important;
	}

	body .home-editorial-slider__stats,
	body .home-editorial-slider__cut {
		display: none !important;
	}

	body .home-editorial-slider__dots {
		position: relative !important;
		inset: auto !important;
		display: flex !important;
		justify-content: center !important;
		gap: 10px !important;
		width: 100% !important;
		margin: 16px 0 0 !important;
		padding: 0 0 18px !important;
		transform: none !important;
		z-index: 8 !important;
	}
}

@media (max-width: 420px) {
	body .home-editorial-slider {
		padding: 24px 14px 32px !important;
	}

	body .home-editorial-slider .home-editorial-slide__media {
		height: 210px !important;
		min-height: 210px !important;
		max-height: 210px !important;
	}

	body .home-editorial-slider .home-editorial-slide__inner {
		padding: 26px 20px 30px !important;
	}
}

/* Impact image refinement */
.impact-editorial-why__grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr) !important;
	align-items: center !important;
}

.impact-editorial-why__images {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 18px !important;
	align-items: stretch !important;
}

.impact-editorial-why__images img,
.impact-editorial-why__images img:first-child,
.impact-editorial-why__images img:last-of-type {
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	aspect-ratio: 3 / 2 !important;
	padding: 18px !important;
	object-fit: contain !important;
	object-position: center !important;
	background: #fffdf8 !important;
	box-shadow: 0 26px 58px rgba(16, 40, 29, 0.15) !important;
}

.impact-editorial-why__label {
	width: min(560px, 78%) !important;
	margin-top: 4px !important;
	padding: 32px 36px !important;
	background: #163c2b !important;
}

@media (max-width: 980px) {
	.impact-editorial-why__grid {
		grid-template-columns: 1fr !important;
	}

	.impact-editorial-why__label {
		width: 100% !important;
	}
}

@media (max-width: 720px) {
	.impact-editorial-why__images img,
	.impact-editorial-why__images img:first-child,
	.impact-editorial-why__images img:last-of-type {
		aspect-ratio: auto !important;
		padding: 10px !important;
	}
}

/* Final overrides v1.1.4 */
.about-editorial-principle,
.initiatives-editorial-activity,
.impact-editorial-program {
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-editorial-principle:hover,
.initiatives-editorial-activity:hover,
.impact-editorial-program:hover {
	background: #2d5a3d;
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(10, 28, 20, 0.18);
}

.about-editorial-principle:hover .about-editorial-principle__num,
.initiatives-editorial-activity:hover .initiatives-editorial-activity__num,
.impact-editorial-program:hover .impact-editorial-program__num {
	color: rgba(212, 232, 218, 0.24);
}

.about-editorial-principle:hover .about-editorial-principle__label,
.initiatives-editorial-activity:hover .initiatives-editorial-activity__label {
	color: #dfb66f;
}

@media (max-width: 720px) {
	.about-editorial-principle:nth-child(2) {
		background: #1f4932 !important;
	}

	.home-slide {
		display: flex !important;
		flex-direction: column !important;
		position: relative !important;
		inset: auto !important;
		min-height: auto !important;
	}

	.home-editorial-slider__frame {
		min-height: auto !important;
		overflow: visible !important;
	}

	.home-editorial-slide__media {
		order: 1 !important;
		min-height: 230px !important;
		height: auto !important;
		aspect-ratio: 4 / 3 !important;
		position: relative !important;
		overflow: hidden !important;
		border-radius: 22px 22px 0 0 !important;
	}

	.home-editorial-slide__media img {
		position: static !important;
		object-fit: contain !important;
		object-position: center center !important;
		transform: none !important;
		padding: 10px !important;
		width: 100% !important;
		height: 100% !important;
		display: block !important;
		background: rgba(255, 255, 255, 0.05) !important;
	}

	.home-editorial-slide__overlay {
		display: none !important;
	}

	.home-slide.is-active .home-editorial-slide__media img {
		transform: none !important;
	}

	.home-editorial-slide__panel {
		order: 2 !important;
		padding: 18px 0 22px !important;
		min-height: auto !important;
	}

	.home-editorial-slide__title {
		max-width: 7.2ch !important;
		font-size: clamp(2rem, 10vw, 2.85rem) !important;
		line-height: 0.98 !important;
	}

	.home-editorial-slide__text {
		font-size: 0.94rem !important;
		line-height: 1.58 !important;
	}

	.home-editorial-slider__stats {
		display: none !important;
	}

	.contact-editorial-page {
		overflow-x: hidden !important;
	}

	.contact-editorial-hero {
		display: block !important;
	}

	.contact-editorial-hero__shell {
		width: calc(100% - 28px) !important;
		padding: 48px 0 20px !important;
	}

	.contact-editorial-hero__title {
		max-width: 8ch !important;
		font-size: clamp(2rem, 9vw, 2.55rem) !important;
		line-height: 0.98 !important;
	}

	.contact-editorial-hero__lead {
		font-size: 0.92rem !important;
		line-height: 1.6 !important;
	}

	.contact-editorial-hero__right {
		padding: 0 14px 14px !important;
		min-height: auto !important;
	}

	.contact-editorial-hero__right img {
		max-height: 240px !important;
		object-fit: contain !important;
	}

	.contact-editorial-cards__grid,
	.contact-editorial-main__grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 16px !important;
	}

	.contact-editorial-card,
	.contact-editorial-map,
	.contact-editorial-form-card {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		flex: 0 0 auto !important;
	}

	.contact-editorial-card {
		padding: 18px 16px !important;
	}

	.contact-editorial-card h2 {
		font-size: clamp(1.5rem, 7vw, 1.95rem) !important;
		line-height: 1 !important;
	}

	.contact-editorial-card p,
	.contact-editorial-card a,
	.contact-editorial-form-card p,
	.contact-editorial-map p {
		font-size: 0.94rem !important;
		line-height: 1.58 !important;
		word-break: break-word !important;
		overflow-wrap: anywhere !important;
	}

	.contact-editorial-section-title {
		font-size: clamp(1.9rem, 8.6vw, 2.35rem) !important;
		line-height: 1 !important;
	}

	.contact-editorial-map__frame,
	.contact-editorial-map__frame iframe {
		min-height: 220px !important;
		height: 220px !important;
	}

	.contact-editorial-form-card {
		padding: 18px 14px !important;
	}

	.contact-form input,
	.contact-form textarea {
		width: 100% !important;
		box-sizing: border-box !important;
		padding: 14px 16px !important;
	}

	.about-editorial-stats,
	.contact-editorial-stats,
	.impact-editorial-stats,
	.initiatives-editorial-stats {
		display: none !important;
	}
}

/* Final phone overrides */
@media (max-width: 720px) {
	.home-editorial-slider__frame {
		width: calc(100vw - 20px) !important;
		min-height: auto !important;
		border-radius: 22px !important;
		overflow: hidden !important;
	}

	.home-slide {
		display: grid !important;
		grid-template-columns: 1fr !important;
	}

	.home-editorial-slide__panel,
	.home-editorial-slide__media {
		width: 100% !important;
		min-width: 0 !important;
	}

	.home-editorial-slide__panel {
		min-height: auto !important;
		padding: 36px 0 26px !important;
	}

	.home-editorial-slide__inner {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}

	.home-editorial-slide__title {
		font-size: clamp(2.5rem, 12vw, 3.5rem) !important;
		line-height: 0.98 !important;
		max-width: 9ch !important;
	}

	.home-editorial-slide__text {
		max-width: none !important;
		font-size: 0.98rem !important;
		line-height: 1.7 !important;
	}

	.home-editorial-slide__actions {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
	}

	.home-editorial-slide__actions .button {
		width: 100% !important;
	}

	.home-editorial-slide__media {
		min-height: 260px !important;
		height: auto !important;
		aspect-ratio: 4 / 3;
	}

	.home-editorial-slide__media img {
		object-fit: contain !important;
		object-position: center center !important;
		transform: none !important;
		padding: 12px !important;
		background: rgba(255, 255, 255, 0.06) !important;
		filter: saturate(0.9) brightness(0.92) !important;
	}

	.home-slide.is-active .home-editorial-slide__media img {
		transform: none !important;
	}

	.home-editorial-slider__stats {
		position: static !important;
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
		margin: 14px 14px 0 !important;
	}

	.home-editorial-slider__cut {
		display: none !important;
	}

	.home-editorial-slider__dots {
		position: static !important;
		transform: none !important;
		justify-content: center !important;
		padding: 14px 0 16px !important;
	}

	.contact-editorial-hero {
		display: block !important;
		min-height: auto !important;
		overflow: hidden !important;
	}

	.contact-editorial-hero__left,
	.contact-editorial-hero__right {
		display: block !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
	}

	.contact-editorial-hero__shell {
		width: calc(100% - 28px) !important;
		margin: 0 auto !important;
		padding: 58px 0 26px !important;
	}

	.contact-editorial-hero__title {
		max-width: 8.5ch !important;
		font-size: clamp(2.25rem, 11vw, 3rem) !important;
		line-height: 0.98 !important;
	}

	.contact-editorial-hero__lead {
		max-width: none !important;
		font-size: 0.95rem !important;
		line-height: 1.65 !important;
	}

	.contact-editorial-hero__actions {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 12px !important;
	}

	.contact-editorial-hero__actions .button {
		width: 100% !important;
	}

	.contact-editorial-hero__right {
		padding: 0 14px 16px !important;
		min-height: auto !important;
	}

	.contact-editorial-hero__right img {
		width: 100% !important;
		height: auto !important;
		max-height: 260px !important;
		object-fit: contain !important;
		padding: 8px !important;
	}

	.contact-editorial-stats,
	.contact-editorial-hero__pattern {
		display: none !important;
	}

	.contact-editorial-cards {
		padding: 28px 0 18px !important;
	}

	.contact-editorial-cards__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	.contact-editorial-card {
		width: 100% !important;
		padding: 20px 16px !important;
	}

	.contact-editorial-card h2 {
		font-size: clamp(2rem, 10vw, 2.6rem) !important;
		line-height: 1 !important;
	}

	.contact-editorial-card p,
	.contact-editorial-card a {
		display: block !important;
		word-break: break-word !important;
		overflow-wrap: anywhere !important;
		white-space: normal !important;
		font-size: 0.98rem !important;
		line-height: 1.65 !important;
	}

	.contact-editorial-main {
		padding: 24px 0 30px !important;
	}

	.contact-editorial-main__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 22px !important;
	}

	.contact-editorial-map,
	.contact-editorial-form-card {
		min-width: 0 !important;
		width: 100% !important;
	}

	.contact-editorial-section-title {
		font-size: clamp(2.2rem, 11vw, 3rem) !important;
		line-height: 1 !important;
	}

	.contact-editorial-map__frame {
		min-height: 260px !important;
		margin-top: 20px !important;
	}

	.contact-editorial-map__frame iframe {
		height: 260px !important;
	}

	.contact-editorial-form-card {
		padding: 22px 16px !important;
	}

	.contact-form__field label {
		font-size: 0.95rem !important;
	}

	.contact-form input,
	.contact-form textarea {
		width: 100% !important;
		font-size: 1rem !important;
	}
}

/* Final layout tuning pass */
.impact-editorial-why__images {
	max-width: 470px !important;
	margin-left: auto !important;
}

.impact-editorial-why__images img,
.impact-editorial-why__images img:first-child,
.impact-editorial-why__images img:last-of-type {
	padding: 12px !important;
	background: #fffdfa !important;
}

.impact-editorial-why__label {
	max-width: 390px !important;
}

@media (max-width: 720px) {
	.home-editorial-slider__frame {
		min-height: auto !important;
	}

	.home-slide {
		display: flex !important;
		flex-direction: column-reverse !important;
	}

	.home-editorial-slide__media {
		min-height: 220px !important;
		height: auto !important;
		aspect-ratio: 4 / 3 !important;
	}

	.home-editorial-slide__media img {
		object-fit: contain !important;
		transform: none !important;
		padding: 10px !important;
	}

	.home-editorial-slide__panel {
		padding: 24px 0 22px !important;
	}

	.home-editorial-slide__title {
		max-width: 7.2ch !important;
		font-size: clamp(2rem, 10vw, 2.9rem) !important;
		line-height: 0.98 !important;
	}

	.home-editorial-slide__text {
		font-size: 0.94rem !important;
		line-height: 1.6 !important;
	}

	.home-editorial-slider__stats {
		display: none !important;
	}

	.home-editorial-slider__dots {
		padding-bottom: 18px !important;
	}

	.contact-editorial-page {
		overflow-x: hidden !important;
	}

	.contact-editorial-cards__grid,
	.contact-editorial-main__grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 18px !important;
	}

	.contact-editorial-card,
	.contact-editorial-map,
	.contact-editorial-form-card {
		position: static !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		flex: 0 0 auto !important;
		transform: none !important;
	}

	.contact-editorial-card {
		padding: 18px 16px !important;
	}

	.contact-editorial-card h2 {
		font-size: clamp(1.85rem, 8.8vw, 2.35rem) !important;
	}

	.contact-editorial-card p,
	.contact-editorial-card a {
		font-size: 0.95rem !important;
		line-height: 1.55 !important;
	}

	.contact-editorial-main {
		padding-top: 16px !important;
	}

	.contact-editorial-map__frame {
		min-height: 220px !important;
		height: auto !important;
		margin-top: 14px !important;
	}

	.contact-editorial-map__frame iframe {
		height: 220px !important;
	}

	.contact-editorial-form-card {
		padding: 20px 14px !important;
	}

	.contact-editorial-form-card p {
		font-size: 0.94rem !important;
		line-height: 1.6 !important;
	}

	.contact-form__field {
		margin-bottom: 14px !important;
	}

	.contact-form label {
		display: block !important;
		margin-bottom: 8px !important;
	}

	.contact-form input,
	.contact-form textarea {
		width: 100% !important;
		padding: 14px 16px !important;
		border-radius: 20px !important;
		box-sizing: border-box !important;
	}
}

@media (max-width: 720px) {
	.about-editorial-hero,
	.contact-editorial-hero,
	.impact-editorial-hero,
	.initiatives-editorial-hero,
	.about-editorial-who__grid,
	.about-editorial-stand__grid,
	.contact-editorial-main__grid,
	.contact-editorial-cards__grid,
	.impact-editorial-why__grid,
	.initiatives-editorial-intro__grid,
	.initiatives-editorial-forest__grid,
	.initiatives-editorial-livelihood__grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.about-editorial-hero__shell,
	.contact-editorial-hero__shell,
	.impact-editorial-hero__shell,
	.initiatives-editorial-hero__shell {
		width: calc(100% - 32px);
		margin: 0 auto;
		padding: 76px 0 44px;
	}

	.about-editorial-hero__right,
	.contact-editorial-hero__right,
	.impact-editorial-hero__right,
	.initiatives-editorial-hero__right {
		min-height: 300px;
		padding: 12px;
	}

	.about-editorial-stats,
	.contact-editorial-stats,
	.impact-editorial-stats,
	.initiatives-editorial-stats {
		position: static;
		margin: 16px;
	}

	.about-editorial-stat,
	.contact-editorial-stat,
	.impact-editorial-stat,
	.initiatives-editorial-stat {
		min-width: 0;
	}

	.page-content__prose {
		max-width: none;
	}
}

@media (max-width: 720px) {
	.contact-editorial-hero__pattern {
		height: 34px;
	}

	.contact-editorial-cards {
		padding: 56px 0 32px;
	}

	.contact-editorial-cards__grid {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}

	.contact-editorial-card {
		padding: 22px 18px !important;
		min-width: 0;
	}

	.contact-editorial-card__icon {
		width: 48px;
		height: 48px;
		margin-bottom: 14px;
	}

	.contact-editorial-card__icon svg {
		width: 24px;
		height: 24px;
	}

	.contact-editorial-card__label {
		font-size: 0.68rem;
		letter-spacing: 0.14em;
	}

	.contact-editorial-card h2 {
		margin-bottom: 10px;
		font-size: clamp(2rem, 10vw, 2.7rem);
		line-height: 0.98;
	}

	.contact-editorial-card p,
	.contact-editorial-card a {
		font-size: 1rem;
		line-height: 1.7;
		word-break: break-word;
		overflow-wrap: anywhere;
	}
}

/* Final responsive overrides */
.impact-editorial-why__images {
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	max-width: 680px;
	margin-left: auto;
	align-items: start;
}

.impact-editorial-why__images img,
.impact-editorial-why__images img:first-child,
.impact-editorial-why__images img:last-of-type {
	grid-column: 1;
	width: 100%;
	height: auto;
	max-height: 820px;
	object-fit: contain;
	object-position: center center;
	display: block;
	padding: 18px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 28px 56px rgba(16, 40, 29, 0.12);
}

.impact-editorial-why__label {
	max-width: 360px;
	margin-top: 2px;
}

@media (max-width: 980px) {
	.impact-editorial-why__grid {
		grid-template-columns: 1fr;
	}

	.impact-editorial-why__images {
		max-width: 560px;
		margin: 0 auto;
	}
}

@media (max-width: 720px) {
	.contact-editorial-hero {
		display: grid !important;
		grid-template-columns: 1fr !important;
		min-height: auto !important;
	}

	.contact-editorial-hero__left,
	.contact-editorial-hero__right {
		width: 100% !important;
		min-width: 0 !important;
	}

	.contact-editorial-hero__shell {
		width: min(100%, calc(100% - 32px)) !important;
		margin: 0 auto !important;
		padding: 78px 0 38px !important;
	}

	.contact-editorial-hero__title {
		max-width: none !important;
		font-size: clamp(2.2rem, 11vw, 3rem) !important;
		line-height: 1.04 !important;
	}

	.contact-editorial-hero__lead {
		max-width: none !important;
		font-size: 0.98rem !important;
		line-height: 1.75 !important;
	}

	.contact-editorial-hero__right {
		padding: 14px 16px 18px !important;
		min-height: 320px !important;
	}

	.contact-editorial-hero__right img {
		padding: 8px !important;
		max-height: 420px !important;
	}

	.contact-editorial-stats {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
		padding: 16px !important;
	}

	.contact-editorial-hero__pattern {
		display: none !important;
	}

	.contact-editorial-cards {
		padding: 40px 0 24px !important;
	}

	.contact-editorial-cards .contact-editorial-cards__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.contact-editorial-card {
		width: 100% !important;
		min-width: 0 !important;
		padding: 22px 18px !important;
	}

	.contact-editorial-card h2 {
		font-size: clamp(1.9rem, 9vw, 2.45rem) !important;
		line-height: 1.02 !important;
	}

	.contact-editorial-card p,
	.contact-editorial-card a {
		display: block;
		font-size: 0.98rem !important;
		line-height: 1.7 !important;
		word-break: break-word !important;
		overflow-wrap: anywhere !important;
	}

	.contact-editorial-main .contact-editorial-main__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}

	.contact-editorial-map__frame {
		min-height: 320px;
	}

	.contact-editorial-form-card,
	.contact-editorial-map {
		padding: 0 !important;
		min-width: 0 !important;
	}

	.contact-editorial-cta__actions {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
	}

	.contact-editorial-cta__actions .button {
		width: 100% !important;
	}
}

@media (max-width: 960px) {
	.about-editorial-hero,
	.contact-editorial-hero,
	.contact-editorial-main__grid {
		grid-template-columns: 1fr;
	}

	.about-editorial-hero__shell,
	.contact-editorial-hero__shell {
		width: min(640px, calc(100% - 40px));
		margin: 0 auto;
		padding: 88px 0 54px;
	}

	.about-editorial-hero__right,
	.contact-editorial-hero__right {
		min-height: 440px;
	}

	.about-editorial-stats,
	.contact-editorial-stats {
		right: 24px;
		bottom: 24px;
	}

	.contact-editorial-cards__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.about-editorial-hero,
	.contact-editorial-hero {
		min-height: auto;
	}

	.about-editorial-hero__title,
	.contact-editorial-hero__title {
		max-width: 12ch;
		font-size: clamp(2.45rem, 11vw, 3.6rem);
	}

	.about-editorial-hero__lead,
	.contact-editorial-hero__lead {
		font-size: 0.96rem;
		line-height: 1.8;
	}

	.about-editorial-stats,
	.contact-editorial-stats {
		position: static;
		padding: 20px;
	}

	.about-editorial-stat,
	.contact-editorial-stat {
		min-width: 0;
	}

	.home-editorial-ground__media img {
		max-height: none;
		padding: 12px;
	}
}

.collaboration-note__tagline {
	margin: 0 0 20px;
	max-width: 56ch;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.3rem, 2.3vw, 1.9rem);
	font-style: italic;
	font-weight: 700;
	line-height: 1.35;
	color: var(--forest-800);
}

.collaboration-note__content h2 {
	max-width: 16ch;
	font-size: clamp(1.95rem, 3vw, 3rem);
	line-height: 1.06;
}

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

.collaboration-note__points li {
	position: relative;
	padding-left: 26px;
	color: var(--ink);
}

.collaboration-note__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--forest-700);
	box-shadow: 0 0 0 5px rgba(106, 163, 110, 0.16);
}

.collaboration-note__actions {
	margin-top: 28px;
}

.collaboration-note__accent {
	display: flex;
	align-items: stretch;
}

.collaboration-note__accent-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	border-radius: 28px;
	padding: 28px;
	background: linear-gradient(145deg, #19462f, #123624);
	color: var(--white);
	box-shadow: 0 24px 60px rgba(16, 40, 29, 0.18);
	min-height: 100%;
}

.collaboration-note__accent-label {
	margin: 0 0 10px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #d7e6c8;
}

.collaboration-note__accent-card h3 {
	margin: 0 0 14px;
	font-size: 2rem;
	line-height: 1.05;
	color: var(--white);
}

.collaboration-note__accent-card p:last-of-type {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.84);
}

.collaboration-note__accent-media {
	margin-top: 26px;
	overflow: hidden;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.collaboration-note__accent-media img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

@keyframes lsck-partner-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 9px));
	}
}

.contact-cta__box {
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
	align-items: center;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(215, 230, 200, 0.62)),
		radial-gradient(circle at right top, rgba(106, 163, 110, 0.16), transparent 28%);
	border: 1px solid rgba(43, 111, 77, 0.08);
}

.contact-cta__content h2 {
	max-width: 17ch;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.08;
}

.contact-cta__mini-panel {
	padding: 26px;
	border-radius: 24px;
	background: linear-gradient(135deg, #17422d, #24573c);
	color: var(--white);
	box-shadow: 0 24px 60px rgba(16, 40, 29, 0.16);
}

.contact-cta__mini-label {
	margin: 0 0 10px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #d7e6c8;
}

.contact-cta__mini-panel h3 {
	margin: 0 0 12px;
	font-size: 2rem;
	line-height: 1.06;
	color: var(--white);
}

.contact-cta__mini-panel p {
	color: rgba(255, 255, 255, 0.84);
}

.text-link {
	font-weight: 800;
	color: var(--forest-800);
}

.contact-modal[hidden] {
	display: none;
}

.contact-modal {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: grid;
	place-items: center;
	padding: 20px;
}

.contact-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 40, 29, 0.6);
	backdrop-filter: blur(8px);
}

.contact-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(620px, 100%);
	padding: 34px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 232, 0.98));
	box-shadow: 0 28px 80px rgba(16, 40, 29, 0.26);
}

.contact-modal__close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(30, 58, 47, 0.08);
	color: var(--forest-900);
	font-size: 1.6rem;
	cursor: pointer;
}

.contact-modal__intro {
	max-width: 54ch;
	color: var(--muted);
}

.page-hero {
	padding: 72px 0 26px;
}

.page-content__prose {
	max-width: 860px;
}

.page-content__prose h2 {
	margin-top: 44px;
	font-size: 2.4rem;
}

.page-content__prose ul {
	padding-left: 22px;
}

.about-hero-banner {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.about-hero-banner__image,
.about-hero-banner__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.about-hero-banner__image {
	object-fit: cover;
}

.about-hero-banner__overlay {
	background: linear-gradient(90deg, rgba(16, 40, 29, 0.82) 0%, rgba(16, 40, 29, 0.7) 38%, rgba(16, 40, 29, 0.34) 70%, rgba(16, 40, 29, 0.18) 100%);
}

.about-hero-banner__content {
	position: relative;
	z-index: 1;
	color: var(--white);
	padding: 120px 0 100px;
	max-width: 720px;
}

.about-hero-banner__content .section-kicker {
	color: var(--moss-300);
}

.about-hero-banner__content h1 {
	margin-bottom: 18px;
	color: var(--white);
	font-size: clamp(3rem, 6vw, 5.4rem);
	line-height: 0.96;
}

.about-hero-banner__lead {
	max-width: 52ch;
	font-size: 1.08rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
}

.about-hero-banner__actions,
.about-cta-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.about-intro,
.about-values,
.about-content-band,
.about-page-content,
.about-cta-strip {
	padding: 84px 0;
}

.about-intro {
	background: linear-gradient(180deg, rgba(215, 230, 200, 0.22), rgba(255, 255, 255, 0));
}

.about-intro__grid,
.about-values__grid,
.about-content-band__grid,
.about-cta-strip__box {
	display: grid;
	gap: 30px;
}

.about-intro__grid,
.about-content-band__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	align-items: center;
}

.about-intro__content h2 {
	max-width: 12ch;
}

.about-intro__content,
.about-content-band__text,
.about-page-content__prose {
	font-size: 1.02rem;
}

.about-highlight-wrap {
	display: grid;
	gap: 16px;
}

.about-highlight,
.about-value-card,
.about-cta-strip__box {
	padding: 26px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: var(--shadow);
}

.about-highlight {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(215, 230, 200, 0.46));
	border: 1px solid rgba(43, 111, 77, 0.08);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-highlight:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 70px rgba(16, 40, 29, 0.16);
}

.about-highlight strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1.4rem;
	color: var(--forest-800);
}

.about-highlight span {
	display: block;
	color: var(--muted);
}

.about-values__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(43, 111, 77, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	line-height: 1.82;
}

.about-value-card::after {
	content: "";
	position: absolute;
	inset: auto -30% -50% auto;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(106, 163, 110, 0.16), transparent 66%);
	pointer-events: none;
}

.about-value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 72px rgba(16, 40, 29, 0.16);
}

.about-value-card--green {
	background: linear-gradient(180deg, rgba(230, 244, 228, 0.95), rgba(176, 221, 178, 0.82));
}

.about-value-card--green-soft {
	background: linear-gradient(180deg, rgba(242, 249, 240, 0.96), rgba(198, 233, 196, 0.86));
}

.about-value-card--green-deep {
	background: linear-gradient(135deg, #1f5a3b, #123824);
	color: var(--white);
}

.about-value-card--green-deep .section-kicker {
	color: var(--moss-300);
}

.about-content-band__media {
	margin: 0;
}

.about-content-band__media img {
	width: 100%;
	height: 100%;
	border-radius: var(--radius-lg);
	object-fit: cover;
	box-shadow: var(--shadow);
	transition: transform 0.5s ease;
}

.about-content-band__media:hover img {
	transform: scale(1.03);
}

.about-content-band__text {
	padding: 26px 28px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: var(--shadow);
	border: 1px solid rgba(43, 111, 77, 0.08);
}

.about-page-content__prose {
	max-width: 900px;
}

.about-page-content__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
	gap: 40px;
	align-items: start;
}

.about-page-content__main {
	min-width: 0;
}

.about-page-content__visuals {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 22px;
	padding-top: 8px;
}

.about-visual-card,
.about-visual-note {
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(43, 111, 77, 0.08);
	box-shadow: 0 24px 64px rgba(16, 40, 29, 0.14);
	overflow: hidden;
}

.about-visual-card {
	margin: 0;
}

.about-visual-card img {
	width: 100%;
	display: block;
}

.about-visual-card--main img {
	aspect-ratio: 1.08 / 1;
	object-fit: cover;
}

.about-visual-card__caption {
	padding: 24px 24px 26px;
}

.about-visual-card__caption h3 {
	margin: 0;
	font-size: clamp(1.65rem, 2.4vw, 2.2rem);
	line-height: 1.08;
}

.about-visual-stack {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
	gap: 18px;
	align-items: stretch;
}

.about-visual-card--secondary img {
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	aspect-ratio: 0.9 / 1;
}

.about-visual-note {
	padding: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(215, 230, 200, 0.54)),
		radial-gradient(circle at right top, rgba(106, 163, 110, 0.12), transparent 34%);
}

.about-visual-note h3 {
	margin: 0 0 12px;
	font-size: clamp(1.65rem, 2.4vw, 2.1rem);
	line-height: 1.05;
}

.about-page-content__prose h2 {
	position: relative;
	padding-bottom: 10px;
}

.about-page-content__prose h2::after {
	content: "";
	display: block;
	width: 72px;
	height: 3px;
	margin-top: 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--forest-700), rgba(106, 163, 110, 0.28));
}

.about-cta-strip__box {
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(215, 230, 200, 0.58));
	border: 1px solid rgba(43, 111, 77, 0.08);
}

.about-editorial-page {
	background: #f7f3ee;
}

.about-editorial-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: calc(100vh - 92px);
	overflow: hidden;
	background: #1a3a2a;
}

.about-editorial-hero__left {
	background: #1a3a2a;
	display: flex;
	align-items: center;
}

.about-editorial-hero__right {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding: 18px;
	background: linear-gradient(135deg, #123021, #173a29);
}

.about-editorial-hero__bg,
.about-editorial-hero__overlay {
	position: absolute;
	width: 100%;
	height: 100%;
}

.about-editorial-hero__bg {
	inset: 18px;
	width: calc(100% - 36px);
	height: calc(100% - 36px);
	object-fit: contain;
	object-position: center center;
	filter: saturate(0.92) brightness(0.92);
	background: rgba(255, 255, 255, 0.08);
	padding: 10px;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.18);
}

.about-editorial-hero__shell {
	width: min(560px, calc(100% - 72px));
	margin-left: auto;
	margin-right: 0;
	padding: 96px 0 88px 24px;
	position: relative;
	z-index: 1;
	color: #f7f3ee;
}

.about-editorial-eyebrow,
.about-editorial-section-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #3d7a50;
}

.about-editorial-eyebrow::before,
.about-editorial-section-kicker::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.about-editorial-section-kicker--light {
	color: #a8c9b0;
	justify-content: center;
}

.about-editorial-hero__title,
.about-editorial-section-title {
	font-family: "Cormorant Garamond", serif;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.about-editorial-hero__title {
	margin: 0 0 24px;
	max-width: 10.5ch;
	font-size: clamp(3rem, 4.8vw, 4.35rem);
	line-height: 1.08;
	color: #f7f3ee;
}

.about-editorial-hero__title em,
.about-editorial-section-title em {
	font-style: italic;
	color: #6aab7e;
}

.about-editorial-hero__lead {
	max-width: 48ch;
	font-size: 1rem;
	line-height: 1.85;
	color: #d4e8da;
}

.about-editorial-hero__actions,
.about-editorial-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.about-editorial-hero__overlay {
	background: linear-gradient(135deg, rgba(26, 58, 42, 0.35) 0%, transparent 60%);
}

.about-editorial-stats {
	position: absolute;
	right: 48px;
	bottom: 48px;
	z-index: 1;
	display: grid;
	gap: 16px;
}

.about-editorial-stat {
	min-width: 220px;
	padding: 18px 22px;
	background: rgba(247, 243, 238, 0.95);
	border-left: 3px solid #c9973c;
	box-shadow: 0 18px 40px rgba(16, 40, 29, 0.16);
}

.about-editorial-stat strong {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	color: #1a3a2a;
}

.about-editorial-stat span {
	display: block;
	margin-top: 6px;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a887e;
}

.about-editorial-hero__pattern {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 80px;
	background: #f7f3ee;
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.about-editorial-who,
.about-editorial-principles,
.about-editorial-stand,
.about-editorial-peace,
.about-editorial-cta,
.about-editorial-extra {
	padding: 96px 0;
}

.about-editorial-who__grid,
.about-editorial-stand__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.about-editorial-section-title {
	margin: 0 0 24px;
	font-size: clamp(2.2rem, 3.6vw, 3.3rem);
	line-height: 1.16;
	color: #1a3a2a;
}

.about-editorial-section-title--light {
	color: #f7f3ee;
	text-align: center;
}

.about-editorial-who__text p,
.about-editorial-stand__text p,
.about-editorial-peace__inner p,
.about-editorial-cta__inner p {
	color: #4a4840;
	line-height: 1.9;
}

.about-editorial-words {
	display: grid;
	margin: 28px 0;
	border: 1px solid rgba(42, 90, 61, 0.14);
}

.about-editorial-word {
	display: grid;
	grid-template-columns: 110px 1fr;
	border-bottom: 1px solid rgba(42, 90, 61, 0.1);
}

.about-editorial-word:last-child {
	border-bottom: 0;
}

.about-editorial-word__key {
	padding: 16px 18px;
	background: #1a3a2a;
	color: #d4e8da;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
}

.about-editorial-word__def {
	padding: 16px 20px;
	background: #f7f3ee;
	display: flex;
	align-items: center;
	font-size: 0.92rem;
	color: #4a4840;
}

.about-editorial-motto {
	position: relative;
	margin-top: 30px;
	padding: 30px 34px;
	background: #1a3a2a;
}

.about-editorial-motto::before {
	content: "\"";
	position: absolute;
	top: -16px;
	left: 20px;
	font-family: "Cormorant Garamond", serif;
	font-size: 6rem;
	line-height: 1;
	color: rgba(168, 201, 176, 0.18);
}

.about-editorial-motto p {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.65rem;
	font-style: italic;
	color: #f7f3ee;
}

.about-editorial-motto span {
	display: block;
	margin-top: 12px;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6aab7e;
}

.about-editorial-who__image {
	position: relative;
}

.about-editorial-who__image img {
	width: 100%;
	height: 520px;
	object-fit: cover;
}

.about-editorial-who__accent {
	position: absolute;
	right: -24px;
	bottom: -24px;
	width: 140px;
	height: 140px;
	background: #c9973c;
	z-index: -1;
}

.about-editorial-principles {
	position: relative;
	background: #1a3a2a;
	overflow: hidden;
}

.about-editorial-principles::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.02);
}

.about-editorial-principles__inner,
.about-editorial-stand__inner {
	position: relative;
	z-index: 1;
}

.about-editorial-principles__header {
	margin-bottom: 42px;
	text-align: center;
}

.about-editorial-principles__header .about-editorial-section-title {
	margin-bottom: 0;
	font-size: clamp(2.6rem, 4.4vw, 4rem);
	font-weight: 300;
}

.about-editorial-principles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	background: rgba(255, 255, 255, 0.08);
}

.about-editorial-principle {
	position: relative;
	padding: 64px 52px 56px;
	background: #1a3a2a;
	min-height: 440px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.about-editorial-principle:last-child {
	border-right: 0;
}

.about-editorial-principle:nth-child(2) {
	background: #2d5a3d;
}

.about-editorial-principle__num {
	position: absolute;
	top: 42px;
	right: 40px;
	font-family: "Cormorant Garamond", serif;
	font-size: 4.4rem;
	font-weight: 300;
	line-height: 1;
	color: rgba(168, 201, 176, 0.14);
}

.about-editorial-principle__label {
	margin: 0 0 26px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #c9973c;
}

.about-editorial-principle h3 {
	margin: 0 0 24px;
	max-width: 12ch;
	font-size: clamp(2rem, 2.25vw, 2.45rem);
	font-weight: 300;
	line-height: 1.34;
	color: #f7f3ee;
}

.about-editorial-principle p:last-child {
	margin: 0;
	max-width: 28ch;
	font-size: 0.96rem;
	line-height: 1.95;
	color: #d4e8da;
}

.about-editorial-stand {
	background: #d4e8da;
}

.about-editorial-pillars {
	display: grid;
	margin-top: 28px;
	border-top: 1px solid rgba(42, 90, 61, 0.12);
}

.about-editorial-pillar {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid rgba(42, 90, 61, 0.12);
}

.about-editorial-pillar:last-child {
	border-bottom: 0;
}

.about-editorial-pillar__icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	background: #1a3a2a;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 1px rgba(168, 201, 176, 0.16);
}

.about-editorial-pillar__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #d4e8da;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.about-editorial-pillar__content h4 {
	margin: 0 0 6px;
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.25;
	color: #173728;
}

.about-editorial-pillar__content p {
	margin: 0;
	color: #607066;
}

.about-editorial-stand__media-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.62fr);
	gap: 22px;
	align-items: stretch;
}

.about-editorial-stand__media-grid img {
	width: 100%;
	height: auto;
	min-height: 100%;
	max-height: 760px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(42, 90, 61, 0.1);
	object-fit: contain;
	object-position: center top;
	box-shadow: 0 20px 48px rgba(16, 40, 29, 0.12);
}

.about-editorial-stand__caption {
	padding: 28px 24px;
	background: #1a3a2a;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
}

.about-editorial-stand__caption p {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.38rem;
	font-style: italic;
	line-height: 1.5;
	color: #f7f3ee;
}

.about-editorial-stand__caption span {
	display: block;
	margin-top: 14px;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6aab7e;
}

.about-editorial-peace__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.about-editorial-peace__inner .about-editorial-section-kicker {
	justify-content: center;
}

.about-editorial-peace__divider {
	width: 60px;
	height: 2px;
	margin: 40px auto;
	background: #c9973c;
}

.about-editorial-peace__inner p {
	font-size: 1.08rem;
	line-height: 2;
}

.about-editorial-peace__quote {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.65rem;
	font-style: italic;
	color: #1a3a2a;
}

.about-editorial-cta {
	position: relative;
	overflow: hidden;
	background: #5c4033;
}

.about-editorial-cta::before {
	content: "LEMSACHENLOK";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Cormorant Garamond", serif;
	font-size: 12rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.04);
}

.about-editorial-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.about-editorial-cta__inner p {
	color: #d4e8da;
}

.about-editorial-cta__actions {
	justify-content: center;
}

.about-editorial-button--light {
	background: #f7f3ee;
	color: #1a3a2a;
}

.about-editorial-button--light:hover {
	background: #d4e8da;
}

.about-editorial-button--outline {
	border: 1px solid rgba(168, 201, 176, 0.42);
	background: transparent;
	color: #d4e8da;
}

.about-editorial-button--outline:hover {
	border-color: #d4e8da;
	background: rgba(255, 255, 255, 0.04);
}

.about-legacy-principles {
	padding: 96px 0;
	background:
		radial-gradient(circle at top right, rgba(106, 163, 110, 0.12), transparent 26%),
		linear-gradient(180deg, #f7f3ee 0%, #eef4ea 100%);
}

.about-legacy-principles__header {
	margin-bottom: 30px;
	text-align: center;
}

.about-legacy-principles__header h2 {
	margin: 0;
	font-size: clamp(2.2rem, 3.6vw, 3.4rem);
}

.about-legacy-principles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.about-legacy-principle {
	overflow: hidden;
	border-radius: 30px;
	border: 1px solid rgba(43, 111, 77, 0.08);
	box-shadow: 0 24px 64px rgba(16, 40, 29, 0.14);
}

.about-legacy-principle__media {
	height: 190px;
	overflow: hidden;
}

.about-legacy-principle__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-legacy-principle__body {
	padding: 26px 24px 28px;
}

.about-legacy-principle__body h3 {
	margin: 0 0 14px;
	font-size: 2rem;
	line-height: 1.12;
}

.about-legacy-principle__body p:last-child {
	margin: 0;
	line-height: 1.9;
}

.about-legacy-principle--vision {
	background: linear-gradient(180deg, rgba(230, 244, 228, 0.96), rgba(188, 227, 190, 0.86));
}

.about-legacy-principle--mission {
	background: linear-gradient(180deg, rgba(242, 249, 240, 0.97), rgba(208, 235, 206, 0.88));
}

.about-legacy-principle--attention {
	background: linear-gradient(135deg, #1d5136, #143222);
	color: #f7f3ee;
}

.about-legacy-principle--attention .section-kicker,
.about-legacy-principle--attention .about-legacy-principle__body p:last-child,
.about-legacy-principle--attention .about-legacy-principle__body h3 {
	color: inherit;
}

.about-editorial-extra {
	background: #f7f3ee;
	padding-top: 0;
	display: none;
}

.initiatives-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.initiatives-hero__image,
.initiatives-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.initiatives-hero__image {
	object-fit: cover;
}

.initiatives-hero__overlay {
	background: linear-gradient(90deg, rgba(16, 40, 29, 0.82) 0%, rgba(16, 40, 29, 0.68) 42%, rgba(16, 40, 29, 0.18) 100%);
}

.initiatives-hero__content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	padding: 110px 0 92px;
	color: var(--white);
}

.initiatives-hero__content .section-kicker {
	color: var(--moss-300);
}

.initiatives-hero__content h1 {
	color: var(--white);
	margin-bottom: 16px;
}

.initiatives-hero__lead {
	max-width: 56ch;
	font-size: 1.08rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
}

.initiatives-hero__actions,
.initiatives-cta-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.initiatives-intro,
.initiatives-page-content,
.initiatives-cta-strip {
	padding: 84px 0;
}

.initiatives-intro {
	background: linear-gradient(180deg, rgba(215, 230, 200, 0.22), rgba(255, 255, 255, 0));
}

.initiatives-intro__grid,
.initiatives-page-content__layout,
.initiatives-cta-strip__box {
	display: grid;
	gap: 30px;
}

.initiatives-intro__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	align-items: center;
}

.initiatives-intro__cards {
	display: grid;
	gap: 16px;
}

.initiatives-mini-card,
.initiatives-cta-strip__box {
	padding: 26px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: var(--shadow);
	border: 1px solid rgba(43, 111, 77, 0.08);
}

.initiatives-mini-card strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1.35rem;
	color: var(--forest-800);
}

.initiatives-mini-card span {
	display: block;
	color: var(--muted);
}

.initiatives-page-content__layout {
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	align-items: start;
}

.initiatives-page-content__main {
	min-width: 0;
}

.initiatives-page-content__visuals {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 20px;
	padding-top: 12px;
}

.initiatives-page-content__prose {
	max-width: 900px;
}

.initiatives-page-content__prose h2 {
	position: relative;
	padding-bottom: 10px;
}

.initiatives-page-content__prose h2::after {
	content: "";
	display: block;
	width: 72px;
	height: 3px;
	margin-top: 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--forest-700), rgba(106, 163, 110, 0.28));
}

.initiatives-cta-strip__box {
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(215, 230, 200, 0.58));
}

.initiatives-editorial-page {
	background: #f7f3ee;
}

.initiatives-editorial-eyebrow,
.initiatives-editorial-section-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #3d7a50;
}

.initiatives-editorial-eyebrow::before,
.initiatives-editorial-section-kicker::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.initiatives-editorial-section-kicker--light {
	color: #a8c9b0;
	justify-content: center;
}

.initiatives-editorial-section-title {
	margin: 0 0 24px;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 3.6vw, 3.3rem);
	font-weight: 300;
	line-height: 1.16;
	letter-spacing: -0.02em;
	color: #1a3a2a;
}

.initiatives-editorial-section-title em {
	font-style: italic;
	color: #3d7a50;
}

.initiatives-editorial-section-title--light {
	color: #f7f3ee;
	text-align: center;
}

.initiatives-editorial-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: calc(100vh - 92px);
	overflow: hidden;
}

.initiatives-editorial-hero__left {
	background: #1a3a2a;
	display: flex;
	align-items: center;
}

.initiatives-editorial-hero__shell {
	width: min(560px, calc(100% - 72px));
	margin-left: auto;
	margin-right: 0;
	padding: 96px 0 88px 24px;
}

.initiatives-editorial-hero__title {
	margin: 0 0 24px;
	max-width: 10ch;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3rem, 4.8vw, 4.3rem);
	font-weight: 300;
	line-height: 1.08;
	color: #f7f3ee;
}

.initiatives-editorial-hero__title em {
	font-style: italic;
	color: #a8c9b0;
}

.initiatives-editorial-hero__lead {
	max-width: 48ch;
	font-size: 1rem;
	line-height: 1.85;
	color: #d4e8da;
}

.initiatives-editorial-hero__actions,
.initiatives-editorial-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.initiatives-editorial-hero__right {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding: 18px;
	background: linear-gradient(135deg, #123021, #173a29);
}

.initiatives-editorial-hero__right img,
.initiatives-editorial-intro__image img,
.initiatives-editorial-forest__media-grid img,
.initiatives-editorial-livelihood__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.initiatives-editorial-hero__right img {
	object-fit: contain;
	filter: saturate(0.92) brightness(0.94);
	object-position: center center;
	background: rgba(255, 255, 255, 0.08);
	padding: 10px;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.18);
}

.initiatives-editorial-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 58, 42, 0.35) 0%, transparent 60%);
}

.initiatives-editorial-stats {
	position: absolute;
	right: 48px;
	bottom: 48px;
	display: grid;
	gap: 16px;
}

.initiatives-editorial-stat {
	padding: 18px 22px;
	background: rgba(247, 243, 238, 0.95);
	border-left: 3px solid #c9973c;
}

.initiatives-editorial-stat strong {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	color: #1a3a2a;
}

.initiatives-editorial-stat span {
	display: block;
	margin-top: 6px;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a887e;
}

.initiatives-editorial-hero__pattern {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 80px;
	background: #f7f3ee;
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.initiatives-editorial-intro,
.initiatives-editorial-activities,
.initiatives-editorial-forest,
.initiatives-editorial-livelihood,
.initiatives-editorial-quote,
.initiatives-editorial-cta {
	padding: 96px 0;
}

.initiatives-editorial-intro__grid,
.initiatives-editorial-forest__grid,
.initiatives-editorial-livelihood__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.initiatives-editorial-intro__text p,
.initiatives-editorial-forest__text p,
.initiatives-editorial-livelihood__text p,
.initiatives-editorial-quote__inner p,
.initiatives-editorial-cta__inner p {
	color: #4a4840;
	line-height: 1.9;
}

.initiatives-editorial-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.initiatives-editorial-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: #1a3a2a;
	color: #d4e8da;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.initiatives-editorial-tag__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #c9973c;
}

.initiatives-editorial-intro__image,
.initiatives-editorial-livelihood__image {
	position: relative;
}

.initiatives-editorial-intro__image img {
	height: 500px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.72);
	padding: 18px;
	box-shadow: 0 22px 54px rgba(16, 40, 29, 0.14);
}

.initiatives-editorial-intro__accent {
	position: absolute;
	right: -24px;
	bottom: -24px;
	width: 140px;
	height: 140px;
	background: #c9973c;
	z-index: -1;
}

.initiatives-editorial-activities {
	position: relative;
	overflow: hidden;
	background: #1a3a2a;
}

.initiatives-editorial-activities::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.02);
}

.initiatives-editorial-activities__inner,
.initiatives-editorial-forest__inner {
	position: relative;
	z-index: 1;
}

.initiatives-editorial-activities__header {
	margin-bottom: 56px;
	text-align: center;
}

.initiatives-editorial-activities__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	background: rgba(255, 255, 255, 0.08);
}

.initiatives-editorial-activity {
	position: relative;
	padding: 42px 30px 34px;
	background: #1a3a2a;
}

.initiatives-editorial-activity__num {
	position: absolute;
	top: 18px;
	right: 22px;
	font-family: "Cormorant Garamond", serif;
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1;
	color: rgba(168, 201, 176, 0.15);
}

.initiatives-editorial-activity__icon {
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	background: rgba(168, 201, 176, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 1px rgba(168, 201, 176, 0.08);
}

.initiatives-editorial-activity__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #a8c9b0;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.initiatives-editorial-activity__label {
	margin: 0 0 10px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #c9973c;
}

.initiatives-editorial-activity h3 {
	margin: 0 0 14px;
	font-size: 1.45rem;
	line-height: 1.3;
	color: #f7f3ee;
}

.initiatives-editorial-activity p:last-child {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.85;
	color: #d4e8da;
}

.initiatives-editorial-forest {
	background: #d4e8da;
}

.initiatives-editorial-milestones {
	display: grid;
}

.initiatives-editorial-milestone {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid rgba(42, 90, 61, 0.12);
}

.initiatives-editorial-milestone:last-child {
	border-bottom: 0;
}

.initiatives-editorial-milestone__icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	background: #1a3a2a;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 1px rgba(168, 201, 176, 0.16);
}

.initiatives-editorial-milestone__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #d4e8da;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.initiatives-editorial-milestone__content h4 {
	margin: 0 0 6px;
	font-size: 0.98rem;
	font-weight: 700;
	color: #1a3a2a;
}

.initiatives-editorial-milestone__content p {
	margin: 0;
	font-size: 0.88rem;
	color: #8a887e;
}

.initiatives-editorial-forest__media-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(210px, 0.5fr);
	gap: 18px;
}

.initiatives-editorial-forest__media-grid img {
	height: 100%;
	min-height: 460px;
	max-height: 860px;
	object-fit: contain;
	object-position: center center;
	background: rgba(255, 255, 255, 0.62);
	padding: 8px;
	box-shadow: 0 20px 48px rgba(16, 40, 29, 0.12);
}

.initiatives-editorial-forest__caption {
	padding: 28px 24px;
	background: #1a3a2a;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.initiatives-editorial-forest__caption p {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.38rem;
	font-style: italic;
	line-height: 1.5;
	color: #f7f3ee;
}

.initiatives-editorial-forest__caption span {
	display: block;
	margin-top: 14px;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6aab7e;
}

.initiatives-editorial-livelihood__image {
	order: -1;
}

.initiatives-editorial-livelihood__image img {
	height: 480px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.82);
	padding: 18px;
	box-shadow: 0 22px 54px rgba(16, 40, 29, 0.14);
}

.initiatives-editorial-livelihood__accent {
	position: absolute;
	top: -24px;
	left: -24px;
	width: 120px;
	height: 120px;
	background: #a8c9b0;
	z-index: -1;
}

.initiatives-editorial-livelihood__items {
	margin-top: 30px;
	border: 1px solid rgba(42, 90, 61, 0.15);
}

.initiatives-editorial-livelihood__item {
	display: grid;
	grid-template-columns: 96px 1fr;
	border-bottom: 1px solid rgba(42, 90, 61, 0.1);
}

.initiatives-editorial-livelihood__item:last-child {
	border-bottom: 0;
}

.initiatives-editorial-livelihood__key {
	padding: 16px 12px;
	background: #1a3a2a;
	color: #d4e8da;
	font-family: "Cormorant Garamond", serif;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.3;
}

.initiatives-editorial-livelihood__val {
	padding: 16px 20px;
	background: #f7f3ee;
	display: flex;
	align-items: center;
	font-size: 0.89rem;
	line-height: 1.55;
	color: #4a4840;
}

.initiatives-editorial-quote__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.initiatives-editorial-quote__inner .initiatives-editorial-section-kicker {
	justify-content: center;
}

.initiatives-editorial-quote__divider {
	width: 60px;
	height: 2px;
	margin: 40px auto;
	background: #c9973c;
}

.initiatives-editorial-quote__inner p {
	font-size: 1.08rem;
	line-height: 2;
}

.initiatives-editorial-quote__text {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.65rem;
	font-style: italic;
	color: #1a3a2a;
}

.initiatives-editorial-cta {
	position: relative;
	overflow: hidden;
	background: #5c4033;
}

.initiatives-editorial-cta::before {
	content: "LEMSACHENLOK";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Cormorant Garamond", serif;
	font-size: 12rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.04);
}

.initiatives-editorial-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.initiatives-editorial-cta__inner p {
	color: #d4e8da;
}

.initiatives-editorial-cta__actions {
	justify-content: center;
}

.initiatives-editorial-button--light {
	background: #f7f3ee;
	color: #1a3a2a;
}

.initiatives-editorial-button--light:hover {
	background: #d4e8da;
}

.initiatives-editorial-button--outline {
	border: 1px solid rgba(168, 201, 176, 0.42);
	background: transparent;
	color: #d4e8da;
}

.initiatives-editorial-button--outline:hover {
	border-color: #d4e8da;
	background: rgba(255, 255, 255, 0.04);
}

.contact-editorial-page {
	background: #f7f3ee;
}

.contact-editorial-eyebrow,
.contact-editorial-section-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #3d7a50;
}

.contact-editorial-eyebrow::before,
.contact-editorial-section-kicker::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.contact-editorial-section-kicker--light {
	color: #a8c9b0;
	justify-content: center;
}

.contact-editorial-section-title {
	margin: 0 0 24px;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 3.6vw, 3.3rem);
	font-weight: 300;
	line-height: 1.16;
	letter-spacing: -0.02em;
	color: #1a3a2a;
}

.contact-editorial-section-title em,
.contact-editorial-hero__title em {
	font-style: italic;
	color: #6aab7e;
}

.contact-editorial-section-title--light {
	color: #f7f3ee;
	text-align: center;
}

.contact-editorial-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: calc(100vh - 92px);
	overflow: hidden;
	background: #1a3a2a;
}

.contact-editorial-hero__left {
	background: #1a3a2a;
	display: flex;
	align-items: center;
}

.contact-editorial-hero__shell {
	width: min(560px, calc(100% - 72px));
	margin-left: auto;
	margin-right: 0;
	padding: 96px 0 88px 24px;
	position: relative;
	z-index: 1;
	color: #f7f3ee;
}

.contact-editorial-hero__title {
	margin: 0 0 24px;
	max-width: 11.2ch;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3rem, 4.8vw, 4.35rem);
	font-weight: 300;
	line-height: 1.08;
	color: #f7f3ee;
}

.contact-editorial-hero__lead {
	max-width: 48ch;
	font-size: 1rem;
	line-height: 1.85;
	color: #d4e8da;
}

.contact-editorial-hero__actions,
.contact-editorial-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.contact-editorial-hero__right {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding: 18px;
	background: linear-gradient(135deg, #123021, #173a29);
}

.contact-editorial-hero__right img,
.contact-editorial-map__frame iframe {
	width: 100%;
	height: 100%;
	display: block;
}

.contact-editorial-hero__right img {
	object-fit: contain;
	object-position: center center;
	filter: saturate(0.92) brightness(0.94);
	background: rgba(255, 255, 255, 0.08);
	padding: 10px;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.18);
}

.contact-editorial-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 58, 42, 0.35) 0%, transparent 60%);
}

.contact-editorial-stats {
	position: absolute;
	right: 48px;
	bottom: 48px;
	z-index: 1;
	display: grid;
	gap: 16px;
}

.contact-editorial-stat {
	min-width: 220px;
	padding: 18px 22px;
	background: rgba(247, 243, 238, 0.95);
	border-left: 3px solid #c9973c;
	box-shadow: 0 18px 40px rgba(16, 40, 29, 0.16);
}

.contact-editorial-stat strong {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	color: #1a3a2a;
}

.contact-editorial-stat span {
	display: block;
	margin-top: 6px;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a887e;
}

.contact-editorial-hero__pattern {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 80px;
	background: #f7f3ee;
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.contact-editorial-cards,
.contact-editorial-main,
.contact-editorial-cta {
	padding: 96px 0;
}

.contact-editorial-cards__grid,
.contact-editorial-main__grid {
	display: grid;
	gap: 28px;
}

.contact-editorial-cards__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-editorial-card,
.contact-editorial-form-card {
	padding: 30px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(43, 111, 77, 0.08);
	box-shadow: var(--shadow);
}

.contact-editorial-card__icon {
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
	background: #1a3a2a;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 1px rgba(168, 201, 176, 0.16);
}

.contact-editorial-card__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #d4e8da;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contact-editorial-card__label {
	margin: 0 0 10px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #c9973c;
}

.contact-editorial-card h2 {
	margin-bottom: 12px;
	font-size: 2rem;
}

.contact-editorial-card p,
.contact-editorial-form-card p,
.contact-editorial-map p {
	color: #4a4840;
	line-height: 1.9;
}

.contact-editorial-main__grid {
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
	align-items: start;
}

.contact-editorial-map__frame {
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid rgba(43, 111, 77, 0.08);
	min-height: 420px;
	margin-top: 28px;
}

.contact-editorial-map__frame iframe {
	height: 420px;
	border: 0;
}

.contact-editorial-form-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 223, 0.98));
}

.contact-editorial-cta {
	position: relative;
	overflow: hidden;
	background: #1c4330;
}

.contact-editorial-cta::before {
	content: "LEMSACHENLOK";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Cormorant Garamond", serif;
	font-size: 12rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.04);
}

.contact-editorial-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.contact-editorial-cta__inner p {
	color: #d4e8da;
}

.contact-editorial-cta__actions {
	justify-content: center;
}

.contact-editorial-button--light {
	background: #f7f3ee;
	color: #1a3a2a;
}

.contact-editorial-button--light:hover {
	background: #d4e8da;
}

.contact-editorial-button--outline {
	border: 1px solid rgba(168, 201, 176, 0.42);
	background: transparent;
	color: #d4e8da;
}

.contact-editorial-button--outline:hover {
	border-color: #d4e8da;
	background: rgba(255, 255, 255, 0.04);
}

.contact-form {
	display: grid;
	gap: 16px;
}

.contact-form__field {
	display: grid;
	gap: 8px;
}

.contact-form__field label {
	font-weight: 700;
	color: var(--forest-900);
}

.contact-form__field input,
.contact-form__field textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid rgba(43, 111, 77, 0.14);
	background: rgba(255, 255, 255, 0.88);
	font: inherit;
	color: var(--ink);
}

.contact-form__field textarea {
	resize: vertical;
}

.contact-form__notice {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 16px;
	font-weight: 700;
}

.contact-form__notice--success {
	background: rgba(106, 163, 110, 0.16);
	color: var(--forest-800);
}

.contact-form__notice--error {
	background: rgba(143, 100, 48, 0.14);
	color: var(--earth-500);
}

.impact-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.impact-hero__image,
.impact-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.impact-hero__image {
	object-fit: cover;
}

.impact-hero__overlay {
	background: linear-gradient(90deg, rgba(16, 40, 29, 0.84) 0%, rgba(16, 40, 29, 0.7) 42%, rgba(16, 40, 29, 0.2) 100%);
}

.impact-hero__content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	padding: 110px 0 92px;
	color: var(--white);
}

.impact-hero__content .section-kicker {
	color: var(--moss-300);
}

.impact-hero__content h1 {
	color: var(--white);
	margin-bottom: 16px;
}

.impact-hero__lead {
	max-width: 56ch;
	font-size: 1.08rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
}

.impact-hero__actions,
.impact-cta-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.impact-intro,
.impact-highlights,
.impact-page-content,
.impact-cta-strip {
	padding: 84px 0;
}

.impact-intro {
	background: linear-gradient(180deg, rgba(215, 230, 200, 0.22), rgba(255, 255, 255, 0));
}

.impact-intro__grid,
.impact-highlights__grid,
.impact-page-content__layout,
.impact-cta-strip__box {
	display: grid;
	gap: 30px;
}

.impact-intro__grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	align-items: center;
}

.impact-intro__visuals {
	display: grid;
	gap: 20px;
}

.impact-highlights__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-highlight-card,
.impact-cta-strip__box {
	padding: 28px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow);
	border: 1px solid rgba(43, 111, 77, 0.08);
}

.impact-page-content__layout {
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	align-items: start;
}

.impact-page-content__main {
	min-width: 0;
}

.impact-page-content__visuals {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 20px;
	padding-top: 12px;
}

.impact-page-content__prose {
	max-width: 900px;
}

.impact-page-content__prose h2 {
	position: relative;
	padding-bottom: 10px;
}

.impact-page-content__prose h2::after {
	content: "";
	display: block;
	width: 72px;
	height: 3px;
	margin-top: 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--forest-700), rgba(106, 163, 110, 0.28));
}

.impact-cta-strip__box {
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(215, 230, 200, 0.58));
}

.impact-editorial-page {
	background: #f7f3ee;
}

.impact-editorial-eyebrow,
.impact-editorial-section-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #3d7a50;
}

.impact-editorial-eyebrow::before,
.impact-editorial-section-kicker::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.impact-editorial-section-kicker--light {
	color: #a8c9b0;
	justify-content: center;
}

.impact-editorial-section-title {
	margin: 0 0 24px;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 3.6vw, 3.3rem);
	font-weight: 300;
	line-height: 1.16;
	letter-spacing: -0.02em;
	color: #1a3a2a;
}

.impact-editorial-section-title em {
	font-style: italic;
	color: #3d7a50;
}

.impact-editorial-section-title--light {
	color: #f7f3ee;
}

.impact-editorial-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
	overflow: hidden;
}

.impact-editorial-hero__left {
	background: #1a3a2a;
	display: flex;
	align-items: center;
}

.impact-editorial-hero__shell {
	width: min(560px, calc(100% - 72px));
	margin-left: auto;
	margin-right: 0;
	padding: 96px 0 88px 24px;
}

.impact-editorial-hero__title {
	margin: 0 0 24px;
	max-width: 10ch;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.9rem, 4.7vw, 4.2rem);
	font-weight: 300;
	line-height: 1.08;
	color: #f7f3ee;
}

.impact-editorial-hero__title em {
	font-style: italic;
	color: #a8c9b0;
}

.impact-editorial-hero__lead {
	max-width: 48ch;
	font-size: 1rem;
	line-height: 1.85;
	color: #d4e8da;
}

.impact-editorial-hero__actions,
.impact-editorial-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
	justify-content: center;
}

.impact-editorial-hero__right {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding: 18px;
	background: linear-gradient(135deg, #123021, #173a29);
}

.impact-editorial-hero__right img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	filter: saturate(0.92) brightness(0.94);
	object-position: center center;
	background: rgba(255, 255, 255, 0.08);
	padding: 10px;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.18);
}

.impact-editorial-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 58, 42, 0.35) 0%, transparent 60%);
}

.impact-editorial-stats {
	position: absolute;
	right: 48px;
	bottom: 48px;
	display: grid;
	gap: 16px;
}

.impact-editorial-stat {
	padding: 18px 22px;
	background: rgba(247, 243, 238, 0.95);
	border-left: 3px solid #c9973c;
}

.impact-editorial-stat strong {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	color: #1a3a2a;
}

.impact-editorial-stat span {
	display: block;
	margin-top: 6px;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a887e;
}

.impact-editorial-hero__pattern {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 80px;
	background: #f7f3ee;
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.impact-editorial-why,
.impact-editorial-awards,
.impact-editorial-numbers,
.impact-editorial-partners,
.impact-editorial-research,
.impact-editorial-programs,
.impact-editorial-quote,
.impact-editorial-cta {
	padding: 96px 0;
}

.impact-editorial-why__grid,
.impact-editorial-research__grid,
.impact-editorial-programs__header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.impact-editorial-why__text p,
.impact-editorial-awards__header p,
.impact-editorial-partners__header p,
.impact-editorial-research__text p,
.impact-editorial-programs__header p,
.impact-editorial-quote__inner p,
.impact-editorial-cta__inner p {
	color: #4a4840;
	line-height: 1.9;
}

.impact-editorial-pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	margin-top: 30px;
	background: rgba(42, 90, 61, 0.12);
}

.impact-editorial-pillar {
	padding: 24px;
	background: #f7f3ee;
	border-top: 3px solid transparent;
}

.impact-editorial-pillar__icon,
.impact-editorial-award__badge,
.impact-editorial-program__icon {
	width: 52px;
	height: 52px;
	margin-bottom: 16px;
	background: rgba(168, 201, 176, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 1px rgba(168, 201, 176, 0.08);
}

.impact-editorial-pillar__icon svg,
.impact-editorial-award__badge svg,
.impact-editorial-program__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #6aab7e;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.impact-editorial-pillar h4 {
	margin: 0 0 6px;
	font-size: 0.92rem;
	font-weight: 700;
	color: #1a3a2a;
}

.impact-editorial-pillar p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.65;
	color: #8a887e;
}

.impact-editorial-why__images {
	display: grid;
	grid-template-columns: minmax(0, 1.24fr) minmax(220px, 0.76fr);
	grid-template-rows: auto auto;
	gap: 16px;
}

.impact-editorial-why__images img {
	width: 100%;
	background: rgba(255, 255, 255, 0.78);
	object-fit: cover;
	display: block;
}

.impact-editorial-why__images img:first-child {
	grid-column: 1 / -1;
	height: 560px;
	object-fit: contain;
	padding: 4px;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.14);
}

.impact-editorial-why__images img:last-of-type {
	height: 320px;
	object-fit: contain;
	padding: 6px;
	box-shadow: 0 20px 48px rgba(16, 40, 29, 0.12);
}

.impact-editorial-why__label {
	padding: 24px;
	background: #1a3a2a;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.impact-editorial-why__label p {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.15rem;
	font-style: italic;
	line-height: 1.5;
	color: #f7f3ee;
}

.impact-editorial-why__label span {
	display: block;
	margin-top: 12px;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6aab7e;
}

.impact-editorial-awards {
	position: relative;
	overflow: hidden;
	background: #1a3a2a;
}

.impact-editorial-awards::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.02);
}

.impact-editorial-awards__inner,
.impact-editorial-numbers__inner,
.impact-editorial-programs__inner {
	position: relative;
	z-index: 1;
}

.impact-editorial-awards__header {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}

.impact-editorial-awards__header p,
.impact-editorial-programs__header p {
	color: #d4e8da;
}

.impact-editorial-awards__timeline {
	display: flex;
	flex-direction: column;
}

.impact-editorial-award {
	display: grid;
	grid-template-columns: 120px 1fr;
	border-top: 1px solid rgba(168, 201, 176, 0.15);
}

.impact-editorial-award:last-child {
	border-bottom: 1px solid rgba(168, 201, 176, 0.15);
}

.impact-editorial-award__year {
	padding: 32px 32px 32px 0;
	display: flex;
	align-items: center;
	border-right: 1px solid rgba(168, 201, 176, 0.1);
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	font-weight: 300;
	color: #c9973c;
}

.impact-editorial-award__body {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px 0 32px 32px;
}

.impact-editorial-award__badge {
	flex-shrink: 0;
	margin-bottom: 0;
}

.impact-editorial-award__info h4 {
	margin: 0 0 6px;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.28rem;
	font-weight: 400;
	line-height: 1.3;
	color: #f7f3ee;
}

.impact-editorial-award__info p {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.65;
	color: #d4e8da;
}

.impact-editorial-award__tag {
	margin-left: auto;
	flex-shrink: 0;
	padding: 6px 12px;
	border: 1px solid rgba(201, 151, 60, 0.35);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c9973c;
}

.impact-editorial-numbers {
	position: relative;
	overflow: hidden;
	background: #5c4033;
}

.impact-editorial-numbers::before {
	content: "IMPACT";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Cormorant Garamond", serif;
	font-size: 16rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.03);
	white-space: nowrap;
}

.impact-editorial-numbers__header {
	margin-bottom: 56px;
	text-align: center;
}

.impact-editorial-numbers__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	background: rgba(255, 255, 255, 0.08);
}

.impact-editorial-number {
	padding: 48px 28px;
	text-align: center;
	background: #5c4033;
}

.impact-editorial-number__big {
	display: block;
	margin-bottom: 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1;
	color: #c9973c;
}

.impact-editorial-number__label {
	font-size: 0.8rem;
	line-height: 1.45;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d4e8da;
}

.impact-editorial-partners {
	background: #d4e8da;
}

.impact-editorial-partners__header {
	margin-bottom: 44px;
}

.impact-editorial-partners__header p {
	max-width: 560px;
}

.impact-editorial-partners__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.impact-editorial-partner-group__heading {
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(42, 90, 61, 0.2);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #3d7a50;
}

.impact-editorial-partner-list {
	display: flex;
	flex-direction: column;
}

.impact-editorial-partner-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(42, 90, 61, 0.08);
}

.impact-editorial-partner-item:last-child {
	border-bottom: 0;
}

.impact-editorial-partner-dot {
	width: 8px;
	height: 8px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #c9973c;
}

.impact-editorial-partner-item span {
	font-size: 0.92rem;
	color: #1a3a2a;
}

.impact-editorial-enable-list {
	display: grid;
	gap: 16px;
}

.impact-editorial-enable-item {
	padding: 20px 22px;
	border-left: 3px solid #c9973c;
	background: rgba(255, 255, 255, 0.5);
}

.impact-editorial-enable-item__label {
	margin-bottom: 6px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #3d7a50;
}

.impact-editorial-enable-item p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.65;
	color: #4a4840;
}

.impact-editorial-research__text p {
	color: #4a4840;
}

.impact-editorial-research__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.impact-editorial-research__tags span {
	padding: 10px 16px;
	background: #1a3a2a;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	color: #d4e8da;
}

.impact-editorial-research__inst-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid rgba(42, 90, 61, 0.15);
}

.impact-editorial-research__inst-grid > div {
	padding: 20px;
	border-right: 1px solid rgba(42, 90, 61, 0.1);
	border-bottom: 1px solid rgba(42, 90, 61, 0.1);
	font-size: 0.86rem;
	line-height: 1.55;
	color: #4a4840;
}

.impact-editorial-research__inst-grid > div:nth-child(even) {
	border-right: 0;
}

.impact-editorial-research__inst-grid > div:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.impact-editorial-research__inst-grid--wide {
	grid-column: 1 / -1;
	border-right: 0;
	border-bottom: 0;
}

.impact-editorial-programs {
	position: relative;
	overflow: hidden;
	background: #1a3a2a;
}

.impact-editorial-programs__header {
	margin-bottom: 56px;
}

.impact-editorial-programs__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: rgba(255, 255, 255, 0.06);
}

.impact-editorial-program {
	position: relative;
	padding: 42px 30px 34px;
	background: #1a3a2a;
}

.impact-editorial-program__num {
	position: absolute;
	top: 16px;
	right: 18px;
	font-family: "Cormorant Garamond", serif;
	font-size: 3rem;
	font-weight: 300;
	line-height: 1;
	color: rgba(168, 201, 176, 0.12);
}

.impact-editorial-program h3 {
	margin: 0 0 12px;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.3rem;
	font-weight: 300;
	line-height: 1.35;
	color: #f7f3ee;
}

.impact-editorial-program p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.8;
	color: #d4e8da;
}

.impact-editorial-quote__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.impact-editorial-quote__inner .impact-editorial-section-kicker {
	justify-content: center;
}

.impact-editorial-quote__divider {
	width: 60px;
	height: 2px;
	margin: 40px auto;
	background: #c9973c;
}

.impact-editorial-quote__inner p {
	font-size: 1.08rem;
	line-height: 2;
}

.impact-editorial-quote__text {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.65rem;
	font-style: italic;
	color: #1a3a2a;
}

.impact-editorial-cta {
	position: relative;
	overflow: hidden;
	background: #2d5a3d;
}

.impact-editorial-cta::before {
	content: "LEMSACHENLOK";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Cormorant Garamond", serif;
	font-size: 12rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.04);
}

.impact-editorial-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.impact-editorial-cta__inner p {
	color: #d4e8da;
}

.impact-editorial-button--light {
	background: #f7f3ee;
	color: #1a3a2a;
}

.impact-editorial-button--light:hover {
	background: #d4e8da;
}

.impact-editorial-button--outline {
	border: 1px solid rgba(168, 201, 176, 0.42);
	background: transparent;
	color: #d4e8da;
}

.impact-editorial-button--outline:hover {
	border-color: #d4e8da;
	background: rgba(255, 255, 255, 0.04);
}

.reveal-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.08s;
}

.reveal-delay-2 {
	transition-delay: 0.16s;
}

.site-footer {
	padding: 34px 0 24px;
	background:
		linear-gradient(135deg, #0d1c16 0%, #12281f 46%, #173629 100%);
	color: rgba(255, 255, 255, 0.88);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
	gap: 34px;
	align-items: start;
	padding-bottom: 24px;
}

.site-footer__bottom {
	padding-top: 22px;
	margin-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.74);
	text-align: center;
}

.site-footer__bottom a {
	color: #ffffff;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(201, 151, 60, 0.95);
	text-underline-offset: 4px;
}

.site-footer__brand {
	max-width: 360px;
}

.footer-title {
	margin: 0 0 16px;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--white);
}

.footer-copy {
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.85;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li + li {
	margin-top: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.76);
	transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
	color: #ffffff;
	transform: translateX(3px);
}

.about-page-editable,
.contact-page-editable,
.initiatives-page-editable,
.impact-page-editable {
	padding-top: 0;
}

body.home {
	background: #f7f3ee;
}

.home-editorial-slider,
.home-editorial-who,
.home-editorial-focus,
.home-editorial-foundation,
.home-editorial-numbers,
.home-editorial-ground,
.home-editorial-recognition,
.home-editorial-partners,
.home-editorial-quote,
.home-editorial-cta {
	padding: 0;
}

.home-editorial-section-kicker {
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #3d7a50;
}

.home-editorial-section-kicker::before {
	content: "";
	display: block;
	width: 28px;
	height: 1px;
	background: currentColor;
}

.home-editorial-section-kicker--mist {
	color: #d4e8da;
}

.home-editorial-section-title {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.1rem, 4vw, 3.7rem);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #1a3a2a;
}

.home-editorial-section-title em {
	font-style: italic;
	color: #3d7a50;
}

.home-editorial-section-title--light {
	color: #f7f3ee;
}

.home-editorial-slider {
	padding: 22px 0 0;
}

.home-editorial-slider__frame {
	position: relative;
	width: min(1400px, calc(100vw - 28px));
	margin: 0 auto;
	min-height: 100vh;
	border-radius: 34px;
	overflow: hidden;
	box-shadow: 0 32px 90px rgba(16, 40, 29, 0.18);
}

.home-slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.9s ease;
}

.home-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.home-editorial-slide__panel {
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding: 120px 0 150px;
}

.home-editorial-slide__panel--forest {
	background: #1a3a2a;
}

.home-editorial-slide__panel--bark {
	background: #234e37;
}

.home-editorial-slide__panel--moss {
	background: #2d5a3d;
}

.home-editorial-slide__inner {
	width: min(560px, 100%);
}

.home-editorial-eyebrow {
	margin: 0 0 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #a8c9b0;
}

.home-editorial-eyebrow::before {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background: currentColor;
}

.home-editorial-slide__title {
	margin: 0 0 22px;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3rem, 5.8vw, 5.2rem);
	font-weight: 300;
	line-height: 0.96;
	letter-spacing: -0.04em;
	color: #f7f3ee;
}

.home-editorial-slide__title em {
	font-style: italic;
	color: #d4e8da;
}

.home-editorial-slide__text {
	max-width: 48ch;
	margin: 0 0 28px;
	font-size: 1.02rem;
	line-height: 1.82;
	color: rgba(247, 243, 238, 0.86);
}

.home-editorial-slide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.home-editorial-slide__media {
	position: relative;
	overflow: hidden;
}

.home-editorial-slide__media img,
.home-editorial-slide__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-editorial-slide__media img {
	object-fit: cover;
	filter: saturate(0.84) brightness(0.88);
	transform: scale(1.06);
	transition: transform 5.2s ease;
}

.home-slide.is-active .home-editorial-slide__media img {
	transform: scale(1.13);
}

.home-editorial-slide__overlay {
	background: linear-gradient(135deg, rgba(26, 58, 42, 0.28) 0%, rgba(26, 58, 42, 0.08) 58%, transparent 100%);
}

.home-editorial-slider__stats {
	position: absolute;
	right: 42px;
	bottom: 120px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.home-editorial-slider__stat {
	padding: 18px 22px;
	border-left: 3px solid #c9973c;
	background: rgba(247, 243, 238, 0.96);
	box-shadow: 0 18px 40px rgba(16, 40, 29, 0.16);
}

.home-editorial-slider__stat-num {
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.9rem;
	font-weight: 600;
	line-height: 1;
	color: #1a3a2a;
}

.home-editorial-slider__stat-label {
	display: block;
	margin-top: 6px;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a887e;
}

.home-editorial-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 36px;
	z-index: 4;
	display: flex;
	gap: 10px;
	transform: translateX(-50%);
}

.home-slider__dot {
	width: 24px;
	height: 2px;
	border: 0;
	background: rgba(168, 201, 176, 0.38);
	cursor: pointer;
	transition: all 0.25s ease;
}

.home-slider__dot.is-active {
	width: 40px;
	background: #c9973c;
	box-shadow: none;
}

.home-editorial-slider__cut {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 84px;
	background: #f7f3ee;
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
	z-index: 3;
}

.home-editorial-button--light {
	border-color: rgba(255, 255, 255, 0.34);
	background: transparent;
	color: #d4e8da;
}

.home-editorial-button--light:hover {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.06);
}

.home-editorial-who,
.home-editorial-focus,
.home-editorial-foundation,
.home-editorial-numbers,
.home-editorial-ground,
.home-editorial-recognition,
.home-editorial-partners,
.home-editorial-quote,
.home-editorial-cta {
	padding: 96px 0;
}

.home-editorial-who__grid,
.home-editorial-focus__header,
.home-editorial-ground__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.home-editorial-who__text p:not(.home-editorial-who__motto p) {
	max-width: 56ch;
	color: #4a4840;
	line-height: 1.85;
}

.home-editorial-who__motto {
	margin: 28px 0 30px;
	padding: 20px 24px;
	border-left: 3px solid #c9973c;
	background: #d4e8da;
}

.home-editorial-who__motto p {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.18rem;
	font-style: italic;
	line-height: 1.5;
	color: #1a3a2a;
}

.home-editorial-who__media {
	position: relative;
	margin: 0;
}

.home-editorial-who__media img {
	width: 100%;
	height: auto;
	max-height: 620px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.72);
	padding: 16px;
	border-radius: 0;
	box-shadow: 0 26px 60px rgba(16, 40, 29, 0.14);
}

.home-editorial-who__media figcaption {
	position: absolute;
	left: -24px;
	bottom: -24px;
	padding: 22px 24px;
	background: #1a3a2a;
	box-shadow: 0 24px 54px rgba(16, 40, 29, 0.16);
}

.home-editorial-who__media figcaption p {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1rem;
	font-style: italic;
	color: #f7f3ee;
}

.home-editorial-who__media figcaption span {
	display: block;
	margin-top: 8px;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #a8c9b0;
}

.home-editorial-focus {
	background: #d4e8da;
}

.home-editorial-focus__header {
	margin-bottom: 56px;
	align-items: start;
}

.home-editorial-focus__header p:last-child {
	color: #4a4840;
	line-height: 1.85;
}

.home-editorial-focus__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(42, 90, 61, 0.12);
}

.home-editorial-focus__card {
	position: relative;
	padding: 38px 32px 34px;
	background: #d4e8da;
	border-top: 3px solid transparent;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.home-editorial-focus__card:hover {
	background: #f7f3ee;
	border-color: #c9973c;
}

.home-editorial-focus__num {
	position: absolute;
	top: 18px;
	right: 22px;
	font-family: "Cormorant Garamond", serif;
	font-size: 2.8rem;
	font-weight: 300;
	line-height: 1;
	color: rgba(26, 58, 42, 0.08);
}

.home-editorial-focus__card h3 {
	margin: 0 0 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.34rem;
	font-weight: 400;
	line-height: 1.28;
	color: #1a3a2a;
}

.home-editorial-focus__card p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.8;
	color: #4a4840;
}

.home-editorial-foundation {
	position: relative;
	overflow: hidden;
	background: #1a3a2a;
}

.home-editorial-foundation::before {
	content: "LEMSACHENLOK";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Cormorant Garamond", serif;
	font-size: 14rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.025);
}

.home-editorial-foundation__inner,
.home-editorial-numbers__inner,
.home-editorial-recognition__inner {
	position: relative;
	z-index: 1;
}

.home-editorial-foundation__header,
.home-editorial-numbers__header,
.home-editorial-recognition__header,
.home-editorial-quote__inner,
.home-editorial-cta__inner {
	text-align: center;
}

.home-editorial-foundation__header .home-editorial-section-kicker,
.home-editorial-numbers__header .home-editorial-section-kicker,
.home-editorial-recognition__header .home-editorial-section-kicker,
.home-editorial-cta__inner .home-editorial-section-kicker {
	justify-content: center;
}

.home-editorial-foundation__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 52px;
	background: rgba(255, 255, 255, 0.06);
}

.home-editorial-foundation__card {
	padding: 46px 34px 40px;
	background: #1a3a2a;
	transition: background 0.3s ease;
}

.home-editorial-foundation__card:hover {
	background: #2d5a3d;
}

.home-editorial-foundation__tag {
	display: inline-block;
	margin-bottom: 20px;
	padding: 5px 12px;
	border: 1px solid rgba(201, 151, 60, 0.34);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #c9973c;
}

.home-editorial-foundation__card h3 {
	margin: 0 0 14px;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.55rem;
	font-weight: 300;
	line-height: 1.28;
	color: #f7f3ee;
}

.home-editorial-foundation__card h3 em {
	font-style: italic;
	color: #d4e8da;
}

.home-editorial-foundation__card p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.85;
	color: #d4e8da;
}

.home-editorial-numbers {
	position: relative;
	overflow: hidden;
	background: #5c4033;
}

.home-editorial-numbers::before {
	content: "IMPACT";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Cormorant Garamond", serif;
	font-size: 16rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.03);
	white-space: nowrap;
}

.home-editorial-numbers__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 52px;
	background: rgba(255, 255, 255, 0.08);
}

.home-editorial-numbers__card {
	padding: 46px 28px;
	text-align: center;
	background: #5c4033;
}

.home-editorial-numbers__big {
	display: block;
	margin-bottom: 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1;
	color: #c9973c;
}

.home-editorial-numbers__label {
	font-size: 0.8rem;
	line-height: 1.45;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d4e8da;
}

.home-editorial-ground__media {
	position: relative;
	margin: 0;
}

.home-editorial-ground__media img {
	width: 100%;
	height: auto;
	max-height: 720px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.78);
	padding: 14px;
	box-shadow: 0 26px 60px rgba(16, 40, 29, 0.16);
}

.home-editorial-ground__media figcaption {
	position: absolute;
	right: -26px;
	bottom: 0;
	max-width: 240px;
	padding: 24px;
	background: #1a3a2a;
}

.home-editorial-ground__media figcaption p {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1rem;
	font-style: italic;
	line-height: 1.5;
	color: #f7f3ee;
}

.home-editorial-ground__media figcaption span {
	display: block;
	margin-top: 8px;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #a8c9b0;
}

.home-editorial-ground__text p {
	color: #4a4840;
	line-height: 1.85;
}

.home-editorial-ground__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.home-editorial-ground__list li {
	position: relative;
	padding: 16px 0 16px 22px;
	border-bottom: 1px solid rgba(42, 90, 61, 0.1);
	color: #4a4840;
}

.home-editorial-ground__list li:last-child {
	border-bottom: 0;
}

.home-editorial-ground__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c9973c;
}

.home-editorial-recognition {
	position: relative;
	overflow: hidden;
	background: #1a3a2a;
}

.home-editorial-recognition::before {
	content: "";
	position: absolute;
	top: -220px;
	right: -220px;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.02);
}

.home-editorial-recognition__header {
	max-width: 740px;
	margin: 0 auto 52px;
}

.home-editorial-recognition__header p:last-child {
	color: #d4e8da;
	line-height: 1.82;
}

.home-editorial-award {
	display: grid;
	grid-template-columns: 120px 1fr;
	border-top: 1px solid rgba(168, 201, 176, 0.15);
}

.home-editorial-award:last-child {
	border-bottom: 1px solid rgba(168, 201, 176, 0.15);
}

.home-editorial-award__year {
	padding: 32px 28px 32px 0;
	display: flex;
	align-items: center;
	border-right: 1px solid rgba(168, 201, 176, 0.1);
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	font-weight: 300;
	color: #c9973c;
}

.home-editorial-award__body {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px 0 32px 32px;
}

.home-editorial-award__info h3 {
	margin: 0 0 6px;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.28rem;
	font-weight: 400;
	line-height: 1.3;
	color: #f7f3ee;
}

.home-editorial-award__info p {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.7;
	color: #d4e8da;
}

.home-editorial-award__tag {
	margin-left: auto;
	padding: 6px 12px;
	border: 1px solid rgba(201, 151, 60, 0.35);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c9973c;
	white-space: nowrap;
}

.home-editorial-partners {
	background: #d4e8da;
	overflow: hidden;
}

.home-editorial-partners__header {
	margin-bottom: 44px;
}

.home-editorial-partners__header p:last-child {
	max-width: 560px;
	color: #4a4840;
	line-height: 1.84;
}

.home-editorial-marquee {
	overflow: hidden;
}

.home-editorial-marquee__track {
	display: flex;
	width: max-content;
	animation: home-editorial-marquee 28s linear infinite;
}

.home-editorial-marquee__item {
	padding: 18px 28px;
	border-right: 1px solid rgba(42, 90, 61, 0.12);
	font-size: 0.86rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	white-space: nowrap;
	color: #4a4840;
}

.home-editorial-partners__link {
	margin-top: 36px;
}

.home-editorial-quote__inner {
	max-width: 900px;
	margin: 0 auto;
}

.home-editorial-quote__inner > p:not(.home-editorial-quote__text) {
	font-size: 1.05rem;
	line-height: 2;
	color: #4a4840;
}

.home-editorial-quote__divider {
	width: 60px;
	height: 2px;
	margin: 40px auto;
	background: #c9973c;
}

.home-editorial-quote__text {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.62rem;
	font-style: italic;
	color: #1a3a2a;
}

.home-editorial-cta {
	position: relative;
	overflow: hidden;
	background: #2d5a3d;
}

.home-editorial-cta::before {
	content: "LEMSACHENLOK";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Cormorant Garamond", serif;
	font-size: 12rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.04);
}

.home-editorial-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
}

.home-editorial-cta__inner > p {
	color: #d4e8da;
	line-height: 1.8;
}

.home-editorial-cta__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.home-editorial-button--solid-light {
	background: #f7f3ee;
	color: #1a3a2a;
}

.home-editorial-button--solid-light:hover {
	background: #d4e8da;
}

.home-editorial-button--outline-light {
	border: 1px solid rgba(168, 201, 176, 0.42);
	background: transparent;
	color: #d4e8da;
}

.home-editorial-button--outline-light:hover {
	border-color: #d4e8da;
	background: rgba(255, 255, 255, 0.04);
}

@keyframes home-editorial-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 960px) {
	.home-editorial-slide__panel,
	.home-slide {
		grid-template-columns: 1fr;
	}

	.home-editorial-slider__frame {
		min-height: auto;
	}

	.home-editorial-slide__panel {
		min-height: auto;
		padding: 88px 0 54px;
	}

	.home-editorial-slide__inner {
		width: min(620px, calc(100% - 48px));
	}

	.home-editorial-slide__media {
		min-height: 420px;
	}

	.home-editorial-slider__stats {
		right: 24px;
		bottom: 96px;
	}

	.home-editorial-who__grid,
	.home-editorial-focus__header,
	.home-editorial-ground__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.home-editorial-focus__grid,
	.home-editorial-foundation__grid {
		grid-template-columns: 1fr 1fr;
	}

	.home-editorial-numbers__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.impact-editorial-hero,
	.impact-editorial-why__grid,
	.impact-editorial-research__grid,
	.impact-editorial-programs__header {
		grid-template-columns: 1fr;
	}

	.impact-editorial-hero {
		min-height: auto;
	}

	.impact-editorial-hero__shell {
		width: min(620px, calc(100% - 48px));
		padding-left: 0;
		margin-right: auto;
	}

	.impact-editorial-stats {
		right: 24px;
		bottom: 24px;
	}

	.impact-editorial-partners__cols {
		grid-template-columns: 1fr;
	}

	.impact-editorial-why__images img:first-child,
	.impact-editorial-why__images img:last-of-type {
		height: auto;
	}

	.impact-editorial-numbers__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.impact-editorial-programs__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.initiatives-editorial-hero,
	.initiatives-editorial-intro__grid,
	.initiatives-editorial-forest__grid,
	.initiatives-editorial-livelihood__grid,
	.initiatives-editorial-forest__media-grid {
		grid-template-columns: 1fr;
	}

	.initiatives-editorial-hero {
		min-height: auto;
	}

	.initiatives-editorial-hero__shell {
		width: min(620px, calc(100% - 48px));
		padding-left: 0;
		margin-right: auto;
	}

	.initiatives-editorial-stats {
		right: 24px;
		bottom: 24px;
	}

	.initiatives-editorial-activities__grid {
		grid-template-columns: 1fr 1fr;
	}

	.initiatives-editorial-livelihood__image {
		order: 0;
	}

	.about-editorial-hero,
	.about-editorial-who__grid,
	.about-editorial-stand__grid,
	.about-editorial-principles__grid,
	.about-editorial-stand__media-grid,
	.about-legacy-principles__grid {
		grid-template-columns: 1fr;
	}

	.about-editorial-hero {
		min-height: auto;
	}

	.about-editorial-hero__content {
		padding: 92px 0 88px;
	}

	.about-editorial-hero__title {
		max-width: 12ch;
	}

	.about-editorial-stats {
		right: 24px;
		bottom: 72px;
	}

	.about-editorial-who__accent {
		right: -16px;
		bottom: -16px;
		width: 96px;
		height: 96px;
	}

	.about-editorial-principles__header {
		margin-bottom: 34px;
	}

	.about-editorial-stand__media-grid {
		grid-template-columns: 1fr;
	}

	.about-editorial-stand__caption {
		min-height: 0;
	}

	.about-editorial-principle {
		min-height: 0;
		padding: 42px 28px 36px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.about-editorial-principle:nth-child(2) {
		background: #2d5a3d;
	}

	.about-editorial-principle:last-child {
		border-bottom: 0;
	}

	.hero__grid,
	.about-intro__grid,
	.about-content-band__grid,
	.about-page-content__layout,
	.initiatives-intro__grid,
	.initiatives-page-content__layout,
	.contact-main__grid,
	.impact-intro__grid,
	.impact-page-content__layout,
	.image-narrative__grid,
	.partners-showcase__grid,
	.split-section,
	.impact-ribbon__grid,
	.contact-cta__box,
	.about-cta-strip__box,
	.initiatives-cta-strip__box,
	.impact-cta-strip__box {
		grid-template-columns: 1fr;
	}

	.mission-band__grid,
	.focus-grid,
	.site-footer__grid,
	.about-values__grid,
	.contact-cards__grid,
	.impact-highlights__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__stats {
		grid-template-columns: 1fr;
	}

	.home-slider__frame,
	.home-slide__content {
		min-height: 620px;
	}

	.hero-portrait {
		width: min(560px, 100%);
	}

	.split-section,
	.contact-cta__box {
		grid-template-columns: 1fr;
	}

	.collaboration-note__box {
		grid-template-columns: 1fr;
	}

	.collaboration-note__content h2 {
		max-width: none;
	}
}

@media (max-width: 720px) {
	.home-editorial-who,
	.home-editorial-focus,
	.home-editorial-foundation,
	.home-editorial-numbers,
	.home-editorial-ground,
	.home-editorial-recognition,
	.home-editorial-partners,
	.home-editorial-quote,
	.home-editorial-cta {
		padding: 72px 0;
	}

	.home-editorial-slider {
		padding: 14px 0 0;
	}

	.home-editorial-slider__frame {
		width: calc(100vw - 18px);
		border-radius: 24px;
	}

	.home-editorial-slide__panel {
		padding: 72px 0 44px;
	}

	.home-editorial-slide__inner {
		width: calc(100% - 32px);
	}

	.home-editorial-slide__title {
		font-size: clamp(2.35rem, 11vw, 3.8rem);
	}

	.home-editorial-slide__media {
		min-height: 300px;
	}

	.home-editorial-slider__stats {
		position: static;
		margin: 18px 16px 0;
	}

	.home-editorial-slider__dots {
		bottom: 20px;
	}

	.home-editorial-who__media img,
	.home-editorial-ground__media img {
		height: 360px;
	}

	.home-editorial-who__media img {
		object-fit: contain;
		background: rgba(255, 255, 255, 0.72);
		padding: 12px;
	}

	.home-editorial-who__media figcaption,
	.home-editorial-ground__media figcaption {
		position: static;
		max-width: none;
		margin-top: 14px;
	}

	.home-editorial-focus__grid,
	.home-editorial-foundation__grid,
	.home-editorial-numbers__grid {
		grid-template-columns: 1fr;
	}

	.home-editorial-award {
		grid-template-columns: 1fr;
	}

	.home-editorial-award__year {
		padding: 20px 0 12px;
		border-right: 0;
		border-bottom: 1px solid rgba(168, 201, 176, 0.1);
	}

	.home-editorial-award__body {
		flex-direction: column;
		align-items: flex-start;
		padding: 18px 0 24px;
	}

	.home-editorial-award__tag {
		margin-left: 0;
	}

	.home-editorial-cta::before,
	.home-editorial-foundation::before,
	.home-editorial-numbers::before {
		font-size: 4.8rem;
	}

	.home-editorial-cta__actions {
		flex-direction: column;
	}

	.impact-editorial-why,
	.impact-editorial-awards,
	.impact-editorial-numbers,
	.impact-editorial-partners,
	.impact-editorial-research,
	.impact-editorial-programs,
	.impact-editorial-quote,
	.impact-editorial-cta {
		padding: 72px 0;
	}

	.impact-editorial-hero__shell {
		padding: 80px 0 52px;
		width: calc(100% - 32px);
	}

	.impact-editorial-hero__title {
		max-width: none;
		font-size: clamp(2.3rem, 10vw, 3.4rem);
	}

	.impact-editorial-hero__right {
		min-height: 380px;
	}

	.impact-editorial-stats {
		right: 16px;
		bottom: 16px;
		left: 16px;
	}

	.impact-editorial-stat {
		padding: 16px 18px;
	}

	.impact-editorial-pillars,
	.impact-editorial-why__images,
	.impact-editorial-research__inst-grid,
	.impact-editorial-numbers__grid,
	.impact-editorial-programs__grid {
		grid-template-columns: 1fr;
	}

	.impact-editorial-award {
		grid-template-columns: 1fr;
	}

	.impact-editorial-award__year {
		padding: 20px 0 12px;
		border-right: 0;
		border-bottom: 1px solid rgba(168, 201, 176, 0.1);
	}

	.impact-editorial-award__body {
		padding: 18px 0 24px;
		flex-direction: column;
		align-items: flex-start;
	}

	.impact-editorial-award__tag {
		margin-left: 0;
	}

	.impact-editorial-research__inst-grid > div,
	.impact-editorial-research__inst-grid > div:nth-child(even) {
		border-right: 0;
		border-bottom: 1px solid rgba(42, 90, 61, 0.1);
	}

	.impact-editorial-research__inst-grid > div:last-child,
	.impact-editorial-research__inst-grid > div:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.impact-editorial-program {
		padding: 34px 22px 28px;
	}

	.impact-editorial-program__num {
		top: 16px;
		right: 18px;
	}

	.impact-editorial-pillar__icon,
	.impact-editorial-award__badge,
	.impact-editorial-program__icon {
		width: 46px;
		height: 46px;
	}

	.impact-editorial-quote__text {
		font-size: 1.42rem;
	}

	.impact-editorial-cta::before {
		font-size: 4.6rem;
	}

	.initiatives-editorial-intro,
	.initiatives-editorial-activities,
	.initiatives-editorial-forest,
	.initiatives-editorial-livelihood,
	.initiatives-editorial-quote,
	.initiatives-editorial-cta {
		padding: 72px 0;
	}

	.initiatives-editorial-hero__shell {
		padding: 80px 0 52px;
		width: calc(100% - 32px);
	}

	.initiatives-editorial-hero__title {
		max-width: none;
		font-size: clamp(2.35rem, 10vw, 3.4rem);
	}

	.initiatives-editorial-hero__right {
		min-height: 380px;
	}

	.initiatives-editorial-stats {
		right: 16px;
		bottom: 16px;
		left: 16px;
	}

	.initiatives-editorial-stat {
		padding: 16px 18px;
	}

	.initiatives-editorial-activities__grid {
		grid-template-columns: 1fr;
	}

	.initiatives-editorial-activity {
		padding: 34px 22px 28px;
	}

	.initiatives-editorial-activity__num {
		top: 16px;
		right: 18px;
		font-size: 3rem;
	}

	.initiatives-editorial-activity__icon {
		width: 46px;
		height: 46px;
	}

	.initiatives-editorial-intro__image img,
	.initiatives-editorial-livelihood__image img {
		height: 380px;
	}

	.initiatives-editorial-forest__media-grid {
		grid-template-columns: 1fr;
	}

	.initiatives-editorial-milestone__icon {
		width: 50px;
		height: 50px;
	}

	.initiatives-editorial-livelihood__item {
		grid-template-columns: 1fr;
	}

	.initiatives-editorial-cta::before {
		font-size: 4.6rem;
	}

	.about-editorial-who,
	.about-editorial-principles,
	.about-editorial-stand,
	.about-editorial-peace,
	.about-editorial-cta,
	.about-editorial-extra,
	.about-legacy-principles {
		padding: 72px 0;
	}

	.about-editorial-hero__content {
		padding: 78px 0 70px;
	}

	.about-editorial-hero__title {
		max-width: none;
		font-size: clamp(2.2rem, 10vw, 3.2rem);
	}

	.about-editorial-hero__lead {
		font-size: 0.96rem;
	}

	.about-editorial-stats {
		position: static;
		flex-direction: column;
		margin: 18px 16px 0;
		max-width: none;
	}

	.about-editorial-stat {
		min-width: 0;
		width: 100%;
	}

	.about-editorial-stat strong {
		font-size: 1.6rem;
	}

	.about-editorial-section-title {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.about-editorial-word {
		grid-template-columns: 1fr;
	}

	.about-editorial-word__key,
	.about-editorial-word__def {
		padding: 14px 16px;
	}

	.about-editorial-who__image img {
		height: 380px;
	}

	.about-editorial-motto {
		padding: 26px 22px;
	}

	.about-editorial-principle {
		padding: 34px 22px 30px;
	}

	.about-editorial-principle__num {
		top: 18px;
		right: 18px;
		font-size: 3rem;
	}

	.about-editorial-principle h3,
	.about-editorial-principle p:last-child {
		max-width: none;
	}

	.about-editorial-pillar {
		gap: 14px;
	}

	.about-editorial-pillar__icon {
		width: 52px;
		height: 52px;
	}

	.about-editorial-stand__caption {
		padding: 24px 20px;
	}

	.about-editorial-peace__inner p {
		font-size: 1rem;
		line-height: 1.85;
	}

	.about-editorial-peace__quote {
		font-size: 1.42rem;
	}

	.about-legacy-principle__media {
		height: 172px;
	}

	.about-editorial-cta::before {
		font-size: 4.6rem;
	}

	.site-header__inner {
		padding: 12px 0;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 0 20px 18px;
		background: rgba(252, 250, 243, 0.96);
		border-bottom: 1px solid rgba(16, 40, 29, 0.08);
		display: none;
	}

	.site-navigation.is-open {
		display: block;
	}

	.primary-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding-top: 12px;
	}

	.primary-menu .sub-menu {
		position: static;
		min-width: 0;
		margin: 10px 0 0 14px;
		padding: 0 0 0 14px;
		border: 0;
		border-left: 2px solid rgba(16, 40, 29, 0.14);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-menu .sub-menu::before {
		display: none;
	}

	.primary-menu .sub-menu a {
		padding: 6px 0;
		white-space: normal;
	}
}

/* Team Exposure Tour */
.team-exposure-tour-page {
	overflow: hidden;
}

.team-exposure-tour-page .team-exposure-tour-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
	min-height: 720px;
	padding: 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(127, 189, 140, 0.2), transparent 34%),
		#163c2b;
}

.team-exposure-tour-page .gallery-hero__left {
	display: flex;
	align-items: center;
	padding: 112px max(28px, calc((100vw - 1180px) / 2)) 96px;
}

.team-exposure-tour-page .gallery-hero__inner {
	width: 100%;
	max-width: 680px;
	margin: 0;
}

.team-exposure-tour-page .gallery-hero__lead {
	max-width: 620px;
	margin: 28px 0 0;
	color: rgba(249, 245, 236, 0.82);
	font-size: 1.08rem;
	line-height: 1.8;
}

.team-exposure-tour-page .gallery-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.team-exposure-tour-page .gallery-hero__media {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	background: #0f2d20;
}

.team-exposure-tour-page .gallery-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.team-exposure-tour-page .gallery-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(22, 60, 43, 0.55), transparent 32%),
		linear-gradient(0deg, rgba(8, 31, 21, 0.34), transparent 48%);
}

.team-exposure-tour-hero__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 46px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.14);
}

.team-exposure-tour-hero__facts div {
	padding: 18px;
	background: rgba(17, 53, 37, 0.88);
}

.team-exposure-tour-hero__facts strong,
.team-exposure-tour-hero__facts span {
	display: block;
}

.team-exposure-tour-hero__facts strong {
	color: #f7d58e;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.65rem;
	line-height: 1;
}

.team-exposure-tour-hero__facts span {
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.team-exposure-tour-page .gallery-showcase {
	position: relative;
	padding: 110px 0 124px;
	background:
		linear-gradient(180deg, rgba(213, 155, 49, 0.08), transparent 260px),
		#f7f3ea;
}

.team-exposure-tour-page .gallery-showcase::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: min(1180px, calc(100% - 40px));
	height: 1px;
	background: rgba(22, 60, 43, 0.14);
	transform: translateX(-50%);
}

.team-exposure-tour-page .gallery-showcase__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	column-gap: 70px;
	align-items: end;
	max-width: none;
	margin-bottom: 54px;
}

.team-exposure-tour-page .gallery-showcase__intro .gallery-kicker {
	grid-column: 1 / -1;
}

.team-exposure-tour-page .gallery-showcase__intro > p:last-child {
	margin: 0 0 8px;
	font-size: 1.03rem;
}

.team-exposure-tour-page .gallery-grid {
	columns: 3 300px;
	column-gap: 20px;
}

.team-exposure-tour-page .gallery-card {
	margin-bottom: 20px;
	border-radius: 10px;
	background: #e8e2d6;
	box-shadow: 0 18px 44px rgba(16, 40, 29, 0.12);
}

.team-exposure-tour-page .gallery-card img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 980px) {
	.team-exposure-tour-page .team-exposure-tour-hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.team-exposure-tour-page .gallery-hero__left {
		padding: 94px 28px 72px;
	}

	.team-exposure-tour-page .gallery-hero__inner {
		max-width: 760px;
		margin: 0 auto;
	}

	.team-exposure-tour-page .gallery-hero__media {
		min-height: 520px;
	}
}

@media (max-width: 720px) {
	.team-exposure-tour-page .gallery-hero__left {
		padding: 72px 20px 58px;
	}

	.team-exposure-tour-page .gallery-hero__media {
		min-height: 360px;
	}

	.team-exposure-tour-hero__facts {
		grid-template-columns: 1fr;
	}

	.team-exposure-tour-page .gallery-showcase {
		padding: 70px 0 82px;
	}

	.team-exposure-tour-page .gallery-showcase__intro {
		display: block;
		margin-bottom: 36px;
	}

	.team-exposure-tour-page .gallery-showcase__intro > p:last-child {
		margin-top: 18px;
	}

	.team-exposure-tour-page .gallery-grid {
		columns: 1;
	}
}

@media (max-width: 960px) {
	.hero,
	.about-intro,
	.about-values,
	.about-content-band,
	.about-page-content,
	.about-cta-strip,
	.initiatives-intro,
	.initiatives-page-content,
	.initiatives-cta-strip,
	.contact-cards,
	.contact-main,
	.partner-carousel,
	.collaboration-note,
	.front-page-editable,
	.impact-intro,
	.impact-highlights,
	.impact-page-content,
	.impact-cta-strip,
	.story-block,
	.mission-band,
	.focus-area,
	.image-narrative,
	.impact-ribbon,
	.partners-showcase,
	.contact-cta,
	.page-content {
		padding: 64px 0;
	}

	.home-slider {
		padding: 16px 0 8px;
	}

	.home-slider__frame,
	.home-slide__content {
		min-height: 560px;
	}

	.home-slide__content {
		padding: 78px 0 92px;
	}

	.home-slide__content h2 {
		font-size: clamp(2.35rem, 10vw, 3.8rem);
	}

	.home-slider__controls {
		justify-content: center;
	}

	.hero {
		padding-top: 34px;
	}

	.hero__content h1 {
		font-size: clamp(2.1rem, 9vw, 3.35rem);
		max-width: 11ch;
	}

	.hero-portrait {
		width: 100%;
		padding: 14px;
	}

	.hero-portrait__badge {
		right: 14px;
		left: 14px;
		bottom: 14px;
		max-width: none;
	}

	.mission-band__grid,
	.focus-grid,
	.site-footer__grid,
	.about-values__grid {
		grid-template-columns: 1fr;
	}

	.site-brand__name {
		font-size: 1.2rem;
	}

	.site-brand__logo {
		width: 52px;
		height: 52px;
	}

	.contact-cta__actions,
	.hero__actions,
	.about-hero-banner__actions,
	.about-cta-strip__actions,
	.initiatives-hero__actions,
	.initiatives-cta-strip__actions,
	.contact-hero__actions,
	.impact-hero__actions,
	.impact-cta-strip__actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.home-slide__content .button {
		width: auto;
	}

	.contact-modal__dialog {
		padding: 28px 20px;
	}

	.about-hero-banner {
		min-height: 520px;
	}

	.about-hero-banner__content {
		padding: 90px 0 72px;
	}

	.about-hero-banner__content h1 {
		font-size: clamp(2.4rem, 11vw, 3.7rem);
	}

	.story-block__content h2 {
		font-size: clamp(2.3rem, 10vw, 3.6rem);
	}

	.story-block__media img {
		max-height: none;
	}

	.about-page-content__visuals {
		position: static;
		grid-template-columns: 1fr;
	}

	.initiatives-hero {
		min-height: 500px;
	}

	.initiatives-hero__content {
		padding: 90px 0 72px;
	}

	.initiatives-page-content__visuals {
		position: static;
		grid-template-columns: 1fr 1fr;
	}

	.contact-hero {
		min-height: 380px;
	}

	.contact-hero__content {
		padding: 70px 0 52px;
	}

	.contact-cards__grid {
		grid-template-columns: 1fr;
	}

	.partner-chip {
		min-height: 70px;
		padding: 0 22px;
	}

	.story-block__button,
	.collaboration-note__actions .button {
		width: 100%;
	}

	.impact-hero {
		min-height: 500px;
	}

	.impact-hero__content {
		padding: 90px 0 72px;
	}

	.impact-highlights__grid {
		grid-template-columns: 1fr;
	}

	.impact-page-content__visuals {
		position: static;
		grid-template-columns: 1fr 1fr;
	}

.about-visual-stack {
	grid-template-columns: 1fr;
}

}

/* Final visual overrides */
.about-editorial-principle:nth-child(2) {
	background: #1f4932 !important;
}

@media (max-width: 720px) {
	.home-editorial-slider {
		padding-bottom: 24px !important;
	}

	.home-editorial-slider__frame {
		min-height: auto !important;
		height: auto !important;
		padding: 16px 16px 12px !important;
		overflow: hidden !important;
	}

	.home-slide {
		display: none !important;
		position: relative !important;
		inset: auto !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		min-height: auto !important;
		height: auto !important;
		transform: none !important;
	}

	.home-slide.is-active {
		display: block !important;
	}

	.home-editorial-slide__layout {
		display: flex !important;
		flex-direction: column !important;
		gap: 18px !important;
	}

	.home-editorial-slide__media {
		order: 1 !important;
		min-height: 240px !important;
		height: auto !important;
		aspect-ratio: 4 / 3 !important;
		border-radius: 28px !important;
		overflow: hidden !important;
		background: #173826 !important;
	}

	.home-editorial-slide__media img,
	.home-slide.is-active .home-editorial-slide__media img {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center center !important;
		transform: none !important;
	}

	.home-editorial-slide__panel {
		order: 2 !important;
		min-height: auto !important;
		height: auto !important;
		padding: 0 !important;
		border-radius: 0 !important;
		background: #183c29 !important;
		box-shadow: none !important;
	}

	.home-editorial-slide__inner {
		padding: 24px 24px 20px !important;
	}

	.home-editorial-slide__title {
		font-size: clamp(2rem, 10vw, 3rem) !important;
		line-height: 0.98 !important;
		max-width: none !important;
	}

	.home-editorial-slide__text {
		font-size: 1rem !important;
		line-height: 1.7 !important;
		max-width: none !important;
	}

	.home-editorial-slide__actions {
		flex-direction: column !important;
		gap: 14px !important;
	}

	.home-editorial-slide__actions .button {
		width: 100% !important;
	}

	.home-editorial-slider__stats,
	.home-editorial-foundation__stats,
	.about-editorial-stats,
	.contact-editorial-stats,
	.impact-editorial-stats,
	.initiatives-editorial-stats,
	.contact-editorial-hero__right,
	.home-editorial-slider__cut {
		display: none !important;
	}

	.home-editorial-slider__dots {
		position: static !important;
		left: auto !important;
		bottom: auto !important;
		transform: none !important;
		justify-content: center !important;
		padding-top: 12px !important;
		margin: 0 auto !important;
	}

	.about-editorial-hero__shell,
	.contact-editorial-hero__shell,
	.impact-editorial-hero__shell,
	.initiatives-editorial-hero__shell {
		width: calc(100% - 28px) !important;
	}

	.about-editorial-hero__content,
	.contact-editorial-hero__content,
	.impact-editorial-hero__content,
	.initiatives-editorial-hero__content {
		max-width: 100% !important;
	}

	.about-editorial-hero__title,
	.contact-editorial-hero__title,
	.impact-editorial-hero__title,
	.initiatives-editorial-hero__title {
		font-size: clamp(2.1rem, 9vw, 2.9rem) !important;
		line-height: 1 !important;
		max-width: none !important;
	}

	.about-editorial-hero__lead,
	.contact-editorial-hero__lead,
	.impact-editorial-hero__lead,
	.initiatives-editorial-hero__lead {
		font-size: 0.98rem !important;
		line-height: 1.7 !important;
		max-width: none !important;
	}

	.about-editorial-principles {
		background: #123423 !important;
	}

	.about-editorial-principles__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}

	.about-editorial-principle,
	.about-editorial-principle:nth-child(2) {
		background: #1f4932 !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		padding: 28px 22px !important;
	}

	.contact-editorial-hero {
		padding-bottom: 28px !important;
	}

	.contact-editorial-hero__actions {
		flex-direction: column !important;
		gap: 14px !important;
	}

	.contact-editorial-hero__actions .button {
		width: 100% !important;
	}

	.contact-editorial-cards,
	.contact-editorial-main {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.contact-editorial-cards__grid,
	.contact-editorial-main__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}

	.contact-editorial-card,
	.contact-editorial-map,
	.contact-editorial-form-card {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
	}

	.contact-editorial-card {
		min-height: auto !important;
		padding: 24px 20px !important;
	}

	.contact-editorial-card h2 {
		font-size: 2rem !important;
		line-height: 1 !important;
	}

	.contact-editorial-card p,
	.contact-editorial-card a,
	.contact-editorial-form-card p,
	.contact-editorial-map p {
		overflow-wrap: anywhere !important;
		word-break: break-word !important;
	}

	.contact-editorial-map__frame {
		min-height: 260px !important;
		height: 260px !important;
	}

	.contact-editorial-map__frame iframe {
		height: 100% !important;
	}

	.contact-editorial-form-card {
		padding: 24px 20px !important;
	}

	.contact-editorial-form-card .contact-form__row {
		grid-template-columns: 1fr !important;
	}

	.contact-modal__dialog {
		width: calc(100vw - 24px) !important;
		max-width: calc(100vw - 24px) !important;
		max-height: 88vh !important;
		padding: 20px 16px !important;
		border-radius: 22px !important;
	}

	.contact-modal__body {
		padding-right: 2px !important;
	}
}

@media (min-width: 721px) {
	.home-editorial-slider__frame {
		height: clamp(600px, calc(100vh - 118px), 740px);
		min-height: 600px;
	}

	.home-slide,
	.home-editorial-slide__panel,
	.home-editorial-slide__media {
		min-height: 100%;
		height: 100%;
	}

	.home-editorial-slide__panel {
		padding: 96px 0 118px;
	}

	.home-editorial-slide__media img {
		filter: saturate(0.96) brightness(0.9) contrast(1.04);
		transform: scale(1.02);
	}

	.home-slide.is-active .home-editorial-slide__media img {
		transform: scale(1.055);
	}

	.home-slide:nth-child(1) .home-editorial-slide__media img {
		object-position: center center;
	}

	.home-slide:nth-child(2) .home-editorial-slide__media img {
		object-position: center center;
	}

	.home-slide:nth-child(3) .home-editorial-slide__media img {
		object-position: center center;
	}

	.home-editorial-slide__overlay {
		background:
			linear-gradient(90deg, rgba(16, 40, 29, 0.24) 0%, rgba(16, 40, 29, 0.06) 42%, rgba(16, 40, 29, 0.18) 100%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 44%, rgba(0, 0, 0, 0.18) 100%);
	}

	.home-editorial-slider__stats {
		right: 34px;
		bottom: 66px;
	}

	.home-editorial-slider__dots {
		bottom: 24px;
	}
}

.initiatives-editorial-forest__media-grid {
	align-items: stretch;
}

.initiatives-editorial-forest__media-grid img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 0;
	max-height: none;
	object-fit: contain;
	object-position: center center;
	padding: 0;
	background: transparent;
}

/* Reference-style full-bleed home slider */
.home-editorial-slider {
	padding: 0 !important;
	background: #f7f3ee;
}

.home-editorial-slider__frame {
	width: 100% !important;
	max-width: none !important;
	height: clamp(590px, calc(100vh - 88px), 720px) !important;
	min-height: 590px !important;
	margin: 0 !important;
	border-radius: 0 !important;
	background: #0e3a2d !important;
	box-shadow: none !important;
}

.home-slide {
	grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
}

.home-editorial-slide__panel {
	position: relative !important;
	z-index: 2 !important;
	grid-column: 1 / 2 !important;
	min-height: 100% !important;
	padding: clamp(54px, 7vh, 82px) 0 clamp(76px, 9vh, 104px) !important;
	background: transparent !important;
}

.home-editorial-slide__inner {
	width: min(860px, calc(100vw - 48px)) !important;
	margin-left: max(24px, calc((100vw - var(--shell)) / 2)) !important;
}

.home-editorial-eyebrow {
	margin-bottom: 20px !important;
	color: rgba(212, 232, 218, 0.82) !important;
}

.home-editorial-slide__title {
	max-width: 860px !important;
	margin-bottom: 24px !important;
	font-family: "Manrope", sans-serif !important;
	font-size: clamp(3.7rem, 4.55vw, 5.35rem) !important;
	font-weight: 300 !important;
	line-height: 1.08 !important;
	letter-spacing: 0 !important;
	color: #ffffff !important;
}

.home-editorial-slide__title em {
	display: inline !important;
	margin-top: 0 !important;
	font-family: "Cormorant Garamond", serif !important;
	font-size: 0.96em !important;
	font-weight: 500 !important;
	line-height: inherit !important;
	color: #ffffff !important;
}

.home-editorial-slide__text {
	max-width: 680px !important;
	margin-bottom: 28px !important;
	font-size: 1.08rem !important;
	font-weight: 600 !important;
	line-height: 1.65 !important;
	color: rgba(255, 255, 255, 0.94) !important;
}

.home-editorial-slide__actions {
	gap: 16px !important;
}

.home-editorial-slide__actions .button {
	min-width: 218px !important;
	min-height: 52px !important;
	justify-content: center !important;
	border-radius: 0 !important;
	font-size: 0.98rem !important;
	font-weight: 800 !important;
	letter-spacing: 0 !important;
}

.home-editorial-slide__actions .button::before {
	content: "\2192";
	margin-right: 16px;
	font-size: 1.35rem;
	font-weight: 300;
	line-height: 1;
}

.home-editorial-slide__actions .button--primary {
	border-color: #7bc9ad !important;
	background: #7bc9ad !important;
	color: #071f18 !important;
}

.home-editorial-slide__actions .home-editorial-button--light {
	border-color: rgba(255, 255, 255, 0.58) !important;
	background: transparent !important;
	color: #ffffff !important;
}

.home-editorial-slide__media {
	position: absolute !important;
	inset: 0 0 0 auto !important;
	z-index: 1 !important;
	width: 66% !important;
	height: 100% !important;
	min-height: 100% !important;
	border-radius: 0 !important;
	background: #0e3a2d !important;
}

.home-editorial-slide__media img,
.home-slide.is-active .home-editorial-slide__media img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
	filter: saturate(0.86) brightness(0.72) contrast(1.08) !important;
	transform: none !important;
}

.home-editorial-slide__overlay {
	background:
		linear-gradient(90deg, #0e3a2d 0%, rgba(14, 58, 45, 0.98) 28%, rgba(14, 58, 45, 0.8) 48%, rgba(14, 58, 45, 0.34) 72%, rgba(14, 58, 45, 0.12) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.06) 44%, rgba(0, 0, 0, 0.22) 100%) !important;
}

.home-editorial-slider__stats,
.home-editorial-slider__cut {
	display: none !important;
}

.home-editorial-slider__dots {
	left: max(24px, calc((100vw - var(--shell)) / 2)) !important;
	right: auto !important;
	bottom: 34px !important;
	transform: none !important;
}

.home-slider__dot {
	width: 32px !important;
	height: 3px !important;
	background: rgba(255, 255, 255, 0.32) !important;
}

.home-slider__dot.is-active {
	width: 54px !important;
	background: #7bc9ad !important;
}

@media (max-width: 960px) {
	.home-editorial-slider__frame {
		height: auto !important;
		min-height: auto !important;
	}

	.home-slide {
		grid-template-columns: 1fr !important;
	}

	.home-editorial-slide__media {
		position: relative !important;
		inset: auto !important;
		width: 100% !important;
		min-height: 420px !important;
	}

	.home-editorial-slide__panel {
		padding: 82px 0 78px !important;
	}
}

@media (max-width: 720px) {
	.home-editorial-slider__frame {
		padding: 0 !important;
		overflow-x: hidden !important;
	}

	.home-editorial-slide__media {
		order: 1 !important;
		min-height: 300px !important;
		aspect-ratio: 16 / 11 !important;
		border-radius: 0 !important;
	}

	.home-editorial-slide__panel {
		order: 2 !important;
		padding: 0 !important;
	}

	.home-editorial-slide__inner {
		width: calc(100vw - 44px) !important;
		max-width: calc(100vw - 44px) !important;
		box-sizing: border-box !important;
		margin-right: 22px !important;
		margin-left: 22px !important;
		padding: 34px 0 30px !important;
	}

	.home-editorial-slide__title {
		font-size: clamp(2.65rem, 13vw, 4.35rem) !important;
	}

	.home-editorial-slide__text {
		width: 100% !important;
		max-width: 100% !important;
		font-size: 0.98rem !important;
		font-weight: 600 !important;
		line-height: 1.65 !important;
		overflow-wrap: anywhere !important;
	}

	.home-editorial-slide__actions .button {
		width: 100% !important;
		min-width: 0 !important;
	}

	.home-editorial-slide__actions {
		width: 100% !important;
	}

	.home-editorial-slider__dots {
		position: static !important;
		justify-content: center !important;
		padding: 0 0 20px !important;
		background: #0e3a2d !important;
	}

	body .home-editorial-slider .home-slide.is-active .home-editorial-slide__text,
	body .home-editorial-slider .home-slide.is-active .home-editorial-slide__actions {
		width: calc(100vw - 44px) !important;
		max-width: calc(100vw - 44px) !important;
		white-space: normal !important;
	}

body .home-editorial-slider .home-slide.is-active .home-editorial-slide__text {
		width: 300px !important;
		max-width: calc(100vw - 44px) !important;
		font-size: 0.94rem !important;
		line-height: 1.68 !important;
		overflow-wrap: break-word !important;
	}
}

/* Reference-style interior page heroes */
.about-editorial-hero,
.initiatives-editorial-hero,
.impact-editorial-hero,
.contact-editorial-hero,
.gallery-hero {
	position: relative !important;
	display: grid !important;
	grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
	width: 100% !important;
	height: clamp(590px, calc(100vh - 88px), 720px) !important;
	min-height: 590px !important;
	padding: 0 !important;
	overflow: hidden !important;
	background: #0e3a2d !important;
}

.about-editorial-hero__left,
.initiatives-editorial-hero__left,
.impact-editorial-hero__left,
.contact-editorial-hero__left,
.gallery-hero__left {
	position: relative !important;
	z-index: 2 !important;
	display: flex !important;
	align-items: center !important;
	min-height: 100% !important;
	padding: clamp(54px, 7vh, 82px) 0 clamp(76px, 9vh, 104px) !important;
	background: transparent !important;
}

.about-editorial-hero__shell,
.initiatives-editorial-hero__shell,
.impact-editorial-hero__shell,
.contact-editorial-hero__shell,
.gallery-hero__inner {
	width: min(860px, calc(100vw - 48px)) !important;
	max-width: none !important;
	margin-left: max(24px, calc((100vw - var(--shell)) / 2)) !important;
	padding: 0 !important;
}

.about-editorial-eyebrow,
.initiatives-editorial-eyebrow,
.impact-editorial-eyebrow,
.contact-editorial-eyebrow,
.gallery-hero .gallery-kicker {
	margin: 0 0 20px !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	font-size: 0.76rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.2em !important;
	text-transform: uppercase !important;
	color: rgba(212, 232, 218, 0.86) !important;
}

.about-editorial-eyebrow::before,
.initiatives-editorial-eyebrow::before,
.impact-editorial-eyebrow::before,
.contact-editorial-eyebrow::before,
.gallery-hero .gallery-kicker::before {
	content: "" !important;
	display: block !important;
	width: 32px !important;
	height: 1px !important;
	background: currentColor !important;
}

.about-editorial-hero__title,
.initiatives-editorial-hero__title,
.impact-editorial-hero__title,
.contact-editorial-hero__title,
.gallery-hero h1 {
	max-width: 860px !important;
	margin: 0 0 24px !important;
	font-family: "Manrope", sans-serif !important;
	font-size: clamp(3.1rem, 3.8vw, 4.55rem) !important;
	font-weight: 300 !important;
	line-height: 1.08 !important;
	letter-spacing: 0 !important;
	color: #ffffff !important;
}

.about-editorial-hero__title em,
.initiatives-editorial-hero__title em,
.impact-editorial-hero__title em,
.contact-editorial-hero__title em,
.gallery-hero h1 em {
	display: inline !important;
	font-family: "Cormorant Garamond", serif !important;
	font-size: 0.96em !important;
	font-weight: 500 !important;
	line-height: inherit !important;
	color: #ffffff !important;
}

.about-editorial-hero__lead,
.initiatives-editorial-hero__lead,
.impact-editorial-hero__lead,
.contact-editorial-hero__lead,
.gallery-hero__lead {
	max-width: 680px !important;
	margin: 0 0 28px !important;
	font-size: 1.08rem !important;
	font-weight: 600 !important;
	line-height: 1.65 !important;
	color: rgba(255, 255, 255, 0.94) !important;
}

.about-editorial-hero__actions,
.initiatives-editorial-hero__actions,
.impact-editorial-hero__actions,
.contact-editorial-hero__actions,
.gallery-hero__actions {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 16px !important;
	margin: 0 !important;
}

.about-editorial-hero__actions .button,
.initiatives-editorial-hero__actions .button,
.impact-editorial-hero__actions .button,
.contact-editorial-hero__actions .button,
.gallery-hero__actions .button {
	min-width: 218px !important;
	min-height: 52px !important;
	justify-content: center !important;
	border-radius: 0 !important;
	font-size: 0.98rem !important;
	font-weight: 800 !important;
	letter-spacing: 0 !important;
}

.about-editorial-hero__actions .button::before,
.initiatives-editorial-hero__actions .button::before,
.impact-editorial-hero__actions .button::before,
.contact-editorial-hero__actions .button::before,
.gallery-hero__actions .button::before {
	content: "\2192";
	margin-right: 16px;
	font-size: 1.35rem;
	font-weight: 300;
	line-height: 1;
}

.about-editorial-hero__actions .button--primary,
.initiatives-editorial-hero__actions .button--primary,
.impact-editorial-hero__actions .button--primary,
.contact-editorial-hero__actions .button--primary,
.gallery-hero__actions .button--primary {
	border-color: #7bc9ad !important;
	background: #7bc9ad !important;
	color: #071f18 !important;
}

.about-editorial-hero__actions .button--secondary,
.initiatives-editorial-hero__actions .button--secondary,
.impact-editorial-hero__actions .button--secondary,
.contact-editorial-hero__actions .button--secondary,
.gallery-hero__actions .button--secondary {
	border-color: rgba(255, 255, 255, 0.58) !important;
	background: transparent !important;
	color: #ffffff !important;
}

.about-editorial-hero__right,
.initiatives-editorial-hero__right,
.impact-editorial-hero__right,
.contact-editorial-hero__right,
.gallery-hero__media {
	position: absolute !important;
	inset: 0 0 0 auto !important;
	z-index: 1 !important;
	width: 66% !important;
	height: 100% !important;
	min-height: 100% !important;
	overflow: hidden !important;
	background: #0e3a2d !important;
}

.about-editorial-hero__right img,
.initiatives-editorial-hero__right img,
.impact-editorial-hero__right img,
.contact-editorial-hero__right img,
.gallery-hero__media img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
	filter: saturate(0.86) brightness(0.72) contrast(1.08) !important;
	transform: none !important;
}

.about-editorial-hero__overlay,
.initiatives-editorial-hero__overlay,
.impact-editorial-hero__overlay,
.contact-editorial-hero__overlay,
.gallery-hero__overlay {
	position: absolute !important;
	inset: 0 !important;
	z-index: 2 !important;
	background:
		linear-gradient(90deg, #0e3a2d 0%, rgba(14, 58, 45, 0.98) 28%, rgba(14, 58, 45, 0.8) 48%, rgba(14, 58, 45, 0.34) 72%, rgba(14, 58, 45, 0.12) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.06) 44%, rgba(0, 0, 0, 0.22) 100%) !important;
}

.about-editorial-stats,
.initiatives-editorial-stats,
.impact-editorial-stats,
.contact-editorial-stats,
.about-editorial-hero__pattern,
.initiatives-editorial-hero__pattern,
.impact-editorial-hero__pattern,
.contact-editorial-hero__pattern {
	display: none !important;
}

.about-editorial-hero .reveal-up,
.initiatives-editorial-hero .reveal-up,
.impact-editorial-hero .reveal-up,
.contact-editorial-hero .reveal-up,
.gallery-hero .reveal-up {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

@media (max-width: 960px) {
	.about-editorial-hero,
	.initiatives-editorial-hero,
	.impact-editorial-hero,
	.contact-editorial-hero,
	.gallery-hero {
		grid-template-columns: 1fr !important;
		height: auto !important;
		min-height: auto !important;
	}

	.about-editorial-hero__left,
	.initiatives-editorial-hero__left,
	.impact-editorial-hero__left,
	.contact-editorial-hero__left,
	.gallery-hero__left {
		min-height: auto !important;
		padding: 78px 0 64px !important;
	}

	.about-editorial-hero__right,
	.initiatives-editorial-hero__right,
	.impact-editorial-hero__right,
	.contact-editorial-hero__right,
	.gallery-hero__media {
		position: relative !important;
		inset: auto !important;
		width: 100% !important;
		min-height: 420px !important;
	}
}

@media (max-width: 720px) {
	.about-editorial-hero,
	.initiatives-editorial-hero,
	.impact-editorial-hero,
	.contact-editorial-hero,
	.gallery-hero {
		overflow-x: hidden !important;
	}

	.about-editorial-hero__left,
	.initiatives-editorial-hero__left,
	.impact-editorial-hero__left,
	.contact-editorial-hero__left,
	.gallery-hero__left {
		padding: 0 !important;
	}

	.about-editorial-hero__shell,
	.initiatives-editorial-hero__shell,
	.impact-editorial-hero__shell,
	.contact-editorial-hero__shell,
	.gallery-hero__inner {
		width: calc(100vw - 44px) !important;
		max-width: calc(100vw - 44px) !important;
		box-sizing: border-box !important;
		margin-right: 22px !important;
		margin-left: 22px !important;
		padding: 34px 0 30px !important;
	}

	.about-editorial-hero__title,
	.initiatives-editorial-hero__title,
	.impact-editorial-hero__title,
	.contact-editorial-hero__title,
	.gallery-hero h1 {
		font-size: clamp(2.42rem, 11.2vw, 4.05rem) !important;
	}

	.about-editorial-hero__lead,
	.initiatives-editorial-hero__lead,
	.impact-editorial-hero__lead,
	.contact-editorial-hero__lead,
	.gallery-hero__lead {
		width: 300px !important;
		max-width: calc(100vw - 44px) !important;
		font-size: 0.94rem !important;
		line-height: 1.68 !important;
		overflow-wrap: break-word !important;
		white-space: normal !important;
	}

	.about-editorial-hero__actions,
	.initiatives-editorial-hero__actions,
	.impact-editorial-hero__actions,
	.contact-editorial-hero__actions,
	.gallery-hero__actions {
		width: calc(100vw - 44px) !important;
		max-width: calc(100vw - 44px) !important;
		flex-direction: column !important;
		white-space: normal !important;
	}

	.about-editorial-hero__actions .button,
	.initiatives-editorial-hero__actions .button,
	.impact-editorial-hero__actions .button,
	.contact-editorial-hero__actions .button,
	.gallery-hero__actions .button {
		width: 100% !important;
		min-width: 0 !important;
	}

	.about-editorial-hero__right,
	.initiatives-editorial-hero__right,
	.impact-editorial-hero__right,
	.contact-editorial-hero__right,
	.gallery-hero__media {
		min-height: 300px !important;
		aspect-ratio: 16 / 11 !important;
	}
}

/* Final mobile stabilization for the home hero slider.
   Kept at the end so it wins over older responsive experiments. */
@media (max-width: 720px) {
	body {
		overflow-x: hidden;
	}

	.home-editorial-slider {
		width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		padding: 20px 18px 44px !important;
		margin: 0 !important;
		overflow: visible !important;
		background: var(--color-cream, #f5f1e8) !important;
	}

	.home-editorial-slider__frame {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: auto !important;
		border-radius: 30px !important;
		overflow: hidden !important;
		background: #123f31 !important;
		box-shadow: 0 24px 54px rgba(14, 58, 45, 0.18) !important;
		display: block !important;
	}

	.home-editorial-slider .home-slide {
		position: relative !important;
		inset: auto !important;
		display: none !important;
		grid-template-columns: 1fr !important;
		flex-direction: column !important;
		width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		opacity: 0 !important;
		transform: none !important;
		pointer-events: none !important;
		background: #123f31 !important;
	}

	.home-editorial-slider .home-slide.is-active {
		display: flex !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	.home-editorial-slide__media {
		position: relative !important;
		inset: auto !important;
		order: 1 !important;
		width: 100% !important;
		height: clamp(220px, 58vw, 320px) !important;
		min-height: 0 !important;
		max-height: none !important;
		display: block !important;
		overflow: hidden !important;
		border-radius: 0 !important;
		background: #123f31 !important;
		transform: none !important;
	}

	.home-editorial-slide__media img,
	.home-slide.is-active .home-editorial-slide__media img {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		transform: none !important;
		filter: saturate(0.96) brightness(0.88) contrast(1.04) !important;
		opacity: 1 !important;
	}

	.home-editorial-slide__overlay {
		position: absolute !important;
		inset: 0 !important;
		background: linear-gradient(180deg, rgba(13, 55, 42, 0.04) 0%, rgba(13, 55, 42, 0.48) 100%) !important;
		opacity: 1 !important;
	}

	.home-editorial-slide__panel {
		position: relative !important;
		inset: auto !important;
		order: 2 !important;
		width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		padding: 0 !important;
		margin: 0 !important;
		border-radius: 0 !important;
		background: #123f31 !important;
		color: #fffaf1 !important;
		display: block !important;
	}

	.home-editorial-slide__inner {
		width: 100% !important;
		max-width: 100% !important;
		min-height: 0 !important;
		padding: 28px 24px 34px !important;
		margin: 0 !important;
		box-sizing: border-box !important;
		display: block !important;
		text-align: left !important;
	}

	.home-editorial-eyebrow {
		margin: 0 0 16px !important;
		font-size: 0.72rem !important;
		letter-spacing: 0.18em !important;
		color: rgba(207, 229, 209, 0.88) !important;
		white-space: normal !important;
	}

	.home-editorial-slide__title {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 0 18px !important;
		font-size: clamp(2.15rem, 12vw, 3.65rem) !important;
		line-height: 0.96 !important;
		letter-spacing: -0.045em !important;
		color: #fffaf1 !important;
		overflow-wrap: break-word !important;
	}

	.home-editorial-slide__title em {
		color: #9fc7a5 !important;
	}

	.home-editorial-slide__text {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 0 24px !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
		color: rgba(255, 250, 241, 0.82) !important;
		opacity: 1 !important;
		transform: none !important;
		overflow-wrap: break-word !important;
	}

	.home-editorial-slide__actions {
		width: 100% !important;
		max-width: 100% !important;
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		margin: 0 !important;
		opacity: 1 !important;
		transform: none !important;
	}

	.home-editorial-slide__actions .button {
		width: 100% !important;
		min-width: 0 !important;
		min-height: 52px !important;
		justify-content: center !important;
		border-radius: 999px !important;
		font-size: 0.98rem !important;
		white-space: normal !important;
	}

	.home-editorial-slider__stats,
	.home-editorial-slider__cut {
		display: none !important;
	}

	.home-editorial-slider__dots {
		position: relative !important;
		inset: auto !important;
		width: 100% !important;
		display: flex !important;
		justify-content: center !important;
		gap: 10px !important;
		margin: 16px 0 0 !important;
		padding: 0 !important;
		transform: none !important;
	}

	.home-slider__dot {
		width: 32px !important;
		height: 4px !important;
		border-radius: 999px !important;
		background: rgba(18, 63, 49, 0.2) !important;
		border: 0 !important;
	}

	.home-slider__dot.is-active {
		background: #123f31 !important;
	}
}

@media (max-width: 420px) {
	.home-editorial-slider {
		padding-right: 14px !important;
		padding-left: 14px !important;
	}

	.home-editorial-slide__inner {
		padding: 24px 20px 30px !important;
	}

	.home-editorial-slide__media {
		height: 230px !important;
	}

	.home-editorial-slide__title {
		font-size: clamp(2rem, 11vw, 3.05rem) !important;
	}
}
